view flax/UI.py @ 1587:2c973af2b13e

refactor light9-device-settings settings table Ignore-this: 7685c17a0a1c5f46764aeab8c181698a
author Drew Perttula <drewp@bigasterisk.com>
date Tue, 30 May 2017 08:54:24 +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)
"""