1 /* === S Y N F I G ========================================================= */
2 /*! \file groupactionmanager.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007 Chris Moore
11 ** This package is free software; you can redistribute it and/or
12 ** modify it under the terms of the GNU General Public License as
13 ** published by the Free Software Foundation; either version 2 of
14 ** the License, or (at your option) any later version.
16 ** This package is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ** General Public License for more details.
22 /* ========================================================================= */
24 /* === H E A D E R S ======================================================= */
33 #include "groupactionmanager.h"
34 #include "layergrouptree.h"
35 #include <synfigapp/action_param.h>
37 #include <gtkmm/stock.h>
41 /* === U S I N G =========================================================== */
45 using namespace synfig;
46 using namespace studio;
48 static const guint no_prev_popup((guint)-1);
50 /* === M A C R O S ========================================================= */
52 //#define ONE_ACTION_GROUP 1
54 /* === G L O B A L S ======================================================= */
56 /* === P R O C E D U R E S ================================================= */
58 /* === M E T H O D S ======================================================= */
60 GroupActionManager::GroupActionManager():
61 action_group_(Gtk::ActionGroup::create()),
62 popup_id_(no_prev_popup),
67 GroupActionManager::~GroupActionManager()
72 GroupActionManager::set_ui_manager(const Glib::RefPtr<Gtk::UIManager> &x)
76 #ifdef ONE_ACTION_GROUP
77 if(ui_manager_) get_ui_manager()->remove_action_group(action_group_);
79 if(ui_manager_) get_ui_manager()->insert_action_group(action_group_);
86 GroupActionManager::set_group_tree(LayerGroupTree* x)
88 selection_changed_connection.disconnect();
92 selection_changed_connection=group_tree_->get_selection()->signal_changed().connect(
93 sigc::mem_fun(*this,&GroupActionManager::queue_refresh)
99 GroupActionManager::set_canvas_interface(const etl::handle<synfigapp::CanvasInterface> &x)
105 GroupActionManager::clear()
109 // Clear out old stuff
110 if(popup_id_!=no_prev_popup)
112 get_ui_manager()->remove_ui(popup_id_);
113 popup_id_=no_prev_popup;
114 action_group_->set_sensitive(false);
115 #ifdef ONE_ACTION_GROUP
116 while(!action_group_->get_actions().empty())action_group_->remove(*action_group_->get_actions().begin());
117 action_group_->set_sensitive(true);
119 get_ui_manager()->remove_action_group(action_group_);
120 action_group_=Gtk::ActionGroup::create();
127 GroupActionManager::queue_refresh()
132 //queue_refresh_connection.disconnect();
133 queue_refresh_connection=Glib::signal_idle().connect(
135 sigc::mem_fun(*this,&GroupActionManager::refresh),
144 GroupActionManager::refresh()
150 //queue_refresh_connection.disconnect();
156 // Make sure we are ready
157 if(!ui_manager_ || !group_tree_ || !canvas_interface_)
159 synfig::error("GroupActionManager::refresh(): Not ready!");
163 if(group_tree_->get_selection()->count_selected_rows()==0)
174 _("Add a New Group"),
179 &GroupActionManager::on_action_add
185 // bool multiple_selected(group_tree_->get_selection()->count_selected_rows()>1);
186 LayerGroupTree::LayerList selected_layers(group_tree_->get_selected_layers());
187 std::list<synfig::String> selected_groups(group_tree_->get_selected_groups());
189 synfig::info("selected_layers.size()=%d",selected_layers.size());
190 synfig::info("selected_groups.size()=%d",selected_groups.size());
193 bool canvas_set(false);
194 synfigapp::Action::ParamList param_list;
195 param_list.add("time",get_canvas_interface()->get_time());
196 param_list.add("canvas_interface",get_canvas_interface());
199 LayerGroupTree::LayerList::iterator iter;
201 for(iter=selected_layers.begin();iter!=selected_layers.end();++iter)
205 param_list.add("canvas",Canvas::Handle(Layer::Handle(*iter)->get_canvas()));
208 param_list.add("layer",Layer::Handle(*iter));
213 std::list<synfig::String>::iterator iter;
215 for(iter=selected_groups.begin();iter!=selected_groups.end();++iter)
217 param_list.add("group",(synfig::String)*iter);
223 param_list.add("canvas",Canvas::Handle(get_canvas_interface()->get_canvas()));
227 handle<studio::Instance>::cast_static(get_canvas_interface()->get_instance())->
228 add_actions_to_group(action_group_, ui_info, param_list, synfigapp::Action::CATEGORY_GROUP);
234 ui_info="<ui><popup action='menu-main'><menu action='menu-group'>"+ui_info+"</menu></popup></ui>";
235 popup_id_=get_ui_manager()->add_ui_from_string(ui_info);
239 get_ui_manager()->ensure_update();
242 #ifdef ONE_ACTION_GROUP
244 get_ui_manager()->insert_action_group(action_group_);
249 GroupActionManager::on_action_add()
251 LayerGroupTreeStore::Model model;
255 Gtk::TreeIter selected_iter;
257 if(group_tree_->get_selection()->count_selected_rows())
260 group_tree_->get_model()->get_iter(
261 (*group_tree_->get_selection()->get_selected_rows().begin())
264 if(selected_iter && selected_iter->parent())
265 group_name=(Glib::ustring)(*selected_iter->parent())[model.group_name]+'.';
268 group_name+=_("UnnamedGroup");
270 Gtk::TreePath path(group_tree_->get_model()->on_group_added(group_name));
272 group_tree_->expand_to_path(path);
273 group_tree_->set_cursor(path,true);