synfig-core  1.0.3
layer_bitmap.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_LAYER_BITMAP_H
27 #define __SYNFIG_LAYER_BITMAP_H
28 
29 /* === H E A D E R S ======================================================= */
30 
31 #include "layer_composite.h"
32 #include <synfig/surface.h>
33 #include <synfig/target.h> // for RenderMethod
34 
35 /* === M A C R O S ========================================================= */
36 
37 /* === T Y P E D E F S ===================================================== */
38 
39 /* === C L A S S E S & S T R U C T S ======================================= */
40 
41 namespace synfig {
42 
47 {
48  const Color& filter(Color& c)const;
49  const CairoColor& filter(CairoColor& c)const;
50  RenderMethod method;
51 public:
52  typedef etl::handle<Layer_Bitmap> Handle;
53 
58 
60  mutable Surface surface;
62  mutable bool trimmed;
63  mutable unsigned int width, height, top, left;
64 
65 
66  Layer_Bitmap();
69 
70  virtual bool set_param(const String & param, const ValueBase & value);
71 
72  virtual ValueBase get_param(const String & param)const;
73 
74  virtual Color get_color(Context context, const Point &pos)const;
75  virtual CairoColor get_cairocolor(Context context, const Point &pos)const;
76 
77  virtual Vocab get_param_vocab()const;
78 
79  virtual Rect get_bounding_rect()const;
80 
81  virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
82  virtual bool accelerated_cairorender(Context context, cairo_t *cr, int quality, const RendDesc &renddesc, ProgressCallback *cb)const;
83 
84  virtual synfig::Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;
85 
86  virtual void set_render_method(Context context, RenderMethod x);
87  void set_method(RenderMethod x) { method=x;}
88  RenderMethod get_method()const { return method;}
89 
90  void set_cairo_surface(cairo_surface_t* cs);
91 
92 }; // END of class Layer_Bitmap
93 
94 }; // END of namespace synfig
95 
96 /* === E N D =============================================================== */
97 
98 #endif