]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/listGroupFactory.cxx
#2497 creaMaracasVisu Feature New Normal - In container button add the list option
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / model / listGroupFactory.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 //EED-MLER
34 /*
35
36 #include "listGroupFactory.h"
37
38 namespace creaButtonContainer
39 {
40         namespace model
41         {
42                 // ----------------------------------------------------------------------------------
43                 ListGroupFactory::ListGroupFactory( )
44                 {
45                 }
46                 // ----------------------------------------------------------------------------------
47                 ListGroupFactory::~ListGroupFactory( )
48                 {
49                 }
50
51                 // ----------------------------------------------------------------------------------
52                 ListGroupFactory::ListGroupContainer ListGroupFactory::CreateListGroupContainer(wxWindow* parent,ListModel* settings )
53                 {
54                         ListGroupContainer groupView;
55                         try
56                         {
57                                 ListGroupMap map = settings->GetListGroupContainer( );
58                                 for( ListGroupMap::iterator it = map.begin( ); it != map.end( ); ++it )
59                                 {
60                                         wxString groupNameAux( ( *it ).first.c_str( ), wxConvUTF8 );//nombre grupo
61                                         wxStaticText* wxGroupName = new wxStaticText( parent, -1, groupNameAux, wxDefaultPosition, wxDefaultSize, 0, _T("GroupText") );
62                                         ListGroup* group = new ListGroup( wxGroupName, this->GetList( parent, ( *it ).second ) );
63                                         //ListGroup* group;
64                                         groupView.push_back( group );
65                                 }//rof
66                         }//yrt
67                         catch ( const std::exception& e )
68                         {
69                                 std::cerr
70                                     << "ListGroupFactory::CreateListGroupContainer( wxWindow* parent,   ListModel* settings )"
71                                     << " exception: " << e.what( ) << std::endl;
72                         }//chtac
73                         return ( groupView );
74                 }
75
76
77                 // ----------------------------------------------------------------------------------
78                 ListGroupFactory::ListContainer ListGroupFactory::GetList( wxWindow* parent, tlist lst )
79                 {
80                         ListContainer cList;
81
82                         try
83                         {
84
85                                 //List list = new List(parent,items);
86                                 //cList.push_back(list);
87                                 //return ( buttonList ); // JPR
88
89
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 ( cList );        // JPR
99                 }
100         // ----------------------------------------------------------------------------------
101         }//ecapseman
102 }//ecapseman
103
104
105 */