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