synfig-core  1.0.3
conicalgradient.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_CONICALGRADIENT_H
27 #define __SYNFIG_CONICALGRADIENT_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 #include <synfig/angle.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 
44 using namespace synfig;
45 using namespace std;
46 using namespace etl;
47 
49 {
51 
52 private:
54  ValueBase param_gradient;
56  ValueBase param_center;
58  ValueBase param_angle;
60  ValueBase param_symmetric;
61 
62  Color color_func(const Point &x, float supersample=0)const;
63 
64  float calc_supersample(const Point &x, float pw,float ph)const;
65  bool compile_mesh(cairo_pattern_t* pattern, Gradient gradient, Real radius)const;
66 
67 public:
68 
70 
71  virtual bool set_param(const String & param, const 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 ConicalGradient
83 
84 /* === E N D =============================================================== */
85 
86 #endif