view flax/UI.py @ 1422:6adeda46b71c

/live page layout and features. it should be renamed to 'device control' Ignore-this: a7fdcf485e22c76480ed99b7c5e3aae2
author drewp@bigasterisk.com
date Sat, 11 Jun 2016 02:54:54 +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)
"""