synfig-core  1.0.3
xorpattern.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
27 /* === S T A R T =========================================================== */
28 
29 #ifndef __SYNFIG_XORPATTERN_H
30 #define __SYNFIG_XORPATTERN_H
31 
32 /* === H E A D E R S ======================================================= */
33 
35 #include <synfig/color.h>
36 #include <synfig/context.h>
37 #include <synfig/vector.h>
38 
39 /* === M A C R O S ========================================================= */
40 
41 /* === T Y P E D E F S ===================================================== */
42 
43 /* === C L A S S E S & S T R U C T S ======================================= */
44 
45 using namespace synfig;
46 using namespace std;
47 using namespace etl;
48 
50 {
52 
53 private:
55  ValueBase param_origin;
57  ValueBase param_size;
58 
59 public:
60  XORPattern();
61 
62  virtual bool set_param(const String &param, const ValueBase &value);
63  virtual ValueBase get_param(const String &param)const;
64  virtual Color get_color(Context context, const Point &pos)const;
65  virtual Vocab get_param_vocab()const;
66  virtual synfig::Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;
67 };
68 
69 /* === E N D =============================================================== */
70 
71 #endif