]>
Commit | Line | Data |
---|---|---|
6fb26ea3 | 1 | \section{\class{wxHelpController}}\label{wxhelpcontroller} |
a660d684 | 2 | |
6fb26ea3 | 3 | This is a family of classes by which |
fe604ccd | 4 | applications may invoke a help viewer to provide on-line help. |
a660d684 | 5 | |
fe604ccd JS |
6 | A help controller allows an application to display help, at the contents |
7 | or at a particular topic, and shut the help program down on termination. | |
8 | This avoids proliferation of many instances of the help viewer whenever the | |
9 | user requests a different topic via the application's menus or buttons. | |
a660d684 | 10 | |
fe604ccd JS |
11 | Typically, an application will create a help controller instance |
12 | when it starts, and immediately call {\bf Initialize}\rtfsp | |
13 | to associate a filename with it. The help viewer will only get run, however, | |
14 | just before the first call to display something. | |
a660d684 | 15 | |
154f22b3 JS |
16 | Most help controller classes actually derive from wxHelpControllerBase and have |
17 | names of the form wxXXXHelpController or wxHelpControllerXXX. An | |
18 | appropriate class is aliased to the name wxHelpController for each platform, as follows: | |
19 | ||
20 | \begin{itemize}\itemsep=0pt | |
21 | \item On Windows, wxWinHelpController is used. | |
2f3f4888 | 22 | \item On all other platforms, wxHtmlHelpController is used if wxHTML is |
fc2171bd | 23 | compiled into wxWidgets; otherwise wxExtHelpController is used (for invoking an external |
154f22b3 JS |
24 | browser). |
25 | \end{itemize} | |
26 | ||
2edb0bde | 27 | The remaining help controller classes need to be named |
154f22b3 | 28 | explicitly by an application that wishes to make use of them. |
a660d684 | 29 | |
6fb26ea3 | 30 | There are currently the following help controller classes defined: |
a660d684 | 31 | |
2432b92d | 32 | \begin{itemize}\itemsep=0pt |
6fb26ea3 | 33 | \item wxWinHelpController, for controlling Windows Help. |
f6bcfd97 | 34 | \item wxCHMHelpController, for controlling MS HTML Help. To use this, you need to set wxUSE\_MS\_HTML\_HELP |
2049d9b5 | 35 | to 1 in setup.h and have htmlhelp.h header from Microsoft's HTML Help kit (you don't need |
fc2171bd | 36 | VC++ specific htmlhelp.lib because wxWidgets loads necessary DLL at runtime and so it |
2049d9b5 VS |
37 | works with all compilers). |
38 | \item wxBestHelpController, for controlling MS HTML Help or, if Microsoft's runtime is | |
39 | not available, \helpref{wxHtmlHelpController}{wxhtmlhelpcontroller}. You need to provide | |
40 | {\bf both} CHM and HTB versions of the help file. For 32bit Windows only. | |
6fb26ea3 | 41 | \item wxExtHelpController, for controlling external browsers under Unix. |
154f22b3 | 42 | The default browser is Netscape Navigator. The 'help' sample shows its use. |
9ceeecb9 | 43 | \item wxWinceHelpController, for controlling a simple {\tt .htm} help controller for Windows CE applications. |
2f3f4888 | 44 | \item \helpref{wxHtmlHelpController}{wxhtmlhelpcontroller}, a sophisticated help controller using \helpref{wxHTML}{wxhtml}, in |
fa482912 | 45 | a similar style to the Microsoft HTML Help viewer and using some of the same files. |
0d3a69ec | 46 | Although it has an API compatible with other help controllers, it has more advanced features, so it is |
a4000ca2 VS |
47 | recommended that you use the specific API for this class instead. Note that if you |
48 | use .zip or .htb formats for your books, you | |
2b5f62a0 | 49 | must add this line to your application initialization: {\tt wxFileSystem::AddHandler(new wxZipFSHandler);} |
15f43e76 | 50 | or nothing will be shown in your help window. |
6fb26ea3 | 51 | \end{itemize} |
a660d684 | 52 | |
954b8ae6 | 53 | \wxheading{Derived from} |
a660d684 | 54 | |
6fb26ea3 JS |
55 | wxHelpControllerBase\\ |
56 | \helpref{wxObject}{wxobject} | |
fe604ccd | 57 | |
954b8ae6 | 58 | \wxheading{Include files} |
a660d684 | 59 | |
fc2171bd | 60 | <wx/help.h> (wxWidgets chooses the appropriate help controller class)\\ |
dbdb39b2 JS |
61 | <wx/helpbase.h> (wxHelpControllerBase class)\\ |
62 | <wx/helpwin.h> (Windows Help controller)\\ | |
f6bcfd97 | 63 | <wx/msw/helpchm.h> (MS HTML Help controller)\\ |
0d3a69ec | 64 | <wx/generic/helpext.h> (external HTML browser controller)\\ |
2f3f4888 | 65 | <wx/html/helpctrl.h> (wxHTML based help controller: wxHtmlHelpController) |
a660d684 | 66 | |
154f22b3 JS |
67 | \wxheading{See also} |
68 | ||
69 | \helpref{wxHtmlHelpController}{wxhtmlhelpcontroller}, \helpref{wxHTML}{wxhtml} | |
70 | ||
a660d684 KB |
71 | \latexignore{\rtfignore{\wxheading{Members}}} |
72 | ||
f0e8a2d0 | 73 | \membersection{wxHelpController::wxHelpController}\label{wxhelpcontrollerctor} |
a660d684 | 74 | |
6fb26ea3 | 75 | \func{}{wxHelpController}{\void} |
a660d684 | 76 | |
fe604ccd | 77 | Constructs a help instance object, but does not invoke the help viewer. |
a660d684 | 78 | |
f0e8a2d0 | 79 | \membersection{wxHelpController::\destruct{wxHelpController}}\label{wxhelpcontrollerdtor} |
a660d684 | 80 | |
6fb26ea3 | 81 | \func{}{\destruct{wxHelpController}}{\void} |
a660d684 | 82 | |
fe604ccd | 83 | Destroys the help instance, closing down the viewer if it is running. |
a660d684 | 84 | |
6fb26ea3 | 85 | \membersection{wxHelpController::Initialize}\label{wxhelpcontrollerinitialize} |
a660d684 | 86 | |
fe604ccd JS |
87 | \func{virtual void}{Initialize}{\param{const wxString\& }{file}} |
88 | ||
89 | \func{virtual void}{Initialize}{\param{const wxString\& }{file}, \param{int}{ server}} | |
a660d684 | 90 | |
fa482912 JS |
91 | Initializes the help instance with a help filename, and optionally a server socket |
92 | number if using wxHelp (now obsolete). Does not invoke the help viewer. | |
a660d684 | 93 | This must be called directly after the help instance object is created and before |
fe604ccd JS |
94 | any attempts to communicate with the viewer. |
95 | ||
7b28757f JS |
96 | You may omit the file extension and a suitable one will be chosen. For |
97 | wxHtmlHelpController, the extensions zip, htb and hhp will be appended while searching for | |
2f3f4888 | 98 | a suitable file. For WinHelp, the hlp extension is appended. |
a660d684 | 99 | |
6fb26ea3 | 100 | \membersection{wxHelpController::DisplayBlock}\label{wxhelpcontrollerdisplayblock} |
a660d684 | 101 | |
fe604ccd | 102 | \func{virtual bool}{DisplayBlock}{\param{long}{ blockNo}} |
a660d684 | 103 | |
fe604ccd | 104 | If the help viewer is not running, runs it and displays the file at the given block number. |
33b64e6f | 105 | |
33b64e6f JS |
106 | {\it WinHelp:} Refers to the context number. |
107 | ||
f6bcfd97 BP |
108 | {\it MS HTML Help:} Refers to the context number. |
109 | ||
33b64e6f | 110 | {\it External HTML help:} the same as for \helpref{wxHelpController::DisplaySection}{wxhelpcontrollerdisplaysection}. |
a660d684 | 111 | |
7b28757f JS |
112 | {\it wxHtmlHelpController:} {\it sectionNo} is an identifier as specified in the {\tt .hhc} file. See \helpref{Help files format}{helpformat}. |
113 | ||
f6bcfd97 BP |
114 | This function is for backward compatibility only, and applications should use \helpref{wxHelpController}{wxhelpcontrollerdisplaysection} instead. |
115 | ||
6fb26ea3 | 116 | \membersection{wxHelpController::DisplayContents}\label{wxhelpcontrollerdisplaycontents} |
a660d684 | 117 | |
fe604ccd | 118 | \func{virtual bool}{DisplayContents}{\void} |
a660d684 | 119 | |
fe604ccd JS |
120 | If the help viewer is not running, runs it and displays the |
121 | contents. | |
a660d684 | 122 | |
7cb74906 JS |
123 | \membersection{wxHelpController::DisplayContextPopup}\label{wxhelpcontrollerdisplaycontextpopup} |
124 | ||
125 | \func{virtual bool}{DisplayContextPopup}{\param{int }{contextId}} | |
126 | ||
127 | Displays the section as a popup window using a context id. | |
128 | ||
cc81d32f | 129 | Returns false if unsuccessful or not implemented. |
7cb74906 | 130 | |
6fb26ea3 | 131 | \membersection{wxHelpController::DisplaySection}\label{wxhelpcontrollerdisplaysection} |
a660d684 | 132 | |
f6bcfd97 BP |
133 | \func{virtual bool}{DisplaySection}{\param{const wxString\&}{ section}} |
134 | ||
135 | If the help viewer is not running, runs it and displays the given section. | |
136 | ||
137 | The interpretation of {\it section} differs between help viewers. For most viewers, | |
feaca34f JS |
138 | this call is equivalent to KeywordSearch. For MS HTML Help, wxHTML help and external HTML help, |
139 | if {\it section} has a .htm | |
f6bcfd97 BP |
140 | or .html extension, that HTML file will be displayed; otherwise |
141 | a keyword search is done. | |
142 | ||
fe604ccd | 143 | \func{virtual bool}{DisplaySection}{\param{int}{ sectionNo}} |
a660d684 | 144 | |
fe604ccd | 145 | If the help viewer is not running, runs it and displays the given section. |
a660d684 | 146 | |
feaca34f | 147 | {\it WinHelp, MS HTML Help} {\it sectionNo} is a context id. |
a660d684 | 148 | |
feaca34f | 149 | {\it External HTML help:} wxExtHelpController implements {\it sectionNo} as an id in a map file, which is of the form: |
33b64e6f JS |
150 | |
151 | \begin{verbatim} | |
152 | 0 wx.html ; Index | |
153 | 1 wx34.html#classref ; Class reference | |
154 | 2 wx204.html ; Function reference | |
155 | \end{verbatim} | |
a660d684 | 156 | |
7b28757f JS |
157 | {\it wxHtmlHelpController:} {\it sectionNo} is an identifier as specified in the {\tt .hhc} file. See \helpref{Help files format}{helpformat}. |
158 | ||
f6bcfd97 BP |
159 | See also the help sample for notes on how to specify section numbers for various help file formats. |
160 | ||
7cb74906 JS |
161 | \membersection{wxHelpController::DisplayTextPopup}\label{wxhelpcontrollerdisplaytextpopup} |
162 | ||
163 | \func{virtual bool}{DisplayTextPopup}{\param{const wxString\&}{ text}, \param{const wxPoint\& }{pos}} | |
164 | ||
165 | Displays the text in a popup window, if possible. | |
166 | ||
cc81d32f | 167 | Returns false if unsuccessful or not implemented. |
7cb74906 | 168 | |
7b28757f JS |
169 | \membersection{wxHelpController::GetFrameParameters}\label{wxhelpcontrollergetframeparameters} |
170 | ||
171 | \func{virtual wxFrame *}{GetFrameParameters}{\param{const wxSize * }{size = NULL}, \param{const wxPoint * }{pos = NULL}, | |
172 | \param{bool *}{newFrameEachTime = NULL}} | |
173 | ||
2f3f4888 | 174 | wxHtmlHelpController returns the frame, size and position. |
7b28757f JS |
175 | |
176 | For all other help controllers, this function does nothing | |
177 | and just returns NULL. | |
178 | ||
179 | \wxheading{Parameters} | |
180 | ||
181 | \docparam{viewer}{This defaults to "netscape" for wxExtHelpController.} | |
182 | ||
183 | \docparam{flags}{This defaults to wxHELP\_NETSCAPE for wxExtHelpController, indicating | |
184 | that the viewer is a variant of Netscape Navigator.} | |
185 | ||
6fb26ea3 | 186 | \membersection{wxHelpController::KeywordSearch}\label{wxhelpcontrollerkeywordsearch} |
a660d684 | 187 | |
69b5cec2 | 188 | \func{virtual bool}{KeywordSearch}{\param{const wxString\& }{keyWord}, \param{wxHelpSearchMode }{mode = wxHELP\_SEARCH\_ALL}} |
fe604ccd | 189 | |
69b5cec2 VS |
190 | If the help viewer is not running, runs it, and searches for sections matching |
191 | the given keyword. If one match is found, the file is displayed at this | |
192 | section. The optional parameter allows the search the index | |
193 | (wxHELP\_SEARCH\_INDEX) but this currently only supported by the | |
194 | wxHtmlHelpController. | |
33b64e6f | 195 | |
f6bcfd97 | 196 | {\it WinHelp, MS HTML Help:} If more than one match is found, |
33b64e6f JS |
197 | the first topic is displayed. |
198 | ||
f6bcfd97 | 199 | {\it External HTML help, simple wxHTML help:} If more than one match is found, |
33b64e6f | 200 | a choice of topics is displayed. |
a660d684 | 201 | |
7b28757f JS |
202 | {\it wxHtmlHelpController:} see \helpref{wxHtmlHelpController::KeywordSearch}{wxhtmlhelpcontrollerkeywordsearch}. |
203 | ||
6fb26ea3 | 204 | \membersection{wxHelpController::LoadFile}\label{wxhelpcontrollerloadfile} |
a660d684 | 205 | |
33b64e6f | 206 | \func{virtual bool}{LoadFile}{\param{const wxString\& }{file = ""}} |
a660d684 | 207 | |
fe604ccd JS |
208 | If the help viewer is not running, runs it and loads the given file. |
209 | If the filename is not supplied or is | |
7b28757f | 210 | empty, the file specified in {\bf Initialize} is used. If the viewer is |
a660d684 KB |
211 | already displaying the specified file, it will not be reloaded. This |
212 | member function may be used before each display call in case the user | |
213 | has opened another file. | |
214 | ||
7b28757f | 215 | wxHtmlHelpController ignores this call. |
33b64e6f | 216 | |
7b28757f | 217 | \membersection{wxHelpController::OnQuit}\label{wxhelpcontrolleronquit} |
33b64e6f | 218 | |
7b28757f JS |
219 | \func{virtual bool}{OnQuit}{\void} |
220 | ||
221 | Overridable member called when this application's viewer is quit by the user. | |
222 | ||
223 | This does not work for all help controllers. | |
33b64e6f | 224 | |
db8db70a | 225 | \membersection{wxHelpController::SetFrameParameters}\label{wxhelpcontrollersetframeparameters} |
7b28757f JS |
226 | |
227 | \func{virtual void}{SetFrameParameters}{\param{const wxString \& }{title}, | |
db8db70a | 228 | \param{const wxSize \& }{size}, \param{const wxPoint \& }{pos = wxDefaultPosition}, |
cc81d32f | 229 | \param{bool }{newFrameEachTime = false}} |
db8db70a | 230 | |
7b28757f JS |
231 | For wxHtmlHelpController, the title is set (again with \%s indicating the |
232 | page title) and also the size and position of the frame if the frame is already | |
233 | open. {\it newFrameEachTime} is ignored. | |
db8db70a | 234 | |
7b28757f | 235 | For all other help controllers this function has no effect. |
33b64e6f | 236 | |
7b28757f | 237 | \membersection{wxHelpController::SetViewer}\label{wxhelpcontrollersetviewer} |
33b64e6f | 238 | |
7b28757f | 239 | \func{virtual void}{SetViewer}{\param{const wxString\& }{viewer}, \param{long}{ flags}} |
fe604ccd | 240 | |
7b28757f | 241 | Sets detailed viewer information. So far this is only relevant to wxExtHelpController. |
a660d684 | 242 | |
7b28757f | 243 | Some examples of usage: |
a660d684 | 244 | |
7b28757f JS |
245 | \begin{verbatim} |
246 | m_help.SetViewer("kdehelp"); | |
247 | m_help.SetViewer("gnome-help-browser"); | |
248 | m_help.SetViewer("netscape", wxHELP_NETSCAPE); | |
249 | \end{verbatim} | |
a660d684 | 250 | |
6fb26ea3 | 251 | \membersection{wxHelpController::Quit}\label{wxhelpcontrollerquit} |
a660d684 | 252 | |
fe604ccd | 253 | \func{virtual bool}{Quit}{\void} |
a660d684 | 254 | |
fe604ccd | 255 | If the viewer is running, quits it by disconnecting. |
a660d684 | 256 | |
fe604ccd | 257 | For Windows Help, the viewer will only close if no other application is using it. |
a660d684 | 258 |