annotate flax/UI.py @ 116:9ddea0c614ee

much prettier stdout, including a clock (so you can tell the server's running) much prettier stdout, including a clock (so you can tell the server's running) and channel updates only when the levels change, and throttled to every 100 updates even then.
author drewp
date Fri, 13 Jun 2003 06:15:28 +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 """