]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxGUIScriptingInterface.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkWxGUIScriptingInterface.cxx
index 4cb10db79bff0daccd28c7af3ba31cf30e133286..c311ee2aaa303367d4b2a0c413eed65ce129db91 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkWxGUIScriptingInterface.cxx,v $
   Language:  C++
-  Date:      $Date: 2009/04/15 15:45:49 $
-  Version:   $Revision: 1.37 $
+  Date:      $Date: 2009/12/08 14:10:36 $
+  Version:   $Revision: 1.40 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -57,6 +57,7 @@
 #include <wx/tipwin.h>
 #include <wx/splash.h>
 
+
 //#include "icons/cc_run.xpm"
 
 namespace bbtk
@@ -243,8 +244,10 @@ namespace bbtk
 #endif
 
     // parent window of all bbtk windows will be a child of this
-    Wx::SetTopWindowParent(this);
-    // Add the method OnWxSignal as a Wx::Signal observer 
+    //    Wx::SetTopWindowParent(this);
+    Wx::SetTopWindow(this);
+    // Wx::SetAutoDestroyTopWindow(false);
+  // Add the method OnWxSignal as a Wx::Signal observer 
     //bbtkAddWxSignalObserver(WxGUIPackageBrowser2Window::OnWxSignal);
 
     //.PaneBorder(false)); 
@@ -301,11 +304,29 @@ namespace bbtk
  //================================================================
   WxGUIScriptingInterface::~WxGUIScriptingInterface()
   {
+  bbtkDebugMessage("widget",9,"bbStudio::~bbStudio()"<<std::endl);
     SavePerspective();
     m_mgr.UnInit();
   }
   //================================================================
 
+  //================================================================
+  void WxGUIScriptingInterface::OnClose(wxCloseEvent& event)
+  {
+    bbtkDebugMessage("widget",9,"bbStudio::OnClose()"<<std::endl);
+    //Wx::SetWindowsHaveBeenDestroyedByParent();
+    //mInterpreter.reset();
+    wxWindowList& list = GetChildren();
+    wxWindowList::iterator iter;
+    for (iter = list.begin(); iter != list.end(); ++iter)
+      {
+       (*iter)->Close();
+      }
+    this->Destroy();
+  }
+  //================================================================
+
+
   //================================================================
   void WxGUIScriptingInterface::Open(const std::string& filename)
   {
@@ -485,9 +506,12 @@ namespace bbtk
   //================================================================
   void WxGUIScriptingInterface::OnMenuEditConfig(wxCommandEvent& WXUNUSED(event))
   {
+
     std::string configFile = 
       ConfigurationFile::GetInstance().Get_config_xml_full_path();
     Open(configFile);
+       wxMessageDialog ww(NULL,_T("If you change the bbtk_config.xml, you have to restart this appliaction..."), _T("Alert !"), wxOK);
+       ww.ShowModal();
   }
   //================================================================
 
@@ -674,8 +698,6 @@ namespace bbtk
        command += " -q";
        bbtkMessage("debug",1,"Executing system command '"<<command<<"'"<<std::endl);
 
-
-
     if ( ! system ( command.c_str() ) )
       {
        SetStatusText( _T("Done !"));
@@ -781,17 +803,49 @@ namespace bbtk
   {
     size_t s = target.length();
     if ((s>3) && (target[s-1]=='s')
-       && (target[s-2]=='b')
-       && (target[s-3]=='b')
-       && (target[s-4]=='.'))
-      {
-       mWxGUITextEditor->Open(target);
-#if NOTEBOOK
-       mwxNotebook->SetSelection(0);
-#endif
-       mWxGUITextEditor->SetFocus();
-       return false;
-      }
+               && (target[s-2]=='b')
+               && (target[s-3]=='b')
+               && (target[s-4]=='.'))
+       {
+                       mWxGUITextEditor->Open(target);
+                       #if NOTEBOOK
+                               mwxNotebook->SetSelection(0);
+                       #endif
+                       mWxGUITextEditor->SetFocus();
+                       return false;
+       }
+
+       if ((s>3) && (target[s-1]=='f')
+               && (target[s-2]=='d')
+               && (target[s-3]=='p')
+               && (target[s-4]=='.'))
+       {
+
+               // Open pdf in linux
+                 // gnome-open target
+
+               // Open pdf in macOS
+
+               // Open pdf in windows
+                       int size=target.size();
+                       int pos=target.rfind("\\");
+                       std::string commandStart("start ");
+                       std::string commandPath("/D \""+target.substr(0,pos) +"\"");
+                       std::string commandPDF( target.substr(pos+1,size-pos+1) );
+
+                       printf("EED WxGUIScriptingInterface::WxGUIHtmlBrowserUserOnLinkClicked cc %s \n",commandPath.c_str() );
+                       // cleanning path
+                       while (commandPath.rfind("\\\\")!=-1 )
+                       {
+                               commandPath.erase( commandPath.rfind("\\\\") , 1 );
+                       printf("EED WxGUIScriptingInterface::WxGUIHtmlBrowserUserOnLinkClicked cc %s \n",commandPath.c_str() );
+                       }
+
+                       std::string command = commandStart+commandPath+" "+commandPDF;
+                       printf("EED WxGUIScriptingInterface::WxGUIHtmlBrowserUserOnLinkClicked BB %s \n",command.c_str() );
+                       system( command.c_str() );
+                       return false;
+     }
     return true;
   }
   //================================================================  
@@ -916,6 +970,7 @@ namespace bbtk
   
   //================================================================  
   BEGIN_EVENT_TABLE(WxGUIScriptingInterface, wxFrame)
+    EVT_CLOSE(  WxGUIScriptingInterface::OnClose)
     EVT_MENU(ID_Menu_Quit, WxGUIScriptingInterface::OnMenuQuit)
     EVT_MENU(ID_Menu_About, WxGUIScriptingInterface::OnMenuAbout)
     EVT_MENU(ID_Menu_EditConfig, WxGUIScriptingInterface::OnMenuEditConfig)