view flax/UI.py @ 1911:11bc3d32f453

layout on effectSequencer display Ignore-this: d0ec4310bc6abb583add94ef93c12b1c
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 01 Jun 2019 10:59:16 +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)
"""