view flax/UI.py @ 945:85ccda959170

KC seems to refresh on new subs now, though it redraws way too many times Ignore-this: 581be0258df1d2fe1bdcc3b957f6fcb2
author drewp@bigasterisk.com
date Thu, 13 Jun 2013 05:56:57 +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)
"""