view flax/UI.py @ 1830:8e0e5b3db301

redo collector client to use HTTP Ignore-this: b1ae4f45bfe31d8ba58d13c68e9f6a87
author drewp@bigasterisk.com
date Sat, 09 Jun 2018 17:56:43 +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)
"""