#include // ------------------------------------------------------------------------- void cpPlugins::Pipeline::Widget:: AddInteractor( vtkRenderWindowInteractor* i ) { if( this->m_Interactors.insert( i ).second ) this->Modified( ); } // ------------------------------------------------------------------------- bool cpPlugins::Pipeline::Widget:: IsInteractive( ) { return( true ); } // ------------------------------------------------------------------------- void cpPlugins::Pipeline::Widget:: EnabledOn( ) { this->SetEnabled( true ); } // ------------------------------------------------------------------------- void cpPlugins::Pipeline::Widget:: EnabledOff( ) { this->SetEnabled( false ); } // ------------------------------------------------------------------------- cpPlugins::Pipeline::Widget:: Widget( ) : Superclass( ) { this->m_Parameters.ConfigureAsString( "Text", "" ); } // ------------------------------------------------------------------------- cpPlugins::Pipeline::Widget:: ~Widget( ) { } // eof - $RCSfile$