view flax/UI.py @ 1382:b4d81ecf055c

drop effect uri onto rows, make note Ignore-this: 8c0d12baa3262b78a78c1064cb8ac195
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 09 Jun 2016 05:13:32 +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)
"""