]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/containerSettings.cxx
7acfd8a272f5b98b2f42fa1452da9645c62f1afc
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / model / containerSettings.cxx
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 /*!
27  * @file containerSettings.cxx
28  * @brief Implements the ContainerSettings class.
29  * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
30  * @date  2011-06-02
31  */
32
33 #include "containerSettings.h"
34
35 namespace creaButtonContainer
36 {
37         namespace model
38         {
39                 // ----------------------------------------------------------------------------------
40                 ContainerSettings::ContainerSettings( )
41                 {
42                 }
43                 // ----------------------------------------------------------------------------------
44                 ContainerSettings::~ContainerSettings( )
45                 {
46                 }
47                 // ----------------------------------------------------------------------------------
48                 ButtonGroupMap
49                 ContainerSettings::GetButtonGroupContainer( )
50                 {
51                         return ( this->m_ButtonGroupContainer );
52                 }
53                 // ----------------------------------------------------------------------------------
54                 KeyMapList
55                 ContainerSettings::GetGroupNameList( )
56                 {
57                         return ( this->m_GroupNameList );
58                 }
59                 // ----------------------------------------------------------------------------------
60                 void
61                 ContainerSettings::SetButtonGroupContainer( ButtonGroupMap bgContainer )
62                 {
63                         this->m_ButtonGroupContainer = bgContainer;
64                 }
65                 // ----------------------------------------------------------------------------------
66                 void
67                 ContainerSettings::SetGroupNameList( KeyMapList gNameList )
68                 {
69                         this->m_GroupNameList = gNameList;
70                 }
71                 // ----------------------------------------------------------------------------------
72                 void
73                 ContainerSettings::AddButton( const StringType & groupName,
74                     const StringType &buttonName, const StringType &iconpath,
75                     const StringType &buttonDescription, FunctionEventType event )
76                 {
77                         ButtonPair* pair = new ButtonPair(
78                             new ButtonInfo( buttonName, iconpath ),
79                             new ButtonAction( buttonDescription, event ) );
80                         try
81                         {
82                                 for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
83                                     != this->m_GroupNameList.end( ); ++it )
84                                 {
85                                         if ( ( *it ).compare( groupName ) == 0 )
86                                         {
87                                                 this->m_ButtonGroupContainer[ groupName ].push_back( pair );
88                                                 return;
89                                         }//fi
90                                 }//rof
91                                 this->m_GroupNameList.push_back( groupName );
92                                 this->m_ButtonGroupContainer[ groupName ].push_back( pair );
93                         }//yrt
94                         catch ( const std::exception& e )
95                         {
96                                 std::cerr
97                                     << "ContainerSettings::AddButton( const std::string & groupName,"
98                                     << "const std::string buttonName, const std::string iconpath,"
99                                     << "const std::string buttonDescription, FunctionEventType event ) exception: "
100                                     << e.what( ) << std::endl;
101                         }//hctac
102                 }
103                 // ----------------------------------------------------------------------------------
104                 void
105                 ContainerSettings::AddButton( BCSettingsStruct* info )
106                 {
107                         ButtonPair* pair = new ButtonPair(
108                             new ButtonInfo( info->buttonName, info->iconpath ),
109                             new ButtonAction( info->buttonDescription, info->eventFunction ) );
110                         try
111                         {
112                                 for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
113                                     != this->m_GroupNameList.end( ); ++it )
114                                 {
115                                         if ( ( *it ).compare( info->groupName ) == 0 )
116                                         {
117                                                 this->m_ButtonGroupContainer[ info->groupName ].push_back( pair );
118                                                 return;
119                                         }//fi
120                                 }//rof
121                                 this->m_GroupNameList.push_back( info->groupName );
122                                 this->m_ButtonGroupContainer[ info->groupName ].push_back( pair );
123                         }//yrt
124                         catch ( const std::exception& e )
125                         {
126                                 std::cerr
127                                     << "void ContainerSettings::AddButton( BCSettingsStruct* info ) "
128                                     << "exception: " << e.what( ) << std::endl;
129                         }//hctac
130                 }
131                 // ----------------------------------------------------------------------------------
132                 void
133                 ContainerSettings::AddButtons( BCStructVectorType infoList )
134                 {
135                         try
136                         {
137                                 for( BCStructVectorType::iterator it = infoList.begin( ); it
138                                     != infoList.end( ); ++it )
139                                 {
140                                         this->AddButton( *it );
141                                 }//rof
142                         }//yrt
143                         catch ( const std::exception& e )
144                         {
145                                 std::cerr
146                                     << "ContainerSettings::AddButtons( BCStructVectorType infoList ) "
147                                     << "exception: " << e.what( ) << std::endl;
148                         }//hctac
149                 }
150         // ----------------------------------------------------------------------------------
151         }//ecapseman
152 }//ecapseman