FILES ${BBTK_DOC_BUILD_PATH}/index-no-frame.html
DESTINATION ${BBTK_DOC_INSTALL_PATH}
)
+ # Configure help_contents.html for build tree
+ CONFIGURE_FILE(
+ help_contents.html.in
+ ${BBTK_DOC_BUILD_PATH}/help_contents.html
+ @ONLY
+ )
+ # Install it
+ INSTALL(
+ FILES ${BBTK_DOC_BUILD_PATH}/help_contents.html
+ DESTINATION ${BBTK_DOC_INSTALL_PATH}
+ )
# Recurse it bbtkWebSite dir
SUBDIRS(bbtkWebSite)
+++ /dev/null
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-<head>
- <title>Help Contents</title>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-
-<H1>Help Contents</H1>
-
-<a href="../bbdoc/index-category.html#demo">Demos</a><br>
-<a href="../bbdoc/index-category.html#example">Examples</a>
-
-<H2>Guides</H2>
-
-<a href="../bbtkUsersGuide/bbtkUsersGuide.html" target="information">User's Guide</a><br>
-<a href="../bbtkPackageDevelopersGuide/bbtkPackageDevelopersGuide.html" target="information">Package Developer's Guide</a><br>
-<a href="../bbtkDevelopersGuide/bbtkDevelopersGuide.html" target="information">Developer's Guide</a><br>
-<a href="../bbtkReferenceManual/bbtkReferenceManual.html" target="information">Reference Manual</a> (to be written)<br>
-<a href="../doxygen/bbtk/main.html" target="information">bbtk library doxygen doc</a><br>
-
-<H2>Boxes</H2>
-
-<a target="information" href="../bbdoc/index-alpha.html">Alphabetical list</a><br>
-<a target="information" href="../bbdoc/index-package.html">List by package</a><br>
-<a target="information" href="../bbdoc/index-category.html">List by category</a><br>
-<a target="information" href="../bbdoc/index-adaptors.html">List of adaptors</a><br>
-
-</body>
-</html>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+ <title>Help Contents - bbtk @BBTK_VERSION@ </title>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+</head>
+
+<H1>Help Contents - bbtk @BBTK_VERSION@ </H1>
+
+<a href="bbdoc/index-category.html#demo">Demos</a><br>
+<a href="bbdoc/index-category.html#example">Examples</a>
+
+<H2>Guides</H2>
+
+<a href="bbtkUsersGuide/bbtkUsersGuide.html" target="information">User's Guide</a><br>
+<a href="bbtkPackageDevelopersGuide/bbtkPackageDevelopersGuide.html" target="information">Package Developer's Guide</a><br>
+<a href="bbtkDevelopersGuide/bbtkDevelopersGuide.html" target="information">Developer's Guide</a><br>
+<a href="bbtkReferenceManual/bbtkReferenceManual.html" target="information">Reference Manual</a> (to be written)<br>
+<a href="doxygen/bbtk/main.html" target="information">bbtk library doxygen doc</a><br>
+
+<H2>Boxes</H2>
+
+<a target="information" href="bbdoc/index-alpha.html">Alphabetical list</a><br>
+<a target="information" href="bbdoc/index-package.html">List by package</a><br>
+<a target="information" href="bbdoc/index-category.html">List by category</a><br>
+<a target="information" href="bbdoc/index-adaptors.html">List of adaptors</a><br>
+
+</body>
+</html>
+
Program: bbtk
Module: $RCSfile: bbtkWxGUIHtmlBrowser.cxx,v $
Language: C++
- Date: $Date: 2008/10/08 13:39:33 $
- Version: $Revision: 1.8 $
+ 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
void WxGUIHtmlBrowser::GoHome()
{
std::string url = ConfigurationFile::GetInstance().Get_doc_path();
- url += "/bbtkWebSite/help_contents.html";
- GoTo(url);
-
- mwxURL->Clear();
- mwxURL->AppendText(std2wx(url));
-
-
-/*EED
- if (Utilities::FileExists(url))
- {
- GoTo(url);
- }
- else
- {
- // what ?
- }
-*/
+ url += "/help_contents.html";
+ GoTo(url);
}
//========================================================================
{
mwxHtmlWindow->LoadPage( e.GetLinkInfo().GetHref() );
UpdateURL();
- }
+ // OnURLEnter(e);
+ // mwxHtmlWindow->LoadPage(mwxURL->GetValue());
+ }
+
// mwxHtmlWindow->LoadPage( mwxURL->GetValue() );
}
//========================================================================