view flax/UI.py @ 674:539de47b68cc

asco: fix the EOS catcher instead of the broken duration-.2 hack Ignore-this: 76db6d1c0eea79e6db88f95984059105
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 20 Jun 2011 20:18:34 +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)
"""