]> git.saurik.com Git - wxWidgets.git/blob - interface/html/htmlfilt.h
aea59f70bf54da4efbcc4f01e877452570d65e82
[wxWidgets.git] / interface / html / htmlfilt.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: html/htmlfilt.h
3 // Purpose: documentation for wxHtmlFilter class
4 // Author: wxWidgets team
5 // RCS-ID: $Id$
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
8
9 /**
10 @class wxHtmlFilter
11 @headerfile htmlfilt.h wx/html/htmlfilt.h
12
13 This class is the parent class of input filters for wxHtmlWindow.
14 It allows you to read and display files of different file formats.
15
16 @library{wxhtml}
17 @category{FIXME}
18
19 @seealso
20 Overview
21 */
22 class wxHtmlFilter : public wxObject
23 {
24 public:
25 /**
26 Constructor.
27 */
28 wxHtmlFilter();
29
30 /**
31 Returns @true if this filter is capable of reading file @e file.
32 Example:
33 */
34 bool CanRead(const wxFSFile& file);
35
36 /**
37 Reads the file and returns string with HTML document.
38 Example:
39 */
40 wxString ReadFile(const wxFSFile& file);
41 };