view flax/UI.py @ 1577:e8161fdda8ad

paint shows deviceattrs from graph Ignore-this: bf4b4b7c1f51af0a4f6b64f4800c1d3c
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 29 May 2017 20:48:22 +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)
"""