]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxGUIScriptingInterface.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkWxGUIScriptingInterface.cxx
index db654b8e64c963d8dfb40da5c546e12e868889b7..669d9ac2cb0eb4bdff773e38de94ec95deb72e56 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkWxGUIScriptingInterface.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/06/10 19:19:42 $
-  Version:   $Revision: 1.11 $
+  Date:      $Date: 2008/06/26 06:50:05 $
+  Version:   $Revision: 1.12 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -58,7 +58,7 @@ namespace bbtk
       ID_Menu_Windows_Messages,
       ID_Menu_Windows_Command,
       ID_Menu_Windows_Save,
-         ID_Menu_Windows_HelpBrowser
+      ID_Menu_Windows_PackageBrowser
       //      ID_Button_Run
     };
     
@@ -101,7 +101,7 @@ namespace bbtk
     menuWindows->AppendCheckItem(ID_Menu_Windows_Command,
                                 _T("Show 'command' panel") )->Check();
     menuWindows->AppendSeparator();
-    menuWindows->Append( ID_Menu_Windows_HelpBrowser, _T("Show help &Browser") );
+    menuWindows->Append( ID_Menu_Windows_PackageBrowser, _T("Show Package &Browser") );
     
     menuWindows->AppendSeparator();
     menuWindows->Append ( ID_Menu_Windows_Save, _T("Save interface configuration"));
@@ -350,12 +350,12 @@ namespace bbtk
   //================================================================
 
   //================================================================
-  void WxGUIScriptingInterface::OnMenuWindowsHelpBrowser(wxCommandEvent& WXUNUSED(event))
+  void WxGUIScriptingInterface::OnMenuWindowsPackageBrowser(wxCommandEvent& WXUNUSED(event))
   {
         wxBusyCursor wait;
      WxGUIPackageBrowser2 *browser = new WxGUIPackageBrowser2(this);
      browser->IncludeAll();
-        mwxNotebook->AddPage(browser,_T("Help Browser"),true);
+        mwxNotebook->AddPage(browser,_T("Package Browser"),true);
   }
   //================================================================
 
@@ -531,7 +531,7 @@ namespace bbtk
     EVT_MENU(ID_Menu_Windows_Help, WxGUIScriptingInterface::OnMenuWindowsHelp)
     EVT_MENU(ID_Menu_Windows_Messages, WxGUIScriptingInterface::OnMenuWindowsMessages)
     EVT_MENU(ID_Menu_Windows_Command, WxGUIScriptingInterface::OnMenuWindowsCommand)
-    EVT_MENU(ID_Menu_Windows_HelpBrowser, WxGUIScriptingInterface::OnMenuWindowsHelpBrowser)
+    EVT_MENU(ID_Menu_Windows_PackageBrowser, WxGUIScriptingInterface::OnMenuWindowsPackageBrowser)
     EVT_AUI_PANE_CLOSE(WxGUIScriptingInterface::OnPaneClose)
   //    EVT_BUTTON(ID_Button_Run, WxGUIScriptingInterface::OnButtonRun )
     END_EVENT_TABLE()