X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/09397bc6e9b3137904d1ddfafaa1d5f73830df60..7502bdff47a5004eee8db2c56fb9d51f369eb1e2:/docs/latex/wx/hthlpfrm.tex diff --git a/docs/latex/wx/hthlpfrm.tex b/docs/latex/wx/hthlpfrm.tex index 309630c65a..216d281125 100644 --- a/docs/latex/wx/hthlpfrm.tex +++ b/docs/latex/wx/hthlpfrm.tex @@ -8,7 +8,7 @@ This class is used by \helpref{wxHtmlHelpController}{wxhtmlhelpcontroller} to display help. -It is internal class and should not be used directly - except for the case +It is internal class and should not be used directly - except for the case you're writing your own HTML help controller. @@ -35,6 +35,7 @@ Constructor. \twocolitem{\windowstyle{wxHF\_CONTENTS}}{Help frame has contents panel.} \twocolitem{\windowstyle{wxHF\_INDEX}}{Help frame has index panel.} \twocolitem{\windowstyle{wxHF\_SEARCH}}{Help frame has search panel.} +\twocolitem{\windowstyle{wxHF\_BOOKMARKS}}{Help frame has bookmarks controls.} \end{twocollist} @@ -93,6 +94,9 @@ Looking for the page runs in these steps: The second form takes numeric ID as the parameter. (uses extension to MS format, ) +\pythonnote{The second form of this method is named DisplayId in +wxPython.} + \membersection{wxHtmlHelpFrame::DisplayContents}\label{wxhtmlhelpframedisplaycontents} \func{bool}{DisplayContents}{\void} @@ -152,3 +156,14 @@ Add books to search choice panel Saves user's settings for this frame (see \helpref{wxHtmlHelpController::WriteCustomization}{wxhtmlhelpcontrollerwritecustomization}) +\membersection{wxHtmlHelpFrame::AddToolbarButtons}\label{wxhtmlhelpframeaddtoolbarbuttons} + +\func{virtual void}{AddToolbarButtons}{\param{wxToolBar *}{toolBar}, \param{int }{style}} + +You may override this virtual method to add more buttons into help frame's +toolbar. {\it toolBar} is pointer to the toolbar and {\it style} is style +flag as passed to Create method. + +wxToolBar::Realize is called immediately after returning from this function. + +See {\it samples/html/helpview} for an example.