#include // ------------------------------------------------------------------------- itk::ModifiedTimeType cpPlugins::BaseObjects::Widget:: GetMTime( ) const { // Let time only be managed by itk -> synch issues when data is // represented by vtk return( this->itk::Object::GetMTime( ) ); } // ------------------------------------------------------------------------- bool cpPlugins::BaseObjects::Widget:: IsInteractive( ) { return( true ); } // ------------------------------------------------------------------------- void cpPlugins::BaseObjects::Widget:: EnabledOn( ) { this->SetEnabled( true ); } // ------------------------------------------------------------------------- void cpPlugins::BaseObjects::Widget:: EnabledOff( ) { this->SetEnabled( false ); } // ------------------------------------------------------------------------- cpPlugins::BaseObjects::Widget:: Widget( ) : Superclass( ) { this->m_Parameters.ConfigureAsString( "Text", "" ); } // ------------------------------------------------------------------------- cpPlugins::BaseObjects::Widget:: ~Widget( ) { } // eof - $RCSfile$