view flax/UI.py @ 1547:3ca103d97f98

rdfdb don't error on dropping gone clients (even though that does seem like a bug) Ignore-this: d338eb86ee04305903e1803f789a27
author Drew Perttula <drewp@bigasterisk.com>
date Fri, 19 May 2017 07:48: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)
"""