view flax/UI.py @ 795:09026c837ceb

screenshot from 2012 Ignore-this: 2a8c1782cec203e2065abceab33aeb6f
author drewp@bigasterisk.com
date Sun, 01 Jul 2012 08:03:07 +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)
"""