Ejemplo n.º 1
0
 def cue_list(self, parsed_input):
     '''List all cues in the effects plot.'''
     self.interface.open('CUE')
     for cue in self.plot_file.cues:
         action = cuestring.get_action_string(cue.action, self.plot_file)
         location = cuestring.get_location_string(cue.location, 
                                                  self.plot_file)
         s = action+' at '+location
         self.interface.add(s, cue, 'CUE')
Ejemplo n.º 2
0
 def location_list(self, parsed_input):
     '''List cue locations made in this session.'''
     self.interface.open('LOC')
     for location in self.cue_locations:
         s = cuestring.get_location_string(location, self.plot_file)
         self.interface.add(s, location, 'LOC')