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