view flax/UI.py @ 927:7ff5516a0681

asco button to open in chromeless window Ignore-this: 8573787094c2263d443865eec55520c
author Drew Perttula <drewp@bigasterisk.com>
date Tue, 11 Jun 2013 06:11:58 +0000
parents 45b12307c695
children
line wrap: on
line source

# Abstract UI widgets

class UI(Something):
    pass

class Scale(UI):
    def __init__(self, start, stop, res=0.001):
        pass

""" unfinished
class Button(UI):
    def __init__(self, etc)
"""