]>
git.saurik.com Git - wxWidgets.git/blob - interface/html/htmlfilt.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: html/htmlfilt.h
3 // Purpose: interface of wxHtmlFilter
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.
21 class wxHtmlFilter
: public wxObject
30 Returns @true if this filter is capable of reading file @e file.
33 bool CanRead(const wxFSFile
& file
);
36 Reads the file and returns string with HTML document.
39 wxString
ReadFile(const wxFSFile
& file
);