view flax/UI.py @ 1699:bbe05d5c6a8f

move rdfdb.service to rdfdb repo Ignore-this: 7245785c2345e5f745fbe1c45ba45b17
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 26 Apr 2018 08:22:19 +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)
"""