view flax/UI.py @ 1807:56e435ac7a41

start the ui work for multiselect on /live Ignore-this: 9cfd22eac4d49b093643027e387f4f5e
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 08 Jun 2018 09:54:08 +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)
"""