view flax/UI.py @ 1210:8e8d778f9e21

use program name instead of 'root' for logger channel, so it's faster to see what a terminal is running Ignore-this: fdca118c7a00e52c1caa002d2523bfff
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 06 Jun 2015 19:13:39 +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)
"""