IGSTK
|
00001 /*========================================================================= 00002 00003 Program: Image Guided Surgery Software Toolkit 00004 Module: $RCSfile: igstkRenderWindowInteractor.h,v $ 00005 Language: C++ 00006 Date: $Date: 2008-02-11 01:41:51 $ 00007 Version: $Revision: 1.4 $ 00008 00009 Copyright (c) ISC Insight Software Consortium. All rights reserved. 00010 See IGSTKCopyright.txt or http://www.igstk.org/copyright.htm for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 #ifndef __igstkRenderWindowInteractor_h 00018 #define __igstkRenderWindowInteractor_h 00019 00020 #ifdef _MSC_VER 00021 #pragma warning ( disable : 4018 ) 00022 //Warning about: identifier was truncated to '255' characters in the debug 00023 //information (MVC6.0 Debug) 00024 #pragma warning( disable : 4284 ) 00025 #endif 00026 00027 #include "vtkRenderWindowInteractor.h" 00028 00029 #include "igstkMacros.h" 00030 00031 namespace igstk 00032 { 00033 00034 00035 class RenderWindowInteractor : public vtkRenderWindowInteractor 00036 { 00037 public: 00038 00039 static RenderWindowInteractor * New(); 00040 00041 vtkTypeRevisionMacro(RenderWindowInteractor,vtkRenderWindowInteractor); 00042 void PrintSelf(ostream& os, vtkIndent indent); 00043 00044 virtual void Initialize(); 00045 00046 00047 protected: 00048 RenderWindowInteractor(); 00049 virtual ~RenderWindowInteractor(); 00050 00051 private: 00052 RenderWindowInteractor(const RenderWindowInteractor&); // Not implemented. 00053 void operator=(const RenderWindowInteractor&); // Not implemented. 00054 }; 00055 00056 00057 } // end namespace igstk 00058 00059 00060 #endif