synfig-core  1.0.3
curvegradient.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
26 /* === S T A R T =========================================================== */
27 
28 #ifndef __SYNFIG_CURVEGRADIENT_H
29 #define __SYNFIG_CURVEGRADIENT_H
30 
31 /* === H E A D E R S ======================================================= */
32 
33 #include <synfig/vector.h>
35 #include <synfig/gradient.h>
36 #include <synfig/blinepoint.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_origin;
56  ValueBase param_width;
58  ValueBase param_bline;
60  ValueBase param_gradient;
62  ValueBase param_loop;
64  ValueBase param_zigzag;
66  ValueBase param_perpendicular;
68  ValueBase param_fast;
69 
70  Real curve_length_;
71  bool bline_loop;
72 
73  void sync();
74 
75  Color color_func(const Point &x, int quality=10, float supersample=0)const;
76 
77  float calc_supersample(const Point &x, float pw,float ph)const;
78 
79 public:
80  CurveGradient();
81 
82  virtual bool set_param(const String &param, const ValueBase &value);
83  virtual ValueBase get_param(const String &param)const;
84  virtual Color get_color(Context context, const Point &pos)const;
85  virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
86  virtual bool accelerated_cairorender(Context context, cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
87  Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;
88 
89  virtual Vocab get_param_vocab()const;
90 };
91 
92 /* === E N D =============================================================== */
93 
94 #endif