]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/view/groupManager.cxx
4ff4ec435e135375c2f40be08a9f0f698524dae3
[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                         this->m_IDExpButton = wxNewId( );
45                         this->m_ExpansionButton = new ExpansionButton( parent, this->m_IDExpButton, _("-"), wxDefaultPosition, wxSize( 20, 20 ), 0, wxDefaultValidator, _T("EXPBUTTON") );
46                         this->Add( m_ExpansionButton, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
47                         this->m_ButtonManager = new ButtonManager( buttonGroup );
48                         this->Add( this->m_ButtonManager, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
49                 }
50                 
51                 // ----------------------------------------------------------------------------------
52                 GroupManager::~GroupManager( )
53                 {
54                 }
55                 
56                 // ----------------------------------------------------------------------------------
57                 long
58                 GroupManager::GetButtonID( )
59                 {
60                         return ( this->m_IDExpButton );
61                 }
62                 
63                 // ----------------------------------------------------------------------------------
64                 GroupManager::ExpansionButton*
65                 GroupManager::GetButton( )
66                 {
67                         return ( this->m_ExpansionButton );
68                 }
69                 
70                 // ----------------------------------------------------------------------------------
71                 ButtonManager*
72                 GroupManager::GetButtonManager( )
73                 {
74                         return ( this->m_ButtonManager );
75                 }
76                 
77                 // ----------------------------------------------------------------------------------
78                 void
79                 GroupManager::SetButtonID( long id )
80                 {
81                         this->m_IDExpButton = id;
82                 }
83                 
84                 // ----------------------------------------------------------------------------------
85                 void
86                 GroupManager::SetButton( ExpansionButton* button )
87                 {
88                         this->m_ExpansionButton = button;
89                 }
90                 
91                 // ----------------------------------------------------------------------------------
92                 void
93                 GroupManager::SetButtonManager( ButtonManager* container )
94                 {
95                         this->m_ButtonManager = container;
96                 }
97                 
98                 // ----------------------------------------------------------------------------------
99                 void
100                 GroupManager::HideSubPanel( bool hide )
101                 {
102                         if ( hide == true )
103                         {
104                                 this->m_ButtonManager->HideButtonManager( );
105                         }//fi
106                         else
107                         {
108                                 this->m_ButtonManager->ShowButtonManager( );
109                         }//esle
110                 }
111         // ----------------------------------------------------------------------------------
112         }//ecapseman
113 }//ecapseman