view flax/UI.py @ 680:ad17b0a09f5c

CC more startup logging, timing option to quit after init Ignore-this: 6116d151a3c36a7830740a7407d5665c
author drewp@bigasterisk.com
date Tue, 21 Jun 2011 01:58:49 +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)
"""