]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/buttonGroupFactory.cxx
484ffca00baecdd9a93042a98d7edf85945536c3
[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                                 std::cout<< std::endl << " MLER buttonGroupFactory.cxx / CreateButtonGroupContainer(): " << std::endl;
55                                 ButtonGroupMap map = settings->GetButtonGroupContainer( );
56                                 for( ButtonGroupMap::iterator it = map.begin( ); it != map.end( ); ++it )
57                                 {
58                                         wxString groupNameAux( ( *it ).first.c_str( ), wxConvUTF8 );
59                                         wxStaticText* wxGroupName = new wxStaticText( parent, -1, groupNameAux, wxDefaultPosition, wxDefaultSize, 0, _T("GroupText") );
60                                         ButtonGroup* group = new ButtonGroup( wxGroupName, this->GetButtons( parent, ( *it ).second ) );
61                                         groupView.push_back( group );
62                                 }//rof
63                         }//yrt
64                         catch ( const std::exception& e )
65                         {
66                                 std::cerr
67                                     << "ButtonGroupFactory::CreateButtonGroupContainer( wxWindow* parent,   ButtonGroupModel* settings )"
68                                     << " exception: " << e.what( ) << std::endl;
69                         }//chtac
70                         return ( groupView );
71                 }
72                 
73                 
74                 // ----------------------------------------------------------------------------------
75                 ButtonGroupFactory::ButtonContainer ButtonGroupFactory::GetButtons( wxWindow* parent, ButtonList buttonModel )
76                 {
77                         ButtonContainer buttonList;
78                         try
79                         {
80                                 for( ButtonList::iterator it = buttonModel.begin( ); it
81                                     != buttonModel.end( ); ++it )
82                                 {
83                                         long id = wxNewId( );
84                                         buttonList[ id ] = new Button( parent, id, *it );
85                                 }//rof
86                                 //return ( buttonList ); // JPR
87                         }//yrt
88                         catch ( const std::exception& e )
89                         {
90                                 std::cerr
91                                     << "ButtonGroupFactory::GetButtons( wxWindow* parent, ButtonList buttonModel )"
92                                     << "exception: " << e.what( ) << std::endl;
93                         }//chtac
94                         
95                         return ( buttonList );   // JPR
96                 }
97         // ----------------------------------------------------------------------------------
98         }//ecapseman
99 }//ecapseman
100