view flax/UI.py @ 955:c0f7fc86f89b

fix up hardware sliders in KC. big mess now Ignore-this: 28956846058bf05ad44d9eeea2796c75
author drewp@bigasterisk.com
date Sat, 15 Jun 2013 06:09: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)
"""