]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxTabPanelsManager.cxx
#3084 bbGEditor Bug New Normal - Color refresh for inputs and outputs
[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             if (this->_notebook->GetPageCount()==0)
261             {
262                 this->_actual=NULL;
263             }
264         }
265
266         //=========================================================================
267
268         void wxTabPanelsManager::OnTabChanged(wxAuiNotebookEvent& event)
269         {
270                 int index                   = event.GetSelection();
271                 wxGEditorTabPanel* tab      = (wxGEditorTabPanel*)_notebook->GetPage(index);
272                 int id                      = tab->getPanelId();
273                 _actual                     = _panels[id];
274                 _parent->refreshGUIControls();
275
276         }
277
278         //=========================================================================
279
280         void wxTabPanelsManager::OnTabClose(wxAuiNotebookEvent& event)
281         {
282
283                 std::cout<<"RaC wxTabPanelsManager::OnTabClose Start... "<<_panels.size()<<std::endl;
284                 int index = event.GetSelection();
285
286                 if(_panels.size()>0)
287                 {
288                         wxGEditorTabPanel* tab      = (wxGEditorTabPanel*)_notebook->GetPage(index);
289                         int id                      = tab->getPanelId();
290                         tab->deleteAllBoxes();
291                         _panels.erase(id);
292
293                         _notebook->RemovePage(index);
294
295                         std::cout<<"RaC wxTabPanelsManager::OnTabClose  IMPORTANT. The complete tab is not erased from memory... "<<std::endl;
296                         //////////////////////////////
297                         // TO FIX . RaC May 2012 - IMPORTANT. The complete tab is not erased from memory.
298                         // Only the objects are deleted and the tab is hidden
299                         // Execution problems when a tab is deleted using delete or DeletePage
300                         // delete tab;
301
302                         map<int, wxGEditorTabPanel*>::iterator it = _panels.begin() ;
303                         _actual=(*it).second;
304
305                         std::cout<<"RaC wxTabPanelsManager::OnTabClose End..."<< std::endl;
306                 }
307         }
308
309         //=========================================================================
310     std::string wxTabPanelsManager::GetCbName()
311         {
312             return _actual->GetCbName();
313         }
314         
315         //=========================================================================
316         void wxTabPanelsManager::SetNameTabPanel(wxString tabpanelname)
317         {
318             int id          = _notebook->GetSelection();
319             _notebook->SetPageText( id , tabpanelname );
320         }
321
322         std::string wxTabPanelsManager::GetNameTabPanel() 
323         {
324                  int id = _notebook->GetSelection();
325                 return crea::wx2std(_notebook->GetPageText(id));
326         }
327
328         //=========================================================================
329         //DFCH
330         std::string wxTabPanelsManager::GetCurrentTabPanelPath( )
331         {
332                 int id          = _notebook->GetSelection();
333                 wxGEditorTabPanel* auxPanel = (wxGEditorTabPanel*) _notebook->GetPage(id);
334                 return( auxPanel->GetFullPath( ) );
335             //return ( (wxGEditorTabPanel) _notebook->GetPage(id)->GetFullPath( ) );
336         }
337
338         //=========================================================================
339
340         int  wxTabPanelsManager::FindTab(std::string filename)
341         {
342                 std::map<int, wxGEditorTabPanel*>::iterator it;
343                 for (it = _panels.begin(); it != _panels.end(); ++it)
344                 {
345                         wxGEditorTabPanel *obj = it->second;
346                         int id = it->first;
347                         if(obj->GetFullPath()==filename)
348                                 return id;
349                 }
350                 return -1;
351         }
352
353         //=========================================================================
354     std::string wxTabPanelsManager::GetCbPackageName()
355         {
356             return _actual->GetCbPackageName();
357         }
358
359         //=========================================================================
360     std::string wxTabPanelsManager::GetAuthor()
361         {
362             return _actual->GetAuthor();
363         }
364
365         //=========================================================================
366     std::string wxTabPanelsManager::GetDescription()
367         {
368             return _actual->GetDescription();
369         }
370
371         //=========================================================================
372     std::string wxTabPanelsManager::GetCategory()
373         {
374             return _actual->GetCategory();
375         }
376
377         //=========================================================================
378                 std::string wxTabPanelsManager::GetMessageKind()
379                 {
380                         return _actual->GetMessageKind();
381                 }
382
383         //=========================================================================
384                 std::string wxTabPanelsManager::GetMessageLevel()
385                 {
386                         return _actual->GetMessageLevel();
387                 }
388
389         //=========================================================================
390     void wxTabPanelsManager::SetCbName(std::string cbName)
391     {
392         _actual->SetCbName( cbName );
393     }
394
395         //=========================================================================
396     void wxTabPanelsManager::SetCbPackageName(std::string packagename)
397     {
398         _actual->SetCbPackageName( packagename );
399     }
400
401
402         //=========================================================================
403     void wxTabPanelsManager::SetAuthor(std::string author)
404     {
405         _actual->SetAuthor( author );
406     }
407
408
409         //=========================================================================
410     void wxTabPanelsManager::SetCategory(std::string category)
411     {
412         _actual->SetCategory( category );
413     }
414
415         //=========================================================================
416     void wxTabPanelsManager::SetDescription(std::string description)
417     {
418         _actual->SetDescription( description );
419     }
420
421
422         //=========================================================================
423                 void wxTabPanelsManager::SetMessageKind(std::string kind){
424                                 _actual->SetMessageKind(kind);          
425                 }
426
427
428         //=========================================================================
429                 void wxTabPanelsManager::SetMessageLevel(std::string level){
430                                 _actual->SetMessageLevel(level);        
431                 }
432
433         //=========================================================================
434         bool wxTabPanelsManager::TryToOpenScriptApplication(std::string packageName ,std::string boxType)
435     {
436         return _parent->TryToOpenScriptApplication( packageName, boxType );
437     }
438                 
439 }  // EO namespace bbtk
440
441 // EOF
442