]>
Commit | Line | Data |
---|---|---|
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 | ||
7 | This class provides easy way of filling wxHtmlWinParser's table of | |
2edb0bde | 8 | tag 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 |
36 | You must override this method. In most common case its body consists |
37 | only of lines of the following type: | |
704a4b75 VS |
38 | |
39 | \begin{verbatim} | |
40 | parser -> AddTagHandler(new MyHandler); | |
41 | \end{verbatim} | |
42 | ||
2edb0bde | 43 | I 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 |