]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/httagmod.tex
added vendor display name (for consistency with app display name &c) (patch 1831303)
[wxWidgets.git] / docs / latex / wx / httagmod.tex
CommitLineData
704a4b75
VS
1%
2% automatically generated by HelpGen from
3% htmltagsmodule.tex at 14/Mar/99 20:13:37
704a4b75
VS
4
5\section{\class{wxHtmlTagsModule}}\label{wxhtmltagsmodule}
6
7This class provides easy way of filling wxHtmlWinParser's table of
2edb0bde 8tag handlers. It is used almost exclusively together with the set of
704a4b75
VS
9\helpref{TAGS\_MODULE\_* macros}{handlers}
10
11\wxheading{Derived from}
12
7376079d
VZ
13\helpref{wxModule}{wxmodule}\\
14\helpref{wxObject}{wxobject}
9704b250
VS
15
16\wxheading{Include files}
17
18<wx/html/winpars.h>
704a4b75 19
a7af285d
VZ
20\wxheading{Library}
21
22\helpref{wxHtml}{librarieslist}
23
704a4b75
VS
24\wxheading{See Also}
25
26\helpref{Tag Handlers}{handlers},
27\helpref{wxHtmlTagHandler}{wxhtmltaghandler},
28\helpref{wxHtmlWinTagHandler}{wxhtmlwintaghandler},
29
704a4b75
VS
30\latexignore{\rtfignore{\wxheading{Members}}}
31
704a4b75
VS
32\membersection{wxHtmlTagsModule::FillHandlersTable}\label{wxhtmltagsmodulefillhandlerstable}
33
34\func{virtual void}{FillHandlersTable}{\param{wxHtmlWinParser }{*parser}}
35
2edb0bde
VZ
36You must override this method. In most common case its body consists
37only of lines of the following type:
704a4b75
VS
38
39\begin{verbatim}
40parser -> AddTagHandler(new MyHandler);
41\end{verbatim}
42
2edb0bde 43I recommend using the {\bf TAGS\_MODULE\_*} macros.
704a4b75
VS
44
45\wxheading{Paremeters}
46
47\docparam{parser}{Pointer to the parser that requested tables filling.}
22d6efa8 48