Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkGenericRenderWindowInteractor.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkGenericRenderWindowInteractor.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
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&);  // Not implemented.
00089   void operator=(const vtkGenericRenderWindowInteractor&);  // Not implemented.
00090 };
00091 
00092 #endif