view flax/UI.py @ 592:776401dea077

vidref: try not to stop gathering time even upon error; don't scan dirs repeatedly, which was ruining seeks Ignore-this: a303b02cbdc2e1224534b8d5a2500fcc
author drewp@bigasterisk.com
date Sun, 20 Jun 2010 05:04:47 +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)
"""