4740a9f4f5944f9133eba61eaf1366c1b48347f3
[synfig.git] / synfig-core / trunk / src / synfig / layer_duplicate.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file layer_duplicate.h
3 **      \brief Header file for implementation of the "Duplicate" layer
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **
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.
14 **
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.
19 **      \endlegal
20 */
21 /* ========================================================================= */
22
23 /* === S T A R T =========================================================== */
24
25 #ifndef __SYNFIG_LAYER_DUPLICATE_H__
26 #define __SYNFIG_LAYER_DUPLICATE_H__
27
28 /* === H E A D E R S ======================================================= */
29
30 #include "valuenode_duplicate.h"
31 #include "layer_composite.h"
32 #include "time.h"
33
34 /* === S T R U C T S & C L A S S E S ======================================= */
35
36 namespace synfig {
37
38 class Layer_Duplicate : public synfig::Layer_Composite
39 {
40         SYNFIG_LAYER_MODULE_EXT
41
42 private:
43         mutable Real index;
44         mutable Time time_cur;
45         mutable synfig::Mutex mutex;
46
47 public:
48
49         Layer_Duplicate();
50
51         //! Duplicates the Layer
52         virtual Layer::Handle clone(const GUID& deriv_guid=GUID())const;
53         virtual bool set_param(const String & param, const synfig::ValueBase &value);
54         virtual ValueBase get_param(const String & param)const;
55         virtual Color get_color(Context context, const Point &pos)const;
56         virtual void set_time(Context context, Time time)const;
57         virtual void set_time(Context context, Time time, const Point &point)const;
58         virtual ValueNode_Duplicate::Handle get_duplicate_param()const;
59         virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
60         virtual Vocab get_param_vocab()const;
61         virtual bool reads_context()const { return true; }
62 }; // END of class Layer_Duplicate
63
64 }; // END of namespace synfig
65
66 /* === E N D =============================================================== */
67
68 #endif