view flax/UI.py @ 1991:b5dc4f1c4a83

more compact device boxes on live page Ignore-this: eeb323899eb939e571d40a0d719da2ae
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 09 Jun 2019 07:27:44 +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)
"""