00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __igstkMouseTrackerTool_h
00019 #define __igstkMouseTrackerTool_h
00020
00021 #include "igstkTrackerTool.h"
00022
00023 namespace igstk
00024 {
00025
00026 class MouseTracker;
00027
00035 class MouseTrackerTool : public TrackerTool
00036 {
00037 public:
00038
00040 igstkStandardClassTraitsMacro( MouseTrackerTool, TrackerTool )
00041
00042 typedef std::string MouseNameType;
00043
00045 igstkGetStringMacro( MouseName );
00046
00048 virtual void RequestSetMouseName( const MouseNameType & MouseName );
00049
00050 protected:
00051
00052 MouseTrackerTool();
00053 ~MouseTrackerTool();
00054
00056 virtual void PrintSelf( std::ostream& os, ::itk::Indent indent ) const;
00057
00058 private:
00059
00062 virtual bool CheckIfTrackerToolIsConfigured() const;
00063
00064 MouseTrackerTool(const Self&);
00065 void operator=(const Self&);
00066
00067 MouseNameType m_MouseName;
00068
00069 bool m_TrackerToolConfigured;
00070
00071 };
00072
00073 }
00074
00075
00076 #endif // __igstk_MouseTrackerTool_h_