]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/containerSettings.cxx
836e5e0487bb596b20673e57c6c2a956673ca4d2
[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                 // ----------------------------------------------------------------------------------
49                 ButtonGroupMap
50                 ContainerSettings::GetButtonGroupContainer( )
51                 {
52                         return ( this->m_ButtonGroupContainer );
53                 }
54                 // ----------------------------------------------------------------------------------
55                 KeyMapList
56                 ContainerSettings::GetGroupNameList( )
57                 {
58                         return ( this->m_GroupNameList );
59                 }
60                 
61                 // ----------------------------------------------------------------------------------
62                 void
63                 ContainerSettings::SetButtonGroupContainer(ButtonGroupMap bgContainer)
64                 {
65                         this->m_ButtonGroupContainer = bgContainer;
66                 }
67                 // ----------------------------------------------------------------------------------
68                 void
69                 ContainerSettings::SetGroupNameList( KeyMapList gNameList )
70                 {
71                         this->m_GroupNameList = gNameList;
72                 }
73                 
74                 // ----------------------------------------------------------------------------------
75
76
77                 void
78                 ContainerSettings::AddButton( const StringType & groupName,
79                     const StringType &buttonName, const wxBitmap &icon,
80                     const StringType &buttonDescription, FunctionEventType event )
81                 {
82                         std::cout<< std::endl<<"MLER CLASS : ContainerSettings" << std::endl;
83                         std::cout<< std::endl<<"MLER ContainerSettings // AddButton "<<std::endl;
84
85
86                         ButtonPair* pair = new ButtonPair(
87                             new ButtonInfo( buttonName, icon ),
88                             new ButtonAction( buttonDescription, event ) );
89                         try
90                         {
91                                 for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
92                                     != this->m_GroupNameList.end( ); ++it )
93                                 {
94                                         if ( ( *it ).compare( groupName ) == 0 )
95                                         {
96                                                 std::cout<<"MLER ContainerSettings // AddButton : it "<<*it <<std::endl;
97
98                                                 this->m_ButtonGroupContainer[ groupName ].push_back( pair );
99                                                 return;
100                                         }//fi
101                                 }//rof
102                                 this->m_GroupNameList.push_back( groupName );
103                                 this->m_ButtonGroupContainer[ groupName ].push_back( pair );
104                         }//yrt
105                         catch ( const std::exception& e )
106                         {
107                                 std::cerr
108                                     << "ContainerSettings::AddButton( const std::string & groupName,"
109                                     << "const std::string buttonName, const std::string iconpath,"
110                                     << "const std::string buttonDescription, FunctionEventType event ) exception: "
111                                     << e.what( ) << std::endl;
112                         }//hctac
113                 }
114                 // ----------------------------------------------------------------------------------
115                 void
116                 ContainerSettings::AddButton( BCSettingsStruct* info )
117                 {
118                         ButtonPair* pair = new ButtonPair(
119                             new ButtonInfo( info->buttonName, info->icon ),
120                             new ButtonAction( info->buttonDescription, info->eventFunction ) );
121                         try
122                         {
123                                 for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
124                                     != this->m_GroupNameList.end( ); ++it )
125                                 {
126                                         if ( ( *it ).compare( info->groupName ) == 0 )
127                                         {
128                                                 this->m_ButtonGroupContainer[ info->groupName ].push_back( pair );
129                                                 return;
130                                         }//fi
131                                 }//rof
132                                 this->m_GroupNameList.push_back( info->groupName );
133                                 this->m_ButtonGroupContainer[ info->groupName ].push_back( pair );
134                         }//yrt
135                         catch ( const std::exception& e )
136                         {
137                                 std::cerr
138                                     << "void ContainerSettings::AddButton( BCSettingsStruct* info ) "
139                                     << "exception: " << e.what( ) << std::endl;
140                         }//hctac
141                 }
142                 // ----------------------------------------------------------------------------------
143                 void
144                 ContainerSettings::AddButtons( BCStructVectorType infoList )
145                 {
146                         try
147                         {
148                                 for( BCStructVectorType::iterator it = infoList.begin( ); it
149                                     != infoList.end( ); ++it )
150                                 {
151                                         this->AddButton( *it );
152                                 }//rof
153                         }//yrt
154                         catch ( const std::exception& e )
155                         {
156                                 std::cerr
157                                     << "ContainerSettings::AddButtons( BCStructVectorType infoList ) "
158                                     << "exception: " << e.what( ) << std::endl;
159                         }//hctac
160                 }
161
162
163         // ----------------------------------------------------------------------------------
164         }//ecapseman
165 }//ecapseman