1 /* === S Y N F I G ========================================================= */
3 ** \brief Template Header
5 ** $Id: layeractionmanager.h,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
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.
21 /* ========================================================================= */
23 /* === S T A R T =========================================================== */
25 #ifndef __SYNFIG_LAYER_ACTION_MANAGER_H
26 #define __SYNFIG_LAYER_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 ======================================= */
44 class LayerActionManager
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_;
51 Glib::RefPtr<Gtk::ActionGroup> action_group_;
52 Gtk::UIManager::ui_merge_id popup_id_;
55 Glib::RefPtr<Gtk::ActionGroup> action_group_copy_paste;
57 Glib::RefPtr<Gtk::Action> action_cut_;
58 Glib::RefPtr<Gtk::Action> action_copy_;
59 Glib::RefPtr<Gtk::Action> action_paste_;
61 Glib::RefPtr<Gtk::Action> action_amount_inc_;
62 Glib::RefPtr<Gtk::Action> action_amount_dec_;
63 Glib::RefPtr<Gtk::Action> action_amount_;
66 std::list<synfig::Layer::Handle> clipboard_;
69 sigc::connection selection_changed_connection;
72 sigc::connection queue_refresh_connection;
74 std::list<sigc::connection> update_connection_list;
87 ~LayerActionManager();
89 void set_ui_manager(const Glib::RefPtr<Gtk::UIManager> &x);
90 Glib::RefPtr<Gtk::UIManager> get_ui_manager()const { return ui_manager_; }
92 void set_layer_tree(LayerTree* x);
93 LayerTree* get_layer_tree()const { return layer_tree_; }
95 void set_canvas_interface(const etl::handle<synfigapp::CanvasInterface> &x);
96 etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const { return canvas_interface_; }
98 etl::loose_handle<synfigapp::Instance> get_instance()const { return canvas_interface_->get_instance(); }
102 }; // END of LayerActionManager
104 }; // END of namespace studio
106 /* === E N D =============================================================== */