view flax/UI.py @ 875:2b2ad8e7cb9f

update dmx_usb. ok on kernel 3.5.0 Ignore-this: 207b5a346c5e1e781d46ddcb44d510bf
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 07 Jun 2013 06:40:07 +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)
"""