view flax/UI.py @ 555:1b56c80b1ee4

patch for newer linux kernels which apparently have err() but not info() Ignore-this: dc59850cb3f6d08aaa9c478aa4e4d4ef
author drewp@bigasterisk.com
date Sat, 19 Jun 2010 07:02:35 +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)
"""