Put a space between the parameter name and its description when prompting for it.
[synfig.git] / synfig-studio / trunk / src / gtkmm / groupactionmanager.h
blob0e232f99ce42ef67e73d6f873bb772c96fb65065
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.
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
21 /* ========================================================================= */
23 /* === S T A R T =========================================================== */
25 #ifndef __SYNFIG_GROUP_ACTION_MANAGER_H
26 #define __SYNFIG_GROUP_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 ======================================= */
40 namespace studio {
42 class LayerGroupTree;
44 class GroupActionManager
46 Glib::RefPtr<Gtk::UIManager> ui_manager_;
47 LayerGroupTree* group_tree_;
48 etl::handle<synfigapp::CanvasInterface> canvas_interface_;
50 Glib::RefPtr<Gtk::ActionGroup> action_group_;
51 Gtk::UIManager::ui_merge_id popup_id_;
53 sigc::connection selection_changed_connection;
55 bool queued;
56 sigc::connection queue_refresh_connection;
58 private:
60 void on_action_add();
62 public:
63 void queue_refresh();
65 GroupActionManager();
66 ~GroupActionManager();
68 void set_ui_manager(const Glib::RefPtr<Gtk::UIManager> &x);
69 Glib::RefPtr<Gtk::UIManager> get_ui_manager()const { return ui_manager_; }
71 void set_group_tree(LayerGroupTree* x);
72 LayerGroupTree* get_group_tree()const { return group_tree_; }
74 void set_canvas_interface(const etl::handle<synfigapp::CanvasInterface> &x);
75 etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const { return canvas_interface_; }
77 void refresh();
78 void clear();
79 }; // END of GroupActionManager
81 }; // END of namespace studio
83 /* === E N D =============================================================== */
85 #endif