view flax/UI.py @ 719:e2dd0992a195

working on canvas focus Ignore-this: 74ae0771fc58d43373c2bafa15539251
author Drew Perttula <drewp@bigasterisk.com>
date Wed, 13 Jun 2012 05:35:04 +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)
"""