view flax/UI.py @ 1344:01f7ece0cb13

refactor rdfdb: Db doesn't make Client objects Ignore-this: 205ebf0d96f84d12df5dd88798ad097e
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 05 Jun 2016 00:43:21 +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)
"""