view flax/UI.py @ 1786:11affc6d6045

more graph methods. some cleanup of the code that runs only required handlers, but it's not turned on yet Ignore-this: eb8e148737af4779a4735384ef6426ce
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 07 Jun 2018 08:11:17 +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)
"""