view flax/UI.py @ 1907:ec6ec713c276

output escaping bug in homepage made spectrograms fail Ignore-this: b27ede936127b02f4ed30e132d2bf0d
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 01 Jun 2019 10:54:45 +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)
"""