view flax/UI.py @ 1309:d5c834766ce9

rdfdb xhtml -> html Ignore-this: a82386c15ae7789b56b56ac4e8208d28
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 30 May 2016 22:03:23 +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)
"""