]> Creatis software - bbtk.git/blob - kernel/src/bbtkWxGUIScriptingInterface.cxx
4cb10db79bff0daccd28c7af3ba31cf30e133286
[bbtk.git] / kernel / src / bbtkWxGUIScriptingInterface.cxx
1 /*=========================================================================                                                                               
2   Program:   bbtk
3   Module:    $RCSfile: bbtkWxGUIScriptingInterface.cxx,v $
4   Language:  C++
5   Date:      $Date: 2009/04/15 15:45:49 $
6   Version:   $Revision: 1.37 $
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 /**
33  * \brief Short description in one line
34  * 
35  * Long description which 
36  * can span multiple lines
37  */
38 /**
39  * \file 
40  * \brief 
41  */
42 /**
43  * \class bbtk::
44  * \brief 
45  */
46
47
48 #ifdef _USE_WXWIDGETS_
49
50 #include <iostream>     
51 #include "bbtkWxGUIScriptingInterface.h"
52 #include "bbtkWxBlackBox.h"
53 #include "bbtkConfigurationFile.h"
54 #include "bbtkWxStreamRedirector.h"
55 #include "bbtkUtilities.h"
56
57 #include <wx/tipwin.h>
58 #include <wx/splash.h>
59
60 //#include "icons/cc_run.xpm"
61
62 namespace bbtk
63 {
64
65     enum
66     {
67       ID_Menu_Quit = 1,
68       ID_Menu_About,
69       ID_Menu_EditConfig,
70       ID_Menu_CreatePackage,
71       ID_Menu_CreateBlackBox,
72       ID_Menu_ShowImageGraph,
73       ID_Menu_RegeneratePackageDoc,
74       ID_Menu_RegenerateBoxesLists,
75       ID_Menu_RegenerateAll,
76       ID_Menu_PlugPackage,
77       ID_Menu_Windows_Files,
78       ID_Menu_Windows_Help,
79       ID_Menu_Windows_Messages,
80       ID_Menu_Windows_Command,
81       ID_Menu_Windows_Save,
82       ID_Menu_Windows_PackageBrowser
83       //      ID_Button_Run
84     };
85     
86   
87   //================================================================
88   WxGUIScriptingInterface::WxGUIScriptingInterface( wxWindow *parent )
89     : wxFrame((wxFrame *)parent, -1, _T("bbStudio"), 
90               wxDefaultPosition, wxSize(1200,800) )
91   {     
92     m_mgr.SetManagedWindow(this);
93     
94     mInterpreter = bbtk::Interpreter::New();
95     mInterpreter->SetUser(this);
96         mInterpreter->SetCommandLine(true);
97     mInterpreter->SetThrow(true);
98     //    mInterpreter->AddBreakObserver
99     //boost::bind( &WxGUIScriptingInterface::InterpreterUserOnBreak, this ));
100     //==============
101     // Menu
102     wxInitAllImageHandlers();
103     
104     wxMenu *menuFile = new wxMenu;
105     menuFile->Append( ID_Menu_EditConfig, _T("Open bbtk &Config file") );
106     menuFile->Append( ID_Menu_Quit, _T("&Quit") );
107     
108     wxMenu *menuAbout = new wxMenu;
109     menuAbout->Append( ID_Menu_About, _T("&About...") );
110
111     wxMenu *menuTools = new wxMenu;
112     menuTools->Append( ID_Menu_CreatePackage, _T("Create &package") );
113     menuTools->Append( ID_Menu_CreateBlackBox, _T("Create &black box") );
114     menuTools->Append( ID_Menu_PlugPackage, _T("&Plug package") );
115     menuTools->AppendSeparator();
116     menuTools->Append( ID_Menu_RegeneratePackageDoc,_T("Regenerate package &doc") );
117     menuTools->Append( ID_Menu_RegenerateBoxesLists,_T("Regenerate boxes &lists") );
118     menuTools->Append( ID_Menu_RegenerateAll,_T("Regenerate &all") );
119     menuTools->AppendSeparator();
120     menuTools->Append( ID_Menu_ShowImageGraph, _T("&Show last graph") );
121
122     wxMenu *menuWindows = new wxMenu;
123     menuWindows->AppendCheckItem(ID_Menu_Windows_Files,
124                                  _T("Show 'files' panel") )->Check();
125     menuWindows->AppendCheckItem(ID_Menu_Windows_Help,
126                                  _T("Show 'help' panel") )->Check();
127     menuWindows->AppendCheckItem(ID_Menu_Windows_Messages,
128                                  _T("Show 'messages' panel") )->Check();
129     menuWindows->AppendCheckItem(ID_Menu_Windows_Command,
130                                  _T("Show 'command' panel") )->Check();
131     menuWindows->AppendSeparator();
132     menuWindows->Append( ID_Menu_Windows_PackageBrowser, _T("Start Package &Browser") );
133     
134     //    menuWindows->AppendSeparator();
135     //    menuWindows->Append ( ID_Menu_Windows_Save, _T("Save interface configuration"));
136
137     wxMenu *menuOptions = new wxMenu;
138     mwxMenuItemReset = menuOptions->AppendCheckItem(-1,
139                                                     _T("Reset before running") );
140     mwxMenuItemReset->Check();
141
142     wxMenuBar *menuBar = new wxMenuBar;
143     menuBar->Append( menuFile, _T("&File") );
144     menuBar->Append( menuTools, _T("&Tools") );
145     menuBar->Append( menuOptions, _T("&Options") );
146     menuBar->Append( menuWindows, _T("&Windows") );
147     menuBar->Append( menuAbout, _T("About") );
148     
149     SetMenuBar( menuBar );
150     
151     //=== 
152     // Status bar
153     CreateStatusBar();
154     SetStatusText( _T("Welcome to bbStudio !") );
155     
156     //===
157     // Panes (Files, Messages, Help, Command)
158     mWxGUITextEditor = new WxGUITextEditor(this,this);
159     mWxGUITextEditor->SetFileNameFilter("*.bbs");
160         
161     mWxGUIHtmlBrowser = new WxGUIHtmlBrowser(this,wxSize(200,0),this);
162
163     mWxGUIOutputMessages = new WxGUIOutputMessages(this);
164
165     mWxGUICommand = new WxGUICommand(this,this);
166    
167     mWxGUICommand->SetFocus();
168
169  
170 #if NOTEBOOK
171
172     mwxNotebook = new wxAuiNotebook(this,  
173                                     -1,
174                                     wxPoint(0, 0),
175                                     wxSize(500,500),
176                                     wxAUI_NB_TAB_SPLIT 
177                                     | wxAUI_NB_TAB_MOVE
178                                     | wxAUI_NB_TAB_EXTERNAL_MOVE
179                                     //| wxAUI_NB_WINDOWLIST_BUTTON
180                                     //|wxAUI_NB_SCROLL_BUTTONS
181                                     // | wxAUI_NB_CLOSE_BUTTON 
182                                     //| wxAUI_NB_CLOSE_ON_ACTIVE_TAB
183                                     //| wxAUI_NB_CLOSE_ON_ALL_TABS
184                                     | wxNO_BORDER);
185   
186
187     mwxNotebook->AddPage(mWxGUITextEditor,_T("Files"),true);
188     mwxNotebook->AddPage(mWxGUIHtmlBrowser,_T("Help"),true);
189
190     mwxNotebook->AddPage(mWxGUIOutputMessages,_T("Messages"),true);
191
192     mwxNotebook->AddPage(mWxGUICommand,_T("Command"),true);
193
194
195     m_mgr.AddPane(mwxNotebook,
196                   wxAuiPaneInfo().Name(wxT("nb"))
197                   .CaptionVisible(false)
198                   .MinimizeButton(false)
199                   .MaximizeButton(false)
200                   .Center()
201                   //              .MinSize(wxSize(100,100))
202                   );   
203 #else 
204
205     //
206     m_mgr.AddPane(mWxGUITextEditor,
207                   wxAuiPaneInfo().Name(wxT("editor_content"))
208                   .Caption(wxT("Files"))
209                   .MinimizeButton(true)
210                   .MaximizeButton(true)
211                   .Center()
212                   .MinSize(wxSize(100,100))
213                   );   
214   
215     m_mgr.AddPane(mWxGUIHtmlBrowser,
216                   wxAuiPaneInfo().Name(wxT("browser_content"))
217                   .Caption(wxT("Help"))
218                   .MinimizeButton(true)
219                   .MaximizeButton(true)
220                   .Right()
221                   .Layer(2)
222                   .MinSize(wxSize(400,100))
223                   );
224
225     m_mgr.AddPane(mWxGUIOutputMessages,
226                   wxAuiPaneInfo().Name(wxT("messages_content"))
227                   .Caption(wxT("Messages"))
228                   .MinimizeButton(true)
229                   .MaximizeButton(true)
230                   .Bottom()
231                   .MinSize(wxSize(100,100))
232                   );
233           
234     m_mgr.AddPane(mWxGUICommand,
235                   wxAuiPaneInfo().Name(wxT("command_content"))
236                   .Caption(wxT("Command"))
237                   .MinimizeButton(true)
238                   .MaximizeButton(true)
239                   .Bottom()
240                   .Layer(1)
241                   .MinSize(wxSize(100,100))
242                   );     
243 #endif
244
245     // parent window of all bbtk windows will be a child of this
246     Wx::SetTopWindowParent(this);
247     // Add the method OnWxSignal as a Wx::Signal observer 
248     //bbtkAddWxSignalObserver(WxGUIPackageBrowser2Window::OnWxSignal);
249
250     //.PaneBorder(false)); 
251     // Load the interface appearance saved on last closing
252     LoadPerspective();
253
254     // Done in LoadPerspective
255     //    m_mgr.Update();
256         
257     SetAutoLayout(true);
258     Layout();
259     //    mwxNotebook->SetSelection(1);
260     mWxGUIHtmlBrowser->GoHome();
261 //    Refresh();
262     m_mgr.Update();
263     //   LoadPerspective();
264
265     mBreaked = false;   
266
267     wxBitmap bitmap;   
268     wxSplashScreen* splash;
269     long style = wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_TIMEOUT;
270     if (ConfigurationFile::GetInstance().DotBbtkIsNew())
271       style = wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_NO_TIMEOUT;
272     std::string splash_file = ConfigurationFile::GetInstance().Get_data_path();
273     splash_file += "/kernel/icons/bbStudioSplashScreen.png";
274
275     if (bitmap.LoadFile(std2wx(splash_file),wxBITMAP_TYPE_PNG))
276       splash = 
277         new wxSplashScreen(bitmap,
278                            style,
279                            1000, 0, -1, wxDefaultPosition, wxDefaultSize,
280                            wxSIMPLE_BORDER|wxSTAY_ON_TOP);
281         
282     
283     if (ConfigurationFile::GetInstance().DotBbtkIsNew())
284       {
285
286         DoRegeneratePackageDoc("-a");   
287         DoRegenerateBoxesLists();
288
289         /*
290         wxTipWindow* tip = new wxTipWindow(this,
291                                            _T("\n                  Welcome to bbStudio !\n\n   To run a demo or example:\n     1. click on the 'Demos' or 'Examples' link\n     2. select a demo or example\n     3. click on the '[source]' link : the source file is loaded in bbStudio\n     4. click on the 'Run' button (the arrow at the bottom right of the source file)   \n"),1000);
292         tip->CenterOnParent();
293         tip->Show();
294         */
295         if (splash) splash->Destroy();
296       }
297
298   }
299   //================================================================
300
301  //================================================================
302   WxGUIScriptingInterface::~WxGUIScriptingInterface()
303   {
304     SavePerspective();
305     m_mgr.UnInit();
306   }
307   //================================================================
308
309   //================================================================
310   void WxGUIScriptingInterface::Open(const std::string& filename)
311   {
312     mWxGUITextEditor->Open(filename);
313   }
314   //================================================================
315   /*
316   catch (BreakException e)                                              \
317     {                                                                   \
318       std::cout << "* BREAK"<<std::endl;                                \
319       if (e.IsInScriptFile())                                           \
320         std::cout << "* FILE   : '"<<e.GetScriptFile()<<"'"<<std::endl; \
321       std::cout << "* LINE   : "<<e.GetScriptLine()<<std::endl;         \
322     }                                                                   \
323   catch (QuitException e)                                               \
324     {                                                                   \
325       std::cout << "* QUIT"<<std::endl;                                 \
326       if (e.IsInScriptFile())                                           \
327         std::cout << "* FILE   : '"<<e.GetScriptFile()<<"'"<<std::endl; \
328       std::cout << "* LINE   : "<<e.GetScriptLine()<<std::endl;         \
329     }                                                                   \
330 */
331   
332 #define CATCH_MACRO                                                     \
333   catch (InterpreterException e)                                        \
334     {                                                                   \
335       if (e.GetErrorMessage()=="quit")                                  \
336         {                                                               \
337           std::cerr << "* QUIT ENCOUNTERED"<<std::endl;                 \
338           if (e.IsInScriptFile())                                       \
339             std::cerr << "* FILE   : '"<<e.GetScriptFile()<<"'"<<std::endl; \
340           std::cerr << "* LINE   : "<<e.GetScriptLine()<<std::endl;     \
341         }                                                               \
342       else if (e.GetErrorMessage()=="break")                            \
343         {                                                               \
344           mBreaked = true;                                              \
345           std::cerr << "* BREAK"<<std::endl;                            \
346           if (e.IsInScriptFile())                                       \
347             std::cerr << "* FILE   : '"<<e.GetScriptFile()<<"'"<<std::endl; \
348           std::cerr << "* LINE   : "<<e.GetScriptLine()<<std::endl;     \
349         }                                                               \
350       else                                                              \
351         {                                                               \
352           std::cerr << "* ERROR : "<<e.GetErrorMessage()<<std::endl;    \
353           if (e.IsInScriptFile())                                       \
354             std::cerr << "* FILE   : '"<<e.GetScriptFile()<<"'"<<std::endl; \
355           std::cerr << "* LINE   : "<<e.GetScriptLine()<<std::endl;     \
356           int lev = bbtk::MessageManager::GetMessageLevel("Error");     \
357           if (lev > 0) {                                                \
358             std::cerr << "* Exception thrown : "<<std::endl;            \
359             std::cerr << "*  OBJECT : " <<e.GetObject()<<std::endl;     \
360             std::cerr << "*  FILE   : " <<e.GetSourceFile()<<std::endl; \
361           }                                                             \
362         }                                                               \
363     }
364   
365   //================================================================
366   void WxGUIScriptingInterface::WxGUICommandEnter(const std::string& command)
367   {
368     std::string s("> ");
369     s += command + "\n";
370     mWxGUIOutputMessages->Print(s,wxRED);
371     
372     try
373       {
374         mInterpreter->InterpretLine( command );
375       }
376     CATCH_MACRO;
377   }
378   //================================================================
379   
380   //================================================================
381   /// Runs the interpretation of a file
382   bool WxGUIScriptingInterface::InterpretFile( const std::string& filename) 
383   { 
384     try
385       {
386         mInterpreter->InterpretFile(filename);
387       }
388     CATCH_MACRO;
389     return true;
390   }
391   //================================================================
392  
393         
394   //================================================================
395         void WxGUIScriptingInterface::WxGUITextEditorGraphSimple()
396         {
397                 WxGUICommandEnter("exec freeze_no_error");
398                 WxGUITextEditorRun();
399                 WxGUICommandEnter("exec unfreeze");
400                 WxGUICommandEnter("graph");
401         }
402   //================================================================
403         
404         //================================================================
405         void WxGUIScriptingInterface::WxGUITextEditorGraphDetail()
406         {
407                 WxGUICommandEnter("exec freeze_no_error");
408                 WxGUITextEditorRun();
409                 WxGUICommandEnter("exec unfreeze");
410                 WxGUICommandEnter("graph . 1");
411         }
412         //================================================================
413
414         
415         //================================================================
416         void WxGUIScriptingInterface::WxGUITextEditorRunBBI()
417         {
418           std::string separator = ConfigurationFile::GetInstance().Get_file_separator ();
419           std::string dir = ConfigurationFile::GetInstance().Get_default_temp_dir();
420           std::string filename = dir + separator + "tmp_bbtk.bbs";
421           mWxGUITextEditor->GetCurrentPage()->SaveFile(filename);
422         
423                 std::string command = "\"";
424           command += ConfigurationFile::GetInstance().Get_bin_path();
425 #ifdef MACOSX
426           command += separator + "bbi.app/Contents/MacOS/bbi\" ";
427 #else 
428           command += separator + "bbi\" ";
429 #endif
430           command += "\""+filename + "\"";
431           command += " & ";
432           
433           printf ("EED WxGUIScriptingInterface::WxGUITextEditorRunBBI %s \n" , command.c_str() );
434           system( command.c_str() );
435         }
436         //================================================================
437         
438         
439   //================================================================
440   void WxGUIScriptingInterface::WxGUITextEditorRun()
441   {
442     //    wxString temp = mWxGUIHtmlBrowser->GetCurrentPage();
443     std::stringstream* buf = new std::stringstream;
444     (*buf) << mWxGUITextEditor->GetCurrentPage()->GetText();
445     try 
446       {
447         if (!mBreaked)
448           {
449             if (mwxMenuItemReset->IsChecked()) WxGUICommandEnter("reset");
450             mInterpreter->InterpretBuffer(buf);
451           }
452         else 
453           {
454             mBreaked = false;
455             mInterpreter->InterpretCurrentStreams();
456           }
457         //      std::cout << "EO RUN"<<std::endl;
458       }
459     CATCH_MACRO;
460     //    std::cout << "EO RUN 3"<<std::endl;
461   }
462   //================================================================  
463
464   //================================================================
465   void WxGUIScriptingInterface::OnMenuQuit(wxCommandEvent& WXUNUSED(event))
466   {
467     if (!mWxGUITextEditor->CloseAllPages()) return;
468     Close(true);
469   }
470   //================================================================
471
472
473   //================================================================
474   void WxGUIScriptingInterface::OnMenuAbout(wxCommandEvent& WXUNUSED(event))
475   {
476     m_mgr.Update();
477         Refresh();
478     wxMessageBox(_T("  bbStudio\nThe Black Box Toolkit Development Studio\n(c) CREATIS-LRMN 2008"),
479                  _T("About ..."), wxOK | wxICON_INFORMATION,
480                  this);
481   }
482   //================================================================
483
484
485   //================================================================
486   void WxGUIScriptingInterface::OnMenuEditConfig(wxCommandEvent& WXUNUSED(event))
487   {
488     std::string configFile = 
489       ConfigurationFile::GetInstance().Get_config_xml_full_path();
490     Open(configFile);
491   }
492   //================================================================
493
494   //================================================================
495   void WxGUIScriptingInterface::OnMenuWindowsPackageBrowser(wxCommandEvent& WXUNUSED(event))
496   {
497     wxBusyCursor wait;
498     WxGUIPackageBrowser2Window *helpbrowser = new
499       WxGUIPackageBrowser2Window(this,_T("Package Browser"), wxSize(600,600) );
500     helpbrowser->Show();
501     
502     /*
503     wxBusyCursor wait;
504     WxGUIPackageBrowser2 *browser = new WxGUIPackageBrowser2(this);
505     browser->IncludeAll();
506     */
507 #if NOTEBOOK
508     //     mwxNotebook->AddPage(browser,_T("Package Browser"),true);
509 #else
510      /*
511      m_mgr.AddPane(browser,
512                    wxAuiPaneInfo().Name(wxT("package_brower"))
513                    .Caption(wxT("Package browser"))
514                    .MinimizeButton(true)
515                    .MaximizeButton(true)
516                    .Bottom()
517                    .Position(1)
518                    .MinSize(wxSize(100,100))
519                    );     
520      */
521 #endif
522   }
523   //================================================================
524
525
526
527   //================================================================
528   void WxGUIScriptingInterface::OnMenuCreatePackage(wxCommandEvent& WXUNUSED(event))
529   {
530 /*
531     std::string command("toolsbbtk/appli/GUICreatePackage");
532     bbtkMessage("Debug",1,"Executing : '"<<command<<"'"<<std::endl);
533   
534         Interpreter::Pointer I = Interpreter::New();    
535     I->InterpretFile(command);
536 */
537     std::string command("reset");
538         mWxGUICommand->SendCommand(command);
539     command = "include toolsbbtk/appli/GUICreatePackage";
540     bbtkMessage("Debug",1,"Executing : '"<<command<<"'"<<std::endl);
541         mWxGUICommand->SendCommand(command);
542
543   }
544   //================================================================
545
546
547   //================================================================
548   void WxGUIScriptingInterface::OnMenuCreateBlackBox(wxCommandEvent& WXUNUSED(event))
549   {
550           /*
551     std::string command("toolsbbtk/appli/GUICreateBlackBox");
552     bbtkMessage("Debug",1,"Executing : '"<<command<<"'"<<std::endl);
553     
554     Interpreter::Pointer I = Interpreter::New();    
555     I->InterpretFile(command);
556 */
557     std::string command("reset");
558         mWxGUICommand->SendCommand(command);
559     command = "include toolsbbtk/appli/GUICreateBlackBox";
560     bbtkMessage("Debug",1,"Executing : '"<<command<<"'"<<std::endl);
561         mWxGUICommand->SendCommand(command);
562   }
563   //================================================================
564   
565   //================================================================
566   void WxGUIScriptingInterface::OnMenuShowImageGraph(wxCommandEvent& WXUNUSED(event))
567   {
568
569       std::string doc_path = bbtk::ConfigurationFile::GetInstance().Get_doc_path();
570       doc_path += bbtk::ConfigurationFile::GetInstance().Get_file_separator();
571       doc_path += "bbdoc";
572       doc_path += bbtk::ConfigurationFile::GetInstance().Get_file_separator();
573           
574           std::string pack_name("User");
575           std::string pack_path = doc_path + pack_name;
576           
577           
578 #if defined(WIN32)
579     std::string strappli="start ";
580 #else
581   #if defined(MACOSX)
582       std::string strappli="open ";
583   #else
584       std::string strappli="gnome-open ";         
585   #endif
586 #endif
587           
588           std::string strcommand = strappli +pack_path+"/workspace_workspacePrototype.png";
589     //  std::cout << "system: " << strcommand << std::endl;
590     system ( strcommand.c_str() );
591
592   }
593   //================================================================
594
595   void WxGUIScriptingInterface::DoRegeneratePackageDoc( const std::string& pack )
596   {
597     std::string mess("Regenerating doc for package '");
598     if (pack!="-a") 
599       mess += pack + "'";
600     else 
601       mess = "Regenerating doc for all packages";
602     mess += " ... please wait";
603
604     SetStatusText( std2wx(mess) );
605
606     BBTK_BUSY_CURSOR;
607
608     std::string command;
609 #if defined(WIN32)
610     command = "\"";
611 #endif
612     command += ConfigurationFile::GetInstance().Get_bin_path();
613     command += ConfigurationFile::GetInstance().Get_file_separator();
614     command += "bbRegeneratePackageDoc";
615 #if defined(WIN32)
616         command += "\"";
617 #endif
618         command += " " + pack + " -q";
619     bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
620
621
622     if ( ! system ( command.c_str() ) )
623       {
624         SetStatusText( _T("Done !"));
625         /*
626         wxMessageBox(_T("Done !"),_T("Regenerate package '")
627                      +std2wx(pack)+_T("' doc"),
628                      wxOK | wxICON_INFORMATION);
629         */
630       }
631     else 
632       {
633         SetStatusText( _T("Done !"));
634         wxString err(_T("An error occured while running '"));
635         err +=  bbtk::std2wx(command) + _T("'");
636         wxMessageBox(err,_T("Regenerate package doc"),wxOK | wxICON_ERROR);      
637       }
638
639
640
641   }
642
643
644   //================================================================
645   void WxGUIScriptingInterface::OnMenuRegeneratePackageDoc(wxCommandEvent& WXUNUSED(event))
646   {
647     wxString name = wxGetTextFromUser(_T("Enter package name (-a for all)"),
648                                       _T("Regenerate package doc"),
649                                       _T(""));
650     if (name.IsEmpty()) return;
651     std::string pack = bbtk::wx2std(name);
652     
653         DoRegeneratePackageDoc(pack);
654   }
655   //================================================================
656
657
658   //================================================================
659   void WxGUIScriptingInterface::DoRegenerateBoxesLists()
660   {
661     SetStatusText( _T("Regenerating boxes lists ... please wait") );
662     BBTK_BUSY_CURSOR ;
663
664     std::string command;
665 #if defined(WIN32)
666         command = "\"";
667 #endif
668     command += ConfigurationFile::GetInstance().Get_bin_path();
669     command += ConfigurationFile::GetInstance().Get_file_separator();
670     command += "bbRegenerateBoxesLists";
671 #if defined(WIN32)
672         command += "\"";
673 #endif
674         command += " -q";
675         bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
676
677
678
679     if ( ! system ( command.c_str() ) )
680       {
681         SetStatusText( _T("Done !"));
682         /*
683         wxMessageBox(_T("Done !"),_T("Regenerate boxes lists"),
684                      wxOK | wxICON_INFORMATION);
685         */
686       }
687     else 
688       {
689         SetStatusText( _T("Done !"));
690         wxString err(_T("An error occured while running '"));
691         err +=  bbtk::std2wx(command) + _T("'");
692         wxMessageBox(err,_T("Regenerate boxes lists"),wxOK | wxICON_ERROR);      
693       }
694   }
695   //================================================================
696
697
698   //================================================================
699   void WxGUIScriptingInterface::OnMenuRegenerateBoxesLists(wxCommandEvent& WXUNUSED(event))
700   {
701         DoRegenerateBoxesLists();
702   }
703   //================================================================
704
705   //================================================================
706   void WxGUIScriptingInterface::OnMenuRegenerateAll(wxCommandEvent& WXUNUSED(event))
707   {
708         
709     DoRegeneratePackageDoc("-a");       
710         DoRegenerateBoxesLists();
711   }
712   //================================================================
713
714  
715   //================================================================
716   void WxGUIScriptingInterface::OnMenuPlugPackage(wxCommandEvent& WXUNUSED(event))
717   {
718     long style = wxDD_DEFAULT_STYLE | wxDD_DIR_MUST_EXIST;
719     wxDirDialog* FD = 
720       new wxDirDialog( 0, 
721                        _T("Select package directory"),
722                        _T(""),
723                        style);
724     
725     if (FD->ShowModal()==wxID_OK)
726       {
727         std::string path = wx2std (FD->GetPath()) ;
728         std::string fname = path + "/bbtkPackage"; 
729         if ( ! Utilities::FileExists( fname ) )
730           {
731             wxString err(_T("The directory does not contain a 'bbtkPackage' file"));
732             wxMessageBox(err,_T("Plug package"),wxOK | wxICON_ERROR);      
733             return;
734           }
735         
736         std::ifstream f;
737         f.open(fname.c_str());
738         std::string pname;
739         f >> pname;
740         f.close();
741         
742         
743         bbtk::ConfigurationFile::GetInstance().AddPackagePathsAndWrite( path );
744         
745         DoRegeneratePackageDoc(pname);
746         DoRegenerateBoxesLists();
747
748           }     
749   }
750   //================================================================
751
752   //================================================================
753   void WxGUIScriptingInterface::InterpreterUserViewHtmlPage(const std::string& page)
754   {
755     std::string s(page);
756     //  std::cout << "WxGUIScriptingInterface::ShowHtmlPage('"<<page<<"')"<<std::endl;
757     if (mWxGUIHtmlBrowser->GoTo(s)) 
758       {
759 //EED   mwxNotebook->ChangeSelection(1);
760 //      mwxNotebook->SetSelection(1);
761       }
762     else 
763       {
764          // std::cout << "ERROR html"<<std::endl;
765       }
766   } 
767   //================================================================  
768   
769   /*
770   //================================================================
771   void WxGUIScriptingInterface::InterpreterUserOnBreak()
772   {
773     //    std::cout << "Break" << std::endl;
774     
775   }
776   //================================================================
777   */
778
779   //================================================================  
780   bool WxGUIScriptingInterface::WxGUIHtmlBrowserUserOnLinkClicked(const std::string& target)
781   {
782     size_t s = target.length();
783     if ((s>3) && (target[s-1]=='s')
784         && (target[s-2]=='b')
785         && (target[s-3]=='b')
786         && (target[s-4]=='.'))
787       {
788         mWxGUITextEditor->Open(target);
789 #if NOTEBOOK
790         mwxNotebook->SetSelection(0);
791 #endif
792         mWxGUITextEditor->SetFocus();
793         return false;
794       }
795     return true;
796   }
797   //================================================================  
798
799   void WxGUIScriptingInterface::OnMenuWindowsCheck( wxCommandEvent& event, 
800                                                     wxWindow* w)
801   {
802     bool checked = event.IsChecked();
803     bool shown = m_mgr.GetPane(w).IsShown();
804     //    std::cout << "checked = "<<checked<<" - shown = "<<shown<<std::endl;
805     if (checked ^ shown) 
806       {
807         m_mgr.GetPane(w).Show(checked);
808         m_mgr.Update();
809       }
810   }
811
812
813   //================================================================  
814   void WxGUIScriptingInterface::OnMenuWindowsFiles(wxCommandEvent& event)
815   {
816     OnMenuWindowsCheck(event,mWxGUITextEditor);
817   }
818   //================================================================  
819
820   //================================================================  
821   void  WxGUIScriptingInterface::OnMenuWindowsHelp(wxCommandEvent& event)
822   {
823     OnMenuWindowsCheck(event,mWxGUIHtmlBrowser);
824   }
825   //================================================================  
826
827   //================================================================  
828   void  WxGUIScriptingInterface::OnMenuWindowsMessages(wxCommandEvent& event)
829   {
830     OnMenuWindowsCheck(event,mWxGUIOutputMessages);
831   }
832   //================================================================  
833
834   //================================================================  
835   void  WxGUIScriptingInterface::OnMenuWindowsCommand(wxCommandEvent& event)
836   {
837     OnMenuWindowsCheck(event,mWxGUICommand);
838   }
839   //================================================================  
840
841   //================================================================  
842   void WxGUIScriptingInterface::OnMenuWindowsSave( wxCommandEvent& WXUNUSED(event))
843   {
844     SavePerspective();
845   }
846   //================================================================  
847
848   //================================================================  
849   void WxGUIScriptingInterface::SavePerspective()
850   {
851     //    std::cout  << "Saving configuration..."<<std::endl;
852     std::string conf = wx2std(m_mgr.SavePerspective());
853     std::string fname = Utilities::MakeUserSettingsFullFileName("bbStudio.aui");
854     std::ofstream f;
855     f.open(fname.c_str(), std::ios::out );
856     f << conf << std::endl;
857
858     //    int x,y;
859     //    GetPosition(&x,&y);
860     //    f << x << "  " << y << std::endl;
861
862
863     int w,h;
864     GetSize(&w,&h);
865
866     f << w << " " << h << std::endl;
867
868     f.close();
869   }
870   //================================================================  
871
872   //================================================================  
873   void WxGUIScriptingInterface::LoadPerspective()
874   {
875     std::string fname = 
876       Utilities::MakeUserSettingsFullFileName("bbStudio.aui");
877     if ( Utilities::FileExists( fname ))
878       {
879         //      std::cout  << "Loading configuration..."<<std::endl;
880
881         std::ifstream f;
882         f.open(fname.c_str());
883         std::string conf;
884         f >> conf;
885
886         //      int x,y;
887         //      f >> x >> y ;
888
889         int w,h;
890         f >> w >> h ;
891
892         f.close();
893         
894         //      std::cout << conf << std::endl;
895
896         //      Move(x,y);
897         SetSize(w,h);
898         m_mgr.LoadPerspective(std2wx(conf));
899       }
900     else 
901       {
902         m_mgr.Update();
903       }
904   }
905   //================================================================  
906
907   //================================================================  
908   void WxGUIScriptingInterface::OnPaneClose(wxAuiManagerEvent& evt)
909   {
910     std::cout  << "Closing panel '"<<evt.pane->name<<"'"<<std::endl;
911     // TO DO : Uncheck 
912     //    OnMenuWindowsCheck( wxCommandEvent& event, wxWindow* w);
913   }
914   //================================================================  
915
916   
917   //================================================================  
918   BEGIN_EVENT_TABLE(WxGUIScriptingInterface, wxFrame)
919     EVT_MENU(ID_Menu_Quit, WxGUIScriptingInterface::OnMenuQuit)
920     EVT_MENU(ID_Menu_About, WxGUIScriptingInterface::OnMenuAbout)
921     EVT_MENU(ID_Menu_EditConfig, WxGUIScriptingInterface::OnMenuEditConfig)
922     EVT_MENU(ID_Menu_CreatePackage, WxGUIScriptingInterface::OnMenuCreatePackage)
923     EVT_MENU(ID_Menu_CreateBlackBox, WxGUIScriptingInterface::OnMenuCreateBlackBox)
924     EVT_MENU(ID_Menu_ShowImageGraph, WxGUIScriptingInterface::OnMenuShowImageGraph)
925     EVT_MENU(ID_Menu_RegeneratePackageDoc, WxGUIScriptingInterface::OnMenuRegeneratePackageDoc)
926     EVT_MENU(ID_Menu_RegenerateBoxesLists, WxGUIScriptingInterface::OnMenuRegenerateBoxesLists)
927     EVT_MENU(ID_Menu_RegenerateAll, WxGUIScriptingInterface::OnMenuRegenerateAll)
928     EVT_MENU(ID_Menu_PlugPackage, WxGUIScriptingInterface::OnMenuPlugPackage)
929     EVT_MENU(ID_Menu_Windows_Files, WxGUIScriptingInterface::OnMenuWindowsFiles)
930     EVT_MENU(ID_Menu_Windows_Help, WxGUIScriptingInterface::OnMenuWindowsHelp)
931     EVT_MENU(ID_Menu_Windows_Messages, WxGUIScriptingInterface::OnMenuWindowsMessages)
932     EVT_MENU(ID_Menu_Windows_Command, WxGUIScriptingInterface::OnMenuWindowsCommand)
933     EVT_MENU(ID_Menu_Windows_Save, WxGUIScriptingInterface::OnMenuWindowsSave)
934     EVT_MENU(ID_Menu_Windows_PackageBrowser, WxGUIScriptingInterface::OnMenuWindowsPackageBrowser)
935     EVT_AUI_PANE_CLOSE(WxGUIScriptingInterface::OnPaneClose)
936   //    EVT_BUTTON(ID_Button_Run, WxGUIScriptingInterface::OnButtonRun )
937     END_EVENT_TABLE()
938   //================================================================
939
940 } // namespace bbtk
941
942
943 #endif //_USE_WXWIDGETS_