]>
git.saurik.com Git - wxWidgets.git/blob - interface/help.h
0a8609ca2e96a2395ee2a016e9ad3bf2050d2610
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: documentation for wxHelpController class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxHelpController
13 This is a family of classes by which
14 applications may invoke a help viewer to provide on-line help.
16 A help controller allows an application to display help, at the contents
17 or at a particular topic, and shut the help program down on termination.
18 This avoids proliferation of many instances of the help viewer whenever the
19 user requests a different topic via the application's menus or buttons.
21 Typically, an application will create a help controller instance
22 when it starts, and immediately call @b Initialize
23 to associate a filename with it. The help viewer will only get run, however,
24 just before the first call to display something.
26 Most help controller classes actually derive from wxHelpControllerBase and have
27 names of the form wxXXXHelpController or wxHelpControllerXXX. An
28 appropriate class is aliased to the name wxHelpController for each platform, as
31 On desktop Windows, wxCHMHelpController is used (MS HTML Help).
32 On Windows CE, wxWinceHelpController is used.
33 On all other platforms, wxHtmlHelpController is used if wxHTML is
34 compiled into wxWidgets; otherwise wxExtHelpController is used (for invoking an
38 The remaining help controller classes need to be named
39 explicitly by an application that wishes to make use of them.
41 There are currently the following help controller classes defined:
43 wxWinHelpController, for controlling Windows Help.
44 wxCHMHelpController, for controlling MS HTML Help. To use this, you need to
45 set wxUSE_MS_HTML_HELP
46 to 1 in setup.h and have htmlhelp.h header from Microsoft's HTML Help kit (you
48 VC++ specific htmlhelp.lib because wxWidgets loads necessary DLL at runtime and
50 works with all compilers).
51 wxBestHelpController, for controlling MS HTML Help or, if Microsoft's runtime
53 not available, wxHtmlHelpController. You need to provide
54 @b both CHM and HTB versions of the help file. For 32bit Windows only.
55 wxExtHelpController, for controlling external browsers under Unix.
56 The default browser is Netscape Navigator. The 'help' sample shows its use.
57 wxWinceHelpController, for controlling a simple @c .htm help controller for
58 Windows CE applications.
59 wxHtmlHelpController, a sophisticated help controller using wxHTML, in
60 a similar style to the Microsoft HTML Help viewer and using some of the same
62 Although it has an API compatible with other help controllers, it has more
63 advanced features, so it is
64 recommended that you use the specific API for this class instead. Note that if
66 use .zip or .htb formats for your books, you
67 must add this line to your application initialization: @c
68 wxFileSystem::AddHandler(new wxArchiveFSHandler);
69 or nothing will be shown in your help window.
76 wxHtmlHelpController, wxHTML
78 class wxHelpController
: public wxObject
82 Constructs a help instance object, but does not invoke the help viewer.
83 If you provide a window, it will be used by some help controller classes, such
85 wxCHMHelpController, wxWinHelpController and wxHtmlHelpController, as the
86 parent for the help window instead of the value of wxApp::GetTopWindow. You can
87 also change the parent window later with
90 wxHelpController(wxWindow
* parentWindow
= NULL
);
93 Destroys the help instance, closing down the viewer if it is running.
98 If the help viewer is not running, runs it and displays the file at the given
100 @e WinHelp: Refers to the context number.
101 @e MS HTML Help: Refers to the context number.
102 @e External HTML help: the same as for DisplaySection().
103 @e wxHtmlHelpController: @e sectionNo is an identifier as specified in the @c
104 .hhc file. See @ref overview_helpformat "Help files format".
105 This function is for backward compatibility only, and applications should use
106 @ref displaysection() wxHelpController instead.
108 virtual bool DisplayBlock(long blockNo
);
111 If the help viewer is not running, runs it and displays the
114 virtual bool DisplayContents();
117 Displays the section as a popup window using a context id.
118 Returns @false if unsuccessful or not implemented.
120 virtual bool DisplayContextPopup(int contextId
);
124 If the help viewer is not running, runs it and displays the given section.
125 @e WinHelp, MS HTML Help @a sectionNo is a context id.
126 @e External HTML help: wxExtHelpController implements @a sectionNo as an id in
127 a map file, which is of the form:
129 @e wxHtmlHelpController: @a sectionNo is an identifier as specified in the @c
130 .hhc file. See @ref overview_helpformat "Help files format".
131 See also the help sample for notes on how to specify section numbers for
132 various help file formats.
134 virtual bool DisplaySection(const wxString
& section
);
135 virtual bool DisplaySection(int sectionNo
);
139 Displays the text in a popup window, if possible.
140 Returns @false if unsuccessful or not implemented.
142 virtual bool DisplayTextPopup(const wxString
& text
,
146 wxHtmlHelpController returns the frame, size and position.
147 For all other help controllers, this function does nothing
148 and just returns @NULL.
151 This defaults to "netscape" for wxExtHelpController.
153 This defaults to wxHELP_NETSCAPE for wxExtHelpController, indicating
154 that the viewer is a variant of Netscape Navigator.
156 virtual wxFrame
* GetFrameParameters(const wxSize
* size
= NULL
,
157 const wxPoint
* pos
= NULL
,
158 bool* newFrameEachTime
= NULL
);
161 Returns the window to be used as the parent for the help window. This window is
163 by wxCHMHelpController, wxWinHelpController and wxHtmlHelpController.
165 virtual wxWindow
* GetParentWindow() const;
169 Initializes the help instance with a help filename, and optionally a server
171 number if using wxHelp (now obsolete). Does not invoke the help viewer.
172 This must be called directly after the help instance object is created and
174 any attempts to communicate with the viewer.
175 You may omit the file extension and a suitable one will be chosen. For
176 wxHtmlHelpController, the extensions zip, htb and hhp will be appended while
178 a suitable file. For WinHelp, the hlp extension is appended.
180 virtual bool Initialize(const wxString
& file
);
181 virtual bool Initialize(const wxString
& file
, int server
);
185 If the help viewer is not running, runs it, and searches for sections matching
186 the given keyword. If one match is found, the file is displayed at this
187 section. The optional parameter allows the search the index
188 (wxHELP_SEARCH_INDEX) but this currently only supported by the
189 wxHtmlHelpController.
190 @e WinHelp, MS HTML Help: If more than one match is found,
191 the first topic is displayed.
192 @e External HTML help, simple wxHTML help: If more than one match is found,
193 a choice of topics is displayed.
194 @e wxHtmlHelpController: see wxHtmlHelpController::KeywordSearch.
196 virtual bool KeywordSearch(const wxString
& keyWord
,
197 wxHelpSearchMode mode
= wxHELP_SEARCH_ALL
);
200 If the help viewer is not running, runs it and loads the given file.
201 If the filename is not supplied or is
202 empty, the file specified in @b Initialize is used. If the viewer is
203 already displaying the specified file, it will not be reloaded. This
204 member function may be used before each display call in case the user
205 has opened another file.
206 wxHtmlHelpController ignores this call.
208 virtual bool LoadFile(const wxString
& file
= "");
211 Overridable member called when this application's viewer is quit by the user.
212 This does not work for all help controllers.
214 virtual bool OnQuit();
217 If the viewer is running, quits it by disconnecting.
218 For Windows Help, the viewer will only close if no other application is using
224 For wxHtmlHelpController, the title is set (again with %s indicating the
225 page title) and also the size and position of the frame if the frame is already
226 open. @a newFrameEachTime is ignored.
227 For all other help controllers this function has no effect.
229 virtual void SetFrameParameters(const wxString
& title
,
231 const wxPoint
& pos
= wxDefaultPosition
,
232 bool newFrameEachTime
= false);
235 Sets the window to be used as the parent for the help window. This is used
236 by wxCHMHelpController, wxWinHelpController and wxHtmlHelpController.
238 virtual void SetParentWindow(wxWindow
* parentWindow
);
241 Sets detailed viewer information. So far this is only relevant to
243 Some examples of usage:
245 virtual void SetViewer(const wxString
& viewer
, long flags
);