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