view flax/UI.py @ 1292:fdc20f9119fc

use fork of scales lib, to get decorator support Ignore-this: 36a7979e89e0f748d49e8d7ecdaa0587
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 30 May 2016 06:57:27 +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)
"""