]>
git.saurik.com Git - wxWidgets.git/blob - interface/html/htmlfilt.h
46d57a342849e6b07911e1bb196b5cff4ccc190e
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: html/htmlfilt.h
3 // Purpose: documentation for wxHtmlFilter class
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
11 @headerfile htmlfilt.h wx/html/htmlfilt.h
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.
22 class wxHtmlFilter
: public wxObject
31 Returns @true if this filter is capable of reading file @e file.
35 bool CanRead(const wxFSFile
& file
);
38 Reads the file and returns string with HTML document.
42 wxString
ReadFile(const wxFSFile
& file
);