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