view flax/UI.py @ 1822:0da5fcfe4ea5

collector debug logging Ignore-this: d1357a970ac339186c7e91cd311c6288
author drewp@bigasterisk.com
date Sat, 09 Jun 2018 01:19:23 +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)
"""