Merge branch 'genete_static_values'
[synfig.git] / synfig-core / src / modules / lyr_std / stroboscope.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file stroboscope.h
3 **      \brief Header file for implementation of the "Stroboscope" 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 **      Copyright (c) 2009 Ray Frederikson
11 **
12 **      This package is free software; you can redistribute it and/or
13 **      modify it under the terms of the GNU General Public License as
14 **      published by the Free Software Foundation; either version 2 of
15 **      the License, or (at your option) any later version.
16 **
17 **      This package is distributed in the hope that it will be useful,
18 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
19 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 **      General Public License for more details.
21 **      \endlegal
22 */
23 /* ========================================================================= */
24
25 /* === S T A R T =========================================================== */
26
27 #ifndef __SYNFIG_STROBOSCOPE_H
28 #define __SYNFIG_STROBOSCOPE_H
29
30 /* === H E A D E R S ======================================================= */
31
32 #include <synfig/layer.h>
33 #include <synfig/color.h>
34 #include <synfig/time.h>
35 #include <synfig/context.h>
36
37 /* === M A C R O S ========================================================= */
38
39 /* === T Y P E D E F S ===================================================== */
40
41 /* === C L A S S E S & S T R U C T S ======================================= */
42
43 class Layer_Stroboscope : public synfig::Layer
44 {
45         SYNFIG_LAYER_MODULE_EXT
46
47 private:
48         float   frequency;
49
50 protected:
51         Layer_Stroboscope();
52
53 public:
54         ~Layer_Stroboscope();
55
56         virtual bool set_param(const synfig::String & param, const synfig::ValueBase &value);
57
58         virtual synfig::ValueBase get_param(const synfig::String & param)const;
59
60         virtual Vocab get_param_vocab()const;
61         virtual synfig::Color get_color(synfig::Context context, const synfig::Point &pos)const;
62
63         virtual void set_time(synfig::Context context, synfig::Time time)const;
64         virtual bool accelerated_render(synfig::Context context,synfig::Surface *surface,int quality, const synfig::RendDesc &renddesc, synfig::ProgressCallback *cb)const;
65 };
66
67 /* === E N D =============================================================== */
68
69 #endif