view flax/UI.py @ 823:eefe63581d35

monkeypatch for rdflib that fixes a bug serializing floats Ignore-this: 86a4069b2c3bd64938d25413a10854a4
author drewp@bigasterisk.com
date Thu, 17 Jan 2013 03:58:01 +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)
"""