view flax/UI.py @ 633:3648a427e9a0

switch to usb_free_coherent and usb_alloc_coherent for new linux kernel Ignore-this: 6e4a0ad850b115888666e4cd930434ec
author Drew Perttula <drewp@bigasterisk.com>
date Wed, 15 Jun 2011 07:31:50 +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)
"""