view flax/UI.py @ 695:0b8fc64a896c

goocanvas drawing a little Ignore-this: aae191151f454a98caa671b65d080029
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 08 Jun 2012 07:54:32 +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)
"""