view flax/UI.py @ 1453:6906cacaa218

KC and SEQ share inotify code to reload effect code Ignore-this: 2ae8142fda67b2290f4d0af219781c69
author drewp@bigasterisk.com
date Sun, 12 Jun 2016 00:24:57 +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)
"""