]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/view/groupManager.cxx
#2509 creaMaracasVisu Feature New Normal - creaPanelButtonContainer ListPanel with...
[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::GroupManager( )" << 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                         std::cout<< "MLER | GroupManager::GetButtonID( )" << std::endl;
73                         return ( this->m_IDExpButton );
74                 }
75                 
76                 // ----------------------------------------------------------------------------------
77                 GroupManager::ExpansionButton*
78                 GroupManager::GetButton( )
79                 {
80                         std::cout<< "MLER | GroupManager::GetButton( )" << std::endl;
81                         return ( this->m_ExpansionButton );
82                 }
83                 
84                 // ----------------------------------------------------------------------------------
85                 ButtonManager*
86                 GroupManager::GetButtonManager( )
87                 {
88                         return ( this->m_ButtonManager );
89                 }
90                 
91                 // ----------------------------------------------------------------------------------
92                 void
93                 GroupManager::SetButtonID( long id )
94                 {
95                         this->m_IDExpButton = id;
96                 }
97                 
98                 // ----------------------------------------------------------------------------------
99                 void
100                 GroupManager::SetButton( ExpansionButton* button )
101                 {
102                         this->m_ExpansionButton = button;
103                 }
104                 
105                 // ----------------------------------------------------------------------------------
106                 void
107                 GroupManager::SetButtonManager( ButtonManager* container )
108                 {
109                         this->m_ButtonManager = container;
110                 }
111                 
112                 // ----------------------------------------------------------------------------------
113                 void
114                 GroupManager::HideSubPanel( bool hide )
115                 {
116                         std::cout<< "MLER | GroupManager::HideSubPanel( bool hide )" << std::endl;
117                         if ( hide == true )
118                         {
119                                 this->m_ButtonManager->HideButtonManager( );
120                         }//fi
121                         else
122                         {
123                                 this->m_ButtonManager->ShowButtonManager( );
124                         }//esle
125                 }
126         // ----------------------------------------------------------------------------------
127         }//ecapseman
128 }//ecapseman