X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpExtensions%2FVisualization%2FImageSliceActors.h;h=f940a90a6ff6f93a6af1dce2fda93df14c4c575e;hb=f2f39f66027a98bd8dac50bade5618e0136bbefa;hp=3991ab39419309ec5f7399ea3e3a7381128cf2a7;hpb=2361f4f97631e09d88d8a5510a369817dcaa19db;p=cpPlugins.git diff --git a/lib/cpExtensions/Visualization/ImageSliceActors.h b/lib/cpExtensions/Visualization/ImageSliceActors.h index 3991ab3..f940a90 100644 --- a/lib/cpExtensions/Visualization/ImageSliceActors.h +++ b/lib/cpExtensions/Visualization/ImageSliceActors.h @@ -3,26 +3,20 @@ #include +#include +#include + #include #include #include +#include #include #include #include #include #include -// ------------------------------------------------------------------------- -#define cpPlugins_ImageSliceActors( name, type ) \ - inline type* Get##name##Actor( ) const \ - { \ - return( \ - dynamic_cast< type* >( \ - const_cast< Self* >( this )-> \ - GetItemAsObject( this->name##ActorIndex ) \ - ) \ - ); \ - } +#include // ------------------------------------------------------------------------- class vtkAlgorithmOutput; @@ -30,66 +24,121 @@ class vtkImageData; // ------------------------------------------------------------------------- namespace cpExtensions +{ + namespace Visualization { - namespace Visualization + /** + */ + class cpExtensions_EXPORT ImageSliceActors + : public vtkPropCollection { - /** - */ - class cpExtensions_EXPORT ImageSliceActors - : public vtkPropCollection - { - public: - typedef ImageSliceActors Self; - - public: - vtkTypeMacro( ImageSliceActors, vtkPropCollection ); - - cpPlugins_ImageSliceActors( Image, vtkImageActor ); - cpPlugins_ImageSliceActors( Text, vtkTextActor ); - cpPlugins_ImageSliceActors( Plane, vtkActor ); - - public: - // Creation - static ImageSliceActors* New( ); - - void SetInputConnection( vtkAlgorithmOutput* aout, int axis ); - void SetInputData( vtkImageData* data, int axis ); - - double* GetDisplayBounds( ) const; - void GetDisplayBounds( double bounds[ 6 ] ) const; - - int GetAxis( ) const; - int GetSliceNumber( ) const; - int GetSliceNumberMinValue( ) const; - int GetSliceNumberMaxValue( ) const; - void SetSliceNumber( const int& slice ); - void UpdateText( ); - - protected: - ImageSliceActors( ); - virtual ~ImageSliceActors( ); - - private: - // Purposely not implemented - ImageSliceActors( const Self& ); - Self& operator=( const Self& ); - - protected: - vtkSmartPointer< vtkImageSliceMapper > SliceMapper; - vtkSmartPointer< vtkPolyData > PlaneSource; - vtkSmartPointer< vtkPolyDataMapper > PlaneMapper; - char TextBuffer[ 1024 ]; - - vtkSmartPointer< vtkImageActor > ImageActor; - vtkSmartPointer< vtkTextActor > TextActor; - vtkSmartPointer< vtkActor > PlaneActor; - - unsigned int ImageActorIndex; - unsigned int TextActorIndex; - unsigned int PlaneActorIndex; - }; - - } // ecapseman + public: + typedef ImageSliceActors Self; + + public: + vtkTypeMacro( ImageSliceActors, vtkPropCollection ); + + public: + // Creation + static ImageSliceActors* New( ); + + void AddInputConnection( vtkAlgorithmOutput* aout, int axis = 2 ); + void AddInputData( vtkImageData* data, int axis = 2 ); + void Clear( ); + + vtkInteractorStyle* GetStyle( ); + const vtkInteractorStyle* GetStyle( ) const; + + void PushActorsInto( vtkRenderer* renderer ); + void PopActorsFrom( vtkRenderer* renderer ); + unsigned int GetNumberOfImageActors( ) const; + vtkImageActor* GetImageActor( unsigned int id ); + const vtkImageActor* GetImageActor( unsigned int id ) const; + vtkTextActor* GetTextActor( ); + const vtkTextActor* GetTextActor( ) const; + vtkActor* GetPlaneActor( ); + const vtkActor* GetPlaneActor( ) const; + vtkPlane* GetPlaneFunction( ); + const vtkPlane* GetPlaneFunction( ) const; + + void AddActor( vtkAlgorithm* algorithm, vtkActor* actor ); + void AddActor( vtkActor* actor ); + + void SetInterpolate( bool v ); + void InterpolateOn( ); + void InterpolateOff( ); + + double* GetDisplayBounds( ) const; + void GetDisplayBounds( double bounds[ 6 ] ) const; + + int GetAxis( ) const; + int GetSliceNumber( ) const; + int GetSliceNumberMinValue( ) const; + int GetSliceNumberMaxValue( ) const; + void SetSliceNumber( const int& slice ); + void UpdateText( ); + void UpdateText( double pos[ 3 ] ); + void UpdateText( const double& w, const double& l ); + + protected: + ImageSliceActors( ); + virtual ~ImageSliceActors( ); + + void _ConfigureNewInput( int axis ); + + // Events + static void _MouseMoveCommand( + void* data, + const ImageInteractorStyle::ButtonID& btn, double* pos, + bool alt, bool ctr, bool sft + ); + static void _MouseClickCommand( + void* data, + const ImageInteractorStyle::ButtonID& btn, double* pos, + bool alt, bool ctr, bool sft + ); + static void _MouseDoubleClickCommand( + void* data, + const ImageInteractorStyle::ButtonID& btn, double* pos, + bool alt, bool ctr, bool sft + ); + static void _MouseWheelCommand( + void* data, + const int& dir, bool alt, bool ctr, bool sft + ); + static void _KeyCommand( + void* data, + const char& key + ); + + private: + // Purposely not implemented + ImageSliceActors( const Self& ); + Self& operator=( const Self& ); + + protected: + vtkSmartPointer< ImageInteractorStyle > Style; + + // Multiple actors + std::vector< vtkSmartPointer< vtkImageSliceMapper > > SliceMappers; + std::vector< vtkSmartPointer< vtkImageActor > > ImageActors; + bool Interpolate; + + // Other associated actors + typedef std::pair< vtkAlgorithm*, vtkActor* > TAssociatedActor; + typedef std::vector< TAssociatedActor > TAssociatedActors; + TAssociatedActors AssociatedActors; + + // Unique objects + vtkSmartPointer< vtkPlane > PlaneFunction; + vtkSmartPointer< vtkPolyData > PlaneSource; + vtkSmartPointer< vtkPolyDataMapper > PlaneMapper; + char TextBuffer[ 1024 ]; + vtkSmartPointer< vtkTextActor > TextActor; + vtkSmartPointer< vtkActor > PlaneActor; + }; + + } // ecapseman } // ecapseman