view flax/UI.py @ 998:08814a44ae4e

emergency fix to playlist, which was getting other non-song junk because of some bnode corruption problem Ignore-this: c3608bd16c6d5a539e6c96bf737a24ef
author drewp@bigasterisk.com
date Sun, 16 Jun 2013 20:12:46 +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)
"""