]>
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 | ||
9704b250 VS |
13 | \helpref{wxModule}{wxmodule} |
14 | ||
15 | \wxheading{Include files} | |
16 | ||
17 | <wx/html/winpars.h> | |
704a4b75 | 18 | |
a7af285d VZ |
19 | \wxheading{Library} |
20 | ||
21 | \helpref{wxHtml}{librarieslist} | |
22 | ||
704a4b75 VS |
23 | \wxheading{See Also} |
24 | ||
25 | \helpref{Tag Handlers}{handlers}, | |
26 | \helpref{wxHtmlTagHandler}{wxhtmltaghandler}, | |
27 | \helpref{wxHtmlWinTagHandler}{wxhtmlwintaghandler}, | |
28 | ||
704a4b75 VS |
29 | \latexignore{\rtfignore{\wxheading{Members}}} |
30 | ||
704a4b75 VS |
31 | \membersection{wxHtmlTagsModule::FillHandlersTable}\label{wxhtmltagsmodulefillhandlerstable} |
32 | ||
33 | \func{virtual void}{FillHandlersTable}{\param{wxHtmlWinParser }{*parser}} | |
34 | ||
2edb0bde VZ |
35 | You must override this method. In most common case its body consists |
36 | only of lines of the following type: | |
704a4b75 VS |
37 | |
38 | \begin{verbatim} | |
39 | parser -> AddTagHandler(new MyHandler); | |
40 | \end{verbatim} | |
41 | ||
2edb0bde | 42 | I recommend using the {\bf TAGS\_MODULE\_*} macros. |
704a4b75 VS |
43 | |
44 | \wxheading{Paremeters} | |
45 | ||
46 | \docparam{parser}{Pointer to the parser that requested tables filling.} | |
22d6efa8 | 47 |