Files @ 0803fb42109d
Branch filter:

Location: light9/flax/textcues_to_cuelist

dmcc
we now have TkCueList, which is really cool. it doesn't provide editing
we now have TkCueList, which is really cool. it doesn't provide editing
yet, but you could almost nearly probably maybe run a show with it.
heck, i hope so.

some of the shifting/drawing problems were probably fixed.

cuelist1 got more bogus data to help populate the TkCueList.
#!/usr/bin/env python

import sys
from CueFaders import CueList, Cue

cuelist = CueList('cues/dolly')

for line in sys.stdin.readlines():
    line = line.strip()
    if not line:
        continue
    page, name = line.split(' ', 1)
    print page, '|', name
    newcue = Cue(name)
    newcue.page = page
    cuelist.add_cue(newcue)