1 /* === S Y N F I G ========================================================= */
3 ** \brief Template Header
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007, 2008 Chris Moore
11 ** This package is free software; you can redistribute it and/or
12 ** modify it under the terms of the GNU General Public License as
13 ** published by the Free Software Foundation; either version 2 of
14 ** the License, or (at your option) any later version.
16 ** This package is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ** General Public License for more details.
22 /* ========================================================================= */
24 /* === S T A R T =========================================================== */
26 #ifndef __SYNFIG_STUDIO_DUCKMATIC_H
27 #define __SYNFIG_STUDIO_DUCKMATIC_H
29 /* === H E A D E R S ======================================================= */
35 #include <ETL/smart_ptr>
38 #include <synfig/vector.h>
39 #include <synfig/string.h>
40 #include <synfig/real.h>
41 #include <sigc++/signal.h>
42 #include <sigc++/object.h>
43 #include <synfig/time.h>
44 #include <synfig/color.h>
45 #include <ETL/smart_ptr>
48 #include <synfig/color.h>
49 #include <synfig/guidset.h>
51 /* === M A C R O S ========================================================= */
57 #ifndef __STRING_HASH__
58 #define __STRING_HASH__
61 # ifdef FUNCTIONAL_HASH_ON_STRING
62 HASH_MAP_NAMESPACE::hash<synfig::String> hasher_;
63 # else // FUNCTIONAL_HASH_ON_STRING
64 HASH_MAP_NAMESPACE::hash<const char*> hasher_;
65 # endif // FUNCTIONAL_HASH_ON_STRING
67 size_t operator()(const synfig::String& x)const
69 # ifdef FUNCTIONAL_HASH_ON_STRING
71 # else // FUNCTIONAL_HASH_ON_STRING
72 return hasher_(x.c_str());
73 # endif // FUNCTIONAL_HASH_ON_STRING
81 /* === T Y P E D E F S ===================================================== */
83 /* === C L A S S E S & S T R U C T S ======================================= */
85 namespace synfigapp { class ValueDesc; }
86 namespace synfig { class ParamDesc; }
94 class DuckDrag_Base : public etl::shared_object
97 virtual void begin_duck_drag(Duckmatic* duckmatic, const synfig::Vector& begin)=0;
98 virtual bool end_duck_drag(Duckmatic* duckmatic)=0;
99 virtual void duck_drag(Duckmatic* duckmatic, const synfig::Vector& vector)=0;
102 class DuckDrag_Translate : public DuckDrag_Base
104 synfig::Vector last_translate_;
105 synfig::Vector drag_offset_;
107 std::vector<synfig::Vector> positions;
110 void begin_duck_drag(Duckmatic* duckmatic, const synfig::Vector& begin);
111 bool end_duck_drag(Duckmatic* duckmatic);
112 void duck_drag(Duckmatic* duckmatic, const synfig::Vector& vector);
117 ** This class helps organize any of the devices displayed in
118 ** the work area that the user may want to interact with.
119 ** This includes ducks, beziers, and strokes
121 ** \note At some point I'll probably rename this class to "DuckOMatic".
125 friend class DuckDrag_Base;
126 friend class DuckDrag_Translate;
129 -- ** -- P U B L I C T Y P E S ---------------------------------------------
135 typedef HASH_MAP_CLASS<synfig::GUID,etl::smart_ptr<synfig::Point>,synfig::GUIDHash> DuckDataMap;
137 typedef std::map<synfig::GUID,etl::smart_ptr<synfig::Point> > DuckDataMap;
140 typedef studio::DuckMap DuckMap;
142 typedef studio::Duck Duck;
152 typedef Duck::Type Type;
154 typedef std::list<float> GuideList;
157 -- ** -- P R I V A T E D A T A ---------------------------------------------
166 DuckDataMap duck_data_share_map;
168 std::list<etl::handle<Stroke> > stroke_list_;
170 std::list<etl::handle<Stroke> > persistent_stroke_list_;
172 synfig::GUIDSet selected_ducks;
174 synfig::GUID last_duck_guid;
176 std::list<etl::handle<Bezier> > bezier_list_;
178 //! I cannot recall what this is for
179 //synfig::Vector snap;
181 etl::handle<DuckDrag_Base> duck_dragger_;
183 sigc::signal<void> signal_duck_selection_changed_;
185 sigc::signal<void> signal_strokes_changed_;
187 sigc::signal<void> signal_grid_changed_;
189 mutable sigc::signal<void> signal_sketch_saved_;
191 GuideList guide_list_x_;
192 GuideList guide_list_y_;
194 mutable synfig::String sketch_filename_;
197 -- ** -- P R O T E C T E D D A T A -----------------------------------------
202 etl::handle<Bezier> selected_bezier;
204 synfig::Time cur_time;
206 //! This flag is set if operations should snap to the grid
207 /*! \todo perhaps there should be two of these flags, one for each axis?
208 ** \see show_grid, grid_size */
213 //! This vector describes the grid size.
214 /*! \see grid_snap, show_grid */
215 synfig::Vector grid_size;
217 bool show_persistent_strokes;
222 -- ** -- P R I V A T E M E T H O D S ---------------------------------------
227 synfig::Vector last_translate_;
228 synfig::Vector drag_offset_;
230 //etl::handle<Duck> selected_duck;
234 -- ** -- P U B L I C M E T H O D S -----------------------------------------
240 virtual ~Duckmatic();
242 sigc::signal<void>& signal_duck_selection_changed() { return signal_duck_selection_changed_; }
243 sigc::signal<void>& signal_strokes_changed() { return signal_strokes_changed_; }
244 sigc::signal<void>& signal_grid_changed() { return signal_grid_changed_; }
245 sigc::signal<void>& signal_sketch_saved() { return signal_sketch_saved_; }
247 GuideList& get_guide_list_x() { return guide_list_x_; }
248 GuideList& get_guide_list_y() { return guide_list_y_; }
249 const GuideList& get_guide_list_x()const { return guide_list_x_; }
250 const GuideList& get_guide_list_y()const { return guide_list_y_; }
252 void set_guide_snap(bool x=true);
253 bool get_guide_snap()const { return guide_snap; }
254 void toggle_guide_snap() { set_guide_snap(!get_guide_snap()); }
256 //! Sets the state of the grid snap flag
257 void set_grid_snap(bool x=true);
259 //! Gets the state of the grid snap flag
260 bool get_grid_snap()const { return grid_snap; }
262 void enable_grid_snap() { set_grid_snap(true); }
264 void disable_grid_snap() { set_grid_snap(false); }
266 void toggle_grid_snap() { set_grid_snap(!grid_snap); }
268 synfig::Point snap_point_to_grid(const synfig::Point& x, float radius=0.1)const;
270 bool get_show_persistent_strokes()const { return show_persistent_strokes; }
271 void set_show_persistent_strokes(bool x);
273 //! Sets the size of the grid
274 void set_grid_size(const synfig::Vector &s);
276 //! Returns the size of the grid
277 const synfig::Vector &get_grid_size()const { return grid_size; }
280 const synfig::Time &get_time()const { return cur_time; }
282 bool get_axis_lock()const { return axis_lock; }
283 void set_axis_lock(bool x) { axis_lock=x; }
285 void set_time(synfig::Time x) { cur_time=x; }
287 bool is_duck_group_selectable(const etl::handle<Duck>& x)const;
289 //const DuckMap& duck_map()const { return duck_map; }
290 DuckList get_duck_list()const;
292 const std::list<etl::handle<Bezier> >& bezier_list()const { return bezier_list_; }
294 const std::list<etl::handle<Stroke> >& stroke_list()const { return stroke_list_; }
296 const std::list<etl::handle<Stroke> >& persistent_stroke_list()const { return persistent_stroke_list_; }
298 std::list<etl::handle<Stroke> >& persistent_stroke_list() { return persistent_stroke_list_; }
300 //! \todo We should modify this to support multiple selections
301 etl::handle<Duck> get_selected_duck()const;
303 DuckList get_selected_ducks()const;
305 //! Returns \a true if the given duck is currently selected
306 bool duck_is_selected(const etl::handle<Duck> &duck)const;
309 void refresh_selected_ducks();
311 void clear_selected_ducks();
313 int count_selected_ducks()const;
315 void toggle_select_duck(const etl::handle<Duck> &duck);
317 void select_duck(const etl::handle<Duck> &duck);
319 void toggle_select_ducks_in_box(const synfig::Vector& tl,const synfig::Vector& br);
321 void select_ducks_in_box(const synfig::Vector& tl,const synfig::Vector& br);
323 void unselect_duck(const etl::handle<Duck> &duck);
325 void start_duck_drag(const synfig::Vector& offset);
326 void translate_selected_ducks(const synfig::Vector& vector);
327 bool end_duck_drag();
329 void signal_edited_selected_ducks();
331 void signal_user_click_selected_ducks(int button);
334 etl::handle<Duck> find_similar_duck(etl::handle<Duck> duck);
335 etl::handle<Duck> add_similar_duck(etl::handle<Duck> duck);
337 void add_stroke(etl::smart_ptr<std::list<synfig::Point> > stroke_point_list, const synfig::Color& color=synfig::Color(0,0,0));
339 void add_persistent_stroke(etl::smart_ptr<std::list<synfig::Point> > stroke_point_list, const synfig::Color& color=synfig::Color(0,0,0));
341 void clear_persistent_strokes();
343 void add_duck(const etl::handle<Duck> &duck);
345 void add_bezier(const etl::handle<Bezier> &bezier);
347 void erase_duck(const etl::handle<Duck> &duck);
349 void erase_bezier(const etl::handle<Bezier> &bezier);
351 //! Returns the last duck added
352 etl::handle<Duck> last_duck()const;
354 etl::handle<Bezier> last_bezier()const;
356 //! \note parameter is in canvas coordinates
357 /*! A radius of "zero" will have an unlimited radius */
358 etl::handle<Duck> find_duck(synfig::Point pos, synfig::Real radius=0, Duck::Type type=Duck::TYPE_DEFAULT);
360 GuideList::iterator find_guide_x(synfig::Point pos, float radius=0.1);
361 GuideList::iterator find_guide_y(synfig::Point pos, float radius=0.1);
362 GuideList::const_iterator find_guide_x(synfig::Point pos, float radius=0.1)const { return const_cast<Duckmatic*>(this)->find_guide_x(pos,radius); }
363 GuideList::const_iterator find_guide_y(synfig::Point pos, float radius=0.1)const { return const_cast<Duckmatic*>(this)->find_guide_y(pos,radius); }
365 //! \note parameter is in canvas coordinates
366 /*! A radius of "zero" will have an unlimited radius */
367 //etl::handle<Bezier> find_bezier(synfig::Point pos, synfig::Real radius=0);
369 //! \note parameter is in canvas coordinates
370 /*! A radius of "zero" will have an unlimited radius */
371 etl::handle<Bezier> find_bezier(synfig::Point pos, synfig::Real radius=0, float* location=0);
373 etl::handle<Bezier> find_bezier(synfig::Point pos, synfig::Real scale, synfig::Real radius, float* location=0);
375 bool add_to_ducks(const synfigapp::ValueDesc& value_desc,etl::handle<CanvasView> canvas_view, const synfig::TransformStack& transform_stack_, synfig::ParamDesc *param_desc=0, int multiple=0);
378 void set_type_mask(Type x) { type_mask=x; }
381 Type get_type_mask()const { return type_mask; }
383 void select_all_ducks();
384 void unselect_all_ducks();
388 bool save_sketch(const synfig::String& filename)const;
389 bool load_sketch(const synfig::String& filename);
390 const synfig::String& get_sketch_filename()const { return sketch_filename_; }
392 void set_duck_dragger(etl::handle<DuckDrag_Base> x) { duck_dragger_=x; }
393 etl::handle<DuckDrag_Base> get_duck_dragger()const { return duck_dragger_; }
394 void clear_duck_dragger() { duck_dragger_=new DuckDrag_Translate(); }
395 }; // END of class Duckmatic
398 /*! \class Duckmatic::Push
400 class Duckmatic::Push
402 Duckmatic *duckmatic_;
404 std::list<etl::handle<Bezier> > bezier_list_;
405 std::list<etl::handle<Stroke> > stroke_list_;
406 DuckDataMap duck_data_share_map;
407 etl::handle<DuckDrag_Base> duck_dragger_;
412 Push(Duckmatic *duckmatic_);
415 }; // END of class Duckmatic::Push
417 /*! \struct Duckmatic::Bezier
419 struct Duckmatic::Bezier : public etl::shared_object
422 sigc::signal<void,float> signal_user_click_[5];
425 etl::handle<Duck> p1,p2,c1,c2;
426 bool is_valid()const { return p1 && p2 && c1 && c2; }
428 sigc::signal<void,float> &signal_user_click(int i=0) { assert(i>=0); assert(i<5); return signal_user_click_[i]; }
429 }; // END of struct Duckmatic::Bezier
431 /*! \struct Duckmatic::Stroke
433 struct Duckmatic::Stroke : public etl::shared_object
436 sigc::signal<void,float> signal_user_click_[5];
439 etl::smart_ptr<std::list<synfig::Point> > stroke_data;
443 bool is_valid()const { return (bool)stroke_data; }
445 sigc::signal<void,float> &signal_user_click(int i=0) { assert(i>=0); assert(i<5); return signal_user_click_[i]; }
446 }; // END of struct Duckmatic::Stroke
448 }; // END of namespace studio
450 /* === E N D =============================================================== */