]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/html/htmlpars.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / interface / wx / html / htmlpars.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: html/htmlpars.h
e54c96f1 3// Purpose: interface of wxHtmlTagHandler
23324ae1 4// Author: wxWidgets team
526954c5 5// Licence: wxWindows licence
23324ae1
FM
6/////////////////////////////////////////////////////////////////////////////
7
90f011dc
RD
8enum wxHtmlURLType
9{
10 wxHTML_URL_PAGE,
11 wxHTML_URL_IMAGE,
12 wxHTML_URL_OTHER
13};
14
15
16
23324ae1
FM
17/**
18 @class wxHtmlTagHandler
7c913512 19
5bddd46d 20 @todo describe me
7c913512 21
23324ae1
FM
22 @library{wxhtml}
23 @category{html}
7c913512 24
5bddd46d 25 @see @ref overview_html_handlers, wxHtmlTag
23324ae1
FM
26*/
27class wxHtmlTagHandler : public wxObject
28{
29public:
30 /**
31 Constructor.
32 */
33 wxHtmlTagHandler();
34
35 /**
5bddd46d
FM
36 Returns list of supported tags.
37 The list is in uppercase and tags are delimited by ','.
38 Example: @c "I,B,FONT,P"
23324ae1 39 */
da1ed74c 40 virtual wxString GetSupportedTags() = 0;
23324ae1
FM
41
42 /**
43 This is the core method of each handler. It is called each time
4cc4bfaf 44 one of supported tags is detected. @a tag contains all necessary
23324ae1 45 info (see wxHtmlTag for details).
5bddd46d
FM
46
47 Example:
48
49 @code
50 bool MyHandler::HandleTag(const wxHtmlTag& tag)
51 {
52 ...
53 // change state of parser (e.g. set bold face)
54 ParseInner(tag);
55 ...
56 // restore original state of parser
57 }
58 @endcode
59
60 You shouldn't call ParseInner() if the tag is not paired with an ending one.
61
62 @return @true if ParseInner() was called, @false otherwise.
23324ae1 63 */
da1ed74c 64 virtual bool HandleTag(const wxHtmlTag& tag) = 0;
23324ae1 65
5e6e278d
FM
66 /**
67 Assigns @a parser to this handler. Each @b instance of handler
047ea2e2 68 is guaranteed to be called only from the one parser.
5e6e278d
FM
69 */
70 virtual void SetParser(wxHtmlParser* parser);
71
047ea2e2
RD
72 /**
73 Returns the parser associated with this tag handler.
3f7564f2
VZ
74
75 @since 2.9.5
047ea2e2 76 */
3f7564f2 77 wxHtmlParser* GetParser() const;
047ea2e2
RD
78
79
5e6e278d
FM
80protected:
81
23324ae1
FM
82 /**
83 This method calls parser's wxHtmlParser::DoParsing method
84 for the string between this tag and the paired ending tag:
5bddd46d
FM
85 @code
86 ...<A HREF="x.htm">Hello, world!</A>...
87 @endcode
88
89 In this example, a call to ParseInner() (with @a tag pointing to A tag)
23324ae1
FM
90 will parse 'Hello, world!'.
91 */
92 void ParseInner(const wxHtmlTag& tag);
93
90f011dc
RD
94 /**
95 Parses given source as if it was tag's inner code (see
96 wxHtmlParser::GetInnerSource). Unlike ParseInner(), this method lets
97 you specify the source code to parse. This is useful when you need to
98 modify the inner text before parsing.
99 */
100 void ParseInnerSource(const wxString& source);
101
23324ae1 102 /**
23324ae1
FM
103 This attribute is used to access parent parser. It is protected so that
104 it can't be accessed by user but can be accessed from derived classes.
105 */
5bddd46d 106 wxHtmlParser* m_Parser;
23324ae1
FM
107};
108
109
e54c96f1 110
23324ae1
FM
111/**
112 @class wxHtmlParser
7c913512 113
23324ae1 114 Classes derived from this handle the @b generic parsing of HTML documents: it
5bddd46d
FM
115 scans the document and divide it into blocks of tags (where one block consists
116 of beginning and ending tag and of text between these two tags).
7c913512 117
5bddd46d 118 It is independent from wxHtmlWindow and can be used as stand-alone parser.
7c913512 119
23324ae1
FM
120 It uses system of tag handlers to parse the HTML document. Tag handlers
121 are not statically shared by all instances but are created for each
122 wxHtmlParser instance. The reason is that the handler may contain
123 document-specific temporary data used during parsing (e.g. complicated
124 structures like tables).
7c913512 125
23324ae1 126 Typically the user calls only the wxHtmlParser::Parse method.
7c913512 127
23324ae1
FM
128 @library{wxhtml}
129 @category{html}
7c913512 130
5bddd46d 131 @see @ref overview_html_cells, @ref overview_html_handlers, wxHtmlTag
23324ae1 132*/
7c913512 133class wxHtmlParser
23324ae1
FM
134{
135public:
136 /**
137 Constructor.
138 */
139 wxHtmlParser();
140
23324ae1 141 /**
5bddd46d
FM
142 Adds handler to the internal list ( hash table) of handlers.
143 This method should not be called directly by user but rather by derived class'
23324ae1 144 constructor.
5bddd46d 145
23324ae1 146 This adds the handler to this @b instance of wxHtmlParser, not to
5bddd46d
FM
147 all objects of this class!
148 (Static front-end to AddTagHandler is provided by wxHtmlWinParser).
149
23324ae1
FM
150 All handlers are deleted on object deletion.
151 */
5267aefd 152 virtual void AddTagHandler(wxHtmlTagHandler* handler);
23324ae1
FM
153
154 /**
155 Must be overwritten in derived class.
5bddd46d
FM
156
157 This method is called by DoParsing() each time a part of text is parsed.
158 @a txt is NOT only one word, it is substring of input.
159 It is not formatted or preprocessed (so white spaces are unmodified).
23324ae1
FM
160 */
161 virtual void AddWord(const wxString& txt);
162
23324ae1 163 /**
5bddd46d 164 Parses the m_Source from @a begin_pos to @a end_pos - 1.
23324ae1 165 */
a44f3b5a 166 void DoParsing(const const_iterator& begin_pos, const const_iterator& end_pos);
5bddd46d
FM
167
168 /**
169 Parses the whole m_Source.
170 */
7c913512 171 void DoParsing();
23324ae1
FM
172
173 /**
174 This must be called after DoParsing().
175 */
176 virtual void DoneParser();
177
178 /**
179 Returns pointer to the file system. Because each tag handler has
180 reference to it is parent parser it can easily request the file by
5bddd46d
FM
181 calling:
182 @code
183 wxFSFile *f = m_Parser -> GetFS() -> OpenFile("image.jpg");
184 @endcode
23324ae1 185 */
328f5751 186 wxFileSystem* GetFS() const;
23324ae1
FM
187
188 /**
5bddd46d
FM
189 Returns product of parsing.
190 Returned value is result of parsing of the document.
191
192 The type of this result depends on internal representation in derived
193 parser (but it must be derived from wxObject!).
23324ae1
FM
194 See wxHtmlWinParser for details.
195 */
da1ed74c 196 virtual wxObject* GetProduct() = 0;
23324ae1
FM
197
198 /**
199 Returns pointer to the source being parsed.
200 */
5267aefd 201 const wxString* GetSource();
23324ae1
FM
202
203 /**
5bddd46d
FM
204 Setups the parser for parsing the @a source string.
205 (Should be overridden in derived class)
23324ae1
FM
206 */
207 virtual void InitParser(const wxString& source);
208
209 /**
210 Opens given URL and returns @c wxFSFile object that can be used to read data
211 from it. This method may return @NULL in one of two cases: either the URL doesn't
212 point to any valid resource or the URL is blocked by overridden implementation
213 of @e OpenURL in derived class.
5bddd46d 214
7c913512 215 @param type
4cc4bfaf 216 Indicates type of the resource. Is one of:
5bddd46d
FM
217 - wxHTML_URL_PAGE: Opening a HTML page.
218 - wxHTML_URL_IMAGE: Opening an image.
219 - wxHTML_URL_OTHER: Opening a resource that doesn't fall into
220 any other category.
7c913512 221 @param url
4cc4bfaf 222 URL being opened.
5bddd46d
FM
223
224 @note
225 Always use this method in tag handlers instead of GetFS()->OpenFile()
226 because it can block the URL and is thus more secure.
227 Default behaviour is to call wxHtmlWindow::OnOpeningURL of the associated
228 wxHtmlWindow object (which may decide to block the URL or redirect it to
229 another one),if there's any, and always open the URL if the parser is not
230 used with wxHtmlWindow.
231 Returned wxFSFile object is not guaranteed to point to url, it might have
232 been redirected!
23324ae1 233 */
fadc2df6 234 virtual wxFSFile* OpenURL(wxHtmlURLType type, const wxString& url) const;
23324ae1
FM
235
236 /**
237 Proceeds parsing of the document. This is end-user method. You can simply
5bddd46d
FM
238 call it when you need to obtain parsed output (which is parser-specific).
239
23324ae1 240 The method does these things:
5bddd46d
FM
241 -# calls InitParser(source)
242 -# calls DoParsing()
243 -# calls GetProduct()
244 -# calls DoneParser()
245 -# returns value returned by GetProduct()
246
247 You shouldn't use InitParser(), DoParsing(), GetProduct() or DoneParser() directly.
23324ae1
FM
248 */
249 wxObject* Parse(const wxString& source);
250
251 /**
5bddd46d 252 Restores parser's state before last call to PushTagHandler().
23324ae1
FM
253 */
254 void PopTagHandler();
255
256 /**
7c913512
FM
257 Forces the handler to handle additional tags
258 (not returned by wxHtmlTagHandler::GetSupportedTags).
23324ae1 259 The handler should already be added to this parser.
5bddd46d 260
7c913512 261 @param handler
4cc4bfaf 262 the handler
7c913512 263 @param tags
5bddd46d
FM
264 List of tags (in same format as GetSupportedTags()'s return value).
265 The parser will redirect these tags to handler (until call to PopTagHandler()).
266
267 Example:
268
269 Imagine you want to parse following pseudo-html structure:
270 @code
271 <myitems>
272 <param name="one" value="1">
273 <param name="two" value="2">
274 </myitems>
275
276 <execute>
277 <param program="text.exe">
278 </execute>
279 @endcode
280
281 It is obvious that you cannot use only one tag handler for \<param\> tag.
282 Instead you must use context-sensitive handlers for \<param\> inside \<myitems\>
283 and \<param\> inside \<execute\>.
284 This is the preferred solution:
285
286 @code
287 TAG_HANDLER_BEGIN(MYITEM, "MYITEMS")
288 TAG_HANDLER_PROC(tag)
289 {
290 // ...something...
291
292 m_Parser -> PushTagHandler(this, "PARAM");
293 ParseInner(tag);
294 m_Parser -> PopTagHandler();
295
296 // ...something...
297 }
298 TAG_HANDLER_END(MYITEM)
299 @endcode
23324ae1
FM
300 */
301 void PushTagHandler(wxHtmlTagHandler* handler,
302 const wxString& tags);
303
304 /**
5bddd46d
FM
305 Sets the virtual file system that will be used to request additional files.
306 (For example @c IMG tag handler requests wxFSFile with the image data.)
23324ae1 307 */
5267aefd 308 void SetFS(wxFileSystem* fs);
23324ae1
FM
309
310 /**
5bddd46d
FM
311 Call this function to interrupt parsing from a tag handler.
312 No more tags will be parsed afterward. This function may only be called
313 from Parse() or any function called by it (i.e. from tag handlers).
23324ae1 314 */
adaaa686 315 virtual void StopParsing();
5e6e278d
FM
316
317protected:
318
319 /**
320 This may (and may not) be overwritten in derived class.
321
322 This method is called each time new tag is about to be added.
323 @a tag contains information about the tag. (See wxHtmlTag for details.)
324
325 Default (wxHtmlParser) behaviour is this: first it finds a handler capable
326 of handling this tag and then it calls handler's HandleTag() method.
327 */
328 virtual void AddTag(const wxHtmlTag& tag);
23324ae1 329};
e54c96f1 330