view flax/UI.py @ 1315:b21e31c79f31

more timeline drawing code. cool zoom zigzag feature Ignore-this: 8f8f8d1c2d8ab6286d1a0efa0323a9b2
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 02 Jun 2016 06:40:12 +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)
"""