view flax/UI.py @ 922:4def29403ac7

more inotify masks to catch certain kinds of edits Ignore-this: 1cd7c7a07c682cd3db7c127d09294f9e
author drewp@bigasterisk.com
date Mon, 10 Jun 2013 23:28:46 +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)
"""