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