Added copyright lines for files I've edited this year.
[synfig.git] / synfig-core / trunk / src / modules / lyr_std / timeloop.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file timeloop.h
3 **      \brief Header file for implementation of the "Time Loop" layer
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 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_TIMELOOP_H
27 #define __SYNFIG_TIMELOOP_H
28
29 /* === H E A D E R S ======================================================= */
30
31 #include <synfig/layer.h>
32 #include <synfig/color.h>
33 #include <synfig/time.h>
34 #include <synfig/context.h>
35
36 /* === M A C R O S ========================================================= */
37
38 /* === T Y P E D E F S ===================================================== */
39
40 /* === C L A S S E S & S T R U C T S ======================================= */
41
42 class Layer_TimeLoop : public synfig::Layer
43 {
44         SYNFIG_LAYER_MODULE_EXT
45
46 private:
47         synfig::Time    link_time;
48         synfig::Time    local_time;
49         synfig::Time    duration;
50
51         synfig::Time    start_time;
52         synfig::Time    end_time;
53         bool                    old_version;
54         bool                    only_for_positive_duration;
55
56 protected:
57         Layer_TimeLoop();
58
59 public:
60         ~Layer_TimeLoop();
61
62         virtual bool set_param(const synfig::String & param, const synfig::ValueBase &value);
63
64         virtual synfig::ValueBase get_param(const synfig::String & param)const;
65
66         virtual Vocab get_param_vocab()const;
67         virtual bool set_version(const synfig::String &ver);
68         virtual void reset_version();
69         virtual synfig::Color get_color(synfig::Context context, const synfig::Point &pos)const;
70
71         virtual void set_time(synfig::Context context, synfig::Time time)const;
72         virtual bool accelerated_render(synfig::Context context,synfig::Surface *surface,int quality, const synfig::RendDesc &renddesc, synfig::ProgressCallback *cb)const;
73 };
74
75 /* === E N D =============================================================== */
76
77 #endif