]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/view/groupManager.cxx
1cec6714d28672bef858f22a6f67155840cf733f
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / view / groupManager.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 groupManager.cxx
28  * @brief Implements the GroupManager class.
29  * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
30  * @date  2011-06-02
31  */
32
33 #include "groupManager.h"
34
35 namespace creaButtonContainer
36 {
37         namespace view
38         {
39                 // ----------------------------------------------------------------------------------
40                 GroupManager::GroupManager( wxWindow* parent, ButtonGroup* buttonGroup ) :
41                         wxFlexGridSizer( 1, 0, 0, 0 )
42                 {
43 //EED 20/01/2012  flag 02                       
44                         std::cout << " MLER groupManager.cxx / GroupManager(ButtonGroup* buttonGroup) " << std::endl;
45                         this->m_IDExpButton = wxNewId( );
46                         this->m_ExpansionButton = new ExpansionButton( parent, this->m_IDExpButton, _("-"), wxDefaultPosition, wxSize( 20, 20 ), 0, wxDefaultValidator, _T("EXPBUTTON") );
47                         this->Add( m_ExpansionButton, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
48                         this->m_ButtonManager = new ButtonManager( buttonGroup );
49                         this->Add( this->m_ButtonManager, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
50                 }
51                 
52                 GroupManager::GroupManager(wxWindow* parent, ListGroup* buttonGroup ):
53                                 wxFlexGridSizer( 1, 0, 0, 0 )
54                 {
55                         std::cout << " MLER groupManager.cxx / GroupManager(ListGroup* buttonGroup) " << std::endl;
56                         this->m_IDExpButton = wxNewId( );
57                         this->m_ExpansionButton = new ExpansionButton( parent, this->m_IDExpButton, _("-"), wxDefaultPosition, wxSize( 20, 20 ), 0, wxDefaultValidator, _T("EXPBUTTON") );
58                         this->Add( m_ExpansionButton, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
59                         this->m_ButtonManager = new ButtonManager( buttonGroup );
60                         this->Add( this->m_ButtonManager, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
61                 }//MLER
62
63                 // ----------------------------------------------------------------------------------
64                 GroupManager::~GroupManager( )
65                 {
66                 }
67                 
68                 // ----------------------------------------------------------------------------------
69                 long
70                 GroupManager::GetButtonID( )
71                 {
72                         return ( this->m_IDExpButton );
73                 }
74                 
75                 // ----------------------------------------------------------------------------------
76                 GroupManager::ExpansionButton*
77                 GroupManager::GetButton( )
78                 {
79                         return ( this->m_ExpansionButton );
80                 }
81                 
82                 // ----------------------------------------------------------------------------------
83                 ButtonManager*
84                 GroupManager::GetButtonManager( )
85                 {
86                         return ( this->m_ButtonManager );
87                 }
88                 
89                 // ----------------------------------------------------------------------------------
90                 void
91                 GroupManager::SetButtonID( long id )
92                 {
93                         this->m_IDExpButton = id;
94                 }
95                 
96                 // ----------------------------------------------------------------------------------
97                 void
98                 GroupManager::SetButton( ExpansionButton* button )
99                 {
100                         this->m_ExpansionButton = button;
101                 }
102                 
103                 // ----------------------------------------------------------------------------------
104                 void
105                 GroupManager::SetButtonManager( ButtonManager* container )
106                 {
107                         this->m_ButtonManager = container;
108                 }
109                 
110                 // ----------------------------------------------------------------------------------
111                 void
112                 GroupManager::HideSubPanel( bool hide )
113                 {
114                         if ( hide == true )
115                         {
116                                 this->m_ButtonManager->HideButtonManager( );
117                         }//fi
118                         else
119                         {
120                                 this->m_ButtonManager->ShowButtonManager( );
121                         }//esle
122                 }
123         // ----------------------------------------------------------------------------------
124         }//ecapseman
125 }//ecapseman