view flax/UI.py @ 1691:a18eb09762b7

move rdfdb to a new project Ignore-this: 8ce04a43895d1516cd7c14421840eeaf
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 18 Feb 2018 08:05:04 +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)
"""