]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/buttonGroupFactory.cxx
759faa3af8f63be74b8623453e4d2a95ea9dfd3e
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / model / buttonGroupFactory.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 buttonGroupFactory.cxx
28  * @brief Implements the ButtonGroupFactory class.
29  * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
30  * @date  2011-06-02
31  */
32
33 #include "buttonGroupFactory.h"
34
35 namespace creaButtonContainer
36 {
37         namespace model
38         {
39                 // ----------------------------------------------------------------------------------
40                 ButtonGroupFactory::ButtonGroupFactory( )
41                 {
42                 }
43                 // ----------------------------------------------------------------------------------
44                 ButtonGroupFactory::~ButtonGroupFactory( )
45                 {
46                 }
47                 
48                 // ----------------------------------------------------------------------------------
49                 ButtonGroupFactory::ButtonGroupContainer ButtonGroupFactory::CreateButtonGroupContainer( wxWindow* parent,  ButtonGroupModel* settings )
50                 {
51                         ButtonGroupContainer groupView;
52                         try
53                         {
54                                 ButtonGroupMap map = settings->GetButtonGroupContainer( );
55                                 for( ButtonGroupMap::iterator it = map.begin( ); it != map.end( ); ++it )
56                                 {
57                                         wxString groupNameAux( ( *it ).first.c_str( ), wxConvUTF8 );
58                                         wxStaticText* wxGroupName = new wxStaticText( parent, -1, groupNameAux, wxDefaultPosition, wxDefaultSize, 0, _T("GroupText") );
59                                         ButtonGroup* group = new ButtonGroup( wxGroupName, this->GetButtons( parent, ( *it ).second ) );
60                                         groupView.push_back( group );
61                                 }//rof
62                         }//yrt
63                         catch ( const std::exception& e )
64                         {
65                                 std::cerr
66                                     << "ButtonGroupFactory::CreateButtonGroupContainer( wxWindow* parent,   ButtonGroupModel* settings )"
67                                     << " exception: " << e.what( ) << std::endl;
68                         }//chtac
69                         return ( groupView );
70                 }
71                 
72                 
73                 // ----------------------------------------------------------------------------------
74                 ButtonGroupFactory::ButtonContainer ButtonGroupFactory::GetButtons( wxWindow* parent, ButtonList buttonModel )
75                 {
76                         ButtonContainer buttonList;
77                         try
78                         {
79                                 for( ButtonList::iterator it = buttonModel.begin( ); it
80                                     != buttonModel.end( ); ++it )
81                                 {
82                                         long id = wxNewId( );
83                                         buttonList[ id ] = new Button( parent, id, *it );
84                                 }//rof
85                                 //return ( buttonList ); // JPR
86                         }//yrt
87                         catch ( const std::exception& e )
88                         {
89                                 std::cerr
90                                     << "ButtonGroupFactory::GetButtons( wxWindow* parent, ButtonList buttonModel )"
91                                     << "exception: " << e.what( ) << std::endl;
92                         }//chtac
93                         
94                         return ( buttonList );   // JPR
95                 }
96         // ----------------------------------------------------------------------------------
97         }//ecapseman
98 }//ecapseman
99