synfig-core  1.0.3
simplecircle.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_SIMPLECIRCLE_H
26 #define __SYNFIG_SIMPLECIRCLE_H
27 
28 /* === H E A D E R S ======================================================= */
29 
31 #include <synfig/color.h>
32 #include <synfig/vector.h>
34 #include <synfig/value.h>
35 
36 /* === M A C R O S ========================================================= */
37 
38 /* === T Y P E D E F S ===================================================== */
39 
40 /* === C L A S S E S & S T R U C T S ======================================= */
41 
42 using namespace synfig;
43 using namespace std;
44 using namespace etl;
45 
47 {
49 
50 private:
52  ValueBase param_color;
54  ValueBase param_center;
56  ValueBase param_radius;
57 
58 public:
59 
60  SimpleCircle();
61 
62  virtual bool set_param(const String & param, const ValueBase &value);
63 
64  virtual ValueBase get_param(const String & param)const;
65 
66  virtual Color get_color(Context context, const Point &pos)const;
67 
68  //virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
69  virtual bool accelerated_cairorender(Context context, cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
70 
71  Layer::Handle hit_check(Context context, const Point &point)const;
72 
73  virtual Vocab get_param_vocab()const;
74 }; // END of class SimpleCircle
75 
76 /* === E N D =============================================================== */
77 
78 #endif