]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/buttonContainerSettings.h
#2507 creaMaracasVisu Feature New Normal - creaPanelButtonContainer ListPanel
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaPanelButtonContainer / buttonContainerSettings.h
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 buttonContainerSettings.h
28  * @brief This contains the ButtonContainerSettings class.
29  * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
30  * @date  2011-06-02
31  */
32
33 #ifndef BUTTONCONTAINERSETTINGS_H_
34 #define BUTTONCONTAINERSETTINGS_H_
35
36 #include <wx/panel.h>
37 #include <wx/bitmap.h>
38 //EED-MLER #include <wx/listctrl.h>
39
40 #include <list>
41 #include <map>
42 #include <vector>
43 #include <iostream>
44
45 #include "structBCPSettings.h"
46 #include "containerSettings.h"
47 #include "functor.h"
48
49
50 /*!     @namespace <creaPanelButtonContainer>
51  *      @brief Contains the creaPanelButtonContainer library included in creaMaracasVisu.
52  */
53 namespace creaPanelButtonContainer
54 {
55         /*! @class ButtonContainerSettings buttonContainerSettings.h "buttonContainerSettings.h"
56          *      @brief This class contains the settings of the buttons.
57          */
58         class ButtonContainerSettings
59         {
60                 public:
61                         //typedef definition.
62                         // ----------------------------------------------------------------------------------
63                         /*!     @typedef std::string* StringType;
64                          *      @brief Defines the StringType type.
65                          */
66                         typedef std::string StringType;
67                         // ----------------------------------------------------------------------------------
68                         /*!     typedef creaButtonContainer::model::TFunctor TFunctor;
69                          *      @brief Defines the TFunctor type.
70                          */
71                         typedef creaButtonContainer::model::TFunctor TFunctor;
72                         // ----------------------------------------------------------------------------------
73                         /*!     @typedef creaButtonContainer::model::ContainerSettings ButtonGroupSettings;
74                          *      @brief Defines the ButtonGroupSettings type.
75                          */
76                         typedef creaButtonContainer::model::ContainerSettings ButtonGroupSettings;
77                         // ----------------------------------------------------------------------------------
78                         /*!     @typedef wxPanel* PanelButton;
79                          *      @brief Defines the PanelButton type.
80                          */
81                         typedef wxPanel* PanelButton;
82                         // ----------------------------------------------------------------------------------
83                         /*!     @typedef std::pair< std::string, PanelButton > ActionButton;
84                          *      @brief Defines the ActionButton type.
85                          *      First is the button description, Second FunctionEventType
86                          */
87                         typedef std::pair< std::string, PanelButton > ActionButton;
88                         
89                         // ----------------------------------------------------------------------------------
90                         /*!     @typedef std::pair< std::string, wxBitmap > ButtonInfo;
91                          *      @brief Defines the ButtonInfo type.
92                          *      First is the ButtonName, Second is the ImageIcon
93                          */
94                         typedef std::pair< std::string, wxBitmap > ButtonInfo;
95                         
96                         // ----------------------------------------------------------------------------------
97                         /*!     @typedef std::pair< ButtonInfo*, ActionButton* > ButtonPair;
98                          *      @brief Defines the ButtonPair type.
99                          */
100                         typedef std::pair< ButtonInfo*, ActionButton* > ButtonPair;
101                         // ----------------------------------------------------------------------------------
102                         /*!     @typedef std::list< std::string > KeyMapList;
103                          *      @brief Defines the KeyMapList type.
104                          */
105                         typedef std::list< std::string > KeyMapList;
106                 
107                         // ----------------------------------------------------------------------------------
108                         /*!     @typedef std::list< ButtonPair* > ButtonList;
109                          *      @brief Defines the ButtonList type.
110                          */
111                         typedef std::list< ButtonPair* > ButtonList;                    
112                         
113                         // ----------------------------------------------------------------------------------
114                         /*!     @typedef std::map< std::string, ButtonList > ButtonGroupMap;
115                          *      @brief Defines the ButtonGroupMap type.
116                          */
117                         typedef std::map< std::string, ButtonList > ButtonGroupMap;
118                         // ----------------------------------------------------------------------------------
119                         /*!     @typedef std::vector< BCPSettingsStruct* > BCStructVectorType;
120                          *      @brief Defines the BCStructVectorType type.
121                          */
122                         typedef std::vector< BCPSettingsStruct* > BCStructVectorType;
123                         //end typedef definition
124                         // ----------------------------------------------------------------------------------
125                         /*! @class ButtonContainerSettings buttonContainerSettings.h "buttonContainerSettings.h"
126                          *      @brief This class contains the settings of the button container.
127                          */
128
129
130                         typedef std::map< std::string, wxPanel* > ItemsMap;
131
132                 public:
133                         // ----------------------------------------------------------------------------------
134                         /*! @fn ButtonContainerSettings( );
135                          *      @brief This is the default constructor.
136                          */
137                         ButtonContainerSettings( );
138                         // ----------------------------------------------------------------------------------
139                         /*! @fn virtual ~ButtonContainerSettings( );
140                          *      @brief This is the destructor.
141                          */
142                         virtual
143                         ~ButtonContainerSettings( );
144                         
145                         // ----------------------------------------------------------------------------------
146                         /*! @fn ButtonGroupMap GetButtonGroupContainer( );
147                          *      @brief This method returns ButtonGroupMap with all buttons.
148                          * @return
149                          */
150                         ButtonGroupMap
151                         GetButtonGroupContainer( );
152                         // ----------------------------------------------------------------------------------
153                         /*! @fn KeyMapList GetGroupNameList( );
154                          *      @brief This method returns a KeyMapsList with the name of the groups.
155                          * @return
156                          */
157                         KeyMapList
158                         GetGroupNameList( );
159                         // ----------------------------------------------------------------------------------
160                         /*! @fn PanelButton GetPanelButton( const std::string &buttonName );
161                          *      @brief This method returns the panel of a button.
162                          *      @param buttonName
163                          *      @exception std::bad_alloc
164                          *      @return
165                          */
166                         PanelButton
167                         GetPanelButton( const std::string &buttonName );
168                         // ----------------------------------------------------------------------------------
169                         /*! @fn ButtonGroupSettings* GetButtonGroupSettings( TFunctor* functor );
170                          *      @brief this method return the settings the generic settings for creaButtonContainer.
171                          * @param functor The function to be called in the action button.
172                          * @exception std::bad_alloc
173                          * @return
174                          */
175                         ButtonGroupSettings*
176                         GetButtonGroupSettings( TFunctor* functor );
177                         // ----------------------------------------------------------------------------------
178                         /*! @fn void SetButtonGroupContainer( ButtonGroupMap bGroupContainer );
179                          *      @brief This method sets the button group container.
180                          * @param bGroupContainer
181                          */
182
183                         // ----------------------------------------------------------------------------------
184
185                         ButtonGroupSettings*
186                         GetListGroupSettings();
187
188                         // ----------------------------------------------------------------------------------
189
190
191
192                         void
193                         SetButtonGroupContainer( ButtonGroupMap bGroupContainer );
194                         // ----------------------------------------------------------------------------------
195                         /*! @fn void SetGroupNameList( KeyMapList gNameList );
196                          *      @brief this method sets the groupName list
197                          * @param gNameList
198                          */
199                         void
200                         SetGroupNameList( KeyMapList gNameList );
201                         
202                         // ----------------------------------------------------------------------------------
203                         /*! @fn void AddButton( const std::string &groupName, const std::string &buttonName,
204                          const std::string &iconpath, const std::string &buttonDescription,
205                          PanelButton panel );
206                          * @brief This method adds a new button into a group of buttons.
207                          * @param groupName The button groupName
208                          * @param buttonName The buttonName
209                          * @param iconpath The path of the icon
210                          * @param buttonDescription The button tooltip
211                          * @param panel The panel to be called when the button is clicked
212                          * @exception std::bad_alloc
213                          */
214                         void
215                         AddButton( const std::string &groupName, const std::string &buttonName,
216                             const wxBitmap &icon, const std::string &buttonDescription,
217                             PanelButton panel );
218                         
219                         // ----------------------------------------------------------------------------------
220                         /*! @fn void AddButton( BCPSettingsStruct* info );
221                          * @brief This method adds a new button into a group of buttons.
222                          * @param info The pointer to BCPSettingsStruct.
223                          * @exception std::bad_alloc
224                          */
225                         void
226                         AddButton( BCPSettingsStruct* info );
227                         
228                         // ----------------------------------------------------------------------------------
229                         /*! @fn void AddButtons( BCStructVectorType infoList );
230                          * @brief This method adds new buttons into the container.
231                          * @param infoList The BCStructVectorType
232                          * @exception std::bad_alloc
233                          */
234                         void
235                         AddButtons( BCStructVectorType infoList, int type );
236
237                         // ----------------------------------------------------------------------------------
238                 private:
239                         ButtonGroupMap m_ButtonGroupContainer; //!<This is the map with the groups of buttons.
240                         KeyMapList m_GroupNameList; //!<This is a container with the name of the groups.
241
242
243                         //MLER
244                         ItemsMap m_itemsMap; //This is the map with the name and the wPanel
245                 };
246
247 }//ecapseman
248 #endif /* BUTTONCONTAINERSETTINGS_H_ */