view flax/UI.py @ 965:a472171c50e4

CC song change was breaking ctrl-p and time-hover behaviors Ignore-this: eb24b8937e75b9310f12d18195f76367
author drewp@bigasterisk.com
date Sat, 15 Jun 2013 08:46:23 +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)
"""