view flax/UI.py @ 647:a30550d5827f

vidref shows more logs in the gui Ignore-this: 933f1edd615ecea9b9c1a4e5a6f37355
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 18 Jun 2011 05:12:10 +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)
"""