view flax/UI.py @ 1461:a7de122a7b18

clients were reading this file a LOT. Probably not a performance issue, but distracting in strace output Ignore-this: 180916361bbcc3b0e3a4fe82bda0990a
author drewp@bigasterisk.com
date Sun, 12 Jun 2016 02:12:28 +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)
"""