view flax/UI.py @ 951:1e01727312f0

CC more drag support and code cleanup Ignore-this: d6c3af63d8062a4f20ed0f88ba7048a5
author drewp@bigasterisk.com
date Fri, 14 Jun 2013 05:29:19 +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)
"""