[pitivi: 7/9] Make group and ungroup sensitive (or not) based on the current selection.
- From: Edward Hervey <edwardrv src gnome org>
- To: svn-commits-list gnome org
- Subject: [pitivi: 7/9] Make group and ungroup sensitive (or not) based on the current selection.
- Date: Fri, 8 May 2009 04:44:40 -0400 (EDT)
commit cec9484acc8de21d0594b48ed3699603ebe3a5c2
Author: Alessandro Decina <alessandro d gmail com>
Date: Thu May 7 17:41:24 2009 +0200
Make group and ungroup sensitive (or not) based on the current selection.
---
pitivi/ui/timeline.py | 23 ++++++++++++++++++++++-
1 files changed, 22 insertions(+), 1 deletions(-)
diff --git a/pitivi/ui/timeline.py b/pitivi/ui/timeline.py
index a7786b5..765ba54 100644
--- a/pitivi/ui/timeline.py
+++ b/pitivi/ui/timeline.py
@@ -205,6 +205,8 @@ class Timeline(gtk.Table, Loggable, Zoomable):
actiongroup.add_actions(selection_actions)
self.link_action = actiongroup.get_action("LinkObj")
self.unlink_action = actiongroup.get_action("UnlinkObj")
+ self.group_action = actiongroup.get_action("GroupObj")
+ self.ungroup_action = actiongroup.get_action("UngroupObj")
self.delete_action = actiongroup.get_action("DeleteObj")
self.ui_manager.insert_action_group(actiongroup)
@@ -378,17 +380,36 @@ class Timeline(gtk.Table, Loggable, Zoomable):
delete = False
link = False
unlink = False
+ group = False
+ ungroup = False
+ timeline_objects = {}
if timeline.selection:
delete = True
if len(timeline.selection) > 1:
link = True
+ group = True
+
+ start = None
+ duration = None
for obj in self.timeline.selection:
if obj.link:
unlink = True
- break
+
+ if len(obj.track_objects) > 1:
+ ungroup = True
+
+ if start is not None and duration is not None:
+ if obj.start != start or obj.duration != duration:
+ group = False
+ else:
+ start = obj.start
+ duration = obj.duration
+
self.delete_action.set_sensitive(delete)
self.link_action.set_sensitive(link)
self.unlink_action.set_sensitive(unlink)
+ self.group_action.set_sensitive(group)
+ self.ungroup_action.set_sensitive(ungroup)
## ToolBar callbacks
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]