3f66f6a5b3
This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
53 lines
1.3 KiB
Objective-C
53 lines
1.3 KiB
Objective-C
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: html/htmlfilt.h
|
|
// Purpose: interface of wxHtmlFilter
|
|
// Author: wxWidgets team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
@class wxHtmlFilter
|
|
|
|
This class is the parent class of input filters for wxHtmlWindow.
|
|
It allows you to read and display files of different file formats.
|
|
|
|
@library{wxhtml}
|
|
@category{html}
|
|
|
|
@see @ref overview_html_filters
|
|
*/
|
|
class wxHtmlFilter : public wxObject
|
|
{
|
|
public:
|
|
/**
|
|
Constructor.
|
|
*/
|
|
wxHtmlFilter();
|
|
|
|
/**
|
|
Returns @true if this filter is capable of reading file @e file.
|
|
Example:
|
|
@code
|
|
bool MyFilter::CanRead(const wxFSFile& file)
|
|
{
|
|
return (file.GetMimeType() == "application/x-ugh");
|
|
}
|
|
@endcode
|
|
*/
|
|
virtual bool CanRead(const wxFSFile& file) const = 0;
|
|
|
|
/**
|
|
Reads the file and returns string with HTML document.
|
|
Example:
|
|
@code
|
|
wxString MyImgFilter::ReadFile(const wxFSFile& file)
|
|
{
|
|
return "<html><body><img src=\"" + file.GetLocation() +
|
|
"\"></body></html>";
|
|
}
|
|
@endcode
|
|
*/
|
|
virtual wxString ReadFile(const wxFSFile& file) const = 0;
|
|
};
|
|
|