.\" This is a wxWidgets manpage page generated from the XML docs .TH wxHelpController 3wx 2005-02-15 "wxWidgets" "wxWidgets class documentation" .SH NAME wxHelpController \- Family of classes for controlling help windows .SH DESCRIPTION This is a family of classes by which applications may invoke a help viewer to provide on-line help. A help controller allows an application to display help, at the contents or at a particular topic, and shut the help program down on termination. This avoids proliferation of many instances of the help viewer whenever the user requests a different topic via the application's menus or buttons. Typically, an application will create a help controller instance when it starts, and immediately call Initialize to associate a filename with it. The help viewer will only get run, however, just before the first call to display something. Most help controller classes actually derive from wxHelpControllerBase and have names of the form wxXXXHelpController or wxHelpControllerXXX. An appropriate class is aliased to the name wxHelpController for each platform, as follows: On desktop Windows, wxCHMHelpController is used (MS HTML Help). On Windows CE, wxWinceHelpController is used. On all other platforms, wxHtmlHelpController is used if wxHTML is compiled into wxWidgets; otherwise wxExtHelpController is used (for invoking an external browser). The remaining help controller classes need to be named explicitly by an application that wishes to make use of them. There are currently the following help controller classes defined: wxWinHelpController, for controlling Windows Help. wxCHMHelpController, for controlling MS HTML Help. To use this, you need to set wxUSE_MS_HTML_HELP to 1 in setup.h and have htmlhelp.h header from Microsoft's HTML Help kit (you don't need VC++ specific htmlhelp.lib because wxWidgets loads necessary DLL at runtime and so it works with all compilers). wxBestHelpController, for controlling MS HTML Help or, if Microsoft's runtime is not available, wxHtmlHelpController . You need to provide both CHM and HTB versions of the help file. For 32bit Windows only. wxExtHelpController, for controlling external browsers under Unix. The default browser is Netscape Navigator. The 'help' sample shows its use. wxWinceHelpController, for controlling a simple .htm help controller for Windows CE applications. wxHtmlHelpController , a sophisticated help controller using wxHTML , in a similar style to the Microsoft HTML Help viewer and using some of the same files. Although it has an API compatible with other help controllers, it has more advanced features, so it is recommended that you use the specific API for this class instead. Note that if you use .zip or .htb formats for your books, you must add this line to your application initialization: wxFileSystem::AddHandler(new wxZipFSHandler); or nothing will be shown in your help window. .SH "PARENTS" wxHelpControllerBase wxObject .SH "INCLUDE FILES" wx/help.hwxWidgets chooses the appropriate help controller classwx/helpbase.hwxHelpControllerBase classwx/helpwin.hWindows Help controllerwx/msw/helpchm.hMS HTML Help controllerwx/generic/helpext.hexternal HTML browser controllerwx/html/helpctrl.hwxHTML based help controller: wxHtmlHelpController .SH MEMBERS .SS wxHelpController () Constructs a help instance object, but does not invoke the help viewer. .SS ~wxHelpController () Destroys the help instance, closing down the viewer if it is running. .SS virtual void Initialize (const wxString& file) .SS virtual void Initialize (const wxString& fileint server) Initializes the help instance with a help filename, and optionally a server socket number if using wxHelp (now obsolete). Does not invoke the help viewer. This must be called directly after the help instance object is created and before any attempts to communicate with the viewer. You may omit the file extension and a suitable one will be chosen. For wxHtmlHelpController, the extensions zip, htb and hhp will be appended while searching for a suitable file. For WinHelp, the hlp extension is appended. .SS virtual bool DisplayBlock (long blockNo) If the help viewer is not running, runs it and displays the file at the given block number. WinHelp: Refers to the context number. MS HTML Help: Refers to the context number. External HTML help: the same as for wxHelpController::DisplaySection . wxHtmlHelpController: sectionNo is an identifier as specified in the .hhc file. See Help files format . This function is for backward compatibility only, and applications should use wxHelpController instead. .SS virtual bool DisplayContents () If the help viewer is not running, runs it and displays the contents. .SS virtual bool DisplayContextPopup (int contextId) Displays the section as a popup window using a context id. Returns false if unsuccessful or not implemented. .SS virtual bool DisplaySection (const wxString& section) If the help viewer is not running, runs it and displays the given section. The interpretation of section differs between help viewers. For most viewers, this call is equivalent to KeywordSearch. For MS HTML Help, wxHTML help and external HTML help, if section has a .htm or .html extension, that HTML file will be displayed; otherwise a keyword search is done. .SS virtual bool DisplaySection (int sectionNo) If the help viewer is not running, runs it and displays the given section. WinHelp, MS HTML Help sectionNo is a context id. External HTML help: wxExtHelpController implements sectionNo as an id in a map file, which is of the form: 0 wx.html ; Index 1 wx34.html#classref ; Class reference 2 wx204.html ; Function reference wxHtmlHelpController: sectionNo is an identifier as specified in the .hhc file. See Help files format . See also the help sample for notes on how to specify section numbers for various help file formats. .SS virtual bool DisplayTextPopup (const wxString& textconst wxPoint& pos) Displays the text in a popup window, if possible. Returns false if unsuccessful or not implemented. .SS virtual wxFrame * GetFrameParameters (const wxSize * size = NULLconst wxPoint * pos = NULLbool *newFrameEachTime = NULL) wxHtmlHelpController returns the frame, size and position. For all other help controllers, this function does nothing and just returns NULL. .SS virtual bool KeywordSearch (const wxString& keyWordwxHelpSearchMode mode = wxHELP_SEARCH_ALL) If the help viewer is not running, runs it, and searches for sections matching the given keyword. If one match is found, the file is displayed at this section. The optional parameter allows the search the index (wxHELP_SEARCH_INDEX) but this currently only supported by the wxHtmlHelpController. WinHelp, MS HTML Help: If more than one match is found, the first topic is displayed. External HTML help, simple wxHTML help: If more than one match is found, a choice of topics is displayed. wxHtmlHelpController: see wxHtmlHelpController::KeywordSearch . .SS virtual bool LoadFile (const wxString& file = "") If the help viewer is not running, runs it and loads the given file. If the filename is not supplied or is empty, the file specified in Initialize is used. If the viewer is already displaying the specified file, it will not be reloaded. This member function may be used before each display call in case the user has opened another file. wxHtmlHelpController ignores this call. .SS virtual bool OnQuit () Overridable member called when this application's viewer is quit by the user. This does not work for all help controllers. .SS virtual void SetFrameParameters (const wxString & titleconst wxSize & sizeconst wxPoint & pos = wxDefaultPositionbool newFrameEachTime = false) For wxHtmlHelpController, the title is set (again with %s indicating the page title) and also the size and position of the frame if the frame is already open. newFrameEachTime is ignored. For all other help controllers this function has no effect. .SS virtual void SetViewer (const wxString& viewerlong flags) Sets detailed viewer information. So far this is only relevant to wxExtHelpController. Some examples of usage: m_help.SetViewer("kdehelp"); m_help.SetViewer("gnome-help-browser"); m_help.SetViewer("netscape", wxHELP_NETSCAPE); .SS virtual bool Quit () If the viewer is running, quits it by disconnecting. For Windows Help, the viewer will only close if no other application is using it. .SH "SEE ALSO" wxHelpControllerBase wxObject wxHtmlHelpController wxHTML .SH "AUTHORS" Documentation content by Julian Smart, Robert Roebling, Vadim Zeitlin, Robin Dunn, et al Conversion to manpage format by Arnout Engelen (http://bzzt.net), bugreports welcome.