view flax/UI.py @ 522:e20419d637d5

initial vidref tests Ignore-this: f3ca12ad8071d889ed71689be0716827
author drewp@bigasterisk.com
date Tue, 08 Jun 2010 06:52:59 +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)
"""