/*! * @file button.cxx * @brief This contains the Button class implementation. * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr) * @date 2011-05-19 */ #include "button.h" namespace creaButtonContainer { namespace view { // ---------------------------------------------------------------------------------- Button::Button( wxWindow* parent, long id, ButtonPair* pair ) { this->m_ButtonPair = pair; std::string wXbuttonName = this->m_ButtonPair->first->first; std::string wXiconPath = this->m_ButtonPair->first->second; std::string wXdescription = this->m_ButtonPair->second->first; wxString buttonName( wXbuttonName.c_str( ), wxConvUTF8 ); wxString imageIcon( wXiconPath.c_str( ), wxConvUTF8 ); wxString description( wXdescription.c_str( ), wxConvUTF8 ); //creating the button. this->Create( parent, id, wxBitmap( wxImage( imageIcon, wxBITMAP_TYPE_ANY, -1 ) ), wxDefaultPosition, wxDefaultSize, wxBU_AUTODRAW, wxDefaultValidator, buttonName ); this->SetToolTip( description ); } // ---------------------------------------------------------------------------------- Button::~Button( ) { } // ---------------------------------------------------------------------------------- std::string Button::GetButtonName( ) { return ( this->m_ButtonPair->first->first ); } // ---------------------------------------------------------------------------------- std::string Button::GetIconPath( ) { return ( this->m_ButtonPair->first->second ); } // ---------------------------------------------------------------------------------- std::string Button::GetDescription( ) { return ( this->m_ButtonPair->second->first ); } // ---------------------------------------------------------------------------------- void Button::Execute( ) { std::cout << "ButtonAction: " << this->m_ButtonPair->first->first << std::endl; TFunctor* vTable[ ] = { this->m_ButtonPair->second->second }; vTable[ 0 ]->Call( this->m_ButtonPair->first->first ); } // ---------------------------------------------------------------------------------- }//ecapseman }//ecapseman