view flax/UI.py @ 1789:d8ae388a8076

autodeps: try pruning some unrelated patches Ignore-this: 5382b18ab437706b00ecc9dad6c08f0
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 07 Jun 2018 17:42:36 +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)
"""