synfig-core  1.0.3
translate.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
26 /* === S T A R T =========================================================== */
27 
28 #ifndef __SYNFIG_TRANSLATE_H
29 #define __SYNFIG_TRANSLATE_H
30 
31 /* === H E A D E R S ======================================================= */
32 
33 #include <synfig/layer.h>
34 #include <synfig/vector.h>
35 #include <synfig/string.h>
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 
43 using namespace synfig;
44 using namespace std;
45 using namespace etl;
46 
47 class Translate_Trans;
48 
49 class Translate : public Layer
50 {
52  friend class Translate_Trans;
53 private:
55  ValueBase param_origin;
56 public:
57  Translate();
58  ~Translate();
59 
60  virtual bool set_param(const String & param, const synfig::ValueBase &value);
61  virtual ValueBase get_param(const String & param)const;
62  virtual Color get_color(Context context, const Point &pos)const;
63  virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
64  virtual bool accelerated_cairorender(Context context, cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
65  virtual Vocab get_param_vocab()const;
66  virtual synfig::Rect get_full_bounding_rect(Context context)const;
67  synfig::Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;
68  virtual etl::handle<synfig::Transform> get_transform()const;
69 
70 };
71 
72 /* === E N D =============================================================== */
73 
74 #endif