From 13806c7d4a6faf9d6ad8fa7ee40f2db6fd9d7652 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 7 May 2001 22:30:26 +0000 Subject: [PATCH] some updates for new methods, constants, etc. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10036 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/htmlhelp.i | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/wxPython/src/htmlhelp.i b/wxPython/src/htmlhelp.i index 1947f066ab..e177d5b090 100644 --- a/wxPython/src/htmlhelp.i +++ b/wxPython/src/htmlhelp.i @@ -131,7 +131,7 @@ public: wxString FindPageByName(const wxString& page); wxString FindPageById(int id); - // **** this one needs fixed... + // TODO: this one needs fixed... const wxHtmlBookRecArray& GetBookRecArray(); wxHtmlContentsItem* GetContents(); @@ -163,9 +163,23 @@ public: //--------------------------------------------------------------------------- + +enum { + wxHF_TOOLBAR, + wxHF_FLATTOOLBAR, + wxHF_CONTENTS, + wxHF_INDEX, + wxHF_SEARCH, + wxHF_BOOKMARKS, + wxHF_OPENFILES, + wxHF_PRINT, + wxHF_DEFAULTSTYLE, +}; + + class wxHtmlHelpController : public wxEvtHandler { public: - wxHtmlHelpController(); + wxHtmlHelpController(int style = wxHF_DEFAULTSTYLE); ~wxHtmlHelpController(); void SetTitleFormat(const wxString& format);