view flax/UI.py @ 650:e914033c56de

makefile for freemind->html Ignore-this: d66704e3ecd00a3b1c73d3d9dddba845
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 18 Jun 2011 05:23:20 +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)
"""