view flax/UI.py @ 1431:f85cc11b3e8c

checkpoint show data Ignore-this: 7dc477a7921f92dc9cc8115c6cc2b9cf
author drewp@bigasterisk.com
date Sat, 11 Jun 2016 17:15:30 +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)
"""