synfig-core  1.0.3
stroboscope.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
24 /* ========================================================================= */
25 
26 /* === S T A R T =========================================================== */
27 
28 #ifndef __SYNFIG_STROBOSCOPE_H
29 #define __SYNFIG_STROBOSCOPE_H
30 
31 /* === H E A D E R S ======================================================= */
32 
33 #include <synfig/layer.h>
34 #include <synfig/color.h>
35 #include <synfig/time.h>
36 #include <synfig/context.h>
37 
38 /* === M A C R O S ========================================================= */
39 
40 /* === T Y P E D E F S ===================================================== */
41 
42 /* === C L A S S E S & S T R U C T S ======================================= */
43 using namespace synfig;
44 using namespace std;
45 using namespace etl;
46 
47 class Layer_Stroboscope : public Layer
48 {
50 
51 private:
53  ValueBase param_frequency;
54 
55 protected:
57 
58 public:
60 
61  virtual bool set_param(const String & param, const ValueBase &value);
62 
63  virtual ValueBase get_param(const String & param)const;
64 
65  virtual Vocab get_param_vocab()const;
66  virtual Color get_color(Context context, const Point &pos)const;
67 
68  virtual void set_time(IndependentContext context, Time time)const;
69  virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
70  virtual bool accelerated_cairorender(Context context,cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
71 };
72 /* === E N D =============================================================== */
73 
74 #endif