예제 #1
0
파일: qeditor.py 프로젝트: jackdpage/pylux
 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')
예제 #2
0
파일: qeditor.py 프로젝트: jackdpage/pylux
 def action_list(self, parsed_input):
     '''List cue actions made in this session.'''
     self.interface.open('ACT')
     for action in self.cue_actions:
         s = cuestring.get_action_string(action, self.plot_file)
         self.interface.add(s, action, 'ACT')