synfig-studio  1.0.3
workarearenderer.h
Go to the documentation of this file.
1 /* === S Y N F I G ========================================================= */
21 /* ========================================================================= */
22 
23 /* === S T A R T =========================================================== */
24 
25 #ifndef __SYNFIG_WORKAREARENDERER_H
26 #define __SYNFIG_WORKAREARENDERER_H
27 
28 /* === H E A D E R S ======================================================= */
29 
30 #include <ETL/handle>
31 #include <sigc++/signal.h>
32 #include <sigc++/object.h>
33 #include <synfig/vector.h>
34 #include <gdkmm/window.h>
35 #include <gdkmm/rectangle.h>
36 
37 /* === M A C R O S ========================================================= */
38 #define GDK_COLOR_TO_RGB(color) \
39  color.get_red_p (), color.get_green_p (), color.get_blue_p ()
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 class WorkArea;
47 
48 class WorkAreaRenderer : public etl::shared_object, public sigc::trackable
49 {
50 public:
51  typedef etl::handle<WorkAreaRenderer> Handle;
52  typedef etl::loose_handle<WorkAreaRenderer> LooseHandle;
53 
54 private:
55  bool enabled_;
56  int priority_;
57 
58  sigc::signal<void> signal_changed_;
59 
60  WorkArea* work_area_;
61 
62 public:
63 
64  sigc::signal<void>& signal_changed() { return signal_changed_; }
65 
66 public:
67  int get_w()const;
68  int get_h()const;
69 
70  float get_pw()const;
71  float get_ph()const;
72 
74  synfig::Point screen_to_comp_coords(synfig::Point pos)const;
75 
77  synfig::Point comp_to_screen_coords(synfig::Point pos)const;
78 
80  virtual ~WorkAreaRenderer();
81 
82  bool get_enabled()const { return get_enabled_vfunc(); }
83  int get_priority()const { return priority_; }
84  WorkArea* get_work_area()const { return work_area_; }
85 
86  void set_enabled(bool x);
87  void set_priority(int x);
88  void set_work_area(WorkArea* work_area_);
89 
90  virtual void render_vfunc(
91  const Glib::RefPtr<Gdk::Window>& window,
92  const Gdk::Rectangle& expose_area
93  );
94 
95  virtual bool event_vfunc(
96  GdkEvent* event
97  );
98 
99 protected:
100 
101  virtual bool get_enabled_vfunc()const;
102 
103 public:
104  bool operator<(const WorkAreaRenderer &rhs)
105  { return priority_<rhs.priority_; }
106 };
107 
109  { return lhs->get_priority() < rhs->get_priority(); }
110 
112  { return lhs->get_priority() < rhs->get_priority(); }
113 
114 }; // END of namespace studio
115 
116 /* === E N D =============================================================== */
117 
118 #endif