1 /* === S Y N F I G ========================================================= */
3 ** \brief Layer Class Header
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 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_LAYER_H
27 #define __SYNFIG_LAYER_H
29 /* === H E A D E R S ======================================================= */
31 #include "string_decl.h"
36 #include <sigc++/signal.h>
37 #include <sigc++/connection.h>
42 /* === M A C R O S ========================================================= */
45 #define SYNFIG_LAYER_MODULE_EXT \
47 static const char name__[], version__[], cvs_id__[], local_name__[], category__[]; \
48 static Layer *create();
50 //! Sets the name of the layer
51 #define SYNFIG_LAYER_SET_NAME(class,x) \
52 const char class::name__[]=x
54 //! Sets the local name of the layer
55 #define SYNFIG_LAYER_SET_LOCAL_NAME(class,x) \
56 const char class::local_name__[]=x;
58 //! Sets the category of the layer
59 #define SYNFIG_LAYER_SET_CATEGORY(class,x) \
60 const char class::category__[]=x
62 //! Sets the version string for the layer
63 #define SYNFIG_LAYER_SET_VERSION(class,x) \
64 const char class::version__[]=x
66 //! Sets the CVS ID string for the layer
67 #define SYNFIG_LAYER_SET_CVS_ID(class,x) \
68 const char class::cvs_id__[]=x
71 #define SYNFIG_LAYER_INIT(class) \
72 synfig::Layer* class::create() \
78 #define IMPORT_PLUS(x,y) \
79 if (param==#x && value.same_type_as(x)) \
89 #define IMPORT_AS(x,y) \
90 if (param==y && value.same_type_as(x)) \
101 #define EXPORT_AS(x,y) \
110 #define EXPORT_NAME() \
111 if (param=="Name" || param=="name" || param=="name__") \
113 else if (param=="local_name__") \
114 return dgettext("synfig",local_name__);
117 #define EXPORT_VERSION() \
118 if (param=="Version" || param=="version" || param=="version__") \
121 //! This is used as the category for layer book entries which represent aliases of layers.
122 //! It prevents these layers showing up in the menu.
123 #define CATEGORY_DO_NOT_USE "Do Not Use"
125 /* === T Y P E D E F S ===================================================== */
127 /* === C L A S S E S & S T R U C T S ======================================= */
133 typedef Vector Point;
142 class ProgressCallback;
154 class Layer : public Node
156 friend class ValueNode;
157 friend class Context;
160 -- ** -- T Y P E S -----------------------------------------------------------
165 //! Type that represents a pointer to a layer's constructor
166 typedef Layer* (*Factory)();
177 BookEntry(Factory factory,
179 const String &local_name,
180 const String &category,
181 const String &cvs_id,
182 const String &version):
185 local_name(local_name),
191 typedef std::map<String,BookEntry> Book;
193 static void register_in_book(const BookEntry &);
197 static bool subsys_init();
199 static bool subsys_stop();
201 typedef std::map<String,ValueBase> ParamList;
203 typedef etl::handle<Layer> Handle;
205 typedef etl::loose_handle<Layer> LooseHandle;
207 typedef etl::handle<const Layer> ConstHandle;
209 typedef std::map<String,etl::rhandle<ValueNode> > DynamicParamList;
211 //! A list type which describes all the parameters that a layer has.
212 /*! \see get_param_vocab() */
213 typedef ParamVocab Vocab;
216 -- ** -- D A T A -------------------------------------------------------------
221 /*! \c true if the layer is visible, \c false if it is to be skipped
222 ** \see set_active(), enable(), disable, active()
226 //! Handle to the canvas to which this layer belongs
227 etl::loose_handle<Canvas> canvas_;
229 DynamicParamList dynamic_param_list_;
231 //! A description of what this layer does
238 mutable Time dirty_time_;
240 //! Contains the name of the group that this layer belongs to
244 sigc::connection parent_death_connect_;
247 -- ** -- S I G N A L S -------------------------------------------------------
253 sigc::signal<void> signal_status_changed_;
255 //! Parameter changed
256 sigc::signal<void,String> signal_param_changed_;
258 //! Description Changed
259 sigc::signal<void> signal_description_changed_;
262 sigc::signal<void, int, etl::handle<Canvas> > signal_moved_;
264 sigc::signal<void, String> signal_added_to_group_;
266 sigc::signal<void, String> signal_removed_from_group_;
269 -- ** -- S I G N A L I N T E R F A C E -------------------------------------
275 sigc::signal<void>& signal_status_changed() { return signal_status_changed_; }
277 //! Parameter changed
278 sigc::signal<void,String>& signal_param_changed() { return signal_param_changed_; }
280 //! Description Changed
281 sigc::signal<void>& signal_description_changed() { return signal_description_changed_;}
284 sigc::signal<void, int, etl::handle<Canvas> >& signal_moved() { return signal_moved_; }
286 sigc::signal<void, String>& signal_added_to_group() { return signal_added_to_group_; }
288 sigc::signal<void, String>& signal_removed_from_group() { return signal_removed_from_group_; }
291 -- ** -- C O N S T R U C T O R S ---------------------------------------------
302 -- ** -- M E M B E R F U N C T I O N S -------------------------------------
307 virtual void on_canvas_set();
309 //! Adds this layer to the given layer group
310 void add_to_group(const String&);
312 //! Removes this layer from the given layer group
313 void remove_from_group(const String&);
315 //! Removes this layer from all layer groups
316 void remove_from_all_groups();
318 //! Gets the name of the group that this layer belongs to
319 String get_group()const;
322 //DynamicParamList &dynamic_param_list() { return dynamic_param_list_; }
325 const DynamicParamList &dynamic_param_list()const { return dynamic_param_list_; }
327 bool connect_dynamic_param(const String& param, etl::loose_handle<ValueNode>);
328 bool disconnect_dynamic_param(const String& param);
330 //! Enables the layer for rendering (Making it \em active)
331 void enable() { set_active(true); }
333 //! Disables the layer for rendering. (Making it \em inactive)
334 /*! When a layer is disabled, it will be skipped when the
335 ** canvas is rendered. */
336 void disable() { set_active(false); }
338 //! Sets the 'active' flag for the Layer to the state described by \a x
339 /*! When a layer is disabled, it will be skipped when the
340 ** canvas is rendered. */
341 void set_active(bool x);
343 //! Returns that status of the 'active' flag
344 bool active()const { return active_; }
346 //! Returns the position of the layer in the canvas.
347 /*! Returns negative on error */
348 int get_depth()const;
351 float get_z_depth()const { return z_depth_; }
354 float get_z_depth(const synfig::Time& t)const;
357 void set_z_depth(float x) { z_depth_=x; }
359 //! Sets the Canvas that this Layer is a part of
360 void set_canvas(etl::loose_handle<Canvas> canvas);
362 //! Returns a handle to the Canvas to which this Layer belongs
363 etl::loose_handle<Canvas> get_canvas()const;
366 const String& get_description()const { return description_; }
369 void set_description(const String& x);
371 //! Returns the layer's description if it's not empty, else its local name
372 const String get_non_empty_description()const { return get_description().empty() ? get_local_name() : get_description(); }
374 //! Returns the localised version of the given layer parameter
375 const String get_param_local_name(const String ¶m_name)const;
378 -- ** -- V I R T U A L F U N C T I O N S -----------------------------------
382 virtual Rect get_bounding_rect()const;
384 virtual Rect get_full_bounding_rect(Context context)const;
386 //! Returns a string containing the name of the Layer
387 virtual String get_name()const;
389 //! Returns a string containing the localized name of the Layer
390 virtual String get_local_name()const;
392 //! Gets the parameter vocabulary
393 virtual Vocab get_param_vocab()const;
395 //! Gets the version string for this layer
396 virtual String get_version()const;
399 virtual etl::handle<Transform> get_transform()const;
401 //! Sets the virtual version to use for backwards-compatibility
403 ** \see reset_version() */
404 virtual bool set_version(const String &ver);
406 //! Resets the virtual version
408 ** \see set_version() */
409 virtual void reset_version();
411 //! Sets the parameter described by \a param to \a value.
412 /*! \param param The name of the parameter to set
413 ** \param value What the parameter is to be set to.
414 ** \return \c true on success, \c false upon rejection or failure.
415 ** If it returns \c false, then the Layer is assumed to remain unchanged.
417 ** \todo \a param should be of the type <tt>const String \¶m</tt>
419 virtual bool set_param(const String ¶m, const ValueBase &value);
421 //! Sets a list of parameters
422 virtual bool set_param_list(const ParamList &);
424 //! Get the value of the specified parameter.
425 /*! \return The requested parameter value, or (upon failure) a NIL ValueBase.
427 ** \todo \a param should be of the type <tt>const String \&</tt>
429 virtual ValueBase get_param(const String ¶m)const;
431 //! Get a list of all of the parameters and their values
432 virtual ParamList get_param_list()const;
434 //! Sets the \a time for the selected Layer and those under it
435 /*! \param context Context iterator referring to next Layer.
436 ** \param time writeme
437 ** \see Handle::set_time()
439 virtual void set_time(Context context, Time time)const;
441 //! Sets the \a time for the selected Layer and those under it for a specific \a point
442 /*! \param context Context iterator referring to next Layer.
443 ** \param time writeme
444 ** \param point writeme
445 ** \see Handle::set_time()
446 ** \todo \a point should be of the type <tt>const Point \&</tt> */
447 virtual void set_time(Context context, Time time, const Point &point)const;
449 //! Gets the color of the Canvas at \a pos
450 /*! \param context Context iterator referring to next Layer.
451 ** \param pos Point which indicates where the Color should come from
452 ** \see Handle::get_color()
454 virtual Color get_color(Context context, const Point &pos)const;
456 //! Renders the Canvas to the given Surface in an accelerated manner
457 /*! \param context Context iterator referring to next Layer.
458 ** \param surface Pointer to Surface to render to.
459 ** \param quality The requested quality-level to render at.
460 ** \param renddesc The associated RendDesc.
461 ** \param cb Pointer to callback object. May be NULL if there is no callback.
462 ** \return \c true on success, \c false on failure
463 ** \see Handle::accelerated_render()
465 virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
467 //! Checks to see if a part of the layer is directly under \a point
468 /*! \param context Context iterator referring to next Layer.
469 ** \param point The point to check
470 ** \return The handle of the layer under \a point. If there is not
471 ** a layer under \a point, then returns an empty handle. */
472 virtual Handle hit_check(Context context, const Point &point)const;
474 //! Duplicates the Layer
475 virtual Handle clone(const GUID& deriv_guid=GUID())const;
477 //! Returns true if the layer needs to be able to examine its context.
478 /*! context to render itself, other than for simple blending. For
479 ** example, the blur layer will return true - it can't do its job
480 ** if it can't see its context, and the circle layer will return
481 ** false - rendering a circle doesn't depend on the underlying
482 ** context until the final blend operation. */
483 virtual bool reads_context()const;
485 #ifdef THIS_CODE_IS_NOT_USED
486 //! Duplicates the Layer without duplicating the value nodes
487 virtual Layer *simple_clone()const;
488 #endif /* THIS_CODE_IS_NOT_USED */
492 //! This is called whenever a parameter is changed
493 virtual void on_changed();
495 //! Called to figure out the animation time information
496 virtual void get_times_vfunc(Node::time_set &set) const;
499 -- ** -- S T A T I C F U N C T I O N S --------------------------------------
504 //! Creates a Layer of type \a type
505 /*! If the Layer type is unknown, then a Mime layer is created in its place.
506 ** \param type A string describing the name of the layer to construct.
507 ** \return Always returns a handle to a new Layer.
510 static Layer::LooseHandle create(const String &type);
512 }; // END of class Layer
514 }; // END of namespace synfig
517 /* === E N D =============================================================== */