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