]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.cxx
9e6fa1550d8c3a3221d1082799032b8df1131c3e
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxTabPanelsManager.cxx
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------  
24 */
25
26 /*=========================================================================
27 Program:   bbtk
28 Module:    $RCSfile$
29 Language:  C++
30 Date:      $Date$
31 Version:   $Revision$
32 =========================================================================*/
33
34 /* ---------------------------------------------------------------------
35
36 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
37 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
38 *
39 *  This software is governed by the CeCILL-B license under French law and
40 *  abiding by the rules of distribution of free software. You can  use,
41 *  modify and/ or redistribute the software under the terms of the CeCILL-B
42 *  license as circulated by CEA, CNRS and INRIA at the following URL
43 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
44 *  or in the file LICENSE.txt.
45 *
46 *  As a counterpart to the access to the source code and  rights to copy,
47 *  modify and redistribute granted by the license, users are provided only
48 *  with a limited warranty  and the software's author,  the holder of the
49 *  economic rights,  and the successive licensors  have only  limited
50 *  liability.
51 *
52 *  The fact that you are presently reading this means that you have had
53 *  knowledge of the CeCILL-B license and that you accept its terms.
54 * ------------------------------------------------------------------------ */
55
56 /**
57 *  \file
58 *  \brief Class bbtk::wxTabPanelsManager .
59 */
60
61
62 #include "wxTabPanelsManager.h"
63
64 namespace bbtk
65 {
66
67
68         //=========================================================================
69         wxTabPanelsManager::wxTabPanelsManager(wxGUIEditorGraphicBBS *parent)
70         {
71                 _parent         = parent;
72                 _lastId         = 0;
73                 _notebook       = _parent->getAuiNotebook();
74                 addNewTab();
75                 _notebook->Connect(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED,wxAuiNotebookEventHandler(wxTabPanelsManager::OnTabChanged),0,this);
76                 _notebook->Connect(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE,wxAuiNotebookEventHandler(wxTabPanelsManager::OnTabClose),0,this);
77
78         }
79
80         //=========================================================================
81         wxTabPanelsManager::~wxTabPanelsManager()
82         {
83         }
84
85         //=========================================================================
86         wxGUIEditorGraphicBBS* wxTabPanelsManager::GetParentGUIEditorGraphicBBS() const
87         {
88           return this->_parent;
89         }
90
91         //=========================================================================
92         void wxTabPanelsManager::addNewTab(wxString tabName)
93         {
94                 _lastId++;
95
96                 //EED 13/10/2012                wxGEditorTabPanel *newPanel         = new wxGEditorTabPanel( _notebook,_lastId );
97                 wxGEditorTabPanel *newPanel         = new wxGEditorTabPanel( _notebook,_lastId, _parent->GetBBTKFactory() );
98
99                 newPanel->setPanelsManager(this);
100                 _panels[_lastId]                    = newPanel;
101                 _actual                             = newPanel;
102                 _notebook->AddPage(newPanel, tabName  ,true);
103         }
104
105
106
107
108
109         //=========================================================================
110         wxAuiNotebook* wxTabPanelsManager::getAuiNotebook()
111         {
112                 return _notebook;
113         }
114
115         //=========================================================================
116         wxGEditorTabPanel* wxTabPanelsManager::getActualTabPanel()
117         {
118                 return _actual;
119         }
120
121         //=========================================================================
122
123         void wxTabPanelsManager::displayBlackBoxInfo(std::string packageName, std::string boxName)
124         {
125                 _parent->displayBlackBoxInfo(packageName,boxName);
126         }
127
128         //=========================================================================
129
130         void wxTabPanelsManager::updateStatusBar(std::string textStatus)
131         {
132                 _parent->updateStatusBar(textStatus);
133         }
134
135         //=========================================================================
136
137         std::string wxTabPanelsManager::getActualDiagramBBS(bool wln)
138         {
139                 return _actual->getDiagramBBS(wln);
140         }
141
142         //=========================================================================
143
144         std::string wxTabPanelsManager::getActualComplexBoxBBS()
145         {
146                 return _actual->saveComplexBoxBBS();
147         }
148
149         //=========================================================================
150
151         void wxTabPanelsManager::editBlackBox(GBlackBoxModel *bbmodel)
152         {
153                 _parent->editBlackBox(bbmodel);
154         }
155
156         //=========================================================================
157
158         void wxTabPanelsManager::deleteAllBoxesActualDiagram()
159         {
160                 _actual->deleteAllBoxes();
161         }
162
163         //=========================================================================
164
165         void wxTabPanelsManager::centerViewActualDiagram()
166         {
167                 _actual->centerView();
168         }
169
170         //=========================================================================
171
172         void wxTabPanelsManager::saveActualDiagram(std::string &content, const std::string &path) //DFCH
173         {
174                 _actual->saveDiagram(content, path);
175         }
176
177         //=========================================================================
178
179         void wxTabPanelsManager::loadDiagram(ifstream &inputStream, const std::string &path) //DFCH
180         {
181                 _actual->loadDiagram(inputStream, path);
182         }
183
184         //=========================================================================
185         void wxTabPanelsManager::saveTempandUpdate(const std::string &action) //FCY
186         {
187                 _parent->SaveTempActualDiagram(action);
188         }
189         //=========================================================================
190         void wxTabPanelsManager::saveTempActualDiagram(const std::string &action) //FCY
191         {
192                 _actual->saveTempDiagram(action);
193         }
194         //=========================================================================
195         void wxTabPanelsManager::loadTempDiagram(unsigned short un) //FCY
196         {
197                  _actual->loadTempDiagram(un);
198         }
199
200         //=========================================================================
201         unsigned short wxTabPanelsManager::getUndoState( std::string &stun) //FCY
202         {
203                  return _actual->getUndoState(stun);
204         }
205                 //=========================================================================
206         unsigned short wxTabPanelsManager::getRedoState(std::string &stre) //FCY
207         {
208                  return _actual->getRedoState(stre);
209         }
210         //=========================================================================
211
212         bool wxTabPanelsManager::isActualDiagramComplexBox()
213         {
214                 return _actual->isComplexBox();
215         }
216
217         //=========================================================================
218
219         void wxTabPanelsManager::setActualDiagramComplexBox(bool val)
220         {
221                 _actual->setComplexBox(val);
222         }
223
224         //=========================================================================
225
226         void wxTabPanelsManager::addActualDiagramComplexInputPort(std::string portName)
227         {
228                 _actual->addComplexInputPort(portName);
229         }
230
231         //=========================================================================
232
233         void wxTabPanelsManager::addActualDiagramComplexOutputPort(std::string portName)
234         {
235                 _actual->addComplexOutputPort(portName);
236         }
237
238         //=========================================================================
239
240         void wxTabPanelsManager::copySelectedBBoxesToComplexDiagram()
241         {
242                 std::map<int,GObjectController*> mapSelected = _actual->getSelectedObjects();
243                 addNewTab();
244                 setActualDiagramComplexBox(true);
245                 _actual->addObjects(mapSelected);
246                 _parent->refreshGUIControls();
247         }
248
249         //=========================================================================
250
251         int wxTabPanelsManager::getNumActualSelectedObjects()
252         {
253                 return _actual->getNumSelectedObjects();
254         }
255
256         //=========================================================================
257
258         void wxTabPanelsManager::VerifyLastTabPanel()
259         {
260 printf("wxTabPanelsManager::VerifyActualTabPanel  %d \n", this->_notebook->GetPageCount() );
261             if (this->_notebook->GetPageCount()==0)
262             {
263                 this->_actual=NULL;
264             }
265         }
266
267         //=========================================================================
268
269         void wxTabPanelsManager::OnTabChanged(wxAuiNotebookEvent& event)
270         {
271                 int index                   = event.GetSelection();
272                 wxGEditorTabPanel* tab      = (wxGEditorTabPanel*)_notebook->GetPage(index);
273                 int id                      = tab->getPanelId();
274                 _actual                     = _panels[id];
275                 _parent->refreshGUIControls();
276
277         }
278
279         //=========================================================================
280
281         void wxTabPanelsManager::OnTabClose(wxAuiNotebookEvent& event)
282         {
283
284                 std::cout<<"RaC wxTabPanelsManager::OnTabClose Start... "<<_panels.size()<<std::endl;
285                 int index = event.GetSelection();
286
287                 if(_panels.size()>0)
288                 {
289                         wxGEditorTabPanel* tab      = (wxGEditorTabPanel*)_notebook->GetPage(index);
290                         int id                      = tab->getPanelId();
291                         tab->deleteAllBoxes();
292                         _panels.erase(id);
293
294                         _notebook->RemovePage(index);
295
296                         std::cout<<"RaC wxTabPanelsManager::OnTabClose  IMPORTANT. The complete tab is not erased from memory... "<<std::endl;
297                         //////////////////////////////
298                         // TO FIX . RaC May 2012 - IMPORTANT. The complete tab is not erased from memory.
299                         // Only the objects are deleted and the tab is hidden
300                         // Execution problems when a tab is deleted using delete or DeletePage
301                         // delete tab;
302
303                         map<int, wxGEditorTabPanel*>::iterator it = _panels.begin() ;
304                         _actual=(*it).second;
305
306                         std::cout<<"RaC wxTabPanelsManager::OnTabClose End..."<< std::endl;
307                 }
308         }
309
310         //=========================================================================
311     std::string wxTabPanelsManager::GetCbName()
312         {
313             return _actual->GetCbName();
314         }
315         
316         //=========================================================================
317         void wxTabPanelsManager::SetNameTabPanel(wxString tabpanelname)
318         {
319             int id          = _notebook->GetSelection();
320             _notebook->SetPageText( id , tabpanelname );
321         }
322
323         std::string wxTabPanelsManager::GetNameTabPanel() 
324         {
325                  int id = _notebook->GetSelection();
326                 return crea::wx2std(_notebook->GetPageText(id));
327         }
328
329         //=========================================================================
330         //DFCH
331         std::string wxTabPanelsManager::GetCurrentTabPanelPath( )
332         {
333                 int id          = _notebook->GetSelection();
334                 wxGEditorTabPanel* auxPanel = (wxGEditorTabPanel*) _notebook->GetPage(id);
335                 return( auxPanel->GetFullPath( ) );
336             //return ( (wxGEditorTabPanel) _notebook->GetPage(id)->GetFullPath( ) );
337         }
338
339         //=========================================================================
340
341         int  wxTabPanelsManager::FindTab(std::string filename)
342         {
343                 std::map<int, wxGEditorTabPanel*>::iterator it;
344                 for (it = _panels.begin(); it != _panels.end(); ++it)
345                 {
346                         wxGEditorTabPanel *obj = it->second;
347                         int id = it->first;
348                         if(obj->GetFullPath()==filename)
349                                 return id;
350                 }
351                 return -1;
352         }
353
354         //=========================================================================
355     std::string wxTabPanelsManager::GetCbPackageName()
356         {
357             return _actual->GetCbPackageName();
358         }
359
360         //=========================================================================
361     std::string wxTabPanelsManager::GetAuthor()
362         {
363             return _actual->GetAuthor();
364         }
365
366         //=========================================================================
367     std::string wxTabPanelsManager::GetDescription()
368         {
369             return _actual->GetDescription();
370         }
371
372         //=========================================================================
373     std::string wxTabPanelsManager::GetCategory()
374         {
375             return _actual->GetCategory();
376         }
377
378         //=========================================================================
379                 std::string wxTabPanelsManager::GetMessageKind()
380                 {
381                         return _actual->GetMessageKind();
382                 }
383
384         //=========================================================================
385                 std::string wxTabPanelsManager::GetMessageLevel()
386                 {
387                         return _actual->GetMessageLevel();
388                 }
389
390         //=========================================================================
391     void wxTabPanelsManager::SetCbName(std::string cbName)
392     {
393         _actual->SetCbName( cbName );
394     }
395
396         //=========================================================================
397     void wxTabPanelsManager::SetCbPackageName(std::string packagename)
398     {
399         _actual->SetCbPackageName( packagename );
400     }
401
402
403         //=========================================================================
404     void wxTabPanelsManager::SetAuthor(std::string author)
405     {
406         _actual->SetAuthor( author );
407     }
408
409
410         //=========================================================================
411     void wxTabPanelsManager::SetCategory(std::string category)
412     {
413         _actual->SetCategory( category );
414     }
415
416         //=========================================================================
417     void wxTabPanelsManager::SetDescription(std::string description)
418     {
419         _actual->SetDescription( description );
420     }
421
422
423         //=========================================================================
424                 void wxTabPanelsManager::SetMessageKind(std::string kind){
425                                 _actual->SetMessageKind(kind);          
426                 }
427
428
429         //=========================================================================
430                 void wxTabPanelsManager::SetMessageLevel(std::string level){
431                                 _actual->SetMessageLevel(level);        
432                 }
433
434         //=========================================================================
435         bool wxTabPanelsManager::TryToOpenScriptApplication(std::string packageName ,std::string boxType)
436     {
437         return _parent->TryToOpenScriptApplication( packageName, boxType );
438     }
439                 
440 }  // EO namespace bbtk
441
442 // EOF
443