synfig-core  1.0.3
spiralgradient.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_SPIRALGRADIENT_H
26 #define __SYNFIG_SPIRALGRADIENT_H
27 
28 /* === H E A D E R S ======================================================= */
29 
31 #include <synfig/color.h>
32 #include <synfig/vector.h>
33 #include <synfig/value.h>
34 #include <synfig/gradient.h>
35 #include <synfig/angle.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 using namespace synfig;
44 using namespace std;
45 using namespace etl;
46 
48 {
50 
51 private:
53  ValueBase param_gradient;
55  ValueBase param_center;
57  ValueBase param_radius;
59  ValueBase param_angle;
61  ValueBase param_clockwise;
62 
63  Color color_func(const Point &x, float supersample=0)const;
64 
65  float calc_supersample(const Point &x, float pw,float ph)const;
66 
67 public:
68 
70 
71  virtual bool set_param(const String & param, const synfig::ValueBase &value);
72 
73  virtual ValueBase get_param(const String & param)const;
74 
75  virtual Color get_color(Context context, const Point &pos)const;
76 
77  virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
78  virtual bool accelerated_cairorender(Context context, cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
79  Layer::Handle hit_check(Context context, const Point &point)const;
80 
81  virtual Vocab get_param_vocab()const;
82 }; // END of class SpiralGradient
83 
84 /* === E N D =============================================================== */
85 
86 #endif