view flax/UI.py @ 670:fcb0293b5898

cp Ignore-this: c30e33897127d69657cb3691340c1a08
author drewp@bigasterisk.com
date Mon, 20 Jun 2011 01:08:54 +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)
"""