view flax/UI.py @ 845:2bf4b72cb5e8

fix layering issue with runDepsOnNewPatch Ignore-this: 31489a0371444ba4201c29579a168a40
author drewp@bigasterisk.com
date Tue, 26 Mar 2013 08:17: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)
"""