]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.cxx
#3249 Change FontSize - Box graphic scale
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / bbtkwxGUIEditorGraphicBBS.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::WxInterfaceEditorGraphicBBS .
59  */
60
61 #include "bbtkwxGUIEditorGraphicBBS.h"
62 #include "creaWx.h"
63 #include "creaSystem.h"
64 //must go #include "bbtkUtilities.h"
65 //must go #include "bbtkConfigurationFile.h"
66 #include <wx/defs.h>
67
68 #include <InterpreterBBS.h>
69
70 namespace bbtk {
71
72 //=========================================================================
73 wxGUIEditorGraphicBBS::wxGUIEditorGraphicBBS(wxFrame *parent) 
74         : wxFrame( parent, -1, _T("bbtkGEditor"), wxDefaultPosition, wxSize(1200,800) ) 
75 {
76         _pkgBrowser = NULL;
77         _frameAUIMgr = new wxAuiManager(this);
78
79         /*std::string datadir( crea::System::GetExecutablePath() );
80          std::string datadir (".");
81          cout<<"RaC //------------------"<<endl;
82          cout<<"RaC //TODO wxGUIEditorGraphicBBS constructor.Initialize datadir with  crea::System::GetExecutablePath() ."<<endl;
83          cout<<"RaC //------------------"<<endl;
84
85          #ifdef LINUX // assume this is OSX
86          datadir=datadir+"/../share/creaContours";
87          #endif // MACOSX
88
89          #ifdef MACOSX // assume this is OSX
90          datadir=datadir+"/../../../../share/creaContours";
91          #endif // MACOSX
92
93          _dataDir = datadir;*/
94
95         initMenu();
96         initToolbar();
97         initPackageBrowser();
98         initTabPanelsManager();
99     // JGGR & CM  initHelpHTMLBrowser();
100     _helpHtmlBrowser = NULL;
101         CreateStatusBar();
102         _frameAUIMgr->Update();
103         _actualPkgBrowserBoxName = "";
104         _actualPkgBrowserPkgName = "";
105         refreshGUIControls();
106
107         /////////////////////////////////
108         /// IMPORTANT!! FOR SAVE&LOAD PROCESSES THE VERSION IS VERY IMPORTANT.
109         /// RaC 2012 2nd Hackfest
110         _currentBBGversion="1.5";
111 }
112
113 //=========================================================================
114 wxGUIEditorGraphicBBS::~wxGUIEditorGraphicBBS() 
115 {
116         //EED02JUIN2010         delete _tabsMgr;
117         _frameAUIMgr->UnInit();
118         // FCY memory leaks
119         delete _frameAUIMgr;
120         delete _notebook;
121         delete _tabsMgr;
122 }
123
124 //=========================================================================
125 void wxGUIEditorGraphicBBS::initToolbar() 
126 {
127         wxBitmap bmp_new(new_xpm);
128         wxBitmap bmp_open(open_xpm);
129         wxBitmap bmp_save(save_xpm);
130         wxBitmap bmp_run(run_xpm);
131         wxBitmap bmp_delete(delete_xpm);
132         wxBitmap bmp_centerview(centerview_xpm);
133         wxBitmap bmp_box(box_xpm);
134         wxBitmap bmp_executablebox(executablebox_xpm);
135         wxBitmap bmp_complexbox(complexbox_xpm);
136         wxBitmap bmp_complexinputport(complexinputport_xpm);
137         wxBitmap bmp_complexoutputport(complexoutputport_xpm);
138         wxBitmap bmp_undo(undo_xpm);
139         wxBitmap bmp_redo(redo_xpm);
140         wxBitmap bmp_editProperties(editProperties_xpm);
141         wxBitmap bmp_showTree(showTree_xpm);
142         
143 //      wxToolBar *toolbar = new wxToolBar(this, wxID_ANY);
144         wxToolBar *toolbar =    CreateToolBar();
145
146         //Adds a tool btn to the toolbar
147         toolbar->AddTool(ID_NEW, _T("New"), bmp_new, wxNullBitmap, wxITEM_NORMAL,
148                         _T("New tab"), _T("Create a new panel tab"));
149
150         toolbar->AddTool(ID_OPEN, _T("Open diagram"), bmp_open, wxNullBitmap,
151                         wxITEM_NORMAL, _T("Open a diagram"), _T("Open a diagram"));
152
153         toolbar->AddTool(ID_SAVE_DIAGRAM, _T("Save Diagram"), bmp_save,
154                         wxNullBitmap, wxITEM_NORMAL, _T("Saves the current diagram"),
155                         _T("Saves the current diagram")); //DFCH
156         //toolbar->AddTool(ID_SAVE_AS_DIAGRAM,_T("Save Diagram As"),bmp_save, wxNullBitmap, wxITEM_NORMAL,_T("Saves the current diagram"), _T("Saves the current diagram")); //DFCH
157         toolbar->AddTool(ID_RUN, _T("Run"), bmp_run, wxNullBitmap, wxITEM_NORMAL,
158                         _T("Execute actual diagram"), _T("Execute actual diagram"));
159         toolbar->AddTool(ID_DELETEALL, _T("Delete all"), bmp_delete, wxNullBitmap,
160                         wxITEM_NORMAL, _T("Delete all boxes"), _T("Delete all boxes"));
161         toolbar->AddTool(ID_CENTERVIEW, _T("Center view"), bmp_centerview,
162                         wxNullBitmap, wxITEM_NORMAL, _T("Center view"), _T("Center view"));
163         toolbar->AddSeparator();
164         toolbar->AddTool(ID_BTNBOX, _T("New Box"), bmp_box, wxNullBitmap,
165                         wxITEM_NORMAL, _T("New Box"), _T("Nex Box"));
166         toolbar->AddSeparator();
167         toolbar->AddTool(ID_BTEXECUTABLEBOX, _T("Select as executable Box"),
168                         bmp_executablebox, wxNullBitmap, wxITEM_NORMAL,
169                         _T("Select as executable Box"), _T("Select as executable Box"));
170         toolbar->AddSeparator();
171         toolbar->AddTool(ID_BTNCOMPLEXBOX, _T("Complex box"), complexbox_xpm,
172                         wxNullBitmap, wxITEM_NORMAL, _T("Complex box"), _T("Complex box"));
173
174 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
175 #if wxMAJOR_VERSION <= 2
176         toolbar->SetToggle(ID_BTNCOMPLEXBOX, true);
177 #else
178         printf ("EED Warnning. wxGUIEditorGraphicBBS::initToolbar       >>>   toolbar->SetToggle  \n ");
179         // ..
180 #endif
181
182         // RaC 2012 2nd HackFest - Now Complex inputs are any external input
183         //              toolbar->AddTool(ID_ADDCOMPLEXBOXINPUT, _T("Add input to Complex box"),
184         //              bmp_complexinputport, wxNullBitmap, wxITEM_NORMAL,
185         //              _T("Add input to Complex box"), _T("Add input to Complex box"));
186         toolbar->AddTool(ID_ADDCOMPLEXBOXINPUT, _T("Add external input (Complex box or console app)"),
187                         bmp_complexinputport, wxNullBitmap, wxITEM_NORMAL,
188                         _T("Add external input (Complex box or console app)"), _T("Add external input (Complex box or console app)"));
189
190         toolbar->AddTool(ID_ADDCOMPLEXBOXOUTPUT, _T("Add output to Complex box"),
191                         bmp_complexoutputport, wxNullBitmap, wxITEM_NORMAL,
192                         _T("Add output Complex box"), _T("Add output Complex box"));
193
194         // toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, false); RaC2012 2nd HackFest
195         toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, true);
196
197         toolbar->EnableTool(ID_ADDCOMPLEXBOXOUTPUT, false);
198         toolbar->AddSeparator();
199         toolbar->AddTool(ID_UNDO, _T("Undo"),bmp_undo, wxNullBitmap, wxITEM_NORMAL,     _T("Undo"), _T("Undo"));
200         toolbar->AddTool(ID_REDO, _T("Redo"),bmp_redo, wxNullBitmap, wxITEM_NORMAL,     _T("Redo"), _T("Redo"));
201         toolbar->AddSeparator();
202         toolbar->AddTool(ID_EDITPROPERTIES, _T("Edit diagram properties"),bmp_editProperties, wxNullBitmap, wxITEM_NORMAL,      _T("Edit diagram properties"), _T("Edit diagram properties"));
203         toolbar->EnableTool(ID_EDITPROPERTIES, false);
204
205         toolbar->AddTool(ID_SHOWTREE, _T("Show tree"),bmp_showTree, wxNullBitmap, wxITEM_NORMAL,        _T("Show tree"), _T("Show tree"));
206
207         
208         toolbar->EnableTool(ID_UNDO, false);
209         toolbar->EnableTool(ID_REDO, false);
210         toolbar->SetMargins(2, 2);
211         toolbar->Realize();
212         SetToolBar(toolbar);
213
214
215         
216         // connect command event handlers
217
218         Connect(ID_NEW, wxEVT_COMMAND_TOOL_CLICKED,
219                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCreateNewTab));
220         Connect(ID_OPEN, wxEVT_COMMAND_TOOL_CLICKED,
221                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnOpenDiagram));
222         Connect(ID_SAVE_DIAGRAM, wxEVT_COMMAND_TOOL_CLICKED,
223                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualDiagram)); //DFCH
224         Connect(ID_SAVE_AS_DIAGRAM, wxEVT_COMMAND_TOOL_CLICKED,
225                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveAsActualDiagram)); //DFCH
226         Connect(
227                         ID_RUN,
228                         wxEVT_COMMAND_TOOL_CLICKED,
229                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnExecuteActualDiagram));
230         Connect(
231                         ID_DELETEALL,
232                         wxEVT_COMMAND_TOOL_CLICKED,
233                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnDeleteAllBoxesActualDiagram));
234         Connect(
235                         ID_CENTERVIEW,
236                         wxEVT_COMMAND_TOOL_CLICKED,
237                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCenterViewActualDiagram));
238         Connect(ID_BTNBOX, wxEVT_COMMAND_TOOL_CLICKED,
239                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnClickBtnBox));
240         Connect(
241                         ID_BTEXECUTABLEBOX,
242                         wxEVT_COMMAND_TOOL_CLICKED,
243                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnClickBtnExecutableBox));
244         Connect(ID_BTNCOMPLEXBOX, wxEVT_COMMAND_TOOL_CLICKED,
245                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnClickBtnComplexBox));
246         Connect(ID_ADDCOMPLEXBOXINPUT, wxEVT_COMMAND_TOOL_CLICKED,
247                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnAddComplexBoxInput));
248         Connect(ID_ADDCOMPLEXBOXOUTPUT, wxEVT_COMMAND_TOOL_CLICKED,
249                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnAddComplexBoxOutput));
250         Connect(ID_UNDO,wxEVT_COMMAND_TOOL_CLICKED,     wxCommandEventHandler(wxGUIEditorGraphicBBS::OnUndo));
251         Connect(ID_REDO,wxEVT_COMMAND_TOOL_CLICKED,     wxCommandEventHandler(wxGUIEditorGraphicBBS::OnRedo));
252         Connect(ID_CHANGENAME, wxEVT_COMMAND_RIGHT_CLICK, wxCommandEventHandler(wxGUIEditorGraphicBBS::OnChangeName));
253         Connect(ID_EDITPROPERTIES,wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(wxGUIEditorGraphicBBS::OnEditDiagramProperties));
254         Connect(ID_SHOWTREE,wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(wxGUIEditorGraphicBBS::OnShowTree));
255
256
257 }
258 //=========================================================================
259 void wxGUIEditorGraphicBBS::initHelpHTMLBrowser() {
260         // JGRR & CM 
261         _helpHtmlBrowser = new WxGUIHtmlBrowser(this, wxSize(200, 0));
262    
263         // EO JGRR & CM 
264         
265 }
266
267 //=========================================================================
268 void wxGUIEditorGraphicBBS::initMenu() {
269         // Create File menu and its items
270         wxMenu *fileMenu = new wxMenu();
271         fileMenu->Append(ID_NEW, _T("New diagram"), _T("New"));
272         fileMenu->Append(ID_SAVE_DIAGRAM, _T("Save Diagram"), _T("Save Diagram")); //DFCH
273         fileMenu->Append(ID_SAVE_AS_DIAGRAM, _T("Save Diagram As"),
274                         _T("Save Diagram As")); //DFCH
275         fileMenu->Append(ID_OPEN_BBS, _T("Open BBS"), _T("Open BBS"));
276         // CM
277         fileMenu->Append(ID_OPEN, _T("Open a diagram"), _T("Open a diagram"));
278         fileMenu->Append(ID_SAVE_AS_BBS, _T("Save BBS"), _T("Save BBS"));
279         fileMenu->Append(ID_SAVE_AS_COMPLEXBOX, _T("Save complex box"),
280                         _T("Save complex box"));
281         fileMenu->Append(ID_EXPORT_CONSOLEAPP, _T("Export console commands"),
282                                 _T("Export console execution commands"));
283         fileMenu->Append(wxID_EXIT, _T("E&xit"), _T("Exit"));
284
285         Connect(ID_NEW, wxEVT_COMMAND_MENU_SELECTED,
286                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCreateNewTab));
287         Connect(ID_SAVE_DIAGRAM, wxEVT_COMMAND_MENU_SELECTED,
288                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualDiagram)); //DFCH
289         Connect(ID_SAVE_AS_DIAGRAM, wxEVT_COMMAND_MENU_SELECTED,
290                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveAsActualDiagram));
291         Connect(ID_OPEN_BBS, wxEVT_COMMAND_MENU_SELECTED,
292                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnOpenBBS));
293         Connect(ID_SAVE_AS_BBS, wxEVT_COMMAND_MENU_SELECTED,
294                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualBBS));
295         Connect( ID_SAVE_AS_COMPLEXBOX, wxEVT_COMMAND_MENU_SELECTED,
296                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualComplexBox));
297         Connect( ID_EXPORT_CONSOLEAPP, wxEVT_COMMAND_MENU_SELECTED,
298                                 wxCommandEventHandler(wxGUIEditorGraphicBBS::OnExportConsoleExecCommand));
299         Connect(wxID_EXIT, wxEVT_COMMAND_MENU_SELECTED,
300                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnExit));
301
302         // Create Edit menu and its items
303         wxMenu *editMenu = new wxMenu;
304         editMenu->Append(ID_COPY_TO_COMPLEXDIAGRAM, _T("Copy selected to complex box"), _T("Creates a new complex box diagram with selected boxes"));
305         editMenu->Append(ID_EDIT_COMPLEXBOX_SCRIPT, _T("Edit Complex Box"), _T("Edit Complex Box"));
306         Connect( ID_COPY_TO_COMPLEXDIAGRAM, wxEVT_COMMAND_MENU_SELECTED,
307                          wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCopySelectedToComplexDiagram));
308         Connect( ID_EDIT_COMPLEXBOX_SCRIPT, wxEVT_COMMAND_MENU_SELECTED,
309                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnEditComplexBoxScript));
310
311         // Create Help menu and its items
312         wxMenu *helpMenu = new wxMenu;
313         helpMenu->Append(wxID_ABOUT, _T("&About..."), _T("About"));
314         helpMenu->Append(ID_HELP_BBEDITOR, _T("&Help..."), _T("Help"));
315         Connect(ID_HELP_BBEDITOR, wxEVT_COMMAND_MENU_SELECTED,
316                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnHelpBBeditor));
317
318         // Create Tool menu
319         wxMenu *menuTools = new wxMenu;
320         menuTools->Append(ID_bbEditor_Tool_Menu_CreatePackage,
321                         _T("Create &package") );
322         menuTools->Append(ID_bbEditor_Tool_Menu_CreateBlackBox,
323                         _T("Create &blackbox") );
324         menuTools->Append(ID_bbEditor_Tool_Menu_PlugPackage, _T("Plug package") );
325         menuTools->Append(ID_bbEditor_Tool_Menu_EditConfig, _T("&Edit bbtk config") );
326         menuTools->Append(ID_bbEditor_Tool_Menu_ShowHTMLDoc,
327                         _T("Show &HTML documentation") );
328         menuTools->Append(ID_bbEditor_Tool_Menu_CreateIndex, _T("&Generate index") );
329
330         Connect(ID_bbEditor_Tool_Menu_CreatePackage, wxEVT_COMMAND_MENU_SELECTED,
331                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCreatePackage));
332         Connect(ID_bbEditor_Tool_Menu_CreateBlackBox, wxEVT_COMMAND_MENU_SELECTED,
333                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCreateBlackBox));
334         Connect(ID_bbEditor_Tool_Menu_PlugPackage, wxEVT_COMMAND_MENU_SELECTED,
335                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnPlugPackage));
336         Connect(ID_bbEditor_Tool_Menu_EditConfig, wxEVT_COMMAND_MENU_SELECTED,
337                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnEditConfig));
338         Connect(ID_bbEditor_Tool_Menu_ShowHTMLDoc, wxEVT_COMMAND_MENU_SELECTED,
339                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnShowHTMLDoc));
340         Connect(ID_bbEditor_Tool_Menu_CreateIndex, wxEVT_COMMAND_MENU_SELECTED,
341                         wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCreateIndex));
342
343         // Append the created menu to the menu bar
344         wxMenuBar *menuBar = new wxMenuBar();
345         menuBar->Append(fileMenu, _T("&File") );
346         menuBar->Append(editMenu, _T("&Edit") );
347         menuBar->Append(menuTools, _T("&Tool") );
348         menuBar->Append(helpMenu, _T("&Help") );
349
350         // Attach this menu bar to the frame
351         SetMenuBar(menuBar);
352 }
353
354 //=========================================================================
355 void wxGUIEditorGraphicBBS::initTabPanelsManager() 
356 {
357         _notebook = new wxAuiNotebook(this, wxID_NOTEBOOK, wxDefaultPosition,
358                         wxDefaultSize, wxAUI_NB_TOP | wxAUI_NB_TAB_MOVE
359                                         | wxAUI_NB_CLOSE_ON_ACTIVE_TAB | wxAUI_NB_TAB_FIXED_WIDTH
360                                         | wxAUI_NB_WINDOWLIST_BUTTON);
361         _tabsMgr = new wxTabPanelsManager(this);
362         _frameAUIMgr->AddPane(_notebook, wxAuiPaneInfo().CenterPane());
363 }
364
365 //=========================================================================
366 void wxGUIEditorGraphicBBS::initPackageBrowser() 
367 {
368         _pkgBrowser = new WxGUIPackageBrowser2(this);
369         _pkgBrowser->IncludeAll();
370         _frameAUIMgr->AddPane(_pkgBrowser, wxAuiPaneInfo().Left().MinSize(30, 500).BestSize(750,500).CloseButton(false));
371 }
372
373 //================================================================
374
375 void wxGUIEditorGraphicBBS::DoRegeneratePackageDoc(const std::string& pack) 
376 {
377         std::string mess("Regenerating doc for package '");
378         if (pack != "-a") {
379                 mess += pack + "'";
380         } else {
381                 mess = "Regenerating doc for all packages";
382         }
383
384         mess += " ... please wait";
385
386         SetStatusText(std2wx(mess));
387
388         //BBTK_BUSY_CURSOR;
389
390         std::string command;
391 #if defined(WIN32)
392         command = "\"";
393 #endif
394         command += ConfigurationFile::GetInstance().Get_bin_path();
395         command += ConfigurationFile::GetInstance().Get_file_separator();
396         command += "bbRegeneratePackageDoc";
397 #if defined(WIN32)
398         command += "\"";
399 #endif
400
401         command += " " + pack + " -q";
402         bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
403
404         if (!system(command.c_str())) {
405                 SetStatusText(_T("Done !"));
406                 /*
407                  wxMessageBox(_T("Done !"),_T("Regenerate package '")
408                  +std2wx(pack)+_T("' doc"),
409                  wxOK | wxICON_INFORMATION);
410                  */
411         } else {
412                 SetStatusText(_T("Done !"));
413                 wxString err(_T("An error occured while running '"));
414                 err += bbtk::std2wx(command) + _T("'");
415                 wxMessageBox(err, _T("Regenerate package doc"), wxOK | wxICON_ERROR);
416         }
417 }
418
419 //================================================================
420 void wxGUIEditorGraphicBBS::DoRegenerateBoxesLists() {
421         SetStatusText(_T("Regenerating boxes lists ... please wait"));
422         //BBTK_BUSY_CURSOR ;
423
424         std::string command;
425 #if defined(WIN32)
426         command = "\"";
427 #endif
428         command += ConfigurationFile::GetInstance().Get_bin_path();
429         command += ConfigurationFile::GetInstance().Get_file_separator();
430         command += "bbRegenerateBoxesLists";
431
432 #if defined(WIN32)
433         command += "\"";
434 #endif
435         command += " -q";
436
437         bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
438
439         if (!system(command.c_str())) {
440                 SetStatusText(_T("Done !"));
441                 /*
442                  wxMessageBox(_T("Done !"),_T("Regenerate boxes lists"),
443                  wxOK | wxICON_INFORMATION);
444                  */
445         } else {
446                 SetStatusText(_T("Done !"));
447                 wxString err(_T("An error occured while running '"));
448                 err += bbtk::std2wx(command) + _T("'");
449                 wxMessageBox(err, _T("Regenerate boxes lists"), wxOK | wxICON_ERROR);
450         }
451 }
452
453 //================================================================
454 void wxGUIEditorGraphicBBS::RegenerateAll() {
455         DoRegeneratePackageDoc("-a");
456         DoRegenerateBoxesLists();
457 }
458
459 //================================================================
460
461 wxAuiNotebook* wxGUIEditorGraphicBBS::getAuiNotebook() {
462         return _notebook;
463 }
464
465 //================================================================
466
467 void wxGUIEditorGraphicBBS::displayBlackBoxInfo(std::string packageName, std::string boxName) 
468 {
469         if (_actualPkgBrowserPkgName != packageName || _actualPkgBrowserBoxName != boxName) 
470         {
471
472                 _actualPkgBrowserPkgName = packageName;
473                 _actualPkgBrowserBoxName = boxName;
474
475 //EED 15 oct 2012               BlackBoxDescriptor::Pointer descriptor = GObjectsMVCFactory::getInstance()->getBlackBoxDescriptor(packageName, boxName);
476                 
477                 Package::Pointer k;
478 //EED           ComplexBlackBoxDescriptor::Pointer descriptor;
479                 BlackBoxDescriptor::Pointer descriptor;
480
481                 std::map< std::string, BlackBoxDescriptor::Pointer> mapDesc;
482                 k                       = _pkgBrowser->GetFactory()->GetPackage(_actualPkgBrowserPkgName);
483                 mapDesc         = k->GetDescriptorMap();                
484                 descriptor      = mapDesc[_actualPkgBrowserBoxName];
485 /*
486                 tree.treeTour(0);               
487
488                 tree.deleteTree();
489
490                 descriptor->GetBoxesInside(tree, 0);
491
492                 //tree.treeTour(0);
493                 //std::vector<std::string> boxesDiagram = _sceneM->boxesDiagram;
494                 //for(int i=0;i<boxesDiagram.size();i++){
495                 //      std::cout<<"caja: "<<boxesDiagram[i]<<std::endl;
496                 //}             
497                 
498                 _actualPkgBrowserPkgName = "";
499                 _actualPkgBrowserBoxName = "";
500 */
501                 /*
502                 Package::Pointer k;
503                 BlackBoxDescriptor::Pointer descriptor;
504                 std::map< std::string, BlackBoxDescriptor::Pointer> mapDesc;
505                 k                       = _pkgBrowser->GetFactory()->GetPackage(packageName);
506                 std::vector<std::string> temp;
507                 _pkgBrowser->GetFactory()->GetPackagesList(temp);
508                 for(int ii = 0 ; ii < temp.size() ; ii++)
509                 {
510                                 std::cout << " packs "<< temp[ii]<< std::endl;
511                 }
512                 mapDesc         = k->GetDescriptorMap();                
513                 descriptor      = mapDesc[boxName];
514                 */
515                 _pkgBrowser->WxGUIBlackBoxListUserOnSelected(descriptor.get());
516         }
517 }
518
519 //=========================================================================
520
521 void wxGUIEditorGraphicBBS::editBlackBox(GBlackBoxModel *bbmodel) {
522         wxBlackBoxEditionDialog* dialog =
523                         new wxBlackBoxEditionDialog(this, bbmodel);
524         dialog->Show();
525 }
526
527 //=========================================================================
528
529 bool wxGUIEditorGraphicBBS::boxNameExists(std::string boxname) {
530  
531         return this->_tabsMgr->getActualTabPanel()->getSceneManager()->boxExist(boxname);
532 }
533
534 //=========================================================================
535
536 void wxGUIEditorGraphicBBS::updateStatusBar(std::string textStatus) {
537         SetStatusText(crea::std2wx(textStatus));
538 }
539
540 //=========================================================================
541
542 void wxGUIEditorGraphicBBS::executeScript(std::string script) {
543         std::string separator =
544                         ConfigurationFile::GetInstance().Get_file_separator();
545         std::string dir = ConfigurationFile::GetInstance().Get_default_temp_dir();
546         std::string filename = dir + separator + "tmp_bbtk.bbs";
547
548         ofstream tempFile;
549         tempFile.open(filename.c_str());
550         tempFile << script;
551         tempFile.close();
552
553         std::string command = "";
554
555 #ifdef WIN32
556         command += "start /b ";
557 #endif
558
559         //              command += "\""+ crea::System::GetExecutablePath();
560         //#ifdef MACOSX
561         //              command += separator + "../../../bbi.app/Contents/MacOS";
562         //#endif
563
564         command += "bbi ";
565         command += "\"" + filename + "\"";
566
567 #ifndef WIN32
568         command += " & ";
569 #endif
570
571 #ifdef __APPLE__
572     command = "source ~/.bbtk/profile_creatools; "+command;
573 #endif
574
575
576         printf("RaC wxGUIEditorGraphicBBS::executeScript %s \n", command.c_str());
577         system(command.c_str());
578 }
579
580 //=========================================================================
581 std::string wxGUIEditorGraphicBBS::CheckExtension(std::string filename, std::string extension) {
582         if(filename.size() > extension.size() ){
583                 if( (filename.compare(filename.size()-extension.size(), extension.size(),extension)) !=0 ){
584                         filename.append(extension);
585                 }
586         }else{
587                 filename.append(extension);
588         }
589         return filename;
590 }
591 //=========================================================================
592 // EVENT HANDLERS
593 //=========================================================================
594
595 void wxGUIEditorGraphicBBS::OnCreateNewTab(wxCommandEvent& event) {
596         _tabsMgr->addNewTab();
597         refreshGUIControls();
598 }
599
600 void wxGUIEditorGraphicBBS::OnUndo(wxCommandEvent& event) {
601         unsigned short disable;
602         std::string stundo;
603         std::string stredo;
604
605         _tabsMgr->loadTempDiagram(0);
606         disable = _tabsMgr->getUndoState(stundo);
607         if(disable == 0)
608         {
609                 std::string name = _tabsMgr->GetNameTabPanel();
610                 if(name[name.length() - 1] == '*')
611                 {
612                         name =name.substr(0,name.length()-1);
613                 }
614                 _tabsMgr->SetNameTabPanel(wxString (name.c_str(), wxConvUTF8));
615         }
616
617         GetToolBar()->EnableTool(ID_UNDO,disable);
618         GetToolBar()->SetToolShortHelp(ID_UNDO,crea::std2wx(stundo));
619         GetToolBar()->EnableTool(ID_REDO,_tabsMgr->getRedoState(stredo));
620         GetToolBar()->SetToolShortHelp(ID_REDO,crea::std2wx(stredo));
621         refreshGUIControls();
622 }
623
624 //=========================================================================
625
626 void wxGUIEditorGraphicBBS::OnRedo(wxCommandEvent& event) {
627         unsigned short disable;
628         std::string stundo;
629         std::string stredo;
630
631         _tabsMgr->loadTempDiagram(1);
632         std::string name = _tabsMgr->GetNameTabPanel();
633         if(name[name.length() - 1] != '*')
634                 name +="*";
635         _tabsMgr->SetNameTabPanel(wxString (name.c_str(), wxConvUTF8));
636         GetToolBar()->EnableTool(ID_UNDO,_tabsMgr->getUndoState(stundo));
637         GetToolBar()->SetToolShortHelp(ID_UNDO,crea::std2wx(stundo));
638         GetToolBar()->EnableTool(ID_REDO,_tabsMgr->getRedoState(stredo));
639         GetToolBar()->SetToolShortHelp(ID_REDO,crea::std2wx(stredo));
640         refreshGUIControls();
641 }
642
643 void wxGUIEditorGraphicBBS::OnChangeName(wxCommandEvent& event){
644 }
645 //=========================================================================
646
647 void wxGUIEditorGraphicBBS::OnShowTree(wxCommandEvent& event){
648                 std::cout <<  "wxGUIEditorGraphicBBS::OnShowTree"<<std::endl;
649 if (_actualPkgBrowserPkgName !="" || _actualPkgBrowserBoxName != "") 
650         {
651                 Package::Pointer k;
652 //EED           ComplexBlackBoxDescriptor::Pointer descriptor;
653                 BlackBoxDescriptor::Pointer descriptor;
654
655                 std::map< std::string, BlackBoxDescriptor::Pointer> mapDesc;
656                 k                       = _pkgBrowser->GetFactory()->GetPackage(_actualPkgBrowserPkgName);
657                 mapDesc         = k->GetDescriptorMap();                
658                 descriptor      = mapDesc[_actualPkgBrowserBoxName];
659
660                 tree.treeTour(0);               
661
662                 tree.deleteTree();
663
664                 descriptor->GetBoxesInside(tree, 0);
665                 
666                 _actualPkgBrowserPkgName = "";
667                 _actualPkgBrowserBoxName = "";
668         }
669 else
670         {
671                 std::cout<<"Select a Box"<<std::endl;
672         }
673 }
674
675 //=========================================================================
676
677 void wxGUIEditorGraphicBBS::OnEditDiagramProperties(wxCommandEvent& event)
678 {
679         wxDiagramPropertiesEditionDialog* dialog =
680                                 new wxDiagramPropertiesEditionDialog(this, tree);
681         dialog->Show();
682 }
683
684 //=========================================================================
685 void wxGUIEditorGraphicBBS::OnExecuteActualDiagram(wxCommandEvent& event)
686 {
687         std::string script1 = _tabsMgr->getActualDiagramBBS(true);
688         cout << endl << "RaC wxGUIEditorGraphicBBS::executeActualDiagram SCRIPT"
689                         << endl << endl;
690         cout << script1 << endl;
691         std::string script2 = _tabsMgr->getActualDiagramBBS(false);
692         executeScript(script2);
693 }
694
695 //=========================================================================
696 void wxGUIEditorGraphicBBS::OpenBBS(std::string filePathName, std::string fileName) 
697 {
698         _tabsMgr->addNewTab( crea::std2wx(fileName) );
699         bbtk::InterpreterBBS::Pointer I = bbtk::InterpreterBBS::New( this->_tabsMgr->getActualTabPanel()->getSceneManager(), _pkgBrowser->GetFactory());
700         // We tell the interpreter to throw exceptions on error
701         I->SetThrow(true);
702         // Interpret the file supposed to define a box called 'Processing'
703         I->InterpretFile( filePathName );
704         refreshGUIControls();
705 }
706         
707 //=========================================================================
708 // HANDLERS
709 //=========================================================================
710 void wxGUIEditorGraphicBBS::OnOpenBBS(wxCommandEvent& event) 
711 {
712 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
713 #if wxMAJOR_VERSION <= 2
714         wxFileDialog * openFileDialog = new wxFileDialog(this, wxT("Open BBS"), wxEmptyString, wxT("NewBBS"), wxT("*.bbs"), wxOPEN);
715 #else
716         wxFileDialog * openFileDialog = new wxFileDialog(this, wxT("Open BBS"), wxEmptyString, wxT("NewBBS"), wxT("*.bbs"), wxFD_OPEN);
717 #endif
718
719         if (openFileDialog->ShowModal() == wxID_OK) 
720         {
721                 OpenBBS( crea::wx2std(openFileDialog->GetPath()) , crea::wx2std(openFileDialog->GetFilename())  );
722         }
723         
724 /*EED Borrame   
725         if (openFileDialog->ShowModal() == wxID_OK) 
726         {
727                 wxString fileName = openFileDialog->GetPath();
728                 _tabsMgr->addNewTab(openFileDialog->GetFilename());
729                 bbtk::InterpreterBBS::Pointer I = bbtk::InterpreterBBS::New( this->_tabsMgr->getActualTabPanel()->getSceneManager(), _pkgBrowser->GetFactory());
730                 // We tell the interpreter to throw exceptions on error
731                 I->SetThrow(true);
732                 // Interpret the file supposed to define a box called 'Processing'
733                 I->InterpretFile((const char*) (fileName.mb_str()));
734         }
735         refreshGUIControls();
736 */ 
737 }
738
739 //=========================================================================
740 void wxGUIEditorGraphicBBS::SaveActualBBS(std::string filename) {
741         ofstream file;
742
743         //EED           file.open(fileName.c_str());
744         file.open(filename.c_str());
745         std::string content = "";
746         // writing file header
747         content += "# ----------------------------------\n";
748         content += "# - BBTKGEditor v ";
749         content += _currentBBGversion; //VERSION
750         content += " BBS BlackBox Script\n";
751         content += "# - ";
752         content += filename;
753         content += "\n";
754         content += "# ----------------------------------\n";
755         content += "\n";
756         content += _tabsMgr->getActualDiagramBBS();
757         file << content;
758         file.close();
759 }
760
761 void wxGUIEditorGraphicBBS::OnSaveActualBBS(wxCommandEvent& event) {
762
763 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
764 #if wxMAJOR_VERSION <= 2
765         wxFileDialog * saveFileDialog = new wxFileDialog(this,
766                         wxT("Save  actual BBS"), wxEmptyString, wxT("NewBBS"),
767                         wxT("*.bbs"), wxSAVE | wxOVERWRITE_PROMPT);
768 #else
769         wxFileDialog * saveFileDialog = new wxFileDialog(this,
770                         wxT("Save  actual BBS"), wxEmptyString, wxT("NewBBS"),
771                         wxT("*.bbs"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
772 #endif
773
774         if (saveFileDialog->ShowModal() == wxID_OK) {
775                 wxString fileName = saveFileDialog->GetPath();
776                 std::string filename = (const char*) (fileName.mb_str());
777                 filename=CheckExtension (filename, ".bbs");
778                 SaveActualBBS(filename);
779         }
780
781 }
782
783 void wxGUIEditorGraphicBBS::AskComplexBoxConfiguration() {
784         std::string cbName = _tabsMgr->GetCbName();
785         std::string paName = _tabsMgr->GetCbPackageName();
786
787         wxTextEntryDialog *cbNameDialog = new wxTextEntryDialog(this,
788                         wxT("Complex Box name"));
789         wxTextEntryDialog *paNameDialog = new wxTextEntryDialog(this,
790                         wxT("Package name"));
791
792         cbNameDialog->SetValue(wxString(cbName.c_str(), wxConvUTF8));
793         paNameDialog->SetValue(wxString(paName.c_str(), wxConvUTF8));
794
795         if (cbNameDialog->ShowModal() == wxID_OK) {
796                 wxString complexboxname = cbNameDialog->GetValue();
797                 cbName = (const char*) (complexboxname.mb_str());
798         }
799
800         if (paNameDialog->ShowModal() == wxID_OK) {
801                 wxString packagename = paNameDialog->GetValue();
802                 paName = (const char*) (packagename.mb_str());
803         }
804
805         _tabsMgr->SetCbName(cbName);
806         _tabsMgr->SetCbPackageName(paName);
807 }
808
809 //=========================================================================
810
811 void wxGUIEditorGraphicBBS::SaveActualComplexBox(std::string filename) {
812         ofstream file;
813         file.open(filename.c_str());
814
815         std::string content = "";
816
817         // writing file header
818         content += "# ----------------------------------\n";
819         content += "# - BBTKGEditor v ";
820         content += _currentBBGversion;//VERSION
821         content += " BBS BlackBox Script (Complex Box)\n";
822         content += "# - ";
823         content += filename;
824         content += "\n";
825         content += "# ----------------------------------\n";
826         content += "\n";
827         content += _tabsMgr->getActualComplexBoxBBS();
828         file << content;
829         file.close();
830 }
831
832 //=========================================================================
833
834 void wxGUIEditorGraphicBBS::OnSaveActualComplexBox(wxCommandEvent& event) 
835 {
836 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
837 #if wxMAJOR_VERSION <= 2
838         wxFileDialog * saveFileDialog = new wxFileDialog(this,
839                         wxT("Save Complex Box BBS"), wxEmptyString,
840                         _T("ComplexBoxName"), wxT("*.bbs"), wxSAVE
841                                         | wxOVERWRITE_PROMPT);
842 #else
843         wxFileDialog * saveFileDialog = new wxFileDialog(this,
844                         wxT("Save Complex Box BBS"), wxEmptyString,
845                         _T("ComplexBoxName"), wxT("*.bbs"), wxFD_SAVE
846                                         | wxFD_OVERWRITE_PROMPT);
847 #endif
848
849         if (saveFileDialog->ShowModal() == wxID_OK) {
850                 wxString fileName = saveFileDialog->GetPath();
851                 std::string filename = (const char*) (fileName.mb_str());
852                 filename=CheckExtension (filename, ".bbs");
853                 SaveActualComplexBox(filename);
854         }
855 }
856
857 //=========================================================================
858 void wxGUIEditorGraphicBBS::SaveActualDiagram(std::string filename) {
859         ofstream file;
860         file.open(filename.c_str());
861
862         std::string content = "";
863
864         // writing file header
865         content += "# ----------------------------------\n";
866         content += "# - BBTKGEditor v ";
867         content += _currentBBGversion; //VERSION
868         content += " BBG BlackBox Diagram file\n";
869         content += "# - ";
870
871         content += filename;
872
873         content += "\n";
874         content += "# ----------------------------------\n";
875         content += "\n";
876         content += "APP_START\n";
877         _tabsMgr->saveActualDiagram(content, filename); //DFCH
878         content += "APP_END\n";
879         file << content;
880         file.close();
881 }
882
883 //=========================================================================
884 void wxGUIEditorGraphicBBS::SaveTempActualDiagram(const std::string &action) 
885 {
886         std::string stundo;
887         std::string stredo;
888         std::string name = _tabsMgr->GetNameTabPanel();
889         if(name[name.length() - 1] != '*')
890                 name +="*";
891         _tabsMgr->SetNameTabPanel(wxString (name.c_str(), wxConvUTF8));
892         _tabsMgr->saveTempActualDiagram(action);
893         GetToolBar()->EnableTool(ID_UNDO,_tabsMgr->getUndoState(stundo));
894         GetToolBar()->SetToolShortHelp(ID_UNDO,crea::std2wx(stundo));
895         GetToolBar()->EnableTool(ID_REDO,_tabsMgr->getRedoState(stredo));
896         GetToolBar()->SetToolShortHelp(ID_REDO,crea::std2wx(stredo));
897 }
898
899 //=========================================================================
900
901 //The following method allows to save the current diagram asking the filename
902 //DFCH
903 void wxGUIEditorGraphicBBS::SaveCurrentDiagramAs() 
904 {
905
906 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
907 #if wxMAJOR_VERSION <= 2
908         wxFileDialog * saveFileDialog = new wxFileDialog(this,
909                         wxT("Save current diagram"), wxEmptyString, wxT("NewDiagram"),
910                         wxT("*.bbg"), wxSAVE | wxOVERWRITE_PROMPT);
911 #else
912         wxFileDialog * saveFileDialog = new wxFileDialog(this,
913                         wxT("Save current diagram"), wxEmptyString, wxT("NewDiagram"),
914                         wxT("*.bbg"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
915 #endif
916
917         if (saveFileDialog->ShowModal() == wxID_OK) {
918                 //_tabsMgr->SetNameTabPanel(saveFileDialog->GetFilename());
919                 wxString pathfileName = saveFileDialog->GetPath();
920                 std::string pathfilename = (const char*) (pathfileName.mb_str());
921                 pathfilename=CheckExtension (pathfilename, ".bbg");
922
923                 //modify the tab name accordingly
924                 wxString fileName = saveFileDialog->GetFilename();
925                 std::string filename = (const char*) (fileName.mb_str());
926                 filename=CheckExtension (filename, ".bbg");
927                 _tabsMgr->SetNameTabPanel( wxString (filename.c_str(), wxConvUTF8) );
928
929                 std::string pathfilenamebbs = pathfilename;
930                 pathfilenamebbs[pathfilenamebbs.length() - 1] = 's';
931                 if (_tabsMgr->isActualDiagramComplexBox() == false) {
932                         SaveActualDiagram(pathfilename);
933                         SaveActualBBS(pathfilenamebbs);
934                 } else {
935                         AskComplexBoxConfiguration();
936                         SaveActualDiagram(pathfilename);
937                         SaveActualComplexBox(pathfilenamebbs);
938                 } //if isActualDiagramComplexBox
939         } // if saveFileDialog
940 }
941 //=========================================================================
942 //DFCH
943 void wxGUIEditorGraphicBBS::OnSaveActualDiagram(wxCommandEvent& event) {
944         std::string pathfilename = _tabsMgr->GetCurrentTabPanelPath();
945         if (pathfilename.empty()) {
946                 SaveCurrentDiagramAs();
947         } else {
948                 std::string pathfilenamebbs = pathfilename;
949                 pathfilenamebbs[pathfilenamebbs.length() - 1] = 's';
950                 
951                 if (_tabsMgr->isActualDiagramComplexBox() == false) {
952                         std::string name = _tabsMgr->GetNameTabPanel();
953                         if(name[name.length() - 1] == '*')
954                         {
955                                 name =name.substr(0,name.length()-1);
956                         }
957                         _tabsMgr->SetNameTabPanel(wxString (name.c_str(), wxConvUTF8));
958                         SaveActualDiagram(pathfilename);
959                         SaveActualBBS(pathfilenamebbs);
960                 } else {
961                         AskComplexBoxConfiguration();
962                         SaveActualDiagram(pathfilename);
963                         SaveActualComplexBox(pathfilenamebbs);
964                 } //if isActualDiagramComplexBox
965         }
966 }
967 //=========================================================================
968 //DFCH
969 void wxGUIEditorGraphicBBS::OnSaveAsActualDiagram(wxCommandEvent& event) {
970         SaveCurrentDiagramAs();
971 }
972
973 //=========================================================================
974 void wxGUIEditorGraphicBBS::OnExportConsoleExecCommand(wxCommandEvent& event)
975 {
976 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
977 #if wxMAJOR_VERSION <= 2
978         wxFileDialog * saveFileDialog = new wxFileDialog(this,
979                         wxT("Export console command"), wxEmptyString, wxT("ConsoleApp.txt"),
980                         wxT("*.txt;*.bbs;*.bbg;*.sh;*.bat"), wxSAVE | wxOVERWRITE_PROMPT);
981 #else
982         wxFileDialog * saveFileDialog = new wxFileDialog(this,
983                         wxT("Export console command"), wxEmptyString, wxT("ConsoleApp.txt"),
984                         wxT("*.txt;*.bbs;*.bbg;*.sh;*.bat"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
985 #endif
986
987
988         if (saveFileDialog->ShowModal() == wxID_OK)
989         {
990                 wxString fileName = saveFileDialog->GetPath();
991                 std::string filename = (const char*) (fileName.mb_str());
992                 filename=CheckExtension (filename, ".txt");
993
994                 ofstream file;
995                 file.open(filename.c_str());
996
997                 std::vector<std::string> extInputs = _tabsMgr->getActualTabPanel()->getSceneManager()->GetExternalInputsNames();
998
999                 //TODO PUT IN A METHOD OF A FILES AND TEXT MANAGER CLASS !!!
1000                 //std::string inputsInCommentsWin="";
1001                 //std::string inputsInCommentsUnix="";
1002                 //std::string inputsInOneLineWin="";
1003                 std::string inputsInOneLineUnix="";
1004                 for (unsigned int i = 0; i < extInputs.size(); ++i)
1005                 {
1006                         /* No gusto la idea al jefe pero por si acaso ...
1007                         * RaC 2012 2nd HackFest
1008                         *
1009                         inputsInCommentsWin+="REM ";
1010                         inputsInCommentsWin+=extInputs[i];
1011                         inputsInCommentsWin+="=\"value\"\n";
1012                         inputsInCommentsUnix+="# ";
1013                         inputsInCommentsUnix+=extInputs[i];
1014                         inputsInCommentsUnix+="=\"value\"\n";
1015
1016                         char buffer [50];
1017                         sprintf (buffer, "%d", (i+1));
1018                         inputsInOneLineWin+=extInputs[i];
1019                         inputsInOneLineWin+="=\"%";
1020                         inputsInOneLineWin+=buffer;
1021                         inputsInOneLineWin+="\" ";
1022                         */
1023                         inputsInOneLineUnix+=extInputs[i];
1024                         inputsInOneLineUnix+="=\"<value>\" ";
1025
1026                 }
1027
1028
1029                 std::string content = "";
1030                 // writing file header
1031                 content += "# ----------------------------------\n";
1032                 content += "# - BBTKGEditor v ";
1033                 content += _currentBBGversion; //VERSION
1034                 content += " Console Commands to execute BBS application\n";
1035                 content += "# - ";
1036                 content += filename;
1037                 content += "\n";
1038                 content += "# ----------------------------------\n";
1039                 content += "\n";
1040                 content += "\n";
1041                 content += "# Command to execute bbi\n";
1042                 content += "bbi <bbs_path> ";
1043                 content += inputsInOneLineUnix;
1044
1045                 /* No gusto la idea al jefe pero por si acaso ...
1046                  * RaC 2012 2nd HackFest
1047                  content += "# For Windows (copy the following lines to a .bat file)\n";
1048                  content += "REM BBS application\n";
1049                  content += "REM Inputs:\n";
1050                  content += inputsInCommentsWin;
1051                  content += "REM To use previous inputs, put %$inputName% in the corresponding input of the execution bbi line\n";
1052                  content += "bbi applicationBBS.bbs ";
1053                  content += inputsInOneLineWin;
1054                  content += "\n";
1055                  content += "\n";
1056                  content += "# For Linux or Mac (copy the following lines to a .sh file)\n";
1057                  content += "#!/bin/bash\n";
1058                  content += "# BBS application\n";
1059                  content += "# Inputs:\n";
1060                  content += inputsInCommentsUnix;
1061                  content += "# To use previous inputs, put $inputName in the corresponding input of the execution bbi line\n";
1062                  content += "bbi applicationBBS.bbs ";
1063                  content += inputsInOneLineUnix;
1064                  content += "\n";
1065                 */
1066
1067                 file << content;
1068                 file.close();
1069         }
1070
1071
1072 }
1073
1074 //=========================================================================
1075
1076 void wxGUIEditorGraphicBBS::refreshGUIControls() 
1077 {
1078         std::string stundo;
1079         std::string stredo;
1080         //RaC2012 2ndHackFest Next line seems weird ... To keep in mind for other devels
1081         wxToolBar* toolbar = GetToolBar();
1082         if (_tabsMgr->isActualDiagramComplexBox()) 
1083         {
1084                 toolbar->ToggleTool(ID_BTNCOMPLEXBOX, true);
1085                 //toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, true); RaC2012 2nd HackFest
1086                 toolbar->EnableTool(ID_ADDCOMPLEXBOXOUTPUT, true);
1087
1088                 GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_COMPLEXBOX, true);
1089                 GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_BBS, false);
1090                 GetMenuBar()->GetMenu(0)->Enable(ID_EXPORT_CONSOLEAPP, false);
1091         } else {
1092                 toolbar->ToggleTool(ID_BTNCOMPLEXBOX, false);
1093                 //toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT, false); RaC2012 2nd HackFest
1094                 toolbar->EnableTool(ID_ADDCOMPLEXBOXOUTPUT, false);
1095
1096                 GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_COMPLEXBOX, false);
1097                 GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_BBS, true);
1098                 GetMenuBar()->GetMenu(0)->Enable(ID_EXPORT_CONSOLEAPP, true);
1099         }
1100
1101         //RaC2012 2ndHackFest
1102         GetToolBar()->EnableTool(ID_EDITPROPERTIES,true);
1103
1104         GetToolBar()->EnableTool(ID_UNDO,_tabsMgr->getUndoState(stundo));
1105         GetToolBar()->SetToolShortHelp(ID_UNDO,crea::std2wx(stundo));
1106         GetToolBar()->EnableTool(ID_REDO,_tabsMgr->getRedoState(stredo));
1107         GetToolBar()->SetToolShortHelp(ID_REDO,crea::std2wx(stredo));
1108
1109         if (_tabsMgr->getNumActualSelectedObjects() > 0) {
1110                 GetMenuBar()->GetMenu(1)->Enable(ID_COPY_TO_COMPLEXDIAGRAM, true);
1111         } else {
1112                 ///TODO Fix the possibility to say from the SceneManager to the GUI to refresh the options
1113                 GetMenuBar()->GetMenu(1)->Enable(ID_COPY_TO_COMPLEXDIAGRAM, true);
1114         }
1115
1116 }
1117
1118 //=========================================================================
1119
1120 void wxGUIEditorGraphicBBS::OnDeleteAllBoxesActualDiagram(wxCommandEvent& event) 
1121 {
1122         wxMessageDialog *dial = new wxMessageDialog(NULL,wxT("Are you sure to delete all boxes of the diagram?"),wxT("Delete all boxes"), wxYES_NO | wxNO_DEFAULT| wxICON_QUESTION);
1123         if (dial->ShowModal() == wxID_YES)
1124         {
1125                 _tabsMgr->deleteAllBoxesActualDiagram();
1126         }
1127 }
1128
1129 //=========================================================================
1130
1131 void wxGUIEditorGraphicBBS::OnCenterViewActualDiagram(wxCommandEvent& event) 
1132 {
1133         _tabsMgr->centerViewActualDiagram();
1134 }
1135
1136 //=========================================================================
1137 void wxGUIEditorGraphicBBS::OpenDiagram(std::string filePathName, std::string fileName) 
1138 {
1139         ifstream inputStream;   
1140         inputStream.open(filePathName.c_str());
1141         assert(inputStream.good()); // fails
1142         
1143         if(_tabsMgr->FindTab(filePathName)!=-1) //RaC2012 avoid opening same diagram twice
1144         {
1145                 inputStream.close();
1146                 printf("RaC: Diagram already opened\n");
1147                 return;
1148         }
1149         _tabsMgr->addNewTab( crea::std2wx(fileName) );
1150         _tabsMgr->loadDiagram(inputStream, filePathName);
1151
1152         _tabsMgr->saveTempActualDiagram("load diagram");
1153         GetToolBar()->EnableTool(ID_UNDO, false);
1154         GetToolBar()->EnableTool(ID_UNDO, false);
1155         inputStream.close();
1156         refreshGUIControls();
1157 }
1158         
1159 //=========================================================================
1160
1161 void wxGUIEditorGraphicBBS::OnOpenDiagram(wxCommandEvent& event) 
1162 {
1163
1164 //EED 2017-09-16 Migration wxWidgets 2.8 to 3.0
1165 #if wxMAJOR_VERSION <= 2
1166         wxFileDialog * openFileDialog = new wxFileDialog(this, wxT("Open diagram"), wxEmptyString, wxT(""), wxT("*.bbg"), wxOPEN | wxFILE_MUST_EXIST);
1167 #else
1168         wxFileDialog * openFileDialog = new wxFileDialog(this, wxT("Open diagram"), wxEmptyString, wxT(""), wxT("*.bbg"), wxFD_OPEN | wxFD_FILE_MUST_EXIST);
1169 #endif
1170
1171         if (openFileDialog->ShowModal() == wxID_OK) 
1172         {
1173                 wxString filePath = openFileDialog->GetPath();
1174                 wxString fileName = openFileDialog->GetFilename();
1175                 OpenDiagram( crea::wx2std(filePath) , crea::wx2std(fileName) );                                 
1176         }
1177 }
1178
1179 //=========================================================================
1180 void wxGUIEditorGraphicBBS::OnClickBtnBox(wxCommandEvent& event) 
1181 {
1182         std::cout<<"wxGUIEditorGraphicBBS::OnClickBtnBox"<<std::endl;
1183         BlackBoxDescriptor *bbDes = _pkgBrowser->GetActualSelected();
1184         if (bbDes != NULL) {
1185                 std::string typeName = bbDes->GetTypeName();
1186                 std::string packageName = bbDes->GetPackage()->GetName();
1187                 wxGEditorTabPanel *pnl = this->_tabsMgr->getActualTabPanel();
1188                 if (pnl != NULL) {
1189                         wxVtkSceneManager *scn = pnl->getSceneManager();
1190                         scn->createGBlackBox(50, 50, packageName, typeName);
1191                         scn->refresh();
1192                 }
1193                 SaveTempActualDiagram("New Box");
1194                 // if pnl
1195         }// if bbDes
1196 }
1197
1198 //=========================================================================
1199
1200 void wxGUIEditorGraphicBBS::OnClickBtnExecutableBox(wxCommandEvent& event) 
1201 {
1202         //DFCH
1203         wxGEditorTabPanel *pnl = this->_tabsMgr->getActualTabPanel();
1204
1205         if (pnl != NULL) {
1206                 wxVtkSceneManager *scn = pnl->getSceneManager();
1207                 if( scn->MakeBoxExecutable() )
1208                         std::cout<<"DFCH: wxGUIEditorGraphicBBS::OnClickBtnExecutableBox...successful"<<std::endl;
1209                 else
1210                         std::cout<<"DFCH: wxGUIEditorGraphicBBS::OnClickBtnExecutableBox...Error!!"<<std::endl;
1211         }
1212         //DFCH
1213
1214 }
1215
1216 //=========================================================================
1217 void wxGUIEditorGraphicBBS::OnClickBtnComplexBox(wxCommandEvent& event) 
1218 {
1219         std::cout<<"wxGUIEditorGraphicBBS::OnClickBtnComplexBox"<<std::endl;
1220         wxToolBar* toolbar = GetToolBar();
1221         bool temp = toolbar->GetToolState(ID_BTNCOMPLEXBOX);
1222         if (temp) {
1223                 enableComplexBox();
1224         } else {
1225                 disableComplexBox();
1226         }
1227 }
1228
1229 //=========================================================================
1230 //EED01
1231 void wxGUIEditorGraphicBBS::OnAddComplexBoxInput(wxCommandEvent& event) 
1232 {
1233         wxTextEntryDialog *nameDialog = new wxTextEntryDialog(this,
1234                         wxT("Name of input port"));
1235         if (nameDialog->ShowModal() == wxID_OK) 
1236         {
1237                 wxString fileName = nameDialog->GetValue();
1238                 if (!fileName.IsEmpty()) 
1239                 {
1240                         std::string portName = (const char*) (fileName.mb_str());
1241                         if ( !boxNameExists(portName) )
1242                         {
1243                            _tabsMgr->addActualDiagramComplexInputPort(portName);
1244                         } else {
1245                            wxMessageDialog *dial = new wxMessageDialog(NULL,
1246                                        wxT("Impossible to create Box. The name already exists. Please provide another name"),
1247                                        wxT("Change name: name already exists"), wxOK | wxICON_EXCLAMATION | wxSTAY_ON_TOP);
1248                            dial->ShowModal();
1249                         }
1250                 } // if !fileName
1251         } // if namaDialog
1252 }
1253
1254 //=========================================================================
1255 void wxGUIEditorGraphicBBS::OnAddComplexBoxOutput(wxCommandEvent& event) 
1256 {
1257         wxTextEntryDialog *nameDialog = new wxTextEntryDialog(this,
1258                         wxT("Name of output port"));
1259         if (nameDialog->ShowModal() == wxID_OK) 
1260         {
1261                 wxString fileName = nameDialog->GetValue();
1262                 if (!fileName.IsEmpty()) 
1263                 {
1264                         std::string portName = (const char*) (fileName.mb_str());
1265                         if ( !boxNameExists(portName) )
1266                         {
1267                         _tabsMgr->addActualDiagramComplexOutputPort(portName);
1268                         } else {
1269                            wxMessageDialog *dial = new wxMessageDialog(NULL,
1270                                        wxT("Impossible to create Box. The name already exists. Please provide another name"),
1271                                        wxT("Change name: name already exists"), wxOK | wxICON_EXCLAMATION | wxSTAY_ON_TOP);
1272                            dial->ShowModal();
1273                         }
1274
1275                 } // if !filename
1276         } // namaDialog
1277 }
1278
1279 //=========================================================================
1280 void wxGUIEditorGraphicBBS::OnCopySelectedToComplexDiagram(
1281                 wxCommandEvent& event) 
1282 {
1283         _tabsMgr->copySelectedBBoxesToComplexDiagram();
1284 }
1285
1286 //=========================================================================
1287 void wxGUIEditorGraphicBBS::OnHelpBBeditor(wxCommandEvent& event) 
1288 {
1289         printf("wxGUIEditorGraphicBBS::OnHelpBBeditor ....not implemented..\n");
1290 }
1291
1292 //=========================================================================
1293 void wxGUIEditorGraphicBBS::OnCreatePackage(wxCommandEvent& event) 
1294 {
1295         bbtkSystemTools::CreatePackage();
1296 }
1297
1298 //=========================================================================
1299 void wxGUIEditorGraphicBBS::OnCreateBlackBox(wxCommandEvent& event) 
1300 {
1301         bbtkSystemTools::CreateBlackBox();
1302 }
1303         
1304 //=========================================================================
1305 void wxGUIEditorGraphicBBS::OnPlugPackage(wxCommandEvent& event) 
1306 {
1307         //DFGO2012 Plug Package functionnalities
1308         long style = wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST;
1309         wxDirDialog* FD =
1310           new wxDirDialog( 0,
1311                            _T("Select package directory"),
1312                            _T(""),
1313                            style);
1314         long userResponse;
1315         do
1316         {
1317                 userResponse = FD->ShowModal();
1318                 if(userResponse==wxID_OK)
1319                 {
1320                         std::string path = wx2std (FD->GetPath()) ;
1321                         #ifdef WIN32
1322                         std::string fname = path + "\\bbtkPackage";
1323                         #else
1324                         std::string fname = path + "/bbtkPackage";
1325                         #endif
1326                         
1327                         std::cout << "Path chosen = \"" << FD->GetPath() << "\"" << std::endl;
1328                         if ( Utilities::FileExists( fname ) )
1329                         {
1330                                 std::ifstream f;
1331                                 f.open(fname.c_str());
1332                                 std::string pname;
1333                                 f >> pname;
1334                                 while(pname[0] == '#')
1335                                 {
1336                                         getline(f, pname, '\n');
1337                                         f >> pname;
1338                                 }
1339                                 f.close();
1340
1341                                 bbtk::ConfigurationFile::GetInstance().AddPackagePathsAndWrite( path );
1342
1343                                 DoRegeneratePackageDoc(pname);
1344                                 DoRegenerateBoxesLists();
1345
1346                                 _pkgBrowser->RebuildList();
1347
1348                                 wxMessageBox(_T("Package successfully plugged. Please restart bbEditor to see the new package in the package browser."),_T("Plug package"),wxOK | wxICON_INFORMATION);
1349                                 userResponse = wxID_CANCEL;
1350                         }
1351                         else
1352                         {
1353                                 std::string err = "The directory \"" + path + "\" does not contain a 'bbtkPackage' file.";
1354                                 #ifndef WIN32
1355                                         #ifndef MACOSX
1356                                                 err += "\nNote: If you are on Linux please select the folder and click \"Open\", don't enter in it.";
1357                                         #endif
1358                                 #endif
1359
1360                                 wxMessageBox(crea::std2wx(err), _T("Plug package"),wxOK | wxICON_ERROR);
1361                                 // THE FOLLOWING LINE GIVES ERRORS BECAUSE IT IS NECESSARY TO USE std2wx
1362                                 //wxMessageBox( _T( err) , _T("Plug package"),wxOK | wxICON_ERROR);
1363                         }
1364                 }
1365         }while(userResponse != wxID_CANCEL);
1366
1367 }
1368         
1369 //=========================================================================
1370 void wxGUIEditorGraphicBBS::OnEditConfig(wxCommandEvent& event) 
1371 {
1372         std::string commandStr;
1373             std::string configFile = ConfigurationFile::GetInstance().Get_config_xml_full_path();
1374         #ifdef WIN32
1375                 commandStr = "notepad.exe ";
1376         #else
1377                 commandStr = "gedit ";
1378         #endif
1379                 commandStr = commandStr + configFile;
1380                 std::cout << "system: " << commandStr << std::endl;
1381                 system ( commandStr.c_str() );
1382 }
1383         
1384 //=========================================================================
1385 void wxGUIEditorGraphicBBS::OnShowHTMLDoc(wxCommandEvent& event) 
1386 {
1387         // JGRR & CM WH
1388         if (_helpHtmlBrowser != NULL){
1389              _frameAUIMgr->DetachPane(_helpHtmlBrowser);
1390             _helpHtmlBrowser->Destroy();   
1391         }
1392         initHelpHTMLBrowser();
1393         _frameAUIMgr->AddPane(_helpHtmlBrowser, wxAuiPaneInfo().Right().MinSize(200, 200));
1394         _frameAUIMgr->Update();
1395         refreshGUIControls();
1396         
1397         // EO JGRR    & CM WH       
1398 }
1399         
1400 //=========================================================================
1401 void wxGUIEditorGraphicBBS::OnCreateIndex(wxCommandEvent& event) 
1402 {
1403         printf("EED wxGUIEditorGraphicBBS::OnCreateIndex ... not implemented ..\n");
1404 }
1405
1406         
1407 //=========================================================================
1408 void wxGUIEditorGraphicBBS::OnEditComplexBoxScript(wxCommandEvent& event)
1409 {
1410         BlackBoxDescriptor *bbDes = _pkgBrowser->GetActualSelected();
1411         if (bbDes != NULL) 
1412         {
1413                 std::string packageName = bbDes->GetPackage()->GetName();
1414                 std::string typeName = bbDes->GetTypeName();
1415                 if (!TryToOpenScriptComplexBox(packageName ,typeName))
1416                 {
1417                         wxMessageDialog windowMessage1(NULL,_T("This is not a ComplexBox script."), _T("Alert !"), wxOK);
1418                         windowMessage1.ShowModal();
1419                 }
1420         }// if bbDes
1421 }
1422
1423 //=========================================================================
1424 void wxGUIEditorGraphicBBS::OnExit(wxCommandEvent& event) 
1425 {
1426         Close(true);
1427 }
1428
1429 Factory::Pointer wxGUIEditorGraphicBBS::GetBBTKFactory()
1430 {
1431         if (_pkgBrowser==NULL) 
1432         {
1433                 printf ("EED ERROR! wxGUIEditorGraphicBBS::GetBBTKFactory _pkgBrowser = NULL\n");
1434         }
1435         return _pkgBrowser->GetFactory();
1436 }
1437
1438 //=========================================================================
1439 void wxGUIEditorGraphicBBS::enableComplexBox() 
1440 {
1441         _tabsMgr->setActualDiagramComplexBox(true);
1442         refreshGUIControls();
1443 }
1444
1445 //=========================================================================
1446
1447 void wxGUIEditorGraphicBBS::disableComplexBox() 
1448 {
1449         _tabsMgr->setActualDiagramComplexBox(false);
1450         refreshGUIControls();
1451 }
1452
1453 //=========================================================================
1454 void wxGUIEditorGraphicBBS::setCurrentDiagramDescription(std::string description)
1455 {
1456         _tabsMgr->SetDescription(description);
1457 }
1458
1459 //=========================================================================
1460 void wxGUIEditorGraphicBBS::setCurrentDiagramAuthor(std::string author)
1461 {
1462         _tabsMgr->SetAuthor(author);
1463 }
1464
1465 //=========================================================================
1466 void wxGUIEditorGraphicBBS::setCurrentDiagramCategory(std::string category)
1467 {
1468         _tabsMgr->SetCategory(category);
1469 }
1470
1471 //=========================================================================
1472 void wxGUIEditorGraphicBBS::setCurrentDiagramMessageKind(std::string kind){
1473         _tabsMgr->SetMessageKind(kind); 
1474 }
1475
1476 //=========================================================================
1477 void wxGUIEditorGraphicBBS::setCurrentDiagramMessageLevel(std::string level){
1478         _tabsMgr->SetMessageLevel(level);       
1479 }
1480
1481 //=========================================================================
1482 std::string wxGUIEditorGraphicBBS::getCurrentDiagramDescription()
1483 {
1484         return _tabsMgr->GetDescription();
1485 }
1486
1487 //=========================================================================
1488 std::string wxGUIEditorGraphicBBS::getCurrentDiagramAuthor()
1489 {
1490         return _tabsMgr->GetAuthor();
1491 }
1492
1493 //=========================================================================
1494 std::string wxGUIEditorGraphicBBS::getCurrentDiagramCategory()
1495 {
1496         return _tabsMgr->GetCategory();
1497 }
1498
1499 //=========================================================================
1500 std::string wxGUIEditorGraphicBBS::getCurrentDiagramMessageKind(){
1501         return _tabsMgr->GetMessageKind();
1502 }
1503
1504 //=========================================================================
1505 std::string wxGUIEditorGraphicBBS::getCurrentDiagramMessageLevel(){
1506         return _tabsMgr->GetMessageLevel();
1507 }
1508
1509 //=========================================================================
1510 bool wxGUIEditorGraphicBBS::isCurrentDiagramComplexBox()
1511 {
1512         return _tabsMgr->isActualDiagramComplexBox();
1513 }
1514
1515
1516 //=========================================================================
1517 void wxGUIEditorGraphicBBS::OpenScript(std::string filePathNameBBS ,std::string boxType)
1518 {       
1519         std::string fileName                                                    = boxType+".bbg";
1520         std::string filePathNameBBG                                             = filePathNameBBS;
1521         filePathNameBBG[ filePathNameBBG.length()-1 ]   = 'g';
1522         
1523         wxMessageDialog windowMessage1(NULL,_T("The system is going to open a bbg or bbs for you. Be careful if you save this file."), _T("Alert !"), wxOK);
1524         windowMessage1.ShowModal();
1525         
1526         if ( Utilities::FileExists( filePathNameBBG ) )
1527         {
1528                 OpenDiagram( filePathNameBBG , fileName );     
1529         } else {
1530                 if ( Utilities::FileExists( filePathNameBBS ) )
1531                 {
1532                         OpenBBS( filePathNameBBS , fileName );     
1533                 } else {
1534                         wxMessageDialog windowMessage1(NULL,_T("..ERROR.. loading script bbg/bbs."), _T("Alert !"), wxOK);
1535                         windowMessage1.ShowModal();
1536                 } // FileExists BBS
1537         } // FieExists BBG
1538 } //OpenScript
1539         
1540         
1541         
1542 //=========================================================================
1543 bool wxGUIEditorGraphicBBS::TryToOpenScriptApplication(std::string packageName ,std::string boxType)
1544 {       
1545         return TryToOpenScript(packageName ,boxType, true, false);
1546 }               
1547
1548 //=========================================================================
1549 bool wxGUIEditorGraphicBBS::TryToOpenScriptComplexBox(std::string packageName ,std::string boxType)
1550 {       
1551         return TryToOpenScript(packageName ,boxType, false, true);
1552 }               
1553         
1554         
1555 //=========================================================================
1556 bool wxGUIEditorGraphicBBS::TryToOpenScript(std::string packageName ,std::string boxType,bool scriptApplication, bool scriptComplexBox)
1557 {       
1558         Package::Pointer k;
1559         std::map< std::string, BlackBoxDescriptor::Pointer> mapDesc;
1560         BlackBoxDescriptor::Pointer descriptor;
1561         k                       = GetBBTKFactory()->GetPackage(packageName);
1562         mapDesc         = k->GetDescriptorMap();
1563         descriptor      = mapDesc[boxType];
1564
1565         bool result=false;
1566     descriptor->IsTypeOfScript_Application();   
1567         if (descriptor!=NULL)
1568         {
1569                 if ( 
1570                         ((descriptor->IsTypeOfScript_Application()==true) && (scriptApplication==true))
1571                         ||
1572                         ((descriptor->IsTypeOfScript_ComplexBox()==true) && (scriptComplexBox==true))           
1573                         )
1574                 {
1575                         result=true;
1576                         OpenScript(descriptor->GetScriptFileName(),boxType);
1577                 } // if descriptor Type
1578         } else {
1579                 printf("EED ERROR wxGUIEditorGraphicBBS::TryToOpenScript >> The descriptor of this box not exists (packageName:%s  boxType:%s) this is not normal\n",packageName.c_str(), boxType.c_str() );
1580         }  // if descriptor NULL
1581         
1582         return result;
1583 }       
1584         
1585 } // EO namespace bbtk
1586
1587 // EOF
1588