#include // ------------------------------------------------------------------------- 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$