synfig-core  1.0.3
checkerboard.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_CHECKERBOARD_H
30 #define __SYNFIG_CHECKERBOARD_H
31 
32 /* === H E A D E R S ======================================================= */
33 
35 #include <synfig/color.h>
36 #include <synfig/vector.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 
45 {
47 private:
49  synfig::ValueBase param_color;
51  synfig::ValueBase param_origin;
53  synfig::ValueBase param_size;
54 
55  bool point_test(const synfig::Point& x)const;
56 
57 public:
58  CheckerBoard();
59 
60  virtual bool set_param(const synfig::String & param, const synfig::ValueBase &value);
61 
62  virtual synfig::ValueBase get_param(const synfig::String & param)const;
63 
64  virtual synfig::Color get_color(synfig::Context context, const synfig::Point &pos)const;
65 
66  virtual Vocab get_param_vocab()const;
67 
69 
70  virtual bool accelerated_render(synfig::Context context,synfig::Surface *surface,int quality, const synfig::RendDesc &renddesc, synfig::ProgressCallback *cb)const;
71  virtual bool accelerated_cairorender(synfig::Context context, cairo_t *cr, int quality, const synfig::RendDesc &renddesc, synfig::ProgressCallback *cb)const;
72 };
73 
74 /* === E N D =============================================================== */
75 
76 #endif