view flax/UI.py @ 814:1ae8e6b287e3

improvements to file watching. outline of how resync will work Ignore-this: 501c4f2076099364645cc27e9fe48f61
author drewp@bigasterisk.com
date Sun, 30 Sep 2012 07:11:49 +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)
"""