view flax/UI.py @ 558:9c3c28abbbea

new curve rows display right; fix layout of a curve row's widgets Ignore-this: 1cdfe8a513e65623c28e994a2a27a105
author drewp@bigasterisk.com
date Sat, 19 Jun 2010 18:22:39 +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)
"""