]>
Commit | Line | Data |
---|---|---|
704a4b75 VS |
1 | % |
2 | % automatically generated by HelpGen from | |
3 | % htmltagsmodule.tex at 14/Mar/99 20:13:37 | |
4 | % | |
5 | ||
6 | ||
7 | \section{\class{wxHtmlTagsModule}}\label{wxhtmltagsmodule} | |
8 | ||
9 | This class provides easy way of filling wxHtmlWinParser's table of | |
10 | tag handlers. It is used almost exclusively together with set of | |
11 | \helpref{TAGS\_MODULE\_* macros}{handlers} | |
12 | ||
13 | \wxheading{Derived from} | |
14 | ||
15 | wxModule | |
16 | ||
17 | \wxheading{See Also} | |
18 | ||
19 | \helpref{Tag Handlers}{handlers}, | |
20 | \helpref{wxHtmlTagHandler}{wxhtmltaghandler}, | |
21 | \helpref{wxHtmlWinTagHandler}{wxhtmlwintaghandler}, | |
22 | ||
23 | ||
24 | \latexignore{\rtfignore{\wxheading{Members}}} | |
25 | ||
26 | ||
27 | \membersection{wxHtmlTagsModule::FillHandlersTable}\label{wxhtmltagsmodulefillhandlerstable} | |
28 | ||
29 | \func{virtual void}{FillHandlersTable}{\param{wxHtmlWinParser }{*parser}} | |
30 | ||
31 | You must override this method. In most common case it's body consists | |
32 | only of lines of following type: | |
33 | ||
34 | \begin{verbatim} | |
35 | parser -> AddTagHandler(new MyHandler); | |
36 | \end{verbatim} | |
37 | ||
38 | I recommend using {\bf TAGS\_MODULE\_*} macros. | |
39 | ||
40 | \wxheading{Paremeters} | |
41 | ||
42 | \docparam{parser}{Pointer to the parser that requested tables filling.} |