view flax/UI.py @ 1659:16e0af42613f

collector web client show call count in status display Ignore-this: b452b23ed91efb4ebf53c1bfacb9a33e
author drewp@bigasterisk.com
date Sat, 10 Jun 2017 23:35:16 +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)
"""