]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/Workspace.h
...
[cpPlugins.git] / lib / cpPlugins / Interface / Workspace.h
index 6282f697f6ee7784e835fdac11f06037b16cf277..fd9847b20a81b58215082a795e32bf6d0a81d8bb 100644 (file)
@@ -1,9 +1,10 @@
 #ifndef __cpPlugins__Interface__Workspace__h__
 #define __cpPlugins__Interface__Workspace__h__
 
-#include <cpPlugins/Interface/Plugins.h>
-#include <cpPlugins/BaseObjects/DataObject.h>
-#include <cpPlugins/BaseObjects/ProcessObject.h>
+#include <cpPlugins/Interface/Loader.h>
+#include <cpPlugins/Pipeline/DataObject.h>
+#include <cpPlugins/Pipeline/ProcessObject.h>
+#include <cpPlugins/Pipeline/Widget.h>
 #include <itkObject.h>
 
 class vtkRenderWindowInteractor;
@@ -23,13 +24,18 @@ namespace cpPlugins
       typedef itk::SmartPointer< Self >       Pointer;
       typedef itk::SmartPointer< const Self > ConstPointer;
 
-      typedef cpPlugins::BaseObjects::ProcessObject TProcess;
-      typedef cpPlugins::Interface::Plugins         TInterface;
+      typedef cpPlugins::Pipeline::DataObject    TDataObject;
+      typedef cpPlugins::Pipeline::ProcessObject TFilter;
+      typedef cpPlugins::Pipeline::Widget        TWidget;
+      typedef cpPlugins::Interface::Loader          TLoader;
 
-      typedef std::map< std::string, TProcess::Pointer > TFilters;
-      typedef
-        std::map< std::string, std::pair< std::string, std::string > >
-        TExposedPorts;
+      typedef std::map< std::string, TFilter::Pointer > TFilters;
+
+      /* TODO
+         typedef
+         std::map< std::string, std::pair< std::string, std::string > >
+         TExposedPorts;
+      */
 
     public:
       itkNewMacro( Self );
@@ -45,18 +51,19 @@ namespace cpPlugins
 
       // Filter management
       std::vector< std::string > GetFiltersNames( ) const;
-      TProcess* GetFilter(
-        const std::string& name
-        );
-      const TProcess* GetFilter(
-        const std::string& name
-        ) const;
+      TFilter* GetFilter( const std::string& name );
+      const TFilter* GetFilter( const std::string& name ) const;
+      TWidget* GetWidget( const std::string& name );
+      const TWidget* GetWidget( const std::string& name ) const;
       bool HasFilter( const std::string& name ) const;
-      TProcess* CreateFilter(
-        const std::string& category,
-        const std::string& filter,
+      bool HasWidget( const std::string& name ) const;
+      TFilter* CreateFilter(
+        const std::string& category, const std::string& filter,
         const std::string& name
         );
+      TFilter* CreateFilter(
+        const std::string& category, const std::string& filter
+        );
       bool RenameFilter(
         const std::string& old_name, const std::string& new_name
         );
@@ -69,62 +76,54 @@ namespace cpPlugins
       // Interactors
       void AddInteractor( vtkRenderWindowInteractor* iren );
 
-      // Exposed ports
-      const TExposedPorts& GetExposedInputs( ) const;
-      const TExposedPorts& GetExposedOutputs( ) const;
-      cpPlugins::BaseObjects::DataObject* GetExposedOutput(
-        const std::string& name
-        );
-      const cpPlugins::BaseObjects::DataObject* GetExposedOutput(
-        const std::string& name
-        ) const;
-      bool ExposeInput(
-        const std::string& name,
-        const std::string& filter, const std::string& filter_input
-        );
-      bool ExposeOutput(
-        const std::string& name,
-        const std::string& filter, const std::string& filter_output
-        );
-      void HideInput( const std::string& name );
-      void HideOutput( const std::string& name );
-      bool RenameExposedInput(
-        const std::string& old_name,
-        const std::string& new_name
-        );
-      bool RenameExposedOutput(
-        const std::string& old_name,
-        const std::string& new_name
-        );
-
       // Connection management
-      std::vector< std::pair< std::string, std::string > > GetConnections(
-        const std::string& origin, const std::string& destination
-        ) const;
-      void Connect(
-        const std::string& orig_filter, const std::string& dest_filter,
-        const std::string& output_name, const std::string& input_name
-        );
-      void Connect(
-        cpPlugins::BaseObjects::DataObject* output,
-        const std::string& dest_filter, const std::string& input_name
+      bool Connect(
+        const std::string& origin_filter,
+        const std::string& origin_output,
+        const std::string& destination_filter,
+        const std::string& destination_input
         );
-      void Connect(
-        cpPlugins::BaseObjects::DataObject* output,
-        const std::string& exposed_input_name
+      bool Connect(
+        TDataObject* input,
+        const std::string& destination_filter,
+        const std::string& destination_input
         );
-      void Disconnect(
-        const std::string& orig_filter, const std::string& dest_filter,
-        const std::string& output_name, const std::string& input_name
+      bool Disconnect(
+        const std::string& origin_filter,
+        const std::string& origin_output,
+        const std::string& destination_filter,
+        const std::string& destination_input
         );
-      void Disconnect(
-        const std::string& dest_filter, const std::string& input_name
-        );
-      void Disconnect( const std::string& dest_filter );
+
+      /* TODO
+         std::vector< std::pair< std::string, std::string > > GetConnections(
+         const std::string& origin, const std::string& destination
+         ) const;
+         void Connect(
+         const std::string& orig_filter, const std::string& dest_filter,
+         const std::string& output_name, const std::string& input_name
+         );
+         void Connect(
+         cpPlugins::Pipeline::DataObject* output,
+         const std::string& dest_filter, const std::string& input_name
+         );
+         void Connect(
+         cpPlugins::Pipeline::DataObject* output,
+         const std::string& exposed_input_name
+         );
+         void Disconnect(
+         const std::string& orig_filter, const std::string& dest_filter,
+         const std::string& output_name, const std::string& input_name
+         );
+         void Disconnect(
+         const std::string& dest_filter, const std::string& input_name
+         );
+         void Disconnect( const std::string& dest_filter );
+      */
 
       // Pipeline execution
-      void Execute( );
-      void Execute( const std::string& name );
+      void Update( );
+      void Update( const std::string& name );
 
     protected:
       Workspace( );
@@ -136,11 +135,14 @@ namespace cpPlugins
       Self& operator=( const Self& other );
 
     protected:
+      TLoader  m_Loader;
       TFilters m_Filters;
       bool     m_PrintExecution;
 
-      TExposedPorts m_ExposedInputs;
-      TExposedPorts m_ExposedOutputs;
+      /* TODO
+         TExposedPorts m_ExposedInputs;
+         TExposedPorts m_ExposedOutputs;
+      */
 
       std::set< vtkRenderWindowInteractor* > m_Interactors;
     };