view flax/UI.py @ 807:3fe281a3be70

rdfdb: try different inotify event mask to not miss events Ignore-this: 2845e718db6e7d313af8f454a1e05a8
author drewp@bigasterisk.com
date Wed, 18 Jul 2012 18:08:12 +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)
"""