view flax/UI.py @ 861:1812165b5acc

clearer name for sendPatch callback function Ignore-this: 4cd1a220a9052caf9201879d4d9f1bcc
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 06 Jun 2013 04:16:27 +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)
"""