synfig-core  1.0.3
zoom.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_ZOOM_H
27 #define __SYNFIG_ZOOM_H
28 
29 /* === H E A D E R S ======================================================= */
30 
31 #include <synfig/layer.h>
32 #include <synfig/vector.h>
33 
34 /* === M A C R O S ========================================================= */
35 
36 /* === T Y P E D E F S ===================================================== */
37 
38 /* === C L A S S E S & S T R U C T S ======================================= */
39 
40 using namespace synfig;
41 using namespace std;
42 using namespace etl;
43 
44 class Zoom_Trans;
45 
46 class Zoom : public Layer
47 {
49  friend class Zoom_Trans;
50 private:
52  ValueBase param_center;
54  ValueBase param_amount;
55 public:
56  Zoom();
57 
58  virtual bool set_param(const String & param, const synfig::ValueBase &value);
59  virtual ValueBase get_param(const String & param)const;
60  virtual Color get_color(Context context, const Point &pos)const;
61  virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
62  virtual bool accelerated_cairorender(Context context, cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
63  synfig::Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;
64  virtual Vocab get_param_vocab()const;
65  virtual synfig::Rect get_full_bounding_rect(synfig::Context context)const;
66  virtual etl::handle<synfig::Transform> get_transform()const;
67 
68 };
69 
70 /* === E N D =============================================================== */
71 
72 #endif