Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_07_rc3 / src / gtkmm / layeractionmanager.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file layeractionmanager.h
3 **      \brief Template Header
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
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.
14 **
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.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === S T A R T =========================================================== */
24
25 #ifndef __SYNFIG_LAYER_ACTION_MANAGER_H
26 #define __SYNFIG_LAYER_ACTION_MANAGER_H
27
28 /* === H E A D E R S ======================================================= */
29
30 #include <gtkmm/uimanager.h>
31 #include <gtkmm/treeview.h>
32 #include <synfigapp/canvasinterface.h>
33
34 /* === M A C R O S ========================================================= */
35
36 /* === T Y P E D E F S ===================================================== */
37
38 /* === C L A S S E S & S T R U C T S ======================================= */
39
40 namespace studio {
41
42 class LayerTree;
43
44 class LayerActionManager
45 {
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_;
50
51         Glib::RefPtr<Gtk::ActionGroup>  action_group_;
52         Gtk::UIManager::ui_merge_id     popup_id_;
53
54
55         Glib::RefPtr<Gtk::ActionGroup> action_group_copy_paste;
56
57         Glib::RefPtr<Gtk::Action>       action_cut_;
58         Glib::RefPtr<Gtk::Action>       action_copy_;
59         Glib::RefPtr<Gtk::Action>       action_paste_;
60
61         Glib::RefPtr<Gtk::Action>       action_amount_inc_;
62         Glib::RefPtr<Gtk::Action>       action_amount_dec_;
63         Glib::RefPtr<Gtk::Action>       action_amount_;
64
65
66         std::list<synfig::Layer::Handle> clipboard_;
67
68
69         sigc::connection selection_changed_connection;
70
71         bool queued;
72         sigc::connection queue_refresh_connection;
73
74         std::list<sigc::connection> update_connection_list;
75
76         void cut();
77         void copy();
78         void paste();
79
80         void amount_inc();
81         void amount_dec();
82
83 public:
84         void queue_refresh();
85
86         LayerActionManager();
87         ~LayerActionManager();
88
89         void set_ui_manager(const Glib::RefPtr<Gtk::UIManager> &x);
90         Glib::RefPtr<Gtk::UIManager> get_ui_manager()const { return ui_manager_; }
91
92         void set_layer_tree(LayerTree* x);
93         LayerTree* get_layer_tree()const { return layer_tree_; }
94
95         void set_canvas_interface(const etl::handle<synfigapp::CanvasInterface> &x);
96         etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const { return canvas_interface_; }
97
98         etl::loose_handle<synfigapp::Instance> get_instance()const { return canvas_interface_->get_instance(); }
99
100         void refresh();
101         void clear();
102 }; // END of LayerActionManager
103
104 }; // END of namespace studio
105
106 /* === E N D =============================================================== */
107
108 #endif