]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/helpinst.tex
added wxLongLong::ToString()
[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
21\item On Windows, wxWinHelpController is used.
22\item On all other platforms, wxHelpControllerHtml is used if wxHTML is
23compiled into wxWindows; otherwise wxExtHelpController is used (for invoking an external
24browser).
25\end{itemize}
26
27The remaining help controller classess need to be named
28explicitly by an application that wishes to make use of them.
a660d684 29
6fb26ea3 30There 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
7a4f484f 35to 1 in setup.h, and link your application with Microsoft's htmlhelp.lib. Currently VC++ only.
6fb26ea3 36\item wxExtHelpController, for controlling external browsers under Unix.
154f22b3 37The default browser is Netscape Navigator. The 'help' sample shows its use.
fa482912 38\item wxHelpControllerHtml, using \helpref{wxHTML}{wxhtml} to display help. See {\tt wx/helpwxht.h} for
154f22b3
JS
39details of use.
40\item \helpref{wxHtmlHelpController}{wxhtmlhelpcontroller}, a more sophisticated help controller using \helpref{wxHTML}{wxhtml}, in
fa482912 41a similar style to the Microsoft HTML Help viewer and using some of the same files.
0d3a69ec
JS
42Although it has an API compatible with other help controllers, it has more advanced features, so it is
43recommended that you use the specific API for this class instead.
6fb26ea3 44\end{itemize}
a660d684 45
954b8ae6 46\wxheading{Derived from}
a660d684 47
6fb26ea3
JS
48wxHelpControllerBase\\
49\helpref{wxObject}{wxobject}
fe604ccd 50
954b8ae6 51\wxheading{Include files}
a660d684 52
dbdb39b2
JS
53<wx/help.h> (wxWindows chooses the appropriate help controller class)\\
54<wx/helpbase.h> (wxHelpControllerBase class)\\
55<wx/helpwin.h> (Windows Help controller)\\
f6bcfd97 56<wx/msw/helpchm.h> (MS HTML Help controller)\\
0d3a69ec
JS
57<wx/generic/helpext.h> (external HTML browser controller)\\
58<wx/generic/helpwxht.h> (simple wxHTML-based help controller)\\
59<wx/html/helpctrl.h> (advanced wxHTML based help controller: wxHtmlHelpController)
a660d684 60
154f22b3
JS
61\wxheading{See also}
62
63\helpref{wxHtmlHelpController}{wxhtmlhelpcontroller}, \helpref{wxHTML}{wxhtml}
64
a660d684
KB
65\latexignore{\rtfignore{\wxheading{Members}}}
66
6fb26ea3 67\membersection{wxHelpController::wxHelpController}
a660d684 68
6fb26ea3 69\func{}{wxHelpController}{\void}
a660d684 70
fe604ccd 71Constructs a help instance object, but does not invoke the help viewer.
a660d684 72
6fb26ea3 73\membersection{wxHelpController::\destruct{wxHelpController}}
a660d684 74
6fb26ea3 75\func{}{\destruct{wxHelpController}}{\void}
a660d684 76
fe604ccd 77Destroys the help instance, closing down the viewer if it is running.
a660d684 78
6fb26ea3 79\membersection{wxHelpController::Initialize}\label{wxhelpcontrollerinitialize}
a660d684 80
fe604ccd
JS
81\func{virtual void}{Initialize}{\param{const wxString\& }{file}}
82
83\func{virtual void}{Initialize}{\param{const wxString\& }{file}, \param{int}{ server}}
a660d684 84
fa482912
JS
85Initializes the help instance with a help filename, and optionally a server socket
86number if using wxHelp (now obsolete). Does not invoke the help viewer.
a660d684 87This must be called directly after the help instance object is created and before
fe604ccd
JS
88any attempts to communicate with the viewer.
89
7b28757f
JS
90You may omit the file extension and a suitable one will be chosen. For
91wxHtmlHelpController, the extensions zip, htb and hhp will be appended while searching for
92a suitable file. For WinHelp, the hlp extension is appended. For wxHelpControllerHtml (the
93standard HTML help controller), the filename is assumed to be a directory containing
94the HTML files.
a660d684 95
6fb26ea3 96\membersection{wxHelpController::DisplayBlock}\label{wxhelpcontrollerdisplayblock}
a660d684 97
fe604ccd 98\func{virtual bool}{DisplayBlock}{\param{long}{ blockNo}}
a660d684 99
fe604ccd 100If the help viewer is not running, runs it and displays the file at the given block number.
33b64e6f 101
33b64e6f
JS
102{\it WinHelp:} Refers to the context number.
103
f6bcfd97
BP
104{\it MS HTML Help:} Refers to the context number.
105
33b64e6f 106{\it External HTML help:} the same as for \helpref{wxHelpController::DisplaySection}{wxhelpcontrollerdisplaysection}.
a660d684 107
7b28757f
JS
108{\it wxHtmlHelpController:} {\it sectionNo} is an identifier as specified in the {\tt .hhc} file. See \helpref{Help files format}{helpformat}.
109
f6bcfd97
BP
110This function is for backward compatibility only, and applications should use \helpref{wxHelpController}{wxhelpcontrollerdisplaysection} instead.
111
6fb26ea3 112\membersection{wxHelpController::DisplayContents}\label{wxhelpcontrollerdisplaycontents}
a660d684 113
fe604ccd 114\func{virtual bool}{DisplayContents}{\void}
a660d684 115
fe604ccd
JS
116If the help viewer is not running, runs it and displays the
117contents.
a660d684 118
7cb74906
JS
119\membersection{wxHelpController::DisplayContextPopup}\label{wxhelpcontrollerdisplaycontextpopup}
120
121\func{virtual bool}{DisplayContextPopup}{\param{int }{contextId}}
122
123Displays the section as a popup window using a context id.
124
125Returns FALSE if unsuccessful or not implemented.
126
6fb26ea3 127\membersection{wxHelpController::DisplaySection}\label{wxhelpcontrollerdisplaysection}
a660d684 128
f6bcfd97
BP
129\func{virtual bool}{DisplaySection}{\param{const wxString\&}{ section}}
130
131If the help viewer is not running, runs it and displays the given section.
132
133The interpretation of {\it section} differs between help viewers. For most viewers,
134this call is equivalent to KeywordSearch. For MS HTML Help, external HTML help
135and simple wxHTML help, if {\it section} has a .htm
136or .html extension, that HTML file will be displayed; otherwise
137a keyword search is done.
138
fe604ccd 139\func{virtual bool}{DisplaySection}{\param{int}{ sectionNo}}
a660d684 140
fe604ccd 141If the help viewer is not running, runs it and displays the given section.
a660d684 142
f6bcfd97 143{\it WinHelp, MS HTML Help:} {\it sectionNo} is a context id.
a660d684 144
f6bcfd97 145{\it External HTML help/simple wxHTML help:} wxExtHelpController and wxHelpControllerHtml implement {\it sectionNo} as an id in a map file, which is of the form:
33b64e6f
JS
146
147\begin{verbatim}
1480 wx.html ; Index
1491 wx34.html#classref ; Class reference
1502 wx204.html ; Function reference
151\end{verbatim}
a660d684 152
7b28757f
JS
153{\it wxHtmlHelpController:} {\it sectionNo} is an identifier as specified in the {\tt .hhc} file. See \helpref{Help files format}{helpformat}.
154
f6bcfd97
BP
155See also the help sample for notes on how to specify section numbers for various help file formats.
156
7cb74906
JS
157\membersection{wxHelpController::DisplayTextPopup}\label{wxhelpcontrollerdisplaytextpopup}
158
159\func{virtual bool}{DisplayTextPopup}{\param{const wxString\&}{ text}, \param{const wxPoint\& }{pos}}
160
161Displays the text in a popup window, if possible.
162
163Returns FALSE if unsuccessful or not implemented.
164
7b28757f
JS
165\membersection{wxHelpController::GetFrameParameters}\label{wxhelpcontrollergetframeparameters}
166
167\func{virtual wxFrame *}{GetFrameParameters}{\param{const wxSize * }{size = NULL}, \param{const wxPoint * }{pos = NULL},
168 \param{bool *}{newFrameEachTime = NULL}}
169
170This reads the current settings for the help frame in the case of the
171wxHelpControllerHtml, setting the frame size, position and
172the newFrameEachTime parameters to the last values used. It also
173returns the pointer to the last opened help frame. This can be used
174for example, to automatically close the help frame on program
175shutdown.
176
177wxHtmlHelpController returns the frame,
178size and position.
179
180For all other help controllers, this function does nothing
181and just returns NULL.
182
183\wxheading{Parameters}
184
185\docparam{viewer}{This defaults to "netscape" for wxExtHelpController.}
186
187\docparam{flags}{This defaults to wxHELP\_NETSCAPE for wxExtHelpController, indicating
188that the viewer is a variant of Netscape Navigator.}
189
6fb26ea3 190\membersection{wxHelpController::KeywordSearch}\label{wxhelpcontrollerkeywordsearch}
a660d684 191
fe604ccd
JS
192\func{virtual bool}{KeywordSearch}{\param{const wxString\& }{keyWord}}
193
194If the help viewer is not running, runs it, and searches for sections matching the given keyword. If one
33b64e6f
JS
195match is found, the file is displayed at this section.
196
f6bcfd97 197{\it WinHelp, MS HTML Help:} If more than one match is found,
33b64e6f
JS
198the first topic is displayed.
199
f6bcfd97 200{\it External HTML help, simple wxHTML help:} If more than one match is found,
33b64e6f 201a choice of topics is displayed.
a660d684 202
7b28757f
JS
203{\it wxHtmlHelpController:} see \helpref{wxHtmlHelpController::KeywordSearch}{wxhtmlhelpcontrollerkeywordsearch}.
204
6fb26ea3 205\membersection{wxHelpController::LoadFile}\label{wxhelpcontrollerloadfile}
a660d684 206
33b64e6f 207\func{virtual bool}{LoadFile}{\param{const wxString\& }{file = ""}}
a660d684 208
fe604ccd
JS
209If the help viewer is not running, runs it and loads the given file.
210If the filename is not supplied or is
7b28757f 211empty, the file specified in {\bf Initialize} is used. If the viewer is
a660d684
KB
212already displaying the specified file, it will not be reloaded. This
213member function may be used before each display call in case the user
214has opened another file.
215
7b28757f 216wxHtmlHelpController ignores this call.
33b64e6f 217
7b28757f 218\membersection{wxHelpController::OnQuit}\label{wxhelpcontrolleronquit}
33b64e6f 219
7b28757f
JS
220\func{virtual bool}{OnQuit}{\void}
221
222Overridable member called when this application's viewer is quit by the user.
223
224This does not work for all help controllers.
33b64e6f 225
db8db70a 226\membersection{wxHelpController::SetFrameParameters}\label{wxhelpcontrollersetframeparameters}
7b28757f
JS
227
228\func{virtual void}{SetFrameParameters}{\param{const wxString \& }{title},
db8db70a
KB
229 \param{const wxSize \& }{size}, \param{const wxPoint \& }{pos = wxDefaultPosition},
230 \param{bool }{newFrameEachTime = FALSE}}
231
7b28757f 232For wxHelpControllerHtml, this allows the application to set the
db8db70a
KB
233default frame title, size and position for the frame. If the title
234contains \%s, this will be replaced with the page title. If the
7b28757f
JS
235parameter newFrameEachTime is set, the controller will open a new
236help frame each time it is called.
db8db70a 237
7b28757f
JS
238For wxHtmlHelpController, the title is set (again with \%s indicating the
239page title) and also the size and position of the frame if the frame is already
240open. {\it newFrameEachTime} is ignored.
db8db70a 241
7b28757f 242For all other help controllers this function has no effect.
33b64e6f 243
7b28757f 244\membersection{wxHelpController::SetViewer}\label{wxhelpcontrollersetviewer}
33b64e6f 245
7b28757f 246\func{virtual void}{SetViewer}{\param{const wxString\& }{viewer}, \param{long}{ flags}}
fe604ccd 247
7b28757f 248Sets detailed viewer information. So far this is only relevant to wxExtHelpController.
a660d684 249
7b28757f 250Some examples of usage:
a660d684 251
7b28757f
JS
252\begin{verbatim}
253 m_help.SetViewer("kdehelp");
254 m_help.SetViewer("gnome-help-browser");
255 m_help.SetViewer("netscape", wxHELP_NETSCAPE);
256\end{verbatim}
a660d684 257
6fb26ea3 258\membersection{wxHelpController::Quit}\label{wxhelpcontrollerquit}
a660d684 259
fe604ccd 260\func{virtual bool}{Quit}{\void}
a660d684 261
fe604ccd 262If the viewer is running, quits it by disconnecting.
a660d684 263
fe604ccd 264For Windows Help, the viewer will only close if no other application is using it.
a660d684 265