1 /* === S Y N F I G ========================================================= */
2 /*! \file layeractionmanager.h
3 ** \brief Template Header
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === S T A R T =========================================================== */
25 #ifndef __SYNFIG_LAYER_ACTION_MANAGER_H
26 #define __SYNFIG_LAYER_ACTION_MANAGER_H
28 /* === H E A D E R S ======================================================= */
30 #include <gtkmm/uimanager.h>
31 #include <gtkmm/treeview.h>
32 #include <synfigapp/canvasinterface.h>
34 /* === M A C R O S ========================================================= */
36 /* === T Y P E D E F S ===================================================== */
38 /* === C L A S S E S & S T R U C T S ======================================= */
44 class LayerActionManager
46 Glib::RefPtr<Gtk::UIManager> ui_manager_;
47 //Glib::RefPtr<Gtk::TreeSelection> tree_selection_;
48 LayerTree* layer_tree_;
49 etl::handle<synfigapp::CanvasInterface> canvas_interface_;
51 Glib::RefPtr<Gtk::ActionGroup> action_group_;
52 Gtk::UIManager::ui_merge_id popup_id_;
55 Glib::RefPtr<Gtk::ActionGroup> action_group_copy_paste;
57 Glib::RefPtr<Gtk::Action> action_cut_;
58 Glib::RefPtr<Gtk::Action> action_copy_;
59 Glib::RefPtr<Gtk::Action> action_paste_;
61 Glib::RefPtr<Gtk::Action> action_amount_inc_;
62 Glib::RefPtr<Gtk::Action> action_amount_dec_;
63 Glib::RefPtr<Gtk::Action> action_amount_;
65 Glib::RefPtr<Gtk::Action> action_select_all_child_layers_;
66 sigc::connection select_all_child_layers_connection;
68 std::list<synfig::Layer::Handle> clipboard_;
70 sigc::connection selection_changed_connection;
73 sigc::connection queue_refresh_connection;
75 std::list<sigc::connection> update_connection_list;
80 void export_dup_nodes(synfig::Layer::Handle, synfig::Canvas::Handle, int &);
89 ~LayerActionManager();
91 void set_ui_manager(const Glib::RefPtr<Gtk::UIManager> &x);
92 Glib::RefPtr<Gtk::UIManager> get_ui_manager()const { return ui_manager_; }
94 void set_layer_tree(LayerTree* x);
95 LayerTree* get_layer_tree()const { return layer_tree_; }
97 void set_canvas_interface(const etl::handle<synfigapp::CanvasInterface> &x);
98 etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const { return canvas_interface_; }
100 etl::loose_handle<synfigapp::Instance> get_instance()const { return canvas_interface_->get_instance(); }
105 Glib::RefPtr<Gtk::Action> get_action_select_all_child_layers() { return action_select_all_child_layers_; }
106 }; // END of LayerActionManager
108 }; // END of namespace studio
110 /* === E N D =============================================================== */