added new wxHF_xxxx contants to control wxHtmlHelpFrame's appearance (book icons in contents)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10006 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-05-05 18:05:57 +00:00
parent bdb6e206f1
commit 576507e276
6 changed files with 166 additions and 113 deletions

View File

@@ -246,20 +246,4 @@ bool wxHtmlHelpController::Quit()
return TRUE;
}
// Sets the specified book or all books to have the given base path
void wxHtmlHelpController::SetBookBasePath(const wxString& basePath, int which)
{
size_t i;
for (i = 0; i < m_helpData.GetBookRecArray().Count(); i++ )
{
if (i == (size_t) which || which == -1)
{
wxHtmlBookRecord& book = m_helpData.GetBookRecArray()[i];
book.SetBasePath(basePath);
}
if (i == (size_t) which)
return;
}
}
#endif