synfig-core  1.0.3
radialgradient.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
22 /* ========================================================================= */
23 
24 /* === S T A R T =========================================================== */
25 
26 #ifndef __SYNFIG_RADIALGRADIENT_H
27 #define __SYNFIG_RADIALGRADIENT_H
28 
29 /* === H E A D E R S ======================================================= */
30 
32 #include <synfig/color.h>
33 #include <synfig/vector.h>
34 #include <synfig/value.h>
35 #include <synfig/gradient.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_loop;
61  ValueBase param_zigzag;
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  bool compile_gradient(cairo_pattern_t* pattern, Gradient gradient)const;
67 
68 public:
69 
71 
72  virtual bool set_param(const String & param, const ValueBase &value);
73 
74  virtual ValueBase get_param(const String & param)const;
75 
76  virtual Color get_color(Context context, const Point &pos)const;
77 
78  virtual bool accelerated_render(Context context, Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
79  virtual bool accelerated_cairorender(Context context,cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
80  Layer::Handle hit_check(Context context, const Point &point)const;
81 
82  virtual Vocab get_param_vocab()const;
83 }; // END of class RadialGradient
84 
85 /* === E N D =============================================================== */
86 
87 #endif