view flax/UI.py @ 667:b4328c80d860

cp Ignore-this: 1d75a4ca064f1644a2780a2389a3e2bb
author drewp@bigasterisk.com
date Sun, 19 Jun 2011 22:24:26 +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)
"""