synfig-core  1.0.3
rectangle.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
22 /* ========================================================================= */
23 
24 /* === S T A R T =========================================================== */
25 
26 #ifndef __SYNFIG_FILLEDRECT_H
27 #define __SYNFIG_FILLEDRECT_H
28 
29 /* === H E A D E R S ======================================================= */
30 
32 #include <synfig/color.h>
33 #include <synfig/vector.h>
34 #include <synfig/value.h>
35 #include <list>
36 
37 /* === M A C R O S ========================================================= */
38 
39 /* === T Y P E D E F S ===================================================== */
40 
41 /* === C L A S S E S & S T R U C T S ======================================= */
42 
44 {
46 
47 private:
49  synfig::ValueBase param_color;
51  synfig::ValueBase param_point1;
53  synfig::ValueBase param_point2;
55  synfig::ValueBase param_expand;
57  synfig::ValueBase param_invert;
58 
59 public:
60 
61  Rectangle();
62 
63  virtual bool set_param(const synfig::String & param, const synfig::ValueBase &value);
64 
65  virtual synfig::ValueBase get_param(const synfig::String & param)const;
66 
67  virtual bool is_solid_color()const;
68 
69  virtual synfig::Color get_color(synfig::Context context, const synfig::Point &pos)const;
70 
71  virtual bool accelerated_render(synfig::Context context,synfig::Surface *surface,int quality, const synfig::RendDesc &renddesc, synfig::ProgressCallback *cb)const;
72  virtual bool accelerated_cairorender(synfig::Context context, cairo_t *cr, int quality, const synfig::RendDesc &renddesc, synfig::ProgressCallback *cb)const;
73 
75 
76  virtual synfig::Rect get_bounding_rect()const;
78 
79  virtual Vocab get_param_vocab()const;
80 }; // END of class FilledRect
81 
82 /* === E N D =============================================================== */
83 
84 #endif