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