X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FInterface%2FProcessObject.h;h=e139c994d5e86f9107963ae6acea31fcd626d564;hb=6ffc11d77924d6ab7e94db95d41105982ac73e00;hp=51cf06742c0ccb72ce01c3d9d9c2cf97e4266055;hpb=4f6c47b5d9994cd1bbb601bfe8bc087a0a619e72;p=cpPlugins.git diff --git a/lib/cpPlugins/Interface/ProcessObject.h b/lib/cpPlugins/Interface/ProcessObject.h index 51cf067..e139c99 100644 --- a/lib/cpPlugins/Interface/ProcessObject.h +++ b/lib/cpPlugins/Interface/ProcessObject.h @@ -1,26 +1,29 @@ #ifndef __CPPLUGINS__INTERFACE__PROCESSOBJECT__H__ #define __CPPLUGINS__INTERFACE__PROCESSOBJECT__H__ -#include -#include -#include -#include -#include - -#ifdef cpPlugins_Interface_QT4 -class QWidget; -#else -typedef char QWidget -#endif // cpPlugins_Interface_QT4 +#include +#include -#include +#include +#include +#include -class vtkAlgorithm; +// Some forward declarations +class vtkRenderWindowInteractor; namespace cpPlugins { namespace Interface { + // Some forward declarations +#ifdef cpPlugins_Interface_QT4 + class ParametersQtDialog; + class SimpleMPRWidget; +#else + typedef char ParametersQtDialog; + typedef char SimpleMPRWidget; +#endif // cpPlugins_Interface_QT4 + /** */ class cpPlugins_Interface_EXPORT ProcessObject @@ -32,49 +35,70 @@ namespace cpPlugins typedef itk::SmartPointer< Self > Pointer; typedef itk::SmartPointer< const Self > ConstPointer; - public: - itkTypeMacro( ProcessObject, Object ); + typedef Parameters TParameters; + typedef std::set< vtkRenderWindowInteractor* > TInteractors; + typedef bool DialogResult; public: - virtual vtkAlgorithm* GetVTKAlgorithm( ) - { return( NULL ); } - virtual const vtkAlgorithm* GetVTKAlgorithm( ) const - { return( NULL ); } + itkTypeMacro( ProcessObject, Object ); + cpPlugins_Id_Macro( ProcessObject, BaseObject ); - virtual const Parameters& GetDefaultParameters( ) const; - virtual void SetParameters( const Parameters& params ); + itkGetConstObjectMacro( Parameters, TParameters ); - virtual unsigned int GetNumberOfInputs( ) const; - virtual unsigned int GetNumberOfOutputs( ) const; + itkGetObjectMacro( Parameters, TParameters ); + itkGetMacro( ParametersDialog, ParametersQtDialog* ); + itkGetMacro( SingleInteractor, vtkRenderWindowInteractor* ); + itkGetMacro( MPRViewer, SimpleMPRWidget* ); - virtual void SetNumberOfInputs( unsigned int n ); - virtual void SetNumberOfOutputs( unsigned int n ); + itkSetObjectMacro( ParametersDialog, ParametersQtDialog ); + itkSetObjectMacro( SingleInteractor, vtkRenderWindowInteractor ); + itkSetObjectMacro( MPRViewer, SimpleMPRWidget ); - virtual void SetInput( unsigned int idx, DataObject* dobj ); + public: + virtual void SetITK( itk::LightObject* o ); + virtual void SetVTK( vtkObjectBase* o ); - virtual std::string Update( ); - virtual void DisconnectOutputs( ); + // IO management + std::set< std::string > GetInputsNames( ) const; + std::set< std::string > GetOutputsNames( ) const; + unsigned int GetNumberOfInputs( ) const; + unsigned int GetNumberOfOutputs( ) const; - virtual bool ExecConfigurationDialog( QWidget* parent ); + OutputProcessObjectPort& GetOutput( const std::string& id ); + const OutputProcessObjectPort& GetOutput( const std::string& id ) const; template< class T > - inline T* GetInput( unsigned int idx ); - + inline T* GetInputData( const std::string& id ); template< class T > - inline const T* GetInput( unsigned int idx ) const; - + inline const T* GetInputData( const std::string& id ) const; template< class T > - inline T* GetOutput( unsigned int idx ); - + inline T* GetOutputData( const std::string& id ); template< class T > - inline const T* GetOutput( unsigned int idx ) const; + inline const T* GetOutputData( const std::string& id ) const; + + bool SetInput( + const std::string& id, const OutputProcessObjectPort& port + ); + + void DisconnectInputs( ); + void DisconnectOutputs( ); + void Disconnect( ); + + // Pipeline execution + virtual itk::ModifiedTimeType GetMTime( ) const; + virtual std::string Update( ); protected: ProcessObject( ); virtual ~ProcessObject( ); + void _AddInput( const std::string& name, bool required = true ); template< class O > - inline void _MakeOutput( unsigned int idx ); + inline void _AddOutput( const std::string& name ); + template< class F > + inline F* _CreateITK( ); + template< class F > + inline F* _CreateVTK( ); virtual std::string _GenerateData( ) = 0; @@ -84,12 +108,17 @@ namespace cpPlugins Self& operator=( const Self& ); protected: - itk::ProcessObject::Pointer m_RealProcessObject; - Parameters m_DefaultParameters; - Parameters m_Parameters; + typedef std::map< std::string, InputProcessObjectPort > _TInputs; + typedef std::map< std::string, OutputProcessObjectPort > _TOutputs; + _TInputs m_Inputs; + _TOutputs m_Outputs; + Parameters::Pointer m_Parameters; + + itk::ModifiedTimeType m_LastExecutionTime; - std::vector< DataObject::Pointer > m_Inputs; - std::vector< DataObject::Pointer > m_Outputs; + ParametersQtDialog* m_ParametersDialog; + vtkRenderWindowInteractor* m_SingleInteractor; + SimpleMPRWidget* m_MPRViewer; }; } // ecapseman