view flax/UI.py @ 2010:7cb9827f727c

checkpoint show data Ignore-this: c7b328338a45a6301a32b9c768aa3b1f
author drewp@bigasterisk.com
date Mon, 10 Jun 2019 01:52:00 +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)
"""