view flax/UI.py @ 859:9f771db2b0b6

don't react to inotify events that are just us reading the file Ignore-this: 5bbb75a72e2db038b1891c5aa7cce8b0
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 06 Jun 2013 03:19:40 +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)
"""