view flax/UI.py @ 1267:ce8a71fab284

trying to fix SC bad graph reload behavior, but this barely works. other tools have trouble too Ignore-this: 862de28b7f1eba9794ec766c22e8d9be
author drewp@bigasterisk.com
date Sun, 14 Jun 2015 03:30:34 +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)
"""