]> Creatis software - bbtkGEditor.git/blob - lib/EditorGraphicBBS/bbsWxGUIEditorGraphic/bbtkwxGUIEditorGraphicBBS.cxx
no message
[bbtkGEditor.git] / lib / EditorGraphicBBS / bbsWxGUIEditorGraphic / bbtkwxGUIEditorGraphicBBS.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::WxInterfaceEditorGraphicBBS .
34 */
35
36 #include "bbtkwxGUIEditorGraphicBBS.h"
37 #include "creaWx.h"
38 #include "creaSystem.h"
39
40 #include <InterpreterBBS.h>
41
42
43
44 namespace bbtk
45 {
46
47
48         //=========================================================================
49         wxGUIEditorGraphicBBS::wxGUIEditorGraphicBBS(wxFrame *parent)
50                 : wxFrame(parent, -1, _T("bbtkGEditor"),wxDefaultPosition, wxSize(1200,800))
51         {
52
53                 _frameAUIMgr = new wxAuiManager(this);
54
55
56                 /*std::string datadir( crea::System::GetExecutablePath() );
57                 std::string datadir (".");
58                 cout<<"RaC //------------------"<<endl;
59                 cout<<"RaC //TODO wxGUIEditorGraphicBBS constructor.Initialize datadir with  crea::System::GetExecutablePath() ."<<endl;
60                 cout<<"RaC //------------------"<<endl;
61
62             #ifdef LINUX // assume this is OSX
63                    datadir=datadir+"/../share/creaContours";
64             #endif // MACOSX
65
66                 #ifdef MACOSX // assume this is OSX
67                         datadir=datadir+"/../../../../share/creaContours";
68                 #endif // MACOSX
69
70                 _dataDir = datadir;*/
71
72                 initMenu();
73                 initToolbar();
74                 initTabPanelsManager();
75                 initPackageBrowser();
76                 initHelpHTMLBrowser();
77
78                 CreateStatusBar();
79                 _frameAUIMgr->Update();
80                 _actualPkgBrowserBoxName="";
81                 _actualPkgBrowserPkgName="";
82                 refreshGUIControls();
83         }
84
85
86         //=========================================================================
87         wxGUIEditorGraphicBBS::~wxGUIEditorGraphicBBS()
88         {
89                 printf ("EED %p ~wxGUIEditorGraphicBBS()\n" , this );
90
91 //EED02JUIN2010         delete _tabsMgr;
92
93             _frameAUIMgr->UnInit();
94
95
96         }
97
98         //=========================================================================
99         void wxGUIEditorGraphicBBS::initToolbar()
100         {
101                 wxBitmap bmp_new(new_xpm);
102                 wxBitmap bmp_open(open_xpm);
103                 wxBitmap bmp_save(save_xpm);
104                 wxBitmap bmp_run(run_xpm);
105                 wxBitmap bmp_delete(delete_xpm);
106                 wxBitmap bmp_centerview(centerview_xpm);
107                 wxBitmap bmp_box(box_xpm);
108                 wxBitmap bmp_complexbox(complexbox_xpm);
109                 wxBitmap bmp_complexinputport(complexinputport_xpm);
110                 wxBitmap bmp_complexoutputport(complexoutputport_xpm);
111
112                 wxToolBar  *toolbar = new wxToolBar(this, wxID_ANY);
113
114                 //Adds a tool btn to the toolbar
115                 toolbar->AddTool(ID_NEW,_T("New"),bmp_new, wxNullBitmap, wxITEM_NORMAL,_T("New tab"), _T("Create a new panel tab"));
116                 toolbar->AddTool(ID_OPEN,_T("Open diagram"),bmp_open, wxNullBitmap, wxITEM_NORMAL,_T("Open a diagram"), _T("Open a diagram"));
117                 toolbar->AddTool(ID_SAVE_AS_DIAGRAM,_T("Save diagram"),bmp_save, wxNullBitmap, wxITEM_NORMAL,_T("Saves actual diagram"), _T("Saves actual diagram"));
118                 toolbar->AddTool(ID_RUN,_T("Run"),bmp_run, wxNullBitmap, wxITEM_NORMAL,_T("Execute actual diagram"), _T("Execute actual diagram"));
119                 toolbar->AddTool(ID_DELETEALL,_T("Delete all"),bmp_delete, wxNullBitmap, wxITEM_NORMAL,_T("Delete all boxes"), _T("Delete all boxes"));
120                 toolbar->AddTool(ID_CENTERVIEW,_T("Center view"),bmp_centerview, wxNullBitmap, wxITEM_NORMAL,_T("Center view"), _T("Center view"));
121                 toolbar->AddSeparator();
122                 toolbar->AddTool(ID_BTNBOX,_T("New Box"),bmp_box, wxNullBitmap, wxITEM_NORMAL,_T("New Box"), _T("Nex Box"));
123                 toolbar->AddSeparator();
124                 toolbar->AddTool(ID_BTNCOMPLEXBOX,_T("Complex box"),complexbox_xpm, wxNullBitmap, wxITEM_NORMAL,_T("Complex box"), _T("Complex box"));
125                 toolbar->SetToggle(ID_BTNCOMPLEXBOX,true);
126                 toolbar->AddTool(ID_ADDCOMPLEXBOXINPUT,_T("Add input to Complex box"),bmp_complexinputport, wxNullBitmap, wxITEM_NORMAL,_T("Add input to Complex box"), _T("Add input to Complex box"));
127                 toolbar->AddTool(ID_ADDCOMPLEXBOXOUTPUT,_T("Add output to Complex box"),bmp_complexoutputport, wxNullBitmap, wxITEM_NORMAL,_T("Add output Complex box"), _T("Add output Complex box"));
128                 toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT,false);
129                 toolbar->EnableTool(ID_ADDCOMPLEXBOXOUTPUT,false);
130
131                 toolbar->SetMargins( 2, 2 );
132                 toolbar->Realize();
133                 SetToolBar(toolbar);
134
135                 // connect command event handlers
136                 Connect(ID_NEW,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCreateNewTab));
137                 Connect(ID_OPEN,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnOpenDiagram));
138                 Connect(ID_SAVE_AS_DIAGRAM,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualDiagram));
139                 Connect(ID_RUN,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnExecuteActualDiagram));
140                 Connect(ID_DELETEALL,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnDeleteAllBoxesActualDiagram));
141                 Connect(ID_CENTERVIEW,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCenterViewActualDiagram));
142                 Connect(ID_BTNBOX,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnClickBtnBox));
143                 Connect(ID_BTNCOMPLEXBOX,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnClickBtnComplexBox));
144                 Connect(ID_ADDCOMPLEXBOXINPUT,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnAddComplexBoxInput));
145                 Connect(ID_ADDCOMPLEXBOXOUTPUT,wxEVT_COMMAND_TOOL_CLICKED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnAddComplexBoxOutput));
146
147         }
148         //=========================================================================
149         void wxGUIEditorGraphicBBS::initHelpHTMLBrowser()
150         {
151                 //TO FIX THE PATH OF BBTK BIN  IN ORDER TO USE REGENERATE EXECUTABLES
152                 //RegenerateAll();
153                 _helpHtmlBrowser = new WxGUIHtmlBrowser(this,wxSize(200,0));
154                 _frameAUIMgr->AddPane(_helpHtmlBrowser,wxAuiPaneInfo().Right().MinSize(200,200));
155         }
156
157         //=========================================================================
158         void wxGUIEditorGraphicBBS::initMenu()
159         {
160                 // Create File menu and its items
161                 wxMenu *fileMenu = new wxMenu();
162                 fileMenu->Append(ID_NEW, _T("New diagram"), _T("New"));
163                 fileMenu->Append(ID_SAVE_AS_DIAGRAM, _T("Save diagram"), _T("Save diagram"));
164                 fileMenu->Append(ID_OPEN_BBS, _T("Open BBS"), _T("Open BBS"));
165                 fileMenu->Append(ID_SAVE_AS_BBS, _T("Save BBS"), _T("Save BBS"));
166                 fileMenu->Append(ID_SAVE_AS_COMPLEXBOX, _T("Save complex box"), _T("Save complex box"));
167                 fileMenu->Append(wxID_EXIT, _T("E&xit"), _T("Exit"));
168
169                 Connect(ID_NEW,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCreateNewTab));
170                 Connect(ID_SAVE_AS_DIAGRAM,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualDiagram));
171                 Connect(ID_OPEN_BBS,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnOpenBBS));
172                 Connect(ID_SAVE_AS_BBS,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualBBS));
173                 Connect(ID_SAVE_AS_COMPLEXBOX,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnSaveActualComplexBox));
174                 Connect(wxID_EXIT,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnExit));
175
176                 // Create Help menu and its items
177                 wxMenu *editMenu = new wxMenu;
178                 editMenu->Append(ID_COPY_TO_COMPLEXDIAGRAM, _T("Copy selected to complex box"), _T("Creates a new complex box diagram with selected boxes"));
179
180                 Connect(ID_COPY_TO_COMPLEXDIAGRAM,wxEVT_COMMAND_MENU_SELECTED,wxCommandEventHandler(wxGUIEditorGraphicBBS::OnCopySelectedToComplexDiagram));
181
182                 // Create Help menu and its items
183                 wxMenu *helpMenu = new wxMenu;
184                 helpMenu->Append(wxID_ABOUT, _T("&About..."), _T("About"));
185
186                 // Append the created menu to the menu bar
187                 wxMenuBar *menuBar = new wxMenuBar();
188                 menuBar->Append(fileMenu, _T("&File"));
189                 menuBar->Append(editMenu, _T("&Edit"));
190                 menuBar->Append(helpMenu, _T("&Help"));
191
192                 // Attach this menu bar to the frame
193                 SetMenuBar(menuBar);
194         }
195
196         //=========================================================================
197         void wxGUIEditorGraphicBBS::initTabPanelsManager()
198         {
199                 _notebook = new wxAuiNotebook(this,wxID_NOTEBOOK,wxDefaultPosition,wxDefaultSize,wxAUI_NB_TOP|wxAUI_NB_TAB_MOVE|wxAUI_NB_CLOSE_ON_ACTIVE_TAB|wxAUI_NB_TAB_FIXED_WIDTH|wxAUI_NB_WINDOWLIST_BUTTON);
200                 _tabsMgr = new wxTabPanelsManager(this);
201                 _frameAUIMgr->AddPane(_notebook,wxAuiPaneInfo().CenterPane());
202
203         }
204
205         //=========================================================================
206         void wxGUIEditorGraphicBBS::initPackageBrowser()
207         {
208                 _pkgBrowser = new WxGUIPackageBrowser2(this);
209                 _pkgBrowser->IncludeAll();
210                 _frameAUIMgr->AddPane(_pkgBrowser,wxAuiPaneInfo().Left().MinSize(200,200).CloseButton(false));
211         }
212
213         //================================================================
214
215         void wxGUIEditorGraphicBBS::DoRegeneratePackageDoc( const std::string& pack )
216         {
217                 std::string mess("Regenerating doc for package '");
218                 if (pack!="-a"){
219                         mess += pack + "'";
220                 }
221                 else
222                 {
223                         mess = "Regenerating doc for all packages";
224                 }
225
226                 mess += " ... please wait";
227
228                 SetStatusText( std2wx(mess) );
229
230                 //BBTK_BUSY_CURSOR;
231
232                 std::string command;
233                 #if defined(WIN32)
234                         command = "\"";
235                 #endif
236                         command += ConfigurationFile::GetInstance().Get_bin_path();
237                         command += ConfigurationFile::GetInstance().Get_file_separator();
238                         command += "bbRegeneratePackageDoc";
239                 #if defined(WIN32)
240                         command += "\"";
241                 #endif
242
243                 command += " " + pack + " -q";
244             bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
245
246                 if ( ! system ( command.c_str() ) )
247                 {
248                         SetStatusText( _T("Done !"));
249                         /*
250                         wxMessageBox(_T("Done !"),_T("Regenerate package '")
251                                          +std2wx(pack)+_T("' doc"),
252                                          wxOK | wxICON_INFORMATION);
253                         */
254                 }
255                 else
256                 {
257                         SetStatusText( _T("Done !"));
258                         wxString err(_T("An error occured while running '"));
259                         err +=  bbtk::std2wx(command) + _T("'");
260                         wxMessageBox(err,_T("Regenerate package doc"),wxOK | wxICON_ERROR);
261             }
262         }
263
264         //================================================================
265         void wxGUIEditorGraphicBBS::DoRegenerateBoxesLists()
266         {
267                 SetStatusText( _T("Regenerating boxes lists ... please wait") );
268                 //BBTK_BUSY_CURSOR ;
269
270                 std::string command;
271                 #if defined(WIN32)
272                         command = "\"";
273                 #endif
274                         command += ConfigurationFile::GetInstance().Get_bin_path();
275                         command += ConfigurationFile::GetInstance().Get_file_separator();
276                         command += "bbRegenerateBoxesLists";
277
278                 #if defined(WIN32)
279                         command += "\"";
280                 #endif
281                         command += " -q";
282
283                 bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
284
285                 if ( ! system ( command.c_str() ) )
286                 {
287                         SetStatusText( _T("Done !"));
288                         /*
289                         wxMessageBox(_T("Done !"),_T("Regenerate boxes lists"),
290                                          wxOK | wxICON_INFORMATION);
291                         */
292                 }
293                 else
294                 {
295                         SetStatusText( _T("Done !"));
296                         wxString err(_T("An error occured while running '"));
297                         err +=  bbtk::std2wx(command) + _T("'");
298                         wxMessageBox(err,_T("Regenerate boxes lists"),wxOK | wxICON_ERROR);
299                 }
300         }
301
302   //================================================================
303         void wxGUIEditorGraphicBBS::RegenerateAll()
304         {
305                 DoRegeneratePackageDoc("-a");
306                 DoRegenerateBoxesLists();
307         }
308
309         //================================================================
310
311         wxAuiNotebook* wxGUIEditorGraphicBBS::getAuiNotebook()
312         {
313                 return _notebook;
314         }
315
316         //================================================================
317
318         void wxGUIEditorGraphicBBS::displayBlackBoxInfo(std::string packageName, std::string boxName)
319         {
320                 if(_actualPkgBrowserPkgName != packageName || _actualPkgBrowserBoxName != boxName )
321                 {
322                         _actualPkgBrowserPkgName = packageName;
323                         _actualPkgBrowserBoxName = boxName;
324
325                         BlackBoxDescriptor::Pointer descriptor = GObjectsMVCFactory::getInstance()->getBlackBoxDescriptor(packageName, boxName);
326                         _pkgBrowser->WxGUIBlackBoxListUserOnSelected(descriptor.get());
327                 }
328         }
329
330         //=========================================================================
331
332         void wxGUIEditorGraphicBBS::editBlackBox(GBlackBoxModel *bbmodel)
333         {
334                 wxBlackBoxEditionDialog* dialog = new wxBlackBoxEditionDialog(this,bbmodel);
335                 dialog->Show();
336         }
337
338         //=========================================================================
339
340         void wxGUIEditorGraphicBBS::updateStatusBar(std::string textStatus)
341         {
342                 SetStatusText(crea::std2wx(textStatus));
343         }
344
345         //=========================================================================
346
347         void wxGUIEditorGraphicBBS::executeScript(std::string script)
348         {
349                 std::string separator = ConfigurationFile::GetInstance().Get_file_separator ();
350                 std::string dir = ConfigurationFile::GetInstance().Get_default_temp_dir();
351                 std::string filename = dir + separator + "tmp_bbtk.bbs";
352
353                 ofstream tempFile;
354                 tempFile.open(filename.c_str());
355                 tempFile << script;
356                 tempFile.close();
357
358                 std::string command = "\""+ crea::System::GetExecutablePath();
359
360
361 #ifdef MACOSX
362                 command += separator + "../../../bbi.app/Contents/MacOS";
363 #endif
364
365                 #ifdef WIN32
366                         command += "\"";
367                 #endif
368
369                 /*
370
371                 //command += ConfigurationFile::GetInstance().Get_bin_path();
372 //EED           command +="C:/temp/bbtkBIN/RelWithDebInfo//";
373 //EED           command +="C:/Program Files/CreaTools/bbtk-0.9.5/bin";
374
375
376                 #ifdef MACOSX
377                         command += separator + "usr/local/bin/bbi.app/Contents/MacOS/bbi\" ";
378                 #else
379                     command +=".";
380                         command += separator + "bbi\" ";
381                 #endif
382  */
383                 command += separator + "bbi\" ";
384                 command += "\""+filename + "\"";
385                 #ifdef WIN32
386                         command += "\"";
387                 #endif
388
389                 command += " & ";
390
391                 printf ("RaC wxGUIEditorGraphicBBS::executeScript %s \n" , command.c_str() );
392                 system( command.c_str() );
393         }
394
395         //=========================================================================
396         // EVENT HANDLERS
397         //=========================================================================
398
399         void wxGUIEditorGraphicBBS::OnCreateNewTab(wxCommandEvent& event)
400         {
401                 _tabsMgr->addNewTab();
402                 refreshGUIControls();
403         }
404
405         //=========================================================================
406
407         void wxGUIEditorGraphicBBS::OnExecuteActualDiagram(wxCommandEvent& event)
408         {
409                 std::string script1 = _tabsMgr->getActualDiagramBBS(true);
410                 cout<<endl<<"RaC wxGUIEditorGraphicBBS::executeActualDiagram SCRIPT"<<endl<<endl;
411                 cout<<script1<<endl;
412
413                 std::string script2 = _tabsMgr->getActualDiagramBBS(false);
414                 executeScript(script2);
415         }
416
417
418         //=========================================================================
419         // HANDLERS
420         //=========================================================================
421         void wxGUIEditorGraphicBBS::OnOpenBBS(wxCommandEvent& event)
422         {
423                 wxFileDialog * openFileDialog = new wxFileDialog(this,wxT("Open BBS"),wxEmptyString,wxT("NewBBS"),wxT("*.bbs"),wxOPEN);
424                 if (openFileDialog->ShowModal() == wxID_OK)
425                 {
426                         wxString fileName = openFileDialog->GetPath(  );
427
428
429                         _tabsMgr->addNewTab();
430
431                         bbtk::InterpreterBBS::Pointer I = bbtk::InterpreterBBS::New( this->_tabsMgr->getActualTabPanel()->getSceneManager() , _pkgBrowser->GetFactory());
432
433                         // We tell the interpreter to throw exceptions on error
434                         I->SetThrow(true);
435                         // Interpret the file supposed to define a box called 'Processing'
436                         I->InterpretFile( (const char*) (fileName.mb_str()) );
437                 }
438                 refreshGUIControls();
439         }
440
441         void wxGUIEditorGraphicBBS::OnSaveActualBBS(wxCommandEvent& event)
442         {
443                 wxFileDialog * saveFileDialog = new wxFileDialog(this,wxT("Save  actual BBS"),wxEmptyString,wxT("NewBBS"),wxT("*.bbs"),wxSAVE|wxOVERWRITE_PROMPT);
444                 if (saveFileDialog->ShowModal() == wxID_OK)
445                 {
446                         wxString fileName = saveFileDialog->GetPath(  );
447
448                         ofstream file;
449
450 //EED                   file.open(fileName.c_str());
451                         file.open( (const char*) (fileName.mb_str()) );
452
453                         std::string content="";
454
455                         // writing file header
456                         content += "# ----------------------------------\n";
457                         content += "# - BBTKGEditor v 1.1 BBS BlackBox Script\n";
458                         content += "# ----------------------------------\n";
459                         content += "\n";
460                         content += _tabsMgr->getActualDiagramBBS();
461                         file << content;
462                         file.close();
463                 }
464
465         }
466
467         //=========================================================================
468
469         void wxGUIEditorGraphicBBS::OnSaveActualComplexBox(wxCommandEvent& event)
470         {
471                 wxTextEntryDialog *nameDialog = new wxTextEntryDialog(this,wxT("Name of complex box"));
472                 std::string cbName="";
473                 if (nameDialog->ShowModal() == wxID_OK)
474                 {
475                         wxString fileName = nameDialog->GetValue();
476                         cbName=(const char*) (fileName.mb_str());
477                 }
478
479                 if(!cbName.empty())
480                 {
481                         wxFileDialog * saveFileDialog = new wxFileDialog(this ,wxT("Save Complex Box BBS") ,wxEmptyString, wxString( cbName.c_str(), wxConvUTF8),wxT("*.bbs"), wxSAVE | wxOVERWRITE_PROMPT);
482                         if (saveFileDialog->ShowModal() == wxID_OK)
483                         {
484                                 wxString fileName = saveFileDialog->GetPath();
485
486                                 ofstream file;
487                                 file.open( (const char*) (fileName.mb_str()) );
488
489                                 std::string content="";
490
491                                 // writing file header
492                                 content += "# ----------------------------------\n";
493                                 content += "# - BBTKGEditor v 1.1 BBS BlackBox Script (Complex Box)\n";
494                                 content += "# ----------------------------------\n";
495                                 content += "\n";
496                                 content += _tabsMgr->getActualComplexBoxBBS(cbName);
497                                 file << content;
498                                 file.close();
499                         }
500                 }
501
502         }
503
504         //=========================================================================
505
506         void wxGUIEditorGraphicBBS::OnSaveActualDiagram(wxCommandEvent& event)
507         {
508                 wxFileDialog * saveFileDialog = new wxFileDialog(this,wxT("Save  actual diagram"),wxEmptyString,wxT("NewDiagram"),wxT("*.bbg"),wxSAVE|wxOVERWRITE_PROMPT);
509                 if (saveFileDialog->ShowModal() == wxID_OK)
510                 {
511                         wxString fileName = saveFileDialog->GetPath();
512
513                         ofstream file;
514                         file.open( (const char*) (fileName.mb_str()) );
515
516                         std::string content="";
517
518                         // writing file header
519                         content += "# ----------------------------------\n";
520                         content += "# - BBTKGEditor v 1.1 BBG BlackBox Diagram file\n";
521                         content += "# - ";
522
523                         content += (const char*) (fileName.mb_str());
524
525                         content += "\n";
526                         content += "# ----------------------------------\n";
527                         content += "\n";
528                         content += "APP_START\n";
529                         _tabsMgr->saveActualDiagram(content);
530                         content += "APP_END\n";
531                         file << content;
532                         file.close();
533                 }
534
535         }
536
537         //=========================================================================
538
539         void wxGUIEditorGraphicBBS::refreshGUIControls()
540         {
541                 wxToolBar* toolbar = GetToolBar();
542                 if(_tabsMgr->isActualDiagramComplexBox())
543                 {
544                         toolbar->ToggleTool(ID_BTNCOMPLEXBOX,true);
545                         toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT,true);
546                         toolbar->EnableTool(ID_ADDCOMPLEXBOXOUTPUT,true);
547
548                         GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_COMPLEXBOX,true);
549                         GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_BBS,false);
550                 }
551                 else
552                 {
553                         toolbar->ToggleTool(ID_BTNCOMPLEXBOX,false);
554                         toolbar->EnableTool(ID_ADDCOMPLEXBOXINPUT,false);
555                         toolbar->EnableTool(ID_ADDCOMPLEXBOXOUTPUT,false);
556
557                         GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_COMPLEXBOX,false);
558                         GetMenuBar()->GetMenu(0)->Enable(ID_SAVE_AS_BBS,true);
559                 }
560
561                 if(_tabsMgr->getNumActualSelectedObjects()>0)
562                 {
563                         GetMenuBar()->GetMenu(1)->Enable(ID_COPY_TO_COMPLEXDIAGRAM,true);
564                 }
565                 else
566                 {
567                         ///TODO Fix the possibility to say from the SceneManager to the GUI to refresh the options
568                         GetMenuBar()->GetMenu(1)->Enable(ID_COPY_TO_COMPLEXDIAGRAM,true);
569                 }
570
571         }
572
573         //=========================================================================
574
575         void wxGUIEditorGraphicBBS::OnDeleteAllBoxesActualDiagram(wxCommandEvent& event)
576         {
577                 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);
578                 if(dial->ShowModal() == wxID_YES)
579                 {
580                         _tabsMgr->deleteAllBoxesActualDiagram();
581                 }
582         }
583
584         //=========================================================================
585
586         void wxGUIEditorGraphicBBS::OnCenterViewActualDiagram(wxCommandEvent& event)
587         {
588                 _tabsMgr->centerViewActualDiagram();
589         }
590
591         //=========================================================================
592
593
594         void wxGUIEditorGraphicBBS::OnOpenDiagram(wxCommandEvent& event)
595         {
596                 wxFileDialog * openFileDialog = new wxFileDialog(this,wxT("Open diagram"),wxEmptyString,wxT(""),wxT("*.bbg"),wxOPEN|wxFILE_MUST_EXIST);
597                 if (openFileDialog->ShowModal() == wxID_OK)
598                 {
599                         wxString fileName = openFileDialog->GetPath();
600
601                         ifstream inputStream;
602
603 //EED                   inputStream.open(fileName.c_str());
604                         inputStream.open( (const char*) (fileName.mb_str()) );
605
606
607
608                         _tabsMgr->addNewTab();
609                         _tabsMgr->loadDiagram(inputStream);
610
611                         inputStream.close();
612                 }
613                 refreshGUIControls();
614         }
615
616         //=========================================================================
617
618
619         void wxGUIEditorGraphicBBS::OnClickBtnBox(wxCommandEvent& event)
620         {
621
622                 BlackBoxDescriptor      *bbDes          = _pkgBrowser->GetActualSelected();
623         if (bbDes!=NULL)
624         {
625             std::string                 typeName        = bbDes->GetTypeName();
626             std::string                 packageName = bbDes->GetPackage()->GetName();
627
628
629             wxGEditorTabPanel *pnl = this->_tabsMgr->getActualTabPanel();
630
631             if (pnl!=NULL)
632             {
633                 wxVtkSceneManager *scn = pnl->getSceneManager();
634                 scn->createGBlackBox(50,50,packageName, typeName);
635                 scn->refresh();
636             } // if pnl
637         }// if bbDes
638         }
639
640         //=========================================================================
641
642
643         void wxGUIEditorGraphicBBS::OnClickBtnComplexBox(wxCommandEvent& event)
644         {
645                 wxToolBar* toolbar = GetToolBar();
646                 bool temp = toolbar->GetToolState(ID_BTNCOMPLEXBOX);
647                 if(temp)
648                 {
649                         _tabsMgr->setActualDiagramComplexBox(true);
650                 }
651                 else
652                 {
653                         _tabsMgr->setActualDiagramComplexBox(false);
654                 }
655                 refreshGUIControls();
656         }
657
658         //=========================================================================
659
660         void wxGUIEditorGraphicBBS::OnAddComplexBoxInput(wxCommandEvent& event)
661         {
662                 wxTextEntryDialog *nameDialog = new wxTextEntryDialog(this,wxT("Name of input port"));
663                 if (nameDialog->ShowModal() == wxID_OK)
664                 {
665                         wxString fileName = nameDialog->GetValue();
666                         if(!fileName.IsEmpty())
667                         {
668                                 std::string portName=(const char*) (fileName.mb_str());
669                                 _tabsMgr->addActualDiagramComplexInputPort(portName);
670                         }
671                 }
672         }
673
674         //=========================================================================
675
676         void wxGUIEditorGraphicBBS::OnAddComplexBoxOutput(wxCommandEvent& event)
677         {
678                 wxTextEntryDialog *nameDialog = new wxTextEntryDialog(this,wxT("Name of output port"));
679                 if (nameDialog->ShowModal() == wxID_OK)
680                 {
681                         wxString fileName = nameDialog->GetValue();
682                         if(!fileName.IsEmpty())
683                         {
684                                 std::string portName=(const char*) (fileName.mb_str());
685                                 _tabsMgr->addActualDiagramComplexOutputPort(portName);
686                         }
687                 }
688         }
689
690         //=========================================================================
691
692         void wxGUIEditorGraphicBBS::OnCopySelectedToComplexDiagram(wxCommandEvent& event)
693         {
694                 _tabsMgr->copySelectedBBoxesToComplexDiagram();
695         }
696
697         //=========================================================================
698
699         void wxGUIEditorGraphicBBS::OnExit(wxCommandEvent& event)
700         {
701                 Close(true);
702         }
703
704         //=========================================================================
705
706 }  // EO namespace bbtk
707
708 // EOF
709