view flax/UI.py @ 1009:ba47676dde49

dmxserver can receive OSC requests too Ignore-this: cafc864acd008d8bf7af75b4200fb188
author drewp@bigasterisk.com
date Sun, 08 Sep 2013 05:09:53 +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)
"""