2b160cf204bc2bb91e23ec87c904343a724c4fe2
[synfig.git] / synfig-studio / trunk / src / gtkmm / duckmatic.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file duckmatic.h
3 **      \brief Template Header
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007 Chris Moore
10 **
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.
15 **
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.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === S T A R T =========================================================== */
25
26 #ifndef __SYNFIG_STUDIO_DUCKMATIC_H
27 #define __SYNFIG_STUDIO_DUCKMATIC_H
28
29 /* === H E A D E R S ======================================================= */
30
31 #include <list>
32 #include <map>
33 #include <set>
34
35 #include <ETL/smart_ptr>
36 #include <ETL/handle>
37
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>
46
47 #include "duck.h"
48 #include <synfig/color.h>
49 #include <synfig/guidset.h>
50
51 /* === M A C R O S ========================================================= */
52
53 #ifdef HASH_MAP_H
54 #include HASH_MAP_H
55 #include FUNCTIONAL_H
56
57 #ifndef __STRING_HASH__
58 #define __STRING_HASH__
59 class StringHash
60 {
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
66 public:
67         size_t operator()(const synfig::String& x)const
68         {
69 # ifdef FUNCTIONAL_HASH_ON_STRING
70                 return hasher_(x);
71 # else  // FUNCTIONAL_HASH_ON_STRING
72                 return hasher_(x.c_str());
73 # endif  // FUNCTIONAL_HASH_ON_STRING
74         }
75 };
76 #endif
77 #else
78 #include <map>
79 #endif
80
81 /* === T Y P E D E F S ===================================================== */
82
83 /* === C L A S S E S & S T R U C T S ======================================= */
84
85 namespace synfigapp { class ValueDesc; }
86 namespace synfig { class ParamDesc; }
87
88 namespace studio
89 {
90
91 class CanvasView;
92 class Duckmatic;
93
94 class DuckDrag_Base : public etl::shared_object
95 {
96 public:
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;
100 };
101
102 class DuckDrag_Translate : public DuckDrag_Base
103 {
104         synfig::Vector last_translate_;
105         synfig::Vector drag_offset_;
106         synfig::Vector snap;
107         std::vector<synfig::Vector> positions;
108
109 public:
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);
113 };
114
115 /*! \class Duckmatic
116 **
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
120 **
121 **      \note At some point I'll probably rename this class to "DuckOMatic".
122 */
123 class Duckmatic
124 {
125         friend class DuckDrag_Base;
126         friend class DuckDrag_Translate;
127
128         /*
129  -- ** -- P U B L I C   T Y P E S ---------------------------------------------
130         */
131
132 public:
133
134 #ifdef HASH_MAP_H
135 typedef HASH_MAP_CLASS<synfig::GUID,etl::smart_ptr<synfig::Point>,synfig::GUIDHash> DuckDataMap;
136 #else
137 typedef std::map<synfig::GUID,etl::smart_ptr<synfig::Point> > DuckDataMap;
138 #endif
139
140         typedef studio::DuckMap DuckMap;
141
142         typedef studio::Duck Duck;
143
144         struct Stroke;
145
146         struct Bezier;
147
148         class Push;
149
150         friend class Push;
151
152         typedef Duck::Type Type;
153
154         typedef std::list<float> GuideList;
155
156         /*
157  -- ** -- P R I V A T E   D A T A ---------------------------------------------
158         */
159
160 private:
161
162         Type type_mask;
163
164         DuckMap duck_map;
165
166         DuckDataMap duck_data_share_map;
167
168         std::list<etl::handle<Stroke> > stroke_list_;
169
170         std::list<etl::handle<Stroke> > persistent_stroke_list_;
171
172         synfig::GUIDSet selected_ducks;
173
174         synfig::GUID last_duck_guid;
175
176         std::list<etl::handle<Bezier> > bezier_list_;
177
178         //! I cannot recall what this is for
179         //synfig::Vector snap;
180
181         etl::handle<DuckDrag_Base> duck_dragger_;
182
183         sigc::signal<void> signal_duck_selection_changed_;
184
185         sigc::signal<void> signal_strokes_changed_;
186
187         sigc::signal<void> signal_grid_changed_;
188
189         mutable sigc::signal<void> signal_sketch_saved_;
190
191         GuideList guide_list_x_;
192         GuideList guide_list_y_;
193
194         mutable synfig::String sketch_filename_;
195
196         //! whether the display is flipped vertically or horizontally
197         bool flip_x_, flip_y_;
198
199         /*
200  -- ** -- P R O T E C T E D   D A T A -----------------------------------------
201         */
202
203 protected:
204
205         etl::handle<Bezier> selected_bezier;
206
207         synfig::Time cur_time;
208
209         //! This flag is set if operations should snap to the grid
210         /*! \todo perhaps there should be two of these flags, one for each axis?
211         **      \see show_grid, grid_size */
212         bool grid_snap;
213
214         bool guide_snap;
215
216         //! This vector describes the grid size.
217         /*! \see grid_snap, show_grid */
218         synfig::Vector grid_size;
219
220         bool show_persistent_strokes;
221
222         bool axis_lock;
223
224         /*
225  -- ** -- P R I V A T E   M E T H O D S ---------------------------------------
226         */
227
228 private:
229
230         synfig::Vector last_translate_;
231         synfig::Vector drag_offset_;
232
233         //etl::handle<Duck> selected_duck;
234
235
236         /*
237  -- ** -- P U B L I C   M E T H O D S -----------------------------------------
238         */
239
240 public:
241
242         Duckmatic();
243         virtual ~Duckmatic();
244
245         void set_flip_x(bool flip_x);
246         void set_flip_y(bool flip_y);
247
248         sigc::signal<void>& signal_duck_selection_changed() { return signal_duck_selection_changed_; }
249         sigc::signal<void>& signal_strokes_changed() { return signal_strokes_changed_; }
250         sigc::signal<void>& signal_grid_changed() { return signal_grid_changed_; }
251         sigc::signal<void>& signal_sketch_saved() { return signal_sketch_saved_; }
252
253         GuideList& get_guide_list_x() { return guide_list_x_; }
254         GuideList& get_guide_list_y() { return guide_list_y_; }
255         const GuideList& get_guide_list_x()const { return guide_list_x_; }
256         const GuideList& get_guide_list_y()const { return guide_list_y_; }
257
258         void set_guide_snap(bool x=true);
259         bool get_guide_snap()const { return guide_snap; }
260         void toggle_guide_snap() { set_guide_snap(!get_guide_snap()); }
261
262         //! Sets the state of the grid snap flag
263         void set_grid_snap(bool x=true);
264
265         //! Gets the state of the grid snap flag
266         bool get_grid_snap()const { return grid_snap; }
267
268         void enable_grid_snap() { set_grid_snap(true); }
269
270         void disable_grid_snap() { set_grid_snap(false); }
271
272         void toggle_grid_snap() { set_grid_snap(!grid_snap); }
273
274         synfig::Point snap_point_to_grid(const synfig::Point& x, float radius=0.1)const;
275
276         bool get_show_persistent_strokes()const { return show_persistent_strokes; }
277         void set_show_persistent_strokes(bool x);
278
279         //! Sets the size of the grid
280         void set_grid_size(const synfig::Vector &s);
281
282         //! Returns the size of the grid
283         const synfig::Vector &get_grid_size()const { return grid_size; }
284
285
286         const synfig::Time &get_time()const { return cur_time; }
287
288         bool get_axis_lock()const { return axis_lock; }
289         void set_axis_lock(bool x) { axis_lock=x; }
290
291         void set_time(synfig::Time x) { cur_time=x; }
292
293         bool is_duck_group_selectable(const etl::handle<Duck>& x)const;
294
295         //const DuckMap& duck_map()const { return duck_map; }
296         DuckList get_duck_list()const;
297
298         const std::list<etl::handle<Bezier> >& bezier_list()const { return bezier_list_; }
299
300         const std::list<etl::handle<Stroke> >& stroke_list()const { return stroke_list_; }
301
302         const std::list<etl::handle<Stroke> >& persistent_stroke_list()const { return persistent_stroke_list_; }
303
304         std::list<etl::handle<Stroke> >& persistent_stroke_list() { return persistent_stroke_list_; }
305
306         //! \todo We should modify this to support multiple selections
307         etl::handle<Duck> get_selected_duck()const;
308
309         DuckList get_selected_ducks()const;
310
311         //! Returns \a true if the given duck is currently selected
312         bool duck_is_selected(const etl::handle<Duck> &duck)const;
313
314
315         void refresh_selected_ducks();
316
317         void clear_selected_ducks();
318
319         int count_selected_ducks()const;
320
321         void toggle_select_duck(const etl::handle<Duck> &duck);
322
323         void select_duck(const etl::handle<Duck> &duck);
324
325         void toggle_select_ducks_in_box(const synfig::Vector& tl,const synfig::Vector& br);
326
327         void select_ducks_in_box(const synfig::Vector& tl,const synfig::Vector& br);
328
329         void unselect_duck(const etl::handle<Duck> &duck);
330
331         void start_duck_drag(const synfig::Vector& offset);
332         void translate_selected_ducks(const synfig::Vector& vector);
333         bool end_duck_drag();
334
335         void signal_edited_selected_ducks();
336
337         void signal_user_click_selected_ducks(int button);
338
339
340         etl::handle<Duck> find_similar_duck(etl::handle<Duck> duck);
341         etl::handle<Duck> add_similar_duck(etl::handle<Duck> duck);
342
343         void add_stroke(etl::smart_ptr<std::list<synfig::Point> > stroke_point_list, const synfig::Color& color=synfig::Color(0,0,0));
344
345         void add_persistent_stroke(etl::smart_ptr<std::list<synfig::Point> > stroke_point_list, const synfig::Color& color=synfig::Color(0,0,0));
346
347         void clear_persistent_strokes();
348
349         void add_duck(const etl::handle<Duck> &duck);
350
351         void add_bezier(const etl::handle<Bezier> &bezier);
352
353         void erase_duck(const etl::handle<Duck> &duck);
354
355         void erase_bezier(const etl::handle<Bezier> &bezier);
356
357         //! Returns the last duck added
358         etl::handle<Duck> last_duck()const;
359
360         etl::handle<Bezier> last_bezier()const;
361
362         //! \note parameter is in canvas coordinates
363         /*!     A radius of "zero" will have an unlimited radius */
364         etl::handle<Duck> find_duck(synfig::Point pos, synfig::Real radius=0, Duck::Type type=Duck::TYPE_DEFAULT);
365
366         GuideList::iterator find_guide_x(synfig::Point pos, float radius=0.1);
367         GuideList::iterator find_guide_y(synfig::Point pos, float radius=0.1);
368         GuideList::const_iterator find_guide_x(synfig::Point pos, float radius=0.1)const { return const_cast<Duckmatic*>(this)->find_guide_x(pos,radius); }
369         GuideList::const_iterator find_guide_y(synfig::Point pos, float radius=0.1)const { return const_cast<Duckmatic*>(this)->find_guide_y(pos,radius); }
370
371         //! \note parameter is in canvas coordinates
372         /*!     A radius of "zero" will have an unlimited radius */
373         //etl::handle<Bezier> find_bezier(synfig::Point pos, synfig::Real radius=0);
374
375         //! \note parameter is in canvas coordinates
376         /*!     A radius of "zero" will have an unlimited radius */
377         etl::handle<Bezier> find_bezier(synfig::Point pos, synfig::Real radius=0, float* location=0);
378
379         etl::handle<Bezier> find_bezier(synfig::Point pos, synfig::Real scale, synfig::Real radius, float* location=0);
380
381         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);
382
383         //! \writeme
384         void set_type_mask(Type x) { type_mask=x; }
385
386         //! \writeme
387         Type get_type_mask()const { return type_mask; }
388
389         void select_all_ducks();
390
391         void clear_ducks();
392
393         bool save_sketch(const synfig::String& filename)const;
394         bool load_sketch(const synfig::String& filename);
395         const synfig::String& get_sketch_filename()const { return sketch_filename_; }
396
397         void set_duck_dragger(etl::handle<DuckDrag_Base> x) { duck_dragger_=x; }
398         etl::handle<DuckDrag_Base> get_duck_dragger()const { return duck_dragger_; }
399         void clear_duck_dragger() { duck_dragger_=new DuckDrag_Translate(); }
400 }; // END of class Duckmatic
401
402
403 /*! \class Duckmatic::Push
404 **      \writeme */
405 class Duckmatic::Push
406 {
407         Duckmatic *duckmatic_;
408         DuckMap duck_map;
409         std::list<etl::handle<Bezier> > bezier_list_;
410         std::list<etl::handle<Stroke> > stroke_list_;
411         DuckDataMap duck_data_share_map;
412         etl::handle<DuckDrag_Base> duck_dragger_;
413
414         bool needs_restore;
415
416 public:
417         Push(Duckmatic *duckmatic_);
418         ~Push();
419         void restore();
420 }; // END of class Duckmatic::Push
421
422 /*! \struct Duckmatic::Bezier
423 **      \writeme */
424 struct Duckmatic::Bezier : public etl::shared_object
425 {
426 private:
427         sigc::signal<void,float> signal_user_click_[5];
428 public:
429
430         etl::handle<Duck> p1,p2,c1,c2;
431         bool is_valid()const { return p1 && p2 && c1 && c2; }
432
433         sigc::signal<void,float> &signal_user_click(int i=0) { assert(i>=0); assert(i<5); return signal_user_click_[i]; }
434 }; // END of struct Duckmatic::Bezier
435
436 /*! \struct Duckmatic::Stroke
437 **      \writeme */
438 struct Duckmatic::Stroke : public etl::shared_object
439 {
440 private:
441         sigc::signal<void,float> signal_user_click_[5];
442 public:
443
444         etl::smart_ptr<std::list<synfig::Point> > stroke_data;
445
446         synfig::Color color;
447
448         bool is_valid()const { return (bool)stroke_data; }
449
450         sigc::signal<void,float> &signal_user_click(int i=0) { assert(i>=0); assert(i<5); return signal_user_click_[i]; }
451 }; // END of struct Duckmatic::Stroke
452
453 }; // END of namespace studio
454
455 /* === E N D =============================================================== */
456
457 #endif