view flax/UI.py @ 481:621921854b8c

cp Ignore-this: 4b1d29037b8aa10b02b15629fb33ef8c
author drewp@bigasterisk.com
date Sat, 13 Jun 2009 05:07:45 +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)
"""