Lines Matching full:clipboard
59 self.clipBoard = None
891 self.clipBoard = None
1076 """ Copies the current segment or event to the clipboard """
1084 self.clipBoard = JetCutCopy(self.currentCtrl, segment, self.currentSegmentName)
1100 self.clipBoard = JetCutCopy(self.currentCtrl, curEvent, self.currentSegmentName)
1104 """ Cuts the current segment or event to the clipboard """
1114 """ Pastes the current segment or event from the clipboard """
1115 if self.clipBoard is not None:
1116 if self.currentCtrl == JetDefs.MAIN_SEGLIST and self.clipBoard.objType == JetDefs.MAIN_SEGLIST:
1118 self.jet_file.segments.append(self.clipBoard.GetObj(self.jet_file.segments))
1121 elif self.currentCtrl == JetDefs.MAIN_EVENTLIST and self.clipBoard.objType == JetDefs.MAIN_EVENTLIST and self.clipBoard.currentSegmentName == self.currentSegmentName:
1125 segment.jetevents.append(self.clipBoard.GetObj(segment.jetevents))