]>
Commit | Line | Data |
---|---|---|
704a4b75 VS |
1 | % |
2 | % automatically generated by HelpGen from | |
3 | % htmlparser.tex at 14/Mar/99 20:13:37 | |
4 | % | |
5 | ||
704a4b75 VS |
6 | \section{\class{wxHtmlParser}}\label{wxhtmlparser} |
7 | ||
22d6efa8 | 8 | This class handles the {\bf generic} parsing of HTML document: it scans |
704a4b75 | 9 | the document and divide it into blocks of tags (where one block |
2edb0bde | 10 | consists of beginning and ending tag and of text between these |
22d6efa8 | 11 | two tags). |
704a4b75 VS |
12 | |
13 | It is independent from wxHtmlWindow and can be used as stand-alone parser | |
14 | (Julian Smart's idea of speech-only HTML viewer or wget-like utility - | |
3660fc40 | 15 | see InetGet sample for example). |
704a4b75 VS |
16 | |
17 | It uses system of tag handlers to parse the HTML document. Tag handlers | |
2edb0bde | 18 | are not statically shared by all instances but are created for each |
704a4b75 VS |
19 | wxHtmlParser instance. The reason is that the handler may contain |
20 | document-specific temporary data used during parsing (e.g. complicated | |
22d6efa8 | 21 | structures like tables). |
704a4b75 | 22 | |
22d6efa8 | 23 | Typically the user calls only the \helpref{Parse}{wxhtmlparserparse} method. |
704a4b75 VS |
24 | |
25 | \wxheading{Derived from} | |
26 | ||
27 | wxObject | |
28 | ||
9704b250 VS |
29 | \wxheading{Include files} |
30 | ||
31 | <wx/html/htmlpars.h> | |
32 | ||
704a4b75 VS |
33 | \wxheading{See also} |
34 | ||
35 | \helpref{Cells Overview}{cells}, | |
36 | \helpref{Tag Handlers Overview}{handlers}, | |
37 | \helpref{wxHtmlTag}{wxhtmltag} | |
38 | ||
39 | \latexignore{\rtfignore{\wxheading{Members}}} | |
40 | ||
704a4b75 VS |
41 | \membersection{wxHtmlParser::wxHtmlParser}\label{wxhtmlparserwxhtmlparser} |
42 | ||
43 | \func{}{wxHtmlParser}{\void} | |
44 | ||
3660fc40 | 45 | Constructor. |
704a4b75 | 46 | |
559fe022 | 47 | \membersection{wxHtmlParser::AddTag}\label{wxhtmlparseraddtag} |
704a4b75 | 48 | |
559fe022 | 49 | \func{void}{AddTag}{\param{const wxHtmlTag\& }{tag}} |
704a4b75 | 50 | |
2edb0bde | 51 | This may (and may not) be overwritten in derived class. |
704a4b75 | 52 | |
559fe022 VS |
53 | This method is called each time new tag is about to be added. |
54 | {\it tag} contains information about the tag. (See \helpref{wxHtmlTag}{wxhtmltag} | |
55 | for details.) | |
704a4b75 | 56 | |
559fe022 VS |
57 | Default (wxHtmlParser) behaviour is this: |
58 | First it finds a handler capable of handling this tag and then it calls | |
59 | handler's HandleTag method. | |
704a4b75 | 60 | |
559fe022 | 61 | \membersection{wxHtmlParser::AddTagHandler}\label{wxhtmlparseraddtaghandler} |
704a4b75 | 62 | |
559fe022 | 63 | \func{virtual void}{AddTagHandler}{\param{wxHtmlTagHandler }{*handler}} |
704a4b75 | 64 | |
559fe022 VS |
65 | Adds handler to the internal list (\& hash table) of handlers. This |
66 | method should not be called directly by user but rather by derived class' | |
67 | constructor. | |
704a4b75 | 68 | |
559fe022 VS |
69 | This adds the handler to this {\bf instance} of wxHtmlParser, not to |
70 | all objects of this class! (Static front-end to AddTagHandler is provided | |
71 | by wxHtmlWinParser). | |
704a4b75 | 72 | |
559fe022 | 73 | All handlers are deleted on object deletion. |
704a4b75 | 74 | |
559fe022 | 75 | \membersection{wxHtmlParser::AddText}\label{wxhtmlparseraddword} |
704a4b75 | 76 | |
559fe022 | 77 | \func{virtual void}{AddWord}{\param{const char* }{txt}} |
704a4b75 | 78 | |
2edb0bde | 79 | Must be overwritten in derived class. |
704a4b75 | 80 | |
559fe022 VS |
81 | This method is called by \helpref{DoParsing}{wxhtmlparserdoparsing} |
82 | each time a part of text is parsed. {\it txt} is NOT only one word, it is | |
83 | substring of input. It is not formatted or preprocessed (so white spaces are | |
84 | unmodified). | |
704a4b75 | 85 | |
559fe022 | 86 | \membersection{wxHtmlParser::DoParsing}\label{wxhtmlparserdoparsing} |
704a4b75 | 87 | |
559fe022 VS |
88 | \func{void}{DoParsing}{\param{int }{begin\_pos}, \param{int }{end\_pos}} |
89 | ||
90 | \func{void}{DoParsing}{\void} | |
91 | ||
92 | Parses the m\_Source from begin\_pos to end\_pos-1. | |
93 | (in noparams version it parses whole m\_Source) | |
704a4b75 | 94 | |
704a4b75 VS |
95 | \membersection{wxHtmlParser::DoneParser}\label{wxhtmlparserdoneparser} |
96 | ||
97 | \func{virtual void}{DoneParser}{\void} | |
98 | ||
99 | This must be called after DoParsing(). | |
100 | ||
559fe022 | 101 | \membersection{wxHtmlParser::GetFS}\label{wxhtmlparsergetfs} |
704a4b75 | 102 | |
559fe022 | 103 | \constfunc{wxFileSystem*}{GetFS}{\void} |
704a4b75 | 104 | |
559fe022 | 105 | Returns pointer to the file system. Because each tag handler has |
f6bcfd97 | 106 | reference to it is parent parser it can easily request the file by |
559fe022 | 107 | calling |
704a4b75 | 108 | |
559fe022 VS |
109 | \begin{verbatim} |
110 | wxFSFile *f = m_Parser -> GetFS() -> OpenFile("image.jpg"); | |
111 | \end{verbatim} | |
704a4b75 VS |
112 | |
113 | \membersection{wxHtmlParser::GetProduct}\label{wxhtmlparsergetproduct} | |
114 | ||
115 | \func{virtual wxObject*}{GetProduct}{\void} | |
116 | ||
3660fc40 RD |
117 | Returns product of parsing. Returned value is result of parsing |
118 | of the document. The type of this result depends on internal | |
704a4b75 VS |
119 | representation in derived parser (but it must be derived from wxObject!). |
120 | ||
121 | See wxHtmlWinParser for details. | |
122 | ||
704a4b75 VS |
123 | \membersection{wxHtmlParser::GetSource}\label{wxhtmlparsergetsource} |
124 | ||
125 | \func{wxString*}{GetSource}{\void} | |
126 | ||
127 | Returns pointer to the source being parsed. | |
128 | ||
704a4b75 | 129 | |
559fe022 | 130 | \membersection{wxHtmlParser::InitParser}\label{wxhtmlparserinitparser} |
704a4b75 | 131 | |
559fe022 | 132 | \func{virtual void}{InitParser}{\param{const wxString\& }{source}} |
704a4b75 | 133 | |
f6bcfd97 | 134 | Setups the parser for parsing the {\it source} string. (Should be overridden |
559fe022 | 135 | in derived class) |
704a4b75 | 136 | |
6cc4e6b8 VS |
137 | \membersection{wxHtmlParser::OpenURL}\label{wxhtmlparseropenurl} |
138 | ||
139 | \func{virtual wxFSFile*}{OpenURL}{\param{wxHtmlURLType }{type}, \param{const wxString\& }{url}} | |
140 | ||
141 | Opens given URL and returns {\tt wxFSFile} object that can be used to read data | |
142 | from it. This method may return NULL in one of two cases: either the URL doesn't | |
2edb0bde | 143 | point to any valid resource or the URL is blocked by overridden implementation |
6cc4e6b8 VS |
144 | of {\it OpenURL} in derived class. |
145 | ||
146 | \wxheading{Parameters} | |
147 | ||
148 | \docparam{type}{Indicates type of the resource. Is one of | |
149 | \begin{twocollist}\itemsep=0pt | |
150 | \twocolitem{{\bf wxHTML\_URL\_PAGE}}{Opening a HTML page.} | |
151 | \twocolitem{{\bf wxHTML\_URL\_IMAGE}}{Opening an image.} | |
152 | \twocolitem{{\bf wxHTML\_URL\_OTHER}}{Opening a resource that doesn't fall into | |
153 | any other category.} | |
154 | \end{twocollist}} | |
155 | ||
156 | \docparam{url}{URL being opened.} | |
157 | ||
158 | \wxheading{Notes} | |
159 | ||
160 | Always use this method in tag handlers instead of {\tt GetFS()->OpenFile()} | |
161 | because it can block the URL and is thus more secure. | |
162 | ||
163 | Default behaviour is to call \helpref{wxHtmlWindow::OnOpeningURL}{wxhtmlwindowonopeningurl} | |
164 | of the associated wxHtmlWindow object (which may decide to block the URL or | |
165 | redirect it to another one),if there's any, and always open the URL if the | |
166 | parser is not used with wxHtmlWindow. | |
167 | ||
168 | Returned {\tt wxFSFile} object is not guaranteed to point to {\it url}, it might | |
169 | have been redirected! | |
170 | ||
559fe022 | 171 | \membersection{wxHtmlParser::Parse}\label{wxhtmlparserparse} |
704a4b75 | 172 | |
559fe022 | 173 | \func{wxObject*}{Parse}{\param{const wxString\& }{source}} |
704a4b75 | 174 | |
559fe022 VS |
175 | Proceeds parsing of the document. This is end-user method. You can simply |
176 | call it when you need to obtain parsed output (which is parser-specific) | |
704a4b75 | 177 | |
559fe022 | 178 | The method does these things: |
704a4b75 | 179 | |
448af9a4 | 180 | \begin{enumerate}\itemsep=0pt |
559fe022 VS |
181 | \item calls \helpref{InitParser(source)}{wxhtmlparserinitparser} |
182 | \item calls \helpref{DoParsing}{wxhtmlparserdoparsing} | |
183 | \item calls \helpref{GetProduct}{wxhtmlparsergetproduct} | |
184 | \item calls \helpref{DoneParser}{wxhtmlparserdoneparser} | |
185 | \item returns value returned by GetProduct | |
186 | \end{enumerate} | |
704a4b75 | 187 | |
559fe022 VS |
188 | You shouldn't use InitParser, DoParsing, GetProduct or DoneParser directly. |
189 | ||
0eb8c938 VS |
190 | |
191 | ||
192 | \membersection{wxHtmlParser::PushTagHandler}\label{wxhtmlparserpushtaghandler} | |
193 | ||
194 | \func{void}{PushTagHandler}{\param{wxHtmlTagHandler* }{handler}, \param{wxString }{tags}} | |
195 | ||
196 | Forces the handler to handle additional tags | |
197 | (not returned by \helpref{GetSupportedTags}{wxhtmltaghandlergetsupportedtags}). | |
198 | The handler should already be added to this parser. | |
199 | ||
200 | \wxheading{Parameters} | |
201 | ||
202 | \docparam{handler}{the handler} | |
203 | \docparam{tags}{List of tags (in same format as GetSupportedTags's return value). The parser | |
204 | will redirect these tags to {\it handler} (until call to \helpref{PopTagHandler}{wxhtmlparserpoptaghandler}). } | |
205 | ||
206 | \wxheading{Example} | |
207 | ||
208 | Imagine you want to parse following pseudo-html structure: | |
209 | ||
210 | \begin{verbatim} | |
211 | <myitems> | |
212 | <param name="one" value="1"> | |
213 | <param name="two" value="2"> | |
214 | </myitems> | |
215 | ||
216 | <execute> | |
217 | <param program="text.exe"> | |
218 | </execute> | |
219 | \end{verbatim} | |
220 | ||
221 | It is obvious that you cannot use only one tag handler for <param> tag. | |
222 | Instead you must use context-sensitive handlers for <param> inside <myitems> | |
223 | and <param> inside <execute>. | |
224 | ||
f6bcfd97 | 225 | This is the preferred solution: |
0eb8c938 VS |
226 | |
227 | \begin{verbatim} | |
228 | TAG_HANDLER_BEGIN(MYITEM, "MYITEMS") | |
229 | TAG_HANDLER_PROC(tag) | |
230 | { | |
231 | // ...something... | |
232 | ||
233 | m_Parser -> PushTagHandler(this, "PARAM"); | |
234 | ParseInner(tag); | |
235 | m_Parser -> PopTagHandler(); | |
236 | ||
237 | // ...something... | |
238 | } | |
239 | TAG_HANDLER_END(MYITEM) | |
240 | \end{verbatim} | |
241 | ||
242 | ||
243 | \membersection{wxHtmlParser::PopTagHandler}\label{wxhtmlparserpoptaghandler} | |
244 | ||
245 | \func{void}{PopTagHandler}{\void} | |
246 | ||
247 | Restores parser's state before last call to | |
248 | \helpref{PushTagHandler}{wxhtmlparserpushtaghandler}. | |
249 | ||
250 | ||
559fe022 VS |
251 | \membersection{wxHtmlParser::SetFS}\label{wxhtmlparsersetfs} |
252 | ||
253 | \func{void}{SetFS}{\param{wxFileSystem }{*fs}} | |
254 | ||
255 | Sets the virtual file system that will be used to request additional | |
256 | files. (For example {\tt <IMG>} tag handler requests wxFSFile with the | |
257 | image data.) | |
22d6efa8 | 258 |