view flax/UI.py @ 1702:c8543026d609

extract cursor-canvas code Ignore-this: 7c9fe7c56c173ca59458f8c29e743a84
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 29 Apr 2018 12:21:39 +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)
"""