00001
00021
00022
00023
00024
00025 #ifndef __SYNFIG_DOCK_INFO_H
00026 #define __SYNFIG_DOCK_INFO_H
00027
00028
00029 #include "dock_canvasspecific.h"
00030 #include "sigc++/signal.h"
00031
00032 #include "widget_distance.h"
00033
00034
00035
00036
00037
00038
00039
00040 namespace studio {
00041
00042 class Dock_Info : public Dock_CanvasSpecific
00043 {
00044
00045
00046
00047 Gtk::Label r,g,b,a;
00048 Gtk::Label x,y;
00049
00050 sigc::connection mousecon;
00051
00052 void on_mouse_move();
00053
00054 public:
00055 Dock_Info();
00056 ~Dock_Info();
00057
00058 virtual void changed_canvas_view_vfunc(etl::loose_handle<CanvasView> canvas_view);
00059 };
00060
00061 };
00062
00063
00064
00065 #endif