view flax/UI.py @ 1622:96e0e013e28d

delete key deletes selected notes Ignore-this: dea1199f74a3ac37a150b11a306b8c1f
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 09 Jun 2017 08:25:19 +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)
"""