view flax/UI.py @ 681:4adc35da22b8

cp Ignore-this: b0d683037f663b8def5e291a4cdee7e1
author drewp@bigasterisk.com
date Tue, 21 Jun 2011 01:59:34 +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)
"""