synfig-studio  1.0.3
dock_info.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_DOCK_INFO_H
26 #define __SYNFIG_DOCK_INFO_H
27 
28 /* === H E A D E R S ======================================================= */
30 #include "sigc++/signal.h"
31 
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 namespace studio {
41 
43 {
44  Gtk::Label r,g,b,a;
45  Gtk::Label x,y;
46 
47  sigc::connection mousecon;
48 
49  void on_mouse_move();
50 
51 public:
52  Dock_Info();
53  ~Dock_Info();
54 
55  virtual void changed_canvas_view_vfunc(etl::loose_handle<CanvasView> canvas_view);
56 };
57 
58 }; // END of namespace studio
59 
60 /* === E N D =============================================================== */
61 
62 #endif