annotate flax/UI.py @ 124:8de8a2f467db

The "T" function now creates TimedEvents with LinearBlenders for you The "T" function now creates TimedEvents with LinearBlenders for you (using the same LinearBlender). Thus, we don't need to specify linear anymore. The timeline seek bar was reading the length of track1 instead of the whole timeline. This is fixed.
author dmcc
date Fri, 13 Jun 2003 15:55:54 +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 """