view flax/UI.py @ 844:51adfea492a5

clarify some private api Ignore-this: ddb72cc0dc9b8fe6c2448b29bab678f5
author drewp@bigasterisk.com
date Tue, 26 Mar 2013 07:59:48 +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)
"""