view flax/UI.py @ 1449:b76017f0b622

more default namespaces for output n3 files. the empty one doesn't get used though :( Ignore-this: 2ced520db61a29f444c32588cbbcaada
author drewp@bigasterisk.com
date Sat, 11 Jun 2016 22:27:10 +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)
"""