synfig-studio  1.0.3
renderer_bbox.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_RENDERER_BBOX_H
27 #define __SYNFIG_RENDERER_BBOX_H
28 
29 /* === H E A D E R S ======================================================= */
30 
31 #include "workarearenderer.h"
32 #include <vector>
33 #include <synfig/vector.h>
34 #include <synfig/rect.h>
35 
36 /* === M A C R O S ========================================================= */
37 
38 #define BBOX_COLOR_OUTLINE Gdk::Color("#ffffff")
39 #define BBOX_COLOR_FAILBACK Gdk::Color("#000000")
40 
41 /* === T Y P E D E F S ===================================================== */
42 
43 /* === C L A S S E S & S T R U C T S ======================================= */
44 
45 namespace studio {
46 
48 {
49  synfig::Rect bbox;
50 
51 public:
52  Renderer_BBox();
54 
55  const synfig::Rect& get_bbox();
56 
57  void render_vfunc(const Glib::RefPtr<Gdk::Window>& drawable,const Gdk::Rectangle& expose_area );
58 
59 protected:
60  //bool get_enabled_vfunc()const;
61 };
62 
63 }; // END of namespace studio
64 
65 /* === E N D =============================================================== */
66 
67 #endif