Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #ifndef PCL_PCL_VISUALIZER_INTERACTOR_H_
00038 #define PCL_PCL_VISUALIZER_INTERACTOR_H_
00039
00040 #include <pcl/pcl_macros.h>
00041
00042 #include <vtkConfigure.h>
00043 #include <vtkObjectFactory.h>
00044 #ifdef _WIN32
00045 # include <vtkWin32RenderWindowInteractor.h>
00046 #else
00047 #include <vtkConfigure.h>
00048 #if defined VTK_USE_CARBON
00049 # include <vtkCarbonRenderWindowInteractor.h>
00050 #elif defined VTK_USE_COCOA
00051 # include <vtkCocoaRenderWindowInteractor.h>
00052 #else
00053
00054 # include <vtkXRenderWindowInteractor.h>
00055 # undef Complex
00056 # undef Bool
00057 # undef Success
00058 # undef Status
00059 #endif
00060 #endif
00061
00062 namespace pcl
00063 {
00064 namespace visualization
00065 {
00067 #ifdef _WIN32
00068 class PCL_EXPORTS PCLVisualizerInteractor : public vtkWin32RenderWindowInteractor
00069 #elif defined VTK_USE_CARBON
00070 class PCLVisualizerInteractor : public vtkCarbonRenderWindowInteractor
00071 #elif defined VTK_USE_COCOA
00072 class PCLVisualizerInteractor : public vtkCocoaRenderWindowInteractor
00073 #else
00074 class PCLVisualizerInteractor : public vtkXRenderWindowInteractor
00075 #endif
00076 {
00077 public:
00078 static PCLVisualizerInteractor *New ();
00079
00080
00081 void stopLoop ();
00082
00083 bool stopped;
00084 int timer_id_;
00085
00086 #if defined (_WIN32) && ((VTK_MAJOR_VERSION == 5) && (VTK_MINOR_VERSION <= 4))
00087 int BreakLoopFlag;
00088
00089 virtual void
00090 Start ();
00091
00092 vtkGetMacro (BreakLoopFlag, int);
00093
00094 void
00095 SetBreakLoopFlag (int);
00096
00097 void
00098 BreakLoopFlagOff ();
00099
00100 void
00101 BreakLoopFlagOn ();
00102 #endif
00103 };
00104 }
00105 }
00106
00107 #endif