view flax/UI.py @ 682:fa67869c1dec

add logTime profiler decorator Ignore-this: db9565c01a72ddd4d04719cba641df62
author drewp@bigasterisk.com
date Tue, 21 Jun 2011 01:59:44 +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)
"""