X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FcreaButtonContainer%2Fmodel%2FcontainerSettings.cxx;h=45d2932a4cc9f2c5ee8a15f9aa69504c07cc7fcd;hb=e1c23d053ffe93035f13802efdb19dc116e4b46c;hp=297ac4381d602b7401a44f627262cb2eebdf03b7;hpb=4b092ee0b1bcda4d298e5ffc3b58b599e273db20;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/containerSettings.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/containerSettings.cxx index 297ac43..45d2932 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/containerSettings.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/containerSettings.cxx @@ -1,71 +1,170 @@ -/*************************************************************** - * Name: ButtonGroupSettings.cxx - * Purpose: It is the ButtonGroupSettings - * Author: Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr) - * Modified: 2011-05-09 - * Copyright: Diego CACERES (http://www.creatis.insa-lyon.fr/~caceres/) - * License: - **************************************************************/ +/*# --------------------------------------------------------------------- +# +# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image +# pour la Sant�) +# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton +# Previous Authors : Laurent Guigues, Jean-Pierre Roux +# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil +# +# This software is governed by the CeCILL-B license under French law and +# abiding by the rules of distribution of free software. You can use, +# modify and/ or redistribute the software under the terms of the CeCILL-B +# license as circulated by CEA, CNRS and INRIA at the following URL +# http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +# or in the file LICENSE.txt. +# +# As a counterpart to the access to the source code and rights to copy, +# modify and redistribute granted by the license, users are provided only +# with a limited warranty and the software's author, the holder of the +# economic rights, and the successive licensors have only limited +# liability. +# +# The fact that you are presently reading this means that you have had +# knowledge of the CeCILL-B license and that you accept its terms. +# ------------------------------------------------------------------------ */ + +/*! + * @file containerSettings.cxx + * @brief Implements the ContainerSettings class. + * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr) + * @date 2011-06-02 + */ + #include "containerSettings.h" namespace creaButtonContainer { namespace model { - + // ---------------------------------------------------------------------------------- ContainerSettings::ContainerSettings( ) { - } + } + // ---------------------------------------------------------------------------------- ContainerSettings::~ContainerSettings( ) { } - + + // ---------------------------------------------------------------------------------- ButtonGroupMap ContainerSettings::GetButtonGroupContainer( ) { - return m_ButtonGroupContainer; + std::cout<< "MLER | ContainerSettings::GetButtonGroupContainer( )" << std::endl; + return ( this->m_ButtonGroupContainer ); } - + // ---------------------------------------------------------------------------------- KeyMapList ContainerSettings::GetGroupNameList( ) { - return m_GroupNameList; + std::cout<< "MLER | ContainerSettings::GetGroupNameList( )" << std::endl; + return ( this->m_GroupNameList ); } - + + // ---------------------------------------------------------------------------------- void - ContainerSettings::SetButtonGroupContainer( - ButtonGroupMap m_ButtonGroupContainer ) + ContainerSettings::SetButtonGroupContainer(ButtonGroupMap bgContainer) { - this->m_ButtonGroupContainer = m_ButtonGroupContainer; + std::cout<< "MLER | ContainerSettings:: SetButtonGroupContainer(ButtonGroupMap bgContainer)" << std::endl; + this->m_ButtonGroupContainer = bgContainer; } - + // ---------------------------------------------------------------------------------- void - ContainerSettings::SetGroupNameList( KeyMapList m_GroupNameList ) + ContainerSettings::SetGroupNameList( KeyMapList gNameList ) { - this->m_GroupNameList = m_GroupNameList; + std::cout<< "MLER | ContainerSettings::SetGroupNameList" << std::endl; + this->m_GroupNameList = gNameList; } + + // ---------------------------------------------------------------------------------- + + void - ContainerSettings::CreateGroup( const std::string & groupName ) + ContainerSettings::AddButton( const StringType & groupName, + const StringType &buttonName, const wxBitmap &icon, + const StringType &buttonDescription, FunctionEventType event ) { - this->m_GroupNameList.push_back( groupName ); + std::cout<< "MLER | ContainerSettings::AddButton( const StringType & groupName," << std::endl; + + ButtonPair* pair = new ButtonPair( + new ButtonInfo( buttonName, icon ), + new ButtonAction( buttonDescription, event ) ); + try + { + for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it + != this->m_GroupNameList.end( ); ++it ) + { + if ( ( *it ).compare( groupName ) == 0 ) + { + std::cout<<"MLER ContainerSettings // AddButton : it "<<*it <m_ButtonGroupContainer[ groupName ].push_back( pair ); + return; + }//fi + }//rof + this->m_GroupNameList.push_back( groupName ); + this->m_ButtonGroupContainer[ groupName ].push_back( pair ); + }//yrt + catch ( const std::exception& e ) + { + std::cerr + << "ContainerSettings::AddButton( const std::string & groupName," + << "const std::string buttonName, const std::string iconpath," + << "const std::string buttonDescription, FunctionEventType event ) exception: " + << e.what( ) << std::endl; + }//hctac } + // ---------------------------------------------------------------------------------- void - ContainerSettings::AddButton( const std::string & groupName, - const std::string buttonName, const std::string iconpath, - const std::string buttonDescription, FunctionEventType event ) + ContainerSettings::AddButton( BCSettingsStruct* info ) { - for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it - != this->m_GroupNameList.end( ); ++it ) - if ( ( *it ).compare( groupName ) == 0 ) + std::cout<< "MLER | ContainerSettings::AddButton( BCSettingsStruct* info )" << std::endl; + ButtonPair* pair = new ButtonPair( + new ButtonInfo( info->buttonName, info->icon ), + new ButtonAction( info->buttonDescription, info->eventFunction ) ); + try + { + for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it + != this->m_GroupNameList.end( ); ++it ) { - ButtonPair* pair = new ButtonPair( - new ButtonInfo( buttonName, iconpath ), - new ActionButton( buttonDescription, event ) ); - this->m_ButtonGroupContainer[ groupName ].push_back( pair ); - return; - } + if ( ( *it ).compare( info->groupName ) == 0 ) + { + this->m_ButtonGroupContainer[ info->groupName ].push_back( pair ); + return; + }//fi + }//rof + this->m_GroupNameList.push_back( info->groupName ); + this->m_ButtonGroupContainer[ info->groupName ].push_back( pair ); + }//yrt + catch ( const std::exception& e ) + { + std::cerr + << "void ContainerSettings::AddButton( BCSettingsStruct* info ) " + << "exception: " << e.what( ) << std::endl; + }//hctac } - } -} + // ---------------------------------------------------------------------------------- + void + ContainerSettings::AddButtons( BCStructVectorType infoList ) + { + std::cout<< "MLER | ContainerSettings::AddButtons( BCStructVectorType infoList )" << std::endl; + try + { + for( BCStructVectorType::iterator it = infoList.begin( ); it + != infoList.end( ); ++it ) + { + this->AddButton( *it ); + }//rof + }//yrt + catch ( const std::exception& e ) + { + std::cerr + << "ContainerSettings::AddButtons( BCStructVectorType infoList ) " + << "exception: " << e.what( ) << std::endl; + }//hctac + } + + // ---------------------------------------------------------------------------------- + }//ecapseman +}//ecapseman