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