annotate flax/UI.py @ 176:c8d24bd2a99e

CueFaders: autoload/shifting bug fixed CueFaders: autoload/shifting bug fixed mute button added cuenum attribute added cursor is visible in CueEditron Subcomposer: not a dummy! use DMXDUMMY=1 if you want to do dummy cues/dolly: changes from 7.8.2003 rehearsal
author dmcc
date Thu, 10 Jul 2003 02:57:12 +0000
parents 45b12307c695
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
45b12307c695 Initial revision
drewp
parents:
diff changeset
1 # Abstract UI widgets
45b12307c695 Initial revision
drewp
parents:
diff changeset
2
45b12307c695 Initial revision
drewp
parents:
diff changeset
3 class UI(Something):
45b12307c695 Initial revision
drewp
parents:
diff changeset
4 pass
45b12307c695 Initial revision
drewp
parents:
diff changeset
5
45b12307c695 Initial revision
drewp
parents:
diff changeset
6 class Scale(UI):
45b12307c695 Initial revision
drewp
parents:
diff changeset
7 def __init__(self, start, stop, res=0.001):
45b12307c695 Initial revision
drewp
parents:
diff changeset
8 pass
45b12307c695 Initial revision
drewp
parents:
diff changeset
9
45b12307c695 Initial revision
drewp
parents:
diff changeset
10 """ unfinished
45b12307c695 Initial revision
drewp
parents:
diff changeset
11 class Button(UI):
45b12307c695 Initial revision
drewp
parents:
diff changeset
12 def __init__(self, etc)
45b12307c695 Initial revision
drewp
parents:
diff changeset
13 """