From 6990e162df07c692f473187a55dc043f6d7aa167 Mon Sep 17 00:00:00 2001 From: Leonardo Florez-Valencia Date: Tue, 24 Nov 2015 19:20:19 -0500 Subject: [PATCH] ... --- appli/ImageMPR/ImageMPR.cxx | 55 ++--------------------------- lib/cpPlugins/Interface/Plugins.cxx | 4 ++- 2 files changed, 5 insertions(+), 54 deletions(-) diff --git a/appli/ImageMPR/ImageMPR.cxx b/appli/ImageMPR/ImageMPR.cxx index 5a9e414..424020e 100644 --- a/appli/ImageMPR/ImageMPR.cxx +++ b/appli/ImageMPR/ImageMPR.cxx @@ -79,61 +79,10 @@ UpdateActualFilter( ) { std::string parent = this->m_Plugins.GetParent( *oIt ); TDataObject* dobj = this->m_Plugins.GetData< TDataObject >( *oIt ); - this->m_UI->MPR->AddData( dobj, *oIt, parent ); - this->m_UI->MPR->ShowData( *oIt ); + if( this->m_UI->MPR->AddData( dobj, *oIt, parent ) ) + this->m_UI->MPR->ShowData( *oIt ); } // rof - - /* TODO - std::vector< std::string > outputs; - std::string err = this->m_Plugins->UpdateActiveFilter( outputs ); - if( err == "" ) - { - for( auto oIt = outputs.begin( ); oIt != outputs.end( ); ++oIt ) - { - TPlugins::TImage* image = this->m_Plugins->GetImage( *oIt ); - if( image != NULL ) - { - vtkImageData* vimage = image->GetVTK< vtkImageData >( ); - if( vimage != NULL ) - { - this->m_UI->MPR->AddImage( - vimage, *oIt, this->m_Plugins->GetParent( *oIt ) - ); - this->m_UI->MPR->ShowData( *oIt ); - - } // fi - continue; - - } // fi - - TPlugins::TMesh* mesh = this->m_Plugins->GetMesh( *oIt ); - if( mesh != NULL ) - { - this->m_Plugins->BlockWidget( ); - this->m_UI->MPR->AddMesh( - mesh->GetVTK< vtkPolyData >( ), - *oIt, - this->m_Plugins->GetParent( *oIt ) - ); - this->m_UI->MPR->ShowData( *oIt ); - this->m_Plugins->UnblockWidget( ); - - } // fi - - } // rof - } - else - { - QMessageBox::critical( - this, - tr( "Error executing filter" ), - tr( ( std::string( "Error caught: " ) + err ).c_str( ) ) - ); - return; - - } // fi - */ } // ------------------------------------------------------------------------- diff --git a/lib/cpPlugins/Interface/Plugins.cxx b/lib/cpPlugins/Interface/Plugins.cxx index 614fddb..62227a9 100644 --- a/lib/cpPlugins/Interface/Plugins.cxx +++ b/lib/cpPlugins/Interface/Plugins.cxx @@ -549,6 +549,8 @@ ActivateFilter( const std::string& name ) void cpPlugins::Interface::Plugins:: DeactivateFilter( ) { + if( this->m_ActiveFilter.IsNotNull( ) ) + this->m_ActiveFilter->DisconnectOutputs( ); this->m_ActiveFilter = NULL; } @@ -685,7 +687,7 @@ UpdateActiveFilter( TStringContainer& outputs, const std::string& parent ) outputs.insert( dobj->GetName( ) ); } // rof - this->m_ActiveFilter->DisconnectOutputs( ); + // this->m_ActiveFilter->DisconnectOutputs( ); return( true ); } else -- 2.49.0