Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / synfig / layer_pastecanvas.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file layer_pastecanvas.h
3 **      \brief Header file for implementation of the "Paste Canvas" layer
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007, 2008 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_LAYER_PASTEIMAGE_H
27 #define __SYNFIG_LAYER_PASTEIMAGE_H
28
29 /* === H E A D E R S ======================================================= */
30
31 #include "layer_composite.h"
32 #include "color.h"
33 #include "vector.h"
34 #include "real.h"
35 #include "time.h"
36 #include "canvasbase.h"
37 #include "canvas.h"
38 #include "rect.h"
39
40 /* === M A C R O S ========================================================= */
41
42 /* === T Y P E D E F S ===================================================== */
43
44 /* === C L A S S E S & S T R U C T S ======================================= */
45
46 namespace synfig {
47
48 class Layer_PasteCanvas : public Layer_Composite, public Layer_NoDeform
49 {
50         SYNFIG_LAYER_MODULE_EXT
51 private:
52
53         Vector origin;
54         Vector focus;
55
56         etl::loose_handle<synfig::Canvas> canvas;
57
58         //! Recursion depth counter
59         mutable int depth;
60
61         Real zoom;
62
63         Time time_offset;
64
65         mutable Time curr_time;
66
67         bool muck_with_time_;
68
69         bool children_lock;
70
71         mutable Rect bounds;
72
73         sigc::connection child_changed_connection;
74
75         // Nasty hack: Remember whether we called an extra ref() when
76         // setting the canvas, so we know whether to call an extra unref()
77         // when finished with the canvas.
78         //
79         // Here's the story:
80         //
81         // The root canvas is destructed first.  That sets the
82         // Layer::canvas_ (the parent canvas) of any PasteCanvas layer it
83         // contains to nil, due to a call to Layer::set_canvas(0),
84         // triggered by the connection made when Layer::set_canvas
85         // originally set its canvas_ member to point to the root canvas.
86         // ~Canvas does begin_delete() which triggers that connection.
87         //
88         // After ~Canvas has run, the members of the root canvas are
89         // freed, including its children_ list.  If this was the last
90         // reference to the child canvas that the pastecanvas uses, that
91         // child canvas will Layer_PasteCanvas::set_sub_canvas(0) on the
92         // PasteCanvas layer to set its canvas (the child, pasted canvas)
93         // not to refer to the soon-to-be destroys child canvas.  But
94         // set_sub_canvas() originally looked at the value of
95         // Layer::canvas_ (the parent canvas, obtained via
96         // Layer::get_canvas()) to decide whether to do an extra ref() on
97         // canvas (the child canvas).  We need to unref() it now if we
98         // did, but we've forgotten whether we did.  So we use this
99         // 'extra_reference' member to store that decision.
100         bool extra_reference;
101
102         /*
103  -- ** -- S I G N A L S -------------------------------------------------------
104         */
105
106 private:
107
108         sigc::signal<void> signal_subcanvas_changed_;
109
110         /*
111  -- ** -- S I G N A L   I N T E R F A C E -------------------------------------
112         */
113
114 public:
115
116         sigc::signal<void>& signal_subcanvas_changed() { return signal_subcanvas_changed_; }
117
118 public:
119
120         void update_renddesc();
121
122         virtual void on_canvas_set();
123
124         void set_muck_with_time(bool x=false) { muck_with_time_=x; }
125
126         etl::handle<synfig::Canvas> get_sub_canvas()const { return canvas; }
127         void set_sub_canvas(etl::handle<synfig::Canvas> x);
128
129         Real get_zoom()const { return zoom; }
130
131         Time get_time_offset()const { return time_offset; }
132
133         Point get_origin()const { return origin; }
134
135         Layer_PasteCanvas();
136         virtual ~Layer_PasteCanvas();
137
138         virtual String get_local_name()const;
139
140         virtual bool set_param(const String & param, const synfig::ValueBase &value);
141
142         virtual ValueBase get_param(const String & param)const;
143
144         virtual Color get_color(Context context, const Point &pos)const;
145
146         virtual void set_time(Context context, Time time)const;
147
148         virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
149
150         virtual Vocab get_param_vocab()const;
151
152         virtual synfig::Rect get_bounding_rect()const;
153
154         virtual synfig::Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;
155
156 protected:
157         virtual void get_times_vfunc(Node::time_set &set) const;
158
159 }; // END of class Layer_PasteCanvas
160
161 }; // END of namespace synfig
162
163 /* === E N D =============================================================== */
164
165 #endif