]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/containerSettings.cxx
#2507 creaMaracasVisu Feature New Normal - creaPanelButtonContainer ListPanel
[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
83                 void
84                 ContainerSettings::AddButton( const StringType & groupName,
85                     const StringType &buttonName, const wxBitmap &icon,
86                     const StringType &buttonDescription, FunctionEventType event )
87                 {
88                         std::cout<< "MLER | ContainerSettings::AddButton( const StringType & groupName," << std::endl;
89
90                         ButtonPair* pair = new ButtonPair(
91                             new ButtonInfo( buttonName, icon ),
92                             new ButtonAction( buttonDescription, event ) );
93                         try
94                         {
95                                 for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
96                                     != this->m_GroupNameList.end( ); ++it )
97                                 {
98                                         if ( ( *it ).compare( groupName ) == 0 )
99                                         {
100                                                 std::cout<<"MLER ContainerSettings // AddButton : it "<<*it <<std::endl;
101
102                                                 this->m_ButtonGroupContainer[ groupName ].push_back( pair );
103                                                 return;
104                                         }//fi
105                                 }//rof
106                                 this->m_GroupNameList.push_back( groupName );
107                                 this->m_ButtonGroupContainer[ groupName ].push_back( pair );
108                         }//yrt
109                         catch ( const std::exception& e )
110                         {
111                                 std::cerr
112                                     << "ContainerSettings::AddButton( const std::string & groupName,"
113                                     << "const std::string buttonName, const std::string iconpath,"
114                                     << "const std::string buttonDescription, FunctionEventType event ) exception: "
115                                     << e.what( ) << std::endl;
116                         }//hctac
117                 }
118                 // ----------------------------------------------------------------------------------
119                 void
120                 ContainerSettings::AddButton( BCSettingsStruct* info )
121                 {
122                         std::cout<< "MLER | ContainerSettings::AddButton( BCSettingsStruct* info )" << std::endl;
123                         ButtonPair* pair = new ButtonPair(
124                             new ButtonInfo( info->buttonName, info->icon ),
125                             new ButtonAction( info->buttonDescription, info->eventFunction ) );
126                         try
127                         {
128                                 for( KeyMapList::iterator it = this->m_GroupNameList.begin( ); it
129                                     != this->m_GroupNameList.end( ); ++it )
130                                 {
131                                         if ( ( *it ).compare( info->groupName ) == 0 )
132                                         {
133                                                 this->m_ButtonGroupContainer[ info->groupName ].push_back( pair );
134                                                 return;
135                                         }//fi
136                                 }//rof
137                                 this->m_GroupNameList.push_back( info->groupName );
138                                 this->m_ButtonGroupContainer[ info->groupName ].push_back( pair );
139                         }//yrt
140                         catch ( const std::exception& e )
141                         {
142                                 std::cerr
143                                     << "void ContainerSettings::AddButton( BCSettingsStruct* info ) "
144                                     << "exception: " << e.what( ) << std::endl;
145                         }//hctac
146                 }
147                 // ----------------------------------------------------------------------------------
148                 void
149                 ContainerSettings::AddButtons( BCStructVectorType infoList )
150                 {
151                         std::cout<< "MLER | ContainerSettings::AddButtons( BCStructVectorType infoList )" << std::endl;
152                         try
153                         {
154                                 for( BCStructVectorType::iterator it = infoList.begin( ); it
155                                     != infoList.end( ); ++it )
156                                 {
157                                         this->AddButton( *it );
158                                 }//rof
159                         }//yrt
160                         catch ( const std::exception& e )
161                         {
162                                 std::cerr
163                                     << "ContainerSettings::AddButtons( BCStructVectorType infoList ) "
164                                     << "exception: " << e.what( ) << std::endl;
165                         }//hctac
166                 }
167
168         // ----------------------------------------------------------------------------------
169         }//ecapseman
170 }//ecapseman