]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/buttonContainerSettings.cxx
#2502 creaMaracasVisu Feature New Normal - alternation between containers: button...
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaPanelButtonContainer / buttonContainerSettings.cxx
index 8ca88d0e7200ab5d08dd1d66ab7e38f80aaa4754..e6c991b182b48972a1536be652a43b746b68b073 100644 (file)
@@ -1,8 +1,33 @@
+/*# ---------------------------------------------------------------------
+#
+# 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-05-24
+ * @date  2011-06-02
  */
 
 #include "buttonContainerSettings.h"
@@ -17,6 +42,7 @@ namespace creaPanelButtonContainer
        ButtonContainerSettings::~ButtonContainerSettings( )
        {
        }
+       
        // ----------------------------------------------------------------------------------
        ButtonContainerSettings::ButtonGroupMap
        ButtonContainerSettings::GetButtonGroupContainer( )
@@ -32,13 +58,18 @@ namespace creaPanelButtonContainer
        // ----------------------------------------------------------------------------------
        //GetButtonPanel returns the panel associated to the buttonAction
        ButtonContainerSettings::PanelButton
-       ButtonContainerSettings::GetPanelButton( const std::string &buttonName )
+       ButtonContainerSettings::GetPanelButton( const StringType &buttonName )
        {
                try
                {
+                       std::cout<<"MLER ButtonContainerSettings // GetPanelButton "<<std::endl;
+
                        for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
                            != this->m_GroupNameList.end( ); ++it )
                        {
+
+                               std::cout<< std::endl<<"MLER ButtonContainerSettings // GetPanelButton :: it "<< *it<<std::endl;
+
                                ButtonList list = this->m_ButtonGroupContainer[ ( *it ) ];
                                for( ButtonList::iterator it1 = list.begin( ); it1 != list.end( ); ++it1 )
                                {
@@ -52,7 +83,7 @@ namespace creaPanelButtonContainer
                catch ( std::exception& e )
                {
                        std::cerr
-                           << "ButtonContainerSettings::GetPanelButton( const std::string &buttonName ) "
+                           << "ButtonContainerSettings::GetPanelButton( const StringType &buttonName ) "
                            << "exception: " << e.what( ) << std::endl;
                }//hctac
                return ( NULL );
@@ -61,27 +92,37 @@ namespace creaPanelButtonContainer
        ButtonContainerSettings::ButtonGroupSettings*
        ButtonContainerSettings::GetButtonGroupSettings( TFunctor* functor )
        {
+               ButtonGroupSettings* settings = NULL;
                try
                {
-                       ButtonGroupSettings* settings = new ButtonGroupSettings( );
+                       std::cout<< std::endl<<"MLER CLASS : ButtonContainerSettings" << std::endl;
+                       std::cout<< std::endl<<"MLER ButtonContainerSettings // GetButtonGroupSettings "<<std::endl;
+
+                       settings = new ButtonGroupSettings( );
+
                        for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
                            != this->m_GroupNameList.end( ); ++it )
                        {
-                               ButtonList list = this->m_ButtonGroupContainer[ ( *it ) ];
+                               ButtonList list = this->m_ButtonGroupContainer[ ( *it ) ]; //MLER : Hacer cambio de contenedor
+
+                               std::cout<<"MLER ButtonContainerSettings // GetButtonGroupSettings :: it "<< *it<<std::endl;
+
                                for( ButtonList::iterator it1 = list.begin( ); it1 != list.end( ); ++it1 )
                                {
-                                       settings->AddButton( ( *it ), ( *it1 )->first->first,
-                                           ( *it1 )->first->second, ( *it1 )->second->first, functor );
+                                       std::cout<<"MLER ButtonContainerSettings // GetButtonGroupSettings :: groupName "<< *it<<std::endl;
+                                       std::cout<<"MLER ButtonContainerSettings // GetButtonGroupSettings :: buttonName "<< ( *it1 )->first->first <<std::endl;
+
+                                       settings->AddButton( ( *it ), ( *it1 )->first->first, ( *it1 )->first->second, ( *it1 )->second->first, functor );
                                }//rof
                        }//rof
-                       return ( settings );
                }//yrt
                catch ( std::exception& e )
                {
                        std::cerr
-                           << "ButtonContainerSettings::GetPanelButton( const std::string &buttonName ) "
+                           << "ButtonContainerSettings::GetPanelButton( const StringType &buttonName ) "
                            << "exception: " << e.what( ) << std::endl;
                }//hctac
+               return ( settings );
        }
        // ----------------------------------------------------------------------------------
        void
@@ -96,14 +137,17 @@ namespace creaPanelButtonContainer
        {
                this->m_GroupNameList = m_GroupNameList;
        }
+       
        // ----------------------------------------------------------------------------------
        void
-       ButtonContainerSettings::AddButton( const std::string & groupName,
-           const std::string &buttonName, const std::string &iconpath,
-           const std::string &buttonDescription, PanelButton panel )
+       ButtonContainerSettings::AddButton( const StringType & groupName,
+           const StringType &buttonName, const wxBitmap &icon,
+           const StringType &buttonDescription, PanelButton panel )
        {
                try
                {
+                       std::cout<< std::endl<<"MLER ButtonContainerSettings / AddButton(groupname...)"<<std::endl;
+
                        //builds the button information
                        //I don't know the try catch doesn't work!!
                        if ( panel == NULL )
@@ -112,10 +156,13 @@ namespace creaPanelButtonContainer
                                    << "exception: NULL Pointer in panel " << std::endl;
                                exit( 1 );
                        }
+
                        panel->Show( false );
+
                        ButtonPair* pair = new ButtonPair(
-                           new ButtonInfo( buttonName, iconpath ),
+                           new ButtonInfo( buttonName, icon ),
                            new ActionButton( buttonDescription, panel ) );
+
                        for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
                            != this->m_GroupNameList.end( ); ++it )
                        {
@@ -131,12 +178,13 @@ namespace creaPanelButtonContainer
                catch ( const std::exception& e )
                {
                        std::cerr
-                           << "ButtonContainerSettings::AddButton( const std::string & groupName,"
-                           << "const std::string &buttonName, const std::string &iconpath,"
-                           << "const std::string &buttonDescription, PanelButton panel ) "
+                           << "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 )
@@ -153,7 +201,7 @@ namespace creaPanelButtonContainer
                        }
                        info->panel->Show( false );
                        ButtonPair* pair = new ButtonPair(
-                           new ButtonInfo( info->buttonName, info->iconpath ),
+                           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 )
@@ -175,6 +223,7 @@ namespace creaPanelButtonContainer
                        exit( 1 );
                }//hctac
        }
+       
        // ----------------------------------------------------------------------------------
        void
        ButtonContainerSettings::AddButtons( BCStructVectorType infoList )
@@ -194,6 +243,8 @@ namespace creaPanelButtonContainer
                            << "exception: " << e.what( ) << std::endl;
                }//hctac
        }
+
+
 // ----------------------------------------------------------------------------------
 }//ecapseman