]> Creatis software - cpPlugins.git/blob - appli/PipelineEditor/PipelineEditor.cxx
MVC integration at 50%
[cpPlugins.git] / appli / PipelineEditor / PipelineEditor.cxx
1 #include "PipelineEditor.h"
2 #include "ui_PipelineEditor.h"
3
4 #include <QMessageBox>
5
6 #include <cpPlugins/Image.h>
7 #include <cpPipelineEditor/Editor.h>
8
9 #include <vtkImageData.h>
10 #include <vtkPolyData.h>
11 #include <vtkRenderWindowInteractor.h>
12
13 // -------------------------------------------------------------------------
14 PipelineEditor::
15 PipelineEditor( int argc, char* argv[], QApplication* app, QWidget* parent )
16   : Superclass( argc, argv, app, parent ),
17     m_UI( new Ui::PipelineEditor )
18 {
19   // Basic configuration
20   this->m_UI->setupUi( this );
21   this->_Configure(
22     this->m_UI->LoadedPlugins,
23     this->m_UI->Viewer,
24     this->m_UI->Canvas->editor( )
25     );
26
27   // Connect actions to slots
28   this->connect(
29     this->m_UI->ButtonLoadPluginsFile, SIGNAL( clicked( ) ),
30     this, SLOT( _InteractiveLoadPlugins( ) )
31     );
32   this->connect(
33     this->m_UI->ButtonLoadPluginsPath, SIGNAL( clicked( ) ),
34     this, SLOT( _InteractiveLoadPluginsFromPath( ) )
35     );
36   this->connect(
37     this->m_UI->ActionOpenWorkspace, SIGNAL( triggered( ) ),
38     this, SLOT( _InteractiveLoadWorkspace( ) )
39     );
40   this->connect(
41     this->m_UI->ActionSaveWorkspace, SIGNAL( triggered( ) ),
42     this, SLOT( _InteractiveSaveWorkspace( ) )
43     );
44   this->connect(
45     this->m_UI->Canvas->editor( ),
46     SIGNAL( execFilter( const std::string& ) ),
47     this,
48     SLOT( _ExecFilter( const std::string& ) )
49     );
50   this->connect(
51     this->m_UI->Canvas->editor( ),
52     SIGNAL( showFilterOutput( const std::string&, const std::string& ) ),
53     this,
54     SLOT( _ShowFilterOutput( const std::string&, const std::string& ) )
55     );
56   this->connect(
57     this->m_UI->Canvas->editor( ),
58     SIGNAL( hideFilterOutput( const std::string&, const std::string& ) ),
59     this,
60     SLOT( _HideFilterOutput( const std::string&, const std::string& ) )
61     );
62   this->connect(
63     this->m_UI->Canvas->editor( ),
64     SIGNAL( visualPropertiesFilterOutput( const std::string&, const std::string& ) ),
65     this,
66     SLOT( _PropertiesFilterOutput( const std::string&, const std::string& ) )
67     );
68 }
69
70 // -------------------------------------------------------------------------
71 PipelineEditor::
72 ~PipelineEditor( )
73 {
74   delete this->m_UI;
75 }
76
77 // -------------------------------------------------------------------------
78 void PipelineEditor::
79 _ShowFilterOutput(
80   const std::string& filter_name, const std::string& output_name
81   )
82 {
83   // Update filter, if needed
84   this->_ExecFilter( filter_name );
85
86   // Get output
87   auto output = this->m_Workspace.GetOutput( filter_name, output_name );
88   if( output == NULL )
89   {
90     QMessageBox::critical(
91       this,
92       QMessageBox::tr( "Error showing data" ),
93       QMessageBox::tr( "Unknown port name." )
94       );
95     return;
96
97   } // fi
98
99   // Create and associate actor
100   this->_Block( );
101   this->m_UI->Viewer->AddActor( output->CreateVTKActor( ) );
102   this->_UnBlock( );
103 }
104
105 // -------------------------------------------------------------------------
106 void PipelineEditor::
107 _HideFilterOutput(
108   const std::string& filter_name, const std::string& output_name
109   )
110 {
111   // Get output
112   /* TODO
113      auto filter = this->m_Workspace.GetFilter( filter_name );
114      if( filter != NULL )
115      {
116      auto output = filter->GetOutputData( output_name );
117      if( output != NULL )
118      {
119      std::string data_name = output_name + "@" + filter_name;
120      this->m_UI->Viewer->HideData( data_name );
121
122      } // fi
123
124      } // fi
125   */
126 }
127
128 // -------------------------------------------------------------------------
129 void PipelineEditor::
130 _PropertiesFilterOutput(
131   const std::string& filter_name, const std::string& output_name
132   )
133 {
134   /* TODO
135      auto filter = this->m_Workspace.GetFilter( filter_name );
136      if( filter != NULL )
137      {
138      auto output = filter->GetOutputData< vtkPolyData >( output_name );
139      if( output != NULL )
140      {
141      auto actor = this->m_UI->Viewer->GetActor( output );
142      if( actor != NULL )
143      {
144      cpExtensions::QT::PropertyWidget* wdg =
145      new cpExtensions::QT::PropertyWidget( NULL );
146      wdg->SetProp( actor );
147      wdg->SetRenderWindow(
148      this->m_UI->Viewer->GetInteractor( 3 )->GetRenderWindow( )
149      );
150      wdg->show( );
151
152      } // fi
153      }
154      else
155      QMessageBox::critical(
156      this,
157      QMessageBox::tr( "Error showing data" ),
158      QMessageBox::tr( "No known VTK conversion!" )
159      );
160
161      } // fi
162   */
163 }
164
165 // eof - $RCSfile$