wxHtmlFilter
This class is the parent class of input filters for
wxHtmlWindow.
It allows you to read and display files of different file formats.
Derived from
Include files
<wx/html/htmlfilt.h>
See Also
Members
wxHtmlFilter::wxHtmlFilter
wxHtmlFilter()
Constructor.
wxHtmlFilter::CanRead
Returns true if this filter is capable of reading file file.
Example:
bool MyFilter::CanRead(const wxFSFile& file)
{
return (file.GetMimeType() == "application/x-ugh");
}
wxHtmlFilter::ReadFile
Reads the file and returns string with HTML document.
Example:
wxString MyImgFilter::ReadFile(const wxFSFile& file)
{
return "<html><body><img src=\"" +
file.GetLocation() +
"\"></body></html>";
}