Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_07 / src / gtkmm / groupactionmanager.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file groupactionmanager.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_GROUP_ACTION_MANAGER_H
26 #define __SYNFIG_GROUP_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 LayerGroupTree;
43
44 class GroupActionManager
45 {
46         Glib::RefPtr<Gtk::UIManager> ui_manager_;
47         LayerGroupTree* group_tree_;
48         etl::handle<synfigapp::CanvasInterface> canvas_interface_;
49
50         Glib::RefPtr<Gtk::ActionGroup>  action_group_;
51         Gtk::UIManager::ui_merge_id     popup_id_;
52
53         sigc::connection selection_changed_connection;
54
55         bool queued;
56         sigc::connection queue_refresh_connection;
57
58 private:
59
60         void on_action_add();
61
62 public:
63         void queue_refresh();
64
65         GroupActionManager();
66         ~GroupActionManager();
67
68         void set_ui_manager(const Glib::RefPtr<Gtk::UIManager> &x);
69         Glib::RefPtr<Gtk::UIManager> get_ui_manager()const { return ui_manager_; }
70
71         void set_group_tree(LayerGroupTree* x);
72         LayerGroupTree* get_group_tree()const { return group_tree_; }
73
74         void set_canvas_interface(const etl::handle<synfigapp::CanvasInterface> &x);
75         etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const { return canvas_interface_; }
76
77         void refresh();
78         void clear();
79 }; // END of GroupActionManager
80
81 }; // END of namespace studio
82
83 /* === E N D =============================================================== */
84
85 #endif