view flax/UI.py @ 793:cbfed4e684ef

redo asco web server to use twisted/cyclone. mainloop is now glib inside twisted. seems ok (and lower cpu usage) but not well tested Ignore-this: 24ae0b173599a0d99e465f1b5a10f39b
author drewp@bigasterisk.com
date Sat, 30 Jun 2012 06:29:23 +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)
"""