Go to the documentation of this file.00001
00002 #ifndef vgui_viewer2D_tableau_h_
00003 #define vgui_viewer2D_tableau_h_
00004 #ifdef VCL_NEEDS_PRAGMA_INTERFACE
00005 #pragma interface
00006 #endif
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include <vgui/vgui_drag_mixin.h>
00025 #include <vgui/vgui_wrapper_tableau.h>
00026 #include <vgui/vgui_viewer2D_tableau_sptr.h>
00027
00028 #include "dll.h"
00029
00030
00031 class vgui_viewer2D_tableau : public vgui_wrapper_tableau, public vgui_drag_mixin
00032 {
00033 public:
00034
00035
00036 vgui_viewer2D_tableau(vgui_tableau_sptr const&);
00037
00038
00039
00040
00041 virtual bool handle(const vgui_event& event);
00042
00043
00044 virtual vcl_string type_name() const;
00045
00046
00047 void setup_gl_matrices();
00048
00049
00050
00051 void zoomin(float zoom_factor, int x, int y);
00052
00053
00054
00055 void zoomout(float zoom_factor, int x, int y);
00056
00057
00058 void center_image(int w, int h);
00059
00060
00061 void center_event();
00062
00063
00064 bool mouse_down(int x, int y, vgui_button button, vgui_modifier modifier);
00065
00066
00067 bool mouse_drag(int x, int y, vgui_button button, vgui_modifier modifier);
00068
00069
00070 bool mouse_up(int x, int y, vgui_button button, vgui_modifier modifier);
00071
00072
00073 bool help();
00074
00075
00076 bool key_press(int x, int y, vgui_key key, vgui_modifier);
00077
00078
00079 struct token_t
00080 {
00081 float scaleX;
00082 float scaleY;
00083 float offsetX;
00084 float offsetY;
00085 token_t() : scaleX(1.0f), scaleY(1.0f), offsetX(0.0f), offsetY(0.0f) { }
00086 } token;
00087
00088
00089 static vgui_DLLDATA const void * const CENTER_EVENT;
00090
00091
00092 bool nice_points;
00093 bool nice_lines;
00094
00095 enum {normal_zoom, smooth_zoom} zoom_type;
00096
00097 bool panning;
00098 bool smooth_zooming;
00099 bool sweep_zooming;
00100 bool sweep_next;
00101 float prev_x,prev_y;
00102 float zoom_x,zoom_y;
00103 float new_x,new_y;
00104 float zoom_factor;
00105 int npos_x;
00106 int npos_y;
00107 protected:
00108
00109 bool image_size(int& width, int& height);
00110
00111
00112 ~vgui_viewer2D_tableau();
00113 };
00114
00115
00116 struct vgui_viewer2D_tableau_new : public vgui_viewer2D_tableau_sptr
00117 {
00118
00119
00120 vgui_viewer2D_tableau_new(vgui_tableau_sptr const& that) :
00121 vgui_viewer2D_tableau_sptr(new vgui_viewer2D_tableau(that)) { }
00122 };
00123
00124 #endif // vgui_viewer2D_tableau_h_