Put a space between the parameter name and its description when prompting for it.
[synfig.git] / synfig-studio / trunk / src / gtkmm / keyframeactionmanager.h
blob9048a4243f384121eae8708fd76ba82153db08f2
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.
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_KEYFRAME_ACTION_MANAGER_H
26 #define __SYNFIG_KEYFRAME_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 KeyframeTree;
44 class KeyframeActionManager
46 sigc::signal<void> signal_show_keyframe_properties_;
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_;
53 Glib::RefPtr<Gtk::ActionGroup> action_group_;
54 Gtk::UIManager::ui_merge_id popup_id_;
57 sigc::connection selection_changed_connection;
59 bool queued;
60 sigc::connection queue_refresh_connection;
61 sigc::connection time_changed_connection;
63 void on_add_keyframe();
64 void on_keyframe_properties();
66 public:
67 sigc::signal<void>& signal_show_keyframe_properties() { return signal_show_keyframe_properties_; }
69 void queue_refresh();
71 KeyframeActionManager();
72 ~KeyframeActionManager();
74 void set_ui_manager(const Glib::RefPtr<Gtk::UIManager> &x);
75 Glib::RefPtr<Gtk::UIManager> get_ui_manager()const { return ui_manager_; }
77 void set_keyframe_tree(KeyframeTree* x);
78 KeyframeTree* get_keyframe_tree()const { return keyframe_tree_; }
80 void set_canvas_interface(const etl::handle<synfigapp::CanvasInterface> &x);
81 etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const { return canvas_interface_; }
83 void refresh();
84 void clear();
85 }; // END of KeyframeActionManager
87 }; // END of namespace studio
89 /* === E N D =============================================================== */
91 #endif