synfig-core  1.0.3
halftone2.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
23 /* ========================================================================= */
24 
25 /* === S T A R T =========================================================== */
26 
27 #ifndef __SYNFIG_HALFTONE2_H
28 #define __SYNFIG_HALFTONE2_H
29 
30 /* === H E A D E R S ======================================================= */
31 
32 #include <synfig/vector.h>
33 #include <synfig/valuenode.h>
35 #include <synfig/time.h>
36 #include <synfig/angle.h>
37 #include "halftone.h"
38 
39 /* === M A C R O S ========================================================= */
40 #define HALFTONE2_IMPORT_VALUE(x) \
41  if (#x=="halftone.param_"+param && x.get_type()==value.get_type()) \
42  { \
43  x=value; \
44  return true; \
45  } \
46 
47 #define HALFTONE2_EXPORT_VALUE(x) \
48  if (#x=="halftone.param_"+param) \
49  { \
50  return x; \
51  } \
52 
53 /* === T Y P E D E F S ===================================================== */
54 
55 /* === C L A S S E S & S T R U C T S ======================================= */
56 using namespace synfig;
57 using namespace std;
58 using namespace etl;
59 
60 class Halftone2 : public Layer_Composite
61 {
63 
64 private:
66  Halftone halftone;
68  ValueBase param_color_dark;
70  ValueBase param_color_light;
71 
72  Color color_func(const Point &x, float supersample,const Color &under_color)const;
73 
74  float calc_supersample(const Point &x, float pw,float ph)const;
75 
76  //float halftone_func(Point x)const;
77 
78 public:
79  Halftone2();
80 
81  virtual bool set_param(const String &param, const ValueBase &value);
82  virtual ValueBase get_param(const String &param)const;
83  virtual Color get_color(Context context, const Point &pos)const;
84  virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
85  virtual bool accelerated_cairorender(Context context,cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
86  Layer::Handle hit_check(Context context, const Point &point)const;
87  virtual Vocab get_param_vocab()const;
88  virtual bool reads_context()const { return true; }
89 }; // END of class Halftone2
90 
91 /* === E N D =============================================================== */
92 
93 #endif