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