1 /* === S Y N F I G ========================================================= */
2 /*! \file layertreestore.h
3 ** \brief Template Header
5 ** $Id: layertreestore.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_STUDIO_LAYERTREESTORE_H
26 #define __SYNFIG_STUDIO_LAYERTREESTORE_H
28 /* === H E A D E R S ======================================================= */
30 #include <gtkmm/treestore.h>
31 #include <synfigapp/canvasinterface.h>
32 #include <synfig/value.h>
33 #include <synfig/valuenode.h>
34 #include <gtkmm/treeview.h>
36 /* === M A C R O S ========================================================= */
38 /* === T Y P E D E F S ===================================================== */
40 /* === C L A S S E S & S T R U C T S ======================================= */
44 class LayerTreeStore : virtual public Gtk::TreeStore
47 -- ** -- P U B L I C T Y P E S ---------------------------------------------
52 class Model : public Gtk::TreeModel::ColumnRecord
55 Gtk::TreeModelColumn<Glib::RefPtr<Gdk::Pixbuf> > icon;
56 Gtk::TreeModelColumn<Glib::ustring> label;
57 Gtk::TreeModelColumn<Glib::ustring> name;
58 Gtk::TreeModelColumn<Glib::ustring> id;
60 Gtk::TreeModelColumn<synfig::Canvas::Handle> canvas;
62 Gtk::TreeModelColumn<Glib::ustring> tooltip;
65 Gtk::TreeModelColumn<bool> active;
66 Gtk::TreeModelColumn<synfig::Layer::Handle> layer;
67 Gtk::TreeModelColumn<synfig::Canvas::Handle> contained_canvas;
69 Gtk::TreeModelColumn<bool> children_lock;
71 Gtk::TreeModelColumn<float> z_depth;
72 Gtk::TreeModelColumn<int> index;
84 add(contained_canvas);
92 -- ** -- P U B L I C D A T A ------------------------------------------------
97 //! TreeModel for the layers
101 -- ** -- P R I V A T E D A T A ---------------------------------------------
106 etl::loose_handle<synfigapp::CanvasInterface> canvas_interface_;
108 Glib::RefPtr<Gdk::Pixbuf> layer_icon;
111 -- ** -- P R I V A T E M E T H O D S ---------------------------------------
117 -- ** -- P R O T E C T E D M E T H O D S -----------------------------------
121 virtual void set_value_impl (const Gtk::TreeModel::iterator& row, int column, const Glib::ValueBase& value);
122 virtual void get_value_vfunc (const Gtk::TreeModel::iterator& iter, int column, Glib::ValueBase& value)const;
124 virtual bool row_draggable_vfunc (const TreeModel::Path& path)const;
125 virtual bool drag_data_get_vfunc (const TreeModel::Path& path, Gtk::SelectionData& selection_data)const;
126 virtual bool drag_data_delete_vfunc (const TreeModel::Path& path);
127 virtual bool drag_data_received_vfunc (const TreeModel::Path& dest, const Gtk::SelectionData& selection_data);
128 virtual bool row_drop_possible_vfunc (const TreeModel::Path& dest, const Gtk::SelectionData& selection_data)const;
131 -- ** -- S I G N A L T E R M I N A L S -------------------------------------
136 bool on_layer_tree_event(GdkEvent *event);
138 void on_layer_new_description(synfig::Layer::Handle handle,synfig::String desc);
140 void on_layer_added(synfig::Layer::Handle handle);
142 void on_layer_removed(synfig::Layer::Handle handle);
144 void on_layer_inserted(synfig::Layer::Handle handle,int depth);
146 void on_layer_moved(synfig::Layer::Handle handle,int depth, synfig::Canvas::Handle canvas);
148 void on_layer_status_changed(synfig::Layer::Handle handle,bool);
150 void on_layer_lowered(synfig::Layer::Handle handle);
152 void on_layer_raised(synfig::Layer::Handle handle);
154 void on_layer_param_changed(synfig::Layer::Handle handle,synfig::String param_name);
156 //void on_value_node_added(synfig::ValueNode::Handle value_node);
158 //void on_value_node_deleted(synfig::ValueNode::Handle value_node);
160 //void on_value_node_changed(synfig::ValueNode::Handle value_node);
162 //void on_value_node_replaced(synfig::ValueNode::Handle replaced_value_node,synfig::ValueNode::Handle new_value_node);
164 bool find_layer_row_(const synfig::Layer::Handle &handle, synfig::Canvas::Handle canvas, Gtk::TreeModel::Children layers, Gtk::TreeModel::Children::iterator &iter, Gtk::TreeModel::Children::iterator &prev);
166 bool find_canvas_row_(synfig::Canvas::Handle canvas, synfig::Canvas::Handle parent, Gtk::TreeModel::Children layers, Gtk::TreeModel::Children::iterator &iter);
169 -- ** -- P U B L I C M E T H O D S -----------------------------------------
174 LayerTreeStore(etl::loose_handle<synfigapp::CanvasInterface> canvas_interface_);
177 etl::loose_handle<synfigapp::CanvasInterface> canvas_interface() { return canvas_interface_; }
178 etl::loose_handle<const synfigapp::CanvasInterface> canvas_interface()const { return canvas_interface_; }
179 etl::loose_handle<synfigapp::CanvasInterface> get_canvas_interface()const { return canvas_interface_; }
181 bool find_canvas_row(synfig::Canvas::Handle canvas, Gtk::TreeModel::Children::iterator &iter);
183 bool find_layer_row(const synfig::Layer::Handle &handle, Gtk::TreeModel::Children::iterator &iter);
185 bool find_prev_layer_row(const synfig::Layer::Handle &handle, Gtk::TreeModel::Children::iterator &iter);
191 void refresh_row(Gtk::TreeModel::Row &row);
193 void set_row_layer(Gtk::TreeRow &row,synfig::Layer::Handle &handle);
195 static int z_sorter(const Gtk::TreeModel::iterator &rhs,const Gtk::TreeModel::iterator &lhs);
196 static int index_sorter(const Gtk::TreeModel::iterator &rhs,const Gtk::TreeModel::iterator &lhs);
198 //void set_row_param(Gtk::TreeRow &row,synfig::Layer::Handle &handle,const std::string& name, const std::string& local_name, const synfig::ValueBase &value, etl::handle<synfig::ValueNode> value_node,synfig::ParamDesc *param_desc);
200 //virtual void set_row(Gtk::TreeRow row,synfigapp::ValueDesc value_desc);
201 static bool search_func(const Glib::RefPtr<TreeModel>&,int,const Glib::ustring&,const TreeModel::iterator&);
204 -- ** -- S T A T I C P U B L I C M E T H O D S ---------------------------
209 static Glib::RefPtr<LayerTreeStore> create(etl::loose_handle<synfigapp::CanvasInterface> canvas_interface_);
212 }; // END of class LayerTreeStore
214 }; // END of namespace studio
216 /* === E N D =============================================================== */