view flax/UI.py @ 1561:e05656f00070

rdfdb graph.sequentialUri won't reuse ids even if you haven't used them in stmts yet Ignore-this: cb556ba9836041ef1ba7778081ced7a1
author Drew Perttula <drewp@bigasterisk.com>
date Wed, 24 May 2017 08:29:01 +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)
"""