view flax/UI.py @ 1503:b91e8f26650e

effecteval fixes, probably needed to be part of earlier patches Ignore-this: 9ac8907d0f2d3c49e5359a6e3a6eabbb
author drewp@bigasterisk.com
date Thu, 16 Jun 2016 06:17:13 +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)
"""