view flax/UI.py @ 1766:5f9d22f9c85b

fix adjuster-drag coordinate bug. highlight nearby adj. Ignore-this: 169a65c9b2932d453a630ee8d68fc1cf
author drewp@bigasterisk.com
date Fri, 01 Jun 2018 01:39:40 +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)
"""