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