]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/buttonContainerSettings.cxx
Feature #1606 Add a new entry to ColorLayerImageView to select the fitting mode betwe...
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaPanelButtonContainer / buttonContainerSettings.cxx
index 40701a9e678685155563d53bd59eb501b980efaf..601bababf0b2e62bfcbdeb8d1a9fa6b7bb3126b8 100644 (file)
-/***************************************************************
- * 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:
- **************************************************************/
+/*!
+ * @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 <iostream>
 
 namespace creaPanelButtonContainer
 {
-
+       // ----------------------------------------------------------------------------------
        ButtonContainerSettings::ButtonContainerSettings( )
        {
        }
+       // ----------------------------------------------------------------------------------
        ButtonContainerSettings::~ButtonContainerSettings( )
        {
        }
-       ButtonGroupMap
+       // ----------------------------------------------------------------------------------
+       ButtonContainerSettings::ButtonGroupMap
        ButtonContainerSettings::GetButtonGroupContainer( )
        {
                return m_ButtonGroupContainer;
        }
-
-       KeyMapList
+       // ----------------------------------------------------------------------------------
+       ButtonContainerSettings::KeyMapList
        ButtonContainerSettings::GetGroupNameList( )
        {
                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 )
+                       for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
+                           != this->m_GroupNameList.end( ); ++it )
                        {
-                               if ( ( *it1 )->first->first.compare( buttonName ) == 0 )
+                               ButtonList list = this->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::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 )
+                       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 )
+                               {
+                                       settings->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 )
        {
                this->m_ButtonGroupContainer = m_ButtonGroupContainer;
        }
-
+       // ----------------------------------------------------------------------------------
        void
        ButtonContainerSettings::SetGroupNameList( KeyMapList m_GroupNameList )
        {
                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 StringType &iconpath,
+           const StringType &buttonDescription, PanelButton panel )
        {
-               //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 )
+               try
                {
-                       if ( ( *it ).compare( groupName ) == 0 )
+                       //builds the button information
+                       //I don't know the try catch doesn't work!!
+                       if ( panel == NULL )
                        {
-                               this->m_ButtonGroupContainer[ groupName ].push_back( pair );
-                               return;
-                       }//fi
-               }//rof
-               this->m_GroupNameList.push_back( groupName );
-               this->m_ButtonGroupContainer[ groupName ].push_back( pair );
+                               std::cerr << "ButtonContainerSettings::AddButton"
+                                   << "exception: NULL Pointer in panel " << std::endl;
+                               exit( 1 );
+                       }
+                       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 )
+                       {
+                               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( BCSettingsStruct* info )
+       ButtonContainerSettings::AddButton( 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 )
+                       //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->iconpath ),
+                           new ActionButton( info->buttonDescription, info->panel ) );
+                       for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
+                           != this->m_GroupNameList.end( ); ++it )
                        {
-                               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 );
+                               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::AddButtons( BCStructVectorType infoList )
        {
-               for( BCStructVectorType::iterator it = infoList.begin( ); it
-                                   != infoList.end( ); ++it )
+               try
+               {
+                       for( BCStructVectorType::iterator it = infoList.begin( ); it
+                           != infoList.end( ); ++it )
+                       {
+                               this->AddButton( *it );
+                       }//rof
+               }//yrt
+               catch ( std::exception& e )
                {
-                       this->AddButton( *it );
-               }//rof
+                       std::cerr
+                           << "ButtonContainerSettings::AddButtons( BCStructVectorType infoList )"
+                           << "exception: " << e.what( ) << std::endl;
+               }//hctac
        }
-
+// ----------------------------------------------------------------------------------
 }//ecapseman