コード例 #1
0
ファイル: timeline_undo.py プロジェクト: superdump/pitivi
 def _propertyChangedCb(self, timeline_object, value, property_name):
     if not self._disabled:
         PropertyChangeTracker._propertyChangedCb(self,
                 timeline_object, value, property_name)
コード例 #2
0
ファイル: timeline_undo.py プロジェクト: superdump/pitivi
 def disconnectFromObject(self, obj):
     self.timeline.disconnect_by_func(self._timelineDisableUpdatesCb)
     PropertyChangeTracker.disconnectFromObject(self, obj)
コード例 #3
0
ファイル: timeline_undo.py プロジェクト: superdump/pitivi
 def connectToObject(self, obj):
     PropertyChangeTracker.connectToObject(self, obj)
     self.timeline = obj.timeline
     self.timeline.connect("disable-updates", self._timelineDisableUpdatesCb)
コード例 #4
0
ファイル: timeline_undo.py プロジェクト: qlf/Pitivi
 def _propertyChangedCb(self, timeline_object, value, property_name):
     if not self._disabled:
         PropertyChangeTracker._propertyChangedCb(self,
                 timeline_object, value, property_name)
コード例 #5
0
ファイル: timeline_undo.py プロジェクト: qlf/Pitivi
 def disconnectFromObject(self, obj):
     self.timeline.disconnect_by_func(self._timelineDisableUpdatesCb)
     PropertyChangeTracker.disconnectFromObject(self, obj)
コード例 #6
0
ファイル: timeline_undo.py プロジェクト: qlf/Pitivi
 def connectToObject(self, obj):
     PropertyChangeTracker.connectToObject(self, obj)
     self.timeline = obj.timeline
     self.timeline.connect("disable-updates", self._timelineDisableUpdatesCb)