]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/wxGEditorTabPanel.cxx
This commit was manufactured by cvs2svn to create tag
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / wxGEditorTabPanel.cxx
1 /*=========================================================================
2 Program:   bbtk
3 Module:    $RCSfile$
4 Language:  C++
5 Date:      $Date$
6 Version:   $Revision$
7 =========================================================================*/
8
9 /* ---------------------------------------------------------------------
10
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
13 *
14 *  This software is governed by the CeCILL-B license under French law and
15 *  abiding by the rules of distribution of free software. You can  use,
16 *  modify and/ or redistribute the software under the terms of the CeCILL-B
17 *  license as circulated by CEA, CNRS and INRIA at the following URL
18 *  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
19 *  or in the file LICENSE.txt.
20 *
21 *  As a counterpart to the access to the source code and  rights to copy,
22 *  modify and redistribute granted by the license, users are provided only
23 *  with a limited warranty  and the software's author,  the holder of the
24 *  economic rights,  and the successive licensors  have only  limited
25 *  liability.
26 *
27 *  The fact that you are presently reading this means that you have had
28 *  knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */
30
31 /**
32 *  \file
33 *  \brief Class bbtk::wxGEditorTabPanel .
34 */
35
36
37 #include "wxGEditorTabPanel.h"
38 #include "creaWx.h"
39
40 namespace bbtk
41 {
42
43         //=========================================================================
44         wxGEditorTabPanel::wxGEditorTabPanel()
45         {
46                 printf ("EED %p wxGEditorTabPanel 1 ()\n" , this );
47         }
48
49         //=========================================================================
50         wxGEditorTabPanel::wxGEditorTabPanel(wxWindow *parent,int id):wxPanel(parent),wxTextDropTarget()
51         {
52                 printf ("EED %p wxGEditorTabPanel 2 ()\n" , this );
53                 _id=id;
54                 _panelAUIMgr = new wxAuiManager(this);
55                 _sceneManager = NULL;
56                 initWxVtkCanvas();
57         }
58
59         //=========================================================================
60         wxGEditorTabPanel::~wxGEditorTabPanel()
61         {
62 printf ("EED %p ~wxGEditorTabPanel()\n" , this );
63 //ED02JUIN2010          _sceneManager->disconnectDrop();
64
65         _panelsManager->VerifyLastTabPanel();
66
67         }
68
69         //=========================================================================
70         void wxGEditorTabPanel::initWxVtkCanvas()
71         {
72                 wxVtk3DBaseView *baseview = new wxVtk3DBaseView(this);
73                 baseview->Configure();
74                 _sceneManager=new wxVtkSceneManager(this,baseview,_id);
75
76
77 //EED02JUIN2010
78                 printf("RaC-EED 21-06-2010 wxGEditorTabPanel::initWxVtkCanvas Remove the panelAUIMgr, and change to a normal sizer inside the wxGEditorTabPanel\n");
79                 _panelAUIMgr->AddPane((wxWindow*)baseview->GetWxVTKRenderWindowInteractor(),wxAuiPaneInfo().Fixed().CenterPane());
80
81                 _panelAUIMgr->Update();
82         }
83
84         //=========================================================================
85
86         bool wxGEditorTabPanel::OnDropText(wxCoord x, wxCoord y, const wxString& data)
87         {
88                 std::string packageName="";
89                 std::string boxType="";
90
91                 wxString foo( (data) );
92                 char str[150];
93                 strcpy( str, (const char*)foo.mb_str(wxConvUTF8) );
94
95                 char delims[] = ":";
96                  char *result = NULL;
97                  result = strtok( str, delims );
98                  packageName += result;
99
100                  result = strtok( NULL, delims );
101                  boxType += result;
102
103                 _sceneManager->createGBlackBox(x,y,packageName, boxType);
104
105           return true;
106         }
107
108         //=========================================================================
109
110         void wxGEditorTabPanel::setPanelsManager(wxTabPanelsManager* panelsManager)
111         {
112                 _panelsManager = panelsManager;
113         }
114
115         //=========================================================================
116
117         void wxGEditorTabPanel::displayBlackBoxInfo(std::string packageName, std::string boxName)
118         {
119                 _panelsManager->displayBlackBoxInfo(packageName,boxName);
120         }
121
122         //=========================================================================
123
124         void wxGEditorTabPanel::updateStatusBar(std::string textStatus)
125         {
126                 _panelsManager->updateStatusBar(textStatus);
127         }
128
129         //=========================================================================
130
131         std::string wxGEditorTabPanel::getDiagramBBS(bool wln)
132         {
133                 return _sceneManager->getDiagramBBS(wln);
134         }
135
136         //=========================================================================
137
138         std::string wxGEditorTabPanel::saveComplexBoxBBS()
139         {
140                 return _sceneManager->saveComplexBoxBBS();
141         }
142
143         //=========================================================================
144
145         void wxGEditorTabPanel::editBlackBox(GBlackBoxModel *bbmodel)
146         {
147                 _panelsManager->editBlackBox(bbmodel);
148         }
149
150         //=========================================================================
151
152         void wxGEditorTabPanel::deleteAllBoxes()
153         {
154                 _sceneManager->deleteAllBoxes();
155         }
156
157         //=========================================================================
158
159         void wxGEditorTabPanel::centerView()
160         {
161                 _sceneManager->centerView();
162         }
163
164         //=========================================================================
165
166         void wxGEditorTabPanel::saveDiagram(std::string &content)
167         {
168                 _sceneManager->saveDiagram(content);
169         }
170
171         //=========================================================================
172
173         void wxGEditorTabPanel::loadDiagram(ifstream &inputStream)
174         {
175                 _sceneManager->loadDiagram(inputStream);
176         }
177
178         //=========================================================================
179
180         int wxGEditorTabPanel::getPanelId()
181         {
182                 return _id;
183         }
184
185         //=========================================================================
186
187         bool wxGEditorTabPanel::isComplexBox()
188         {
189                 return _sceneManager->isComplexBox();
190         }
191
192         //=========================================================================
193
194         void wxGEditorTabPanel::setComplexBox(bool val)
195         {
196                 _sceneManager->setComplexBox(val);
197         }
198
199         //=========================================================================
200
201         void wxGEditorTabPanel::addComplexInputPort(std::string portName)
202         {
203                 _sceneManager->createGComplexBoxInputPort(portName);
204         }
205
206         //=========================================================================
207
208         void wxGEditorTabPanel::addComplexOutputPort(std::string portName)
209         {
210                 _sceneManager->createGComplexBoxOutputPort(portName);
211         }
212
213         //=========================================================================
214
215         std::map<int,GObjectController*> wxGEditorTabPanel::getSelectedObjects()
216         {
217                 return _sceneManager->getSelectedObjects();
218         }
219
220         //=========================================================================
221
222         void wxGEditorTabPanel::addObjects(std::map<int,GObjectController*> objectsMap)
223         {
224                 _sceneManager->addObjects(objectsMap);
225         }
226
227         //=========================================================================
228
229         int wxGEditorTabPanel::getNumSelectedObjects()
230         {
231                 return _sceneManager->getNumSelectedObjects();
232         }
233
234         //=========================================================================
235
236
237         wxVtkSceneManager* wxGEditorTabPanel::getSceneManager()
238         {
239                 return _sceneManager;
240         }
241
242         //=========================================================================
243     std::string wxGEditorTabPanel::GetCbName()
244         {
245             return _sceneManager->GetCbName();
246         }
247
248
249         //=========================================================================
250     std::string wxGEditorTabPanel::GetCbPackageName()
251         {
252             return _sceneManager->GetCbPackageName();
253         }
254
255         //=========================================================================
256     std::string wxGEditorTabPanel::GetAuthor()
257         {
258             return _sceneManager->GetAuthor();
259         }
260
261         //=========================================================================
262     std::string wxGEditorTabPanel::GetDescription()
263         {
264             return _sceneManager->GetDescription();
265         }
266
267         //=========================================================================
268     std::string wxGEditorTabPanel::GetCategory()
269         {
270             return _sceneManager->GetCategory();
271         }
272
273         //=========================================================================
274     void wxGEditorTabPanel::SetCbName(std::string cbName)
275     {
276         _sceneManager->SetCbName( cbName );
277     }
278
279         //=========================================================================
280     void wxGEditorTabPanel::SetCbPackageName(std::string packagename)
281     {
282         _sceneManager->SetCbPackageName( packagename );
283     }
284
285
286         //=========================================================================
287     void wxGEditorTabPanel::SetAuthor(std::string author)
288     {
289         _sceneManager->SetAuthor( author );
290     }
291
292
293         //=========================================================================
294     void wxGEditorTabPanel::SetCategory(std::string category)
295     {
296         _sceneManager->SetCategory( category );
297     }
298
299
300         //=========================================================================
301     void wxGEditorTabPanel::SetDescription(std::string description)
302     {
303         _sceneManager->SetDescription( description );
304     }
305
306
307
308
309
310
311
312
313 }  // EO namespace bbtk
314
315 // EOF