]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/html/htmlfilt.h
94cd977d33e3be79060c61960595a084628d25d9
   1 ///////////////////////////////////////////////////////////////////////////// 
   2 // Name:        html/htmlfilt.h 
   3 // Purpose:     interface of wxHtmlFilter 
   4 // Author:      wxWidgets team 
   6 // Licence:     wxWindows license 
   7 ///////////////////////////////////////////////////////////////////////////// 
  12     This class is the parent class of input filters for wxHtmlWindow. 
  13     It allows you to read and display files of different file formats. 
  20 class wxHtmlFilter 
: public wxObject
 
  29         Returns @true if this filter is capable of reading file @e file. 
  32     bool CanRead(const wxFSFile
& file
); 
  35         Reads the file and returns string with HTML document. 
  38     wxString 
ReadFile(const wxFSFile
& file
);