view flax/UI.py @ 862:ee07ea5cd46b

start makefile for tkdnd build Ignore-this: 4fbfd8185354989db9a1db4449710c2e
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 06 Jun 2013 04:16:47 +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)
"""