view flax/UI.py @ 728:b71a01086740

drop selection when a new curve is focused Ignore-this: da79a73fd36ee70cea71ce76e574e46e
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 14 Jun 2012 06:26:13 +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)
"""