view flax/UI.py @ 1343:a214a9d6f2f0

refactor rdfdb: Client doesn't need Db at construction Ignore-this: 9a3591d13c4ff821dd6e543bf78f8583
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 05 Jun 2016 00:35:32 +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)
"""