wxHtmlHelpControllerThis help controller provides an easy way of displaying HTML help in your application (see test sample). The help system is based on books (see AddBook). A book is a logical section of documentation (for example "User's Guide" or "Programmer's Guide" or "C++ Reference" or "wxWidgets Reference"). The help controller can handle as many books as you want. Although this class has an API compatible with other wxWidgets help controllers as documented by wxHelpController, it is recommended that you use the enhanced capabilities of wxHtmlHelpController's API. wxHTML uses Microsoft's HTML Help Workshop project files (.hhp, .hhk, .hhc) as its native format. The file format is described here. Have a look at docs/html/ directory where sample project files are stored. You can use Tex2RTF to produce these files when generating HTML, if you set htmlWorkshopFiles to true in your tex2rtf.ini file. The commercial tool HelpBlocks (www.helpblocks.com) can also create these files. Note It is strongly recommended to use preprocessed .hhp.cached version of projects. It can be either created on-the-fly (see SetTempDir) or you can use hhp2cached utility from utils/hhp2cached to create it and distribute the cached version together with helpfiles. See samples/html/help sample for demonstration of its use. See also Information about wxBestHelpController, wxHtmlHelpFrame, wxHtmlHelpDialog, wxHtmlHelpWindow, wxHtmlModalHelp Derived from wxHelpControllerBase Include files <wx/html/helpctrl.h> Members
wxHtmlHelpController::wxHtmlHelpController
wxHtmlHelpController::wxHtmlHelpControllerwxHtmlHelpController(int style = wxHF_DEFAULT_STYLE, wxWindow* parentWindow = NULL) Constructor. Parameters style is a combination of these flags:
parentWindow is an optional window to be used as the parent for the help window.
wxHtmlHelpController::AddBookbool AddBook(const wxFileName& bookFile, bool showWaitMsg) bool AddBook(const wxString& bookUrl, bool showWaitMsg) Adds book (.hhp file - HTML Help Workshop project file) into the list of loaded books. This must be called at least once before displaying any help. bookFile or bookUrl may be either .hhp file or ZIP archive that contains arbitrary number of .hhp files in top-level directory. This ZIP archive must have .zip or .htb extension (the latter stands for "HTML book"). In other words, AddBook(wxFileName("help.zip")) is possible and is the recommended way. Parameters showWaitMsg
Note Don't forget to install the archive wxFileSystem handler with wxFileSystem::AddHandler(new wxArchiveFSHandler); before calling this method on a .zip or .htb file!
wxHtmlHelpController::CreateHelpDialogvirtual wxHtmlHelpDialog* CreateHelpDialog(wxHtmlHelpData * data) This protected virtual method may be overridden so that when specifying the wxHF_DIALOG style, the controller uses a different dialog.
wxHtmlHelpController::CreateHelpFramevirtual wxHtmlHelpFrame* CreateHelpFrame(wxHtmlHelpData * data) This protected virtual method may be overridden so that the controller uses a different frame.
wxHtmlHelpController::Displayvoid Display(const wxString& x) Displays page x. This is THE important function - it is used to display the help in application. You can specify the page in many ways:
Looking for the page runs in these steps:
void Display(const int id) This alternative form is used to search help contents by numeric IDs. wxPython note: The second form of this method is named DisplayId in wxPython.
wxHtmlHelpController::DisplayContentsvoid DisplayContents() Displays help window and focuses contents panel.
wxHtmlHelpController::DisplayIndexvoid DisplayIndex() Displays help window and focuses index panel.
wxHtmlHelpController::KeywordSearchbool KeywordSearch(const wxString& keyword, wxHelpSearchMode mode = wxHELP_SEARCH_ALL) Displays help window, focuses search panel and starts searching. Returns true if the keyword was found. Optionally it searches through the index (mode = wxHELP_SEARCH_INDEX), default the content (mode = wxHELP_SEARCH_ALL). Important: KeywordSearch searches only pages listed in .hhc file(s). You should list all pages in the contents file.
wxHtmlHelpController::ReadCustomizationvoid ReadCustomization(wxConfigBase* cfg, wxString path = wxEmptyString) Reads the controller's setting (position of window, etc.)
wxHtmlHelpController::SetTempDirvoid SetTempDir(const wxString& path) Sets the path for storing temporary files - cached binary versions of index and contents files. These binary forms are much faster to read. Default value is empty string (empty string means that no cached data are stored). Note that these files are not deleted when program exits. Once created these cached files will be used in all subsequent executions of your application. If cached files become older than corresponding .hhp file (e.g. if you regenerate documentation) it will be refreshed.
wxHtmlHelpController::SetTitleFormatvoid SetTitleFormat(const wxString& format) Sets format of title of the frame. Must contain exactly one "%s" (for title of displayed HTML page).
wxHtmlHelpController::UseConfigvoid UseConfig(wxConfigBase* config, const wxString& rootpath = wxEmptyString) Associates config object with the controller. If there is associated config object, wxHtmlHelpController automatically reads and writes settings (including wxHtmlWindow's settings) when needed. The only thing you must do is create wxConfig object and call UseConfig. If you do not use UseConfig, wxHtmlHelpController will use default wxConfig object if available (for details see wxConfigBase::Get and wxConfigBase::Set).
wxHtmlHelpController::WriteCustomizationvoid WriteCustomization(wxConfigBase* cfg, wxString path = wxEmptyString) Stores controllers setting (position of window etc.)
|