X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FcreaPanelButtonContainer%2FbuttonContainerSettings.cxx;h=7f96dcf9223f4146ccacd144a96ea061302c526e;hb=8f1f70ffb361d0ccde7da40ff128cebdcfcf3f13;hp=044e6e0562bae1c05e57a3195714c1b1d8cca77d;hpb=79a4c48d9c84813a60df432d3c7eb8092b3a24af;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/buttonContainerSettings.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/buttonContainerSettings.cxx index 044e6e0..7f96dcf 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/buttonContainerSettings.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/buttonContainerSettings.cxx @@ -1,124 +1,323 @@ -/*************************************************************** - * Name: buttonContainerSettings.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 buttonContainerSettings.cxx + * @brief Implements the ButtonContainerSettings class. + * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr) + * @date 2011-06-02 + */ + #include "buttonContainerSettings.h" -#include namespace creaPanelButtonContainer { - + // ---------------------------------------------------------------------------------- ButtonContainerSettings::ButtonContainerSettings( ) { + } + // ---------------------------------------------------------------------------------- ButtonContainerSettings::~ButtonContainerSettings( ) { } - ButtonGroupMap + + // ---------------------------------------------------------------------------------- + ButtonContainerSettings::ButtonGroupMap ButtonContainerSettings::GetButtonGroupContainer( ) { + std::cout<< "MLER | ButtonContainerSettings:: GetButtonGroupContainer( ) " << std::endl; return m_ButtonGroupContainer; } - - KeyMapList + // ---------------------------------------------------------------------------------- + ButtonContainerSettings::KeyMapList ButtonContainerSettings::GetGroupNameList( ) { + std::cout<< "MLER | ButtonContainerSettings:: GetGroupNameList( ) " << std::endl; return m_GroupNameList; } - - //GetButtonPanel returns the panel asociated to de buttonAction - PanelButton - ButtonContainerSettings::GetPanelButton( const std::string &buttonName ) + // ---------------------------------------------------------------------------------- + //GetButtonPanel returns the panel associated to the buttonAction + ButtonContainerSettings::PanelButton + ButtonContainerSettings::GetPanelButton( const StringType &buttonName ) { - for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it - != this->m_GroupNameList.end( ); ++it ) + try { - ButtonList list = this->m_ButtonGroupContainer[ ( *it ) ]; - for( ButtonList::iterator it1 = list.begin( ); it1 != list.end( ); ++it1 ) + std::cout<< "MLER | ButtonContainerSettings:: GetPanelButton " << std::endl; + + for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it + != this->m_GroupNameList.end( ); ++it ) { - if ( ( *it1 )->first->first.compare( buttonName ) == 0 ) + + //std::cout<< std::endl<<"MLER ButtonContainerSettings // GetPanelButton :: it "<< *it<m_ButtonGroupContainer[ ( *it ) ]; + for( ButtonList::iterator it1 = list.begin( ); it1 != list.end( ); ++it1 ) { - return ( ( *it1 )->second->second ); - }//fi + if ( ( *it1 )->first->first.compare( buttonName ) == 0 ) + { + return ( ( *it1 )->second->second ); + }//fi + }//rof }//rof - }//rof + }//yrt + catch ( std::exception& e ) + { + std::cerr + << "ButtonContainerSettings::GetPanelButton( const StringType &buttonName ) " + << "exception: " << e.what( ) << std::endl; + }//hctac return ( NULL ); } - ButtonGroupSettings* + // ---------------------------------------------------------------------------------- + ButtonContainerSettings::PanelButton + ButtonContainerSettings::GetPanelList( const StringType &buttonName ) + { + std::cout<< "MLER | ButtonContainerSettings:: GetPanelList " << std::endl; + + + try { + if(m_itemsMap.empty()) + std::cout<< "no tengo nada "<< std::endl; + + for( ItemsMap::iterator it= this->m_itemsMap.begin(); it!=this->m_itemsMap.end(); ++it ) + { + if( (*it).first.compare(buttonName) == 0 ) + return ( (*it).second ); + } + + + }catch ( std::exception& e ) + { + std::cerr + << "ButtonContainerSettings::GetPanelButton( const StringType &buttonName ) " + << "exception: " << e.what( ) << std::endl; + }//hctac + return (NULL); + + } + + + // ---------------------------------------------------------------------------------- + ButtonContainerSettings::ButtonGroupSettings* ButtonContainerSettings::GetButtonGroupSettings( TFunctor* functor ) { - ButtonGroupSettings* settings = new ButtonGroupSettings( ); - for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it - != this->m_GroupNameList.end( ); ++it ) + ButtonGroupSettings* settings = NULL; + try { - ButtonList list = this->m_ButtonGroupContainer[ ( *it ) ]; - for( ButtonList::iterator it1 = list.begin( ); it1 != list.end( ); ++it1 ) + std::cout<< "MLER | ButtonContainerSettings:: GetButtonGroupSettings() " << std::endl; + + settings = new ButtonGroupSettings( ); + + for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it + != this->m_GroupNameList.end( ); ++it ) { - settings->AddButton( ( *it ), ( *it1 )->first->first, - ( *it1 )->first->second, ( *it1 )->second->first, functor ); + ButtonList list = this->m_ButtonGroupContainer[ ( *it ) ]; + + for( ButtonList::iterator it1 = list.begin( ); it1 != list.end( ); ++it1 ) + { + std::cout<<"MLER ButtonContainerSettings // GetButtonGroupSettings :: groupName "<< *it<first->first <AddButton( ( *it ), ( *it1 )->first->first, ( *it1 )->first->second, ( *it1 )->second->first, functor ); + }//rof }//rof - }//rof + }//yrt + catch ( std::exception& e ) + { + std::cerr + << "ButtonContainerSettings::GetPanelButton( const StringType &buttonName ) " + << "exception: " << e.what( ) << std::endl; + }//hctac return ( settings ); } + // ---------------------------------------------------------------------------------- void ButtonContainerSettings::SetButtonGroupContainer( ButtonGroupMap m_ButtonGroupContainer ) { + std::cout<< "MLER | ButtonContainerSettings:: SetButtonGroupContainer() " << std::endl; this->m_ButtonGroupContainer = m_ButtonGroupContainer; } - + // ---------------------------------------------------------------------------------- void ButtonContainerSettings::SetGroupNameList( KeyMapList m_GroupNameList ) { + std::cout<< "MLER | ButtonContainerSettings:: SetGroupNameList() " << std::endl; this->m_GroupNameList = m_GroupNameList; } + + // ---------------------------------------------------------------------------------- + void + ButtonContainerSettings::AddButton( const StringType & groupName, + const StringType &buttonName, const wxBitmap &icon, + const StringType &buttonDescription, PanelButton panel ) + { + try + { + std::cout<< "MLER | ButtonContainerSettings:: AddButton( const StringType & groupName ..) " << std::endl; + //builds the button information + //I don't know the try catch doesn't work!! + if ( panel == NULL ) + { + std::cerr << "ButtonContainerSettings::AddButton" + << "exception: NULL Pointer in panel " << std::endl; + exit( 1 ); + } + + panel->Show( false ); + + ButtonPair* pair = new ButtonPair( + new ButtonInfo( buttonName, icon ), + new ActionButton( buttonDescription, panel ) ); + + for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it + != this->m_GroupNameList.end( ); ++it ) + { + if ( ( *it ).compare( groupName ) == 0 ) + { + this->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 + << "ButtonContainerSettings::AddButton( const StringType & groupName," + << "const StringType &buttonName, const StringType &iconpath," + << "const StringType &buttonDescription, PanelButton panel ) " + << "exception: " << e.what( ) << std::endl; + }//hctac + } + + // ---------------------------------------------------------------------------------- + void + ButtonContainerSettings::AddButton( BCPSettingsStruct* info ) + { + try + { + std::cout<< "MLER | ButtonContainerSettings:: AddButton( BCPSettingsStruct* info )" << std::endl; + + //builds the button information + //I don't know the try catch doesn't work!! + if ( info->panel == NULL ) + { + std::cerr << "ButtonContainerSettings::AddButton" + << "exception: NULL Pointer in panel " << std::endl; + exit( 1 ); + } + info->panel->Show( false ); + ButtonPair* pair = new ButtonPair( + new ButtonInfo( info->buttonName, info->icon ), + new ActionButton( info->buttonDescription, info->panel ) ); + for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it + != this->m_GroupNameList.end( ); ++it ) + { + 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 + << "ButtonContainerSettings::AddButton( BCPSettingsStruct* info )" + << "exception: " << e.what( ) << std::endl; + exit( 1 ); + }//hctac + } + + // ---------------------------------------------------------------------------------- void - ButtonContainerSettings::AddButton( const std::string & groupName, - const std::string &buttonName, const std::string &iconpath, - const std::string &buttonDescription, PanelButton panel ) + ButtonContainerSettings::AddButtons( BCStructVectorType infoList, int type ) { - //builds the button information - panel->Show( false ); - ButtonPair* pair = new ButtonPair( new ButtonInfo( buttonName, iconpath ), - new ActionButton( buttonDescription, panel ) ); - for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it - != this->m_GroupNameList.end( ); ++it ) + std::cout<< "MLER | ButtonContainerSettings:: AddButtons( BCStructVectorType infoList, int type )" << std::endl; + try { - if ( ( *it ).compare( groupName ) == 0 ) + for( BCStructVectorType::iterator it = infoList.begin( ); it + != infoList.end( ); ++it ) { - this->m_ButtonGroupContainer[ groupName ].push_back( pair ); - return; - }//fi - }//rof - this->m_GroupNameList.push_back( groupName ); - this->m_ButtonGroupContainer[ groupName ].push_back( pair ); + if( type == 0 ) + this->AddButton( *it ); + else if( type == 1 ) + this->AddItems(*it); + }//rof + }//yrt + catch ( std::exception& e ) + { + std::cerr + << "ButtonContainerSettings::AddButtons( BCStructVectorType infoList )" + << "exception: " << e.what( ) << std::endl; + }//hctac } void - ButtonContainerSettings::AddButton( const BCSettingsStruct &info ) + ButtonContainerSettings::AddItems(BCPSettingsStruct* info) { - //builds the button information - info.panel->Show( false ); - ButtonPair* pair = new ButtonPair( - new ButtonInfo( info.buttonName, info.iconpath ), - new ActionButton( info.buttonDescription, info.panel ) ); - for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it - != this->m_GroupNameList.end( ); ++it ) + try { - if ( ( *it ).compare( info.groupName ) == 0 ) + std::cout<< "MLER | ButtonContainerSettings:: AddItems(BCPSettingsStruct* info)" << std::endl; + //builds the button information + //I don't know the try catch doesn't work!! + if ( info->panel == NULL ) { - 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 ); + std::cerr << "ButtonContainerSettings::AddButton" + << "exception: NULL Pointer in panel " << std::endl; + exit( 1 ); + } + + info->panel->Show( false ); + + std::string mapKey = info->groupName + ":" + info->buttonName; + m_itemsMap[mapKey] = info->panel; + + }//yrt + catch ( const std::exception& e ) + { + std::cerr + << "ButtonContainerSettings::AddButton( BCPSettingsStruct* info )" + << "exception: " << e.what( ) << std::endl; + exit( 1 ); + }//hctac } -}//ecapseman + ButtonContainerSettings::ItemsMap + ButtonContainerSettings::GetItemsMap() + { + std::cout<< "MLER | ButtonContainerSettings:: GetItemsMap()" << std::endl; + return m_itemsMap; + } + +// ---------------------------------------------------------------------------------- +}//ecapseman