view flax/UI.py @ 1116:2a89050c140b

another sys.path for raspi dirs Ignore-this: 868419000a530d6e33bde84340f56486
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 13 Jun 2014 05:33:05 +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)
"""