]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxGUIHtmlBrowser.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkWxGUIHtmlBrowser.cxx
index c44820ff8fe04972e1c86405a455dcbef7355f3a..df91b754af2957265758b386adb723e4a12385c5 100644 (file)
@@ -3,8 +3,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkWxGUIHtmlBrowser.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/06/10 19:19:42 $
-  Version:   $Revision: 1.6 $
+  Date:      $Date: 2008/10/15 09:31:20 $
+  Version:   $Revision: 1.9 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -219,23 +219,8 @@ namespace bbtk
   void WxGUIHtmlBrowser::GoHome()
   {
     std::string url = ConfigurationFile::GetInstance().Get_doc_path();
-    url += "/bbtkWebSite/menu.html";
-       GoTo(url);
-
-    mwxURL->Clear();
-    mwxURL->AppendText(std2wx(url));
-
-
-/*EED
-    if (Utilities::FileExists(url)) 
-      {
-       GoTo(url);
-      }
-    else 
-      {
-       // what ?
-      }
-*/
+    url += "/help_contents.html";
+    GoTo(url);
   }
   //========================================================================
 
@@ -307,16 +292,22 @@ namespace bbtk
     bool go = true;
     if (mUser) 
       {
+                 /*
        wxString file = wxPathOnly(mwxURL->GetValue());
        file += std2wx(ConfigurationFile::GetInstance().Get_file_separator());
        file += e.GetLinkInfo().GetHref();
-       go = mUser->WxGUIHtmlBrowserUserOnLinkClicked( wx2std( file ) );
+       */
+               wxString file = e.GetLinkInfo().GetHref();
+               go = mUser->WxGUIHtmlBrowserUserOnLinkClicked( wx2std( file ) );
       }
     if (go) 
       {
        mwxHtmlWindow->LoadPage( e.GetLinkInfo().GetHref() );
        UpdateURL();
-      }
+       //      OnURLEnter(e);
+       //      mwxHtmlWindow->LoadPage(mwxURL->GetValue());
+     }
+
     //    mwxHtmlWindow->LoadPage( mwxURL->GetValue() );
    }
   //========================================================================