]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/httagmod.tex
added wxLongLong::ToString()
[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
8tag handlers. It is used almost exclusively together with set of
9\helpref{TAGS\_MODULE\_* macros}{handlers}
10
11\wxheading{Derived from}
12
9704b250
VS
13\helpref{wxModule}{wxmodule}
14
15\wxheading{Include files}
16
17<wx/html/winpars.h>
704a4b75
VS
18
19\wxheading{See Also}
20
21\helpref{Tag Handlers}{handlers},
22\helpref{wxHtmlTagHandler}{wxhtmltaghandler},
23\helpref{wxHtmlWinTagHandler}{wxhtmlwintaghandler},
24
704a4b75
VS
25\latexignore{\rtfignore{\wxheading{Members}}}
26
704a4b75
VS
27\membersection{wxHtmlTagsModule::FillHandlersTable}\label{wxhtmltagsmodulefillhandlerstable}
28
29\func{virtual void}{FillHandlersTable}{\param{wxHtmlWinParser }{*parser}}
30
f6bcfd97 31You must override this method. In most common case it is body consists
704a4b75
VS
32only of lines of following type:
33
34\begin{verbatim}
35parser -> AddTagHandler(new MyHandler);
36\end{verbatim}
37
38I recommend using {\bf TAGS\_MODULE\_*} macros.
39
40\wxheading{Paremeters}
41
42\docparam{parser}{Pointer to the parser that requested tables filling.}
22d6efa8 43