vtkGenericRenderWindowInteractor.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00040 #ifndef __vtkGenericRenderWindowInteractor_h
00041 #define __vtkGenericRenderWindowInteractor_h
00042
00043 #include "vtkRenderWindowInteractor.h"
00044
00045 class VTK_RENDERING_EXPORT vtkGenericRenderWindowInteractor : public vtkRenderWindowInteractor
00046 {
00047 public:
00048 static vtkGenericRenderWindowInteractor *New();
00049 vtkTypeRevisionMacro(vtkGenericRenderWindowInteractor,vtkRenderWindowInteractor);
00050 void PrintSelf(ostream& os, vtkIndent indent);
00051
00053
00056 virtual void MouseMoveEvent();
00057 virtual void RightButtonPressEvent();
00058 virtual void RightButtonReleaseEvent();
00059 virtual void LeftButtonPressEvent();
00060 virtual void LeftButtonReleaseEvent();
00061 virtual void MiddleButtonPressEvent();
00062 virtual void MiddleButtonReleaseEvent();
00063 virtual void MouseWheelForwardEvent();
00064 virtual void MouseWheelBackwardEvent();
00065 virtual void ExposeEvent();
00066 virtual void ConfigureEvent();
00067 virtual void EnterEvent();
00068 virtual void LeaveEvent();
00069 virtual void TimerEvent();
00070 virtual void KeyPressEvent();
00071 virtual void KeyReleaseEvent();
00072 virtual void CharEvent();
00073 virtual void ExitEvent();
00075
00077
00081 virtual int CreateTimer(int );
00082 virtual int DestroyTimer();
00084 protected:
00085 vtkGenericRenderWindowInteractor();
00086 ~vtkGenericRenderWindowInteractor();
00087 private:
00088 vtkGenericRenderWindowInteractor(const vtkGenericRenderWindowInteractor&);
00089 void operator=(const vtkGenericRenderWindowInteractor&);
00090 };
00091
00092 #endif