///////////////////////////////////////////////////////////////////////////// // Name: filter.cpp // Purpose: wxHtmlFilter - input filter for translating into HTML format // Author: Vaclav Slavik // Copyright: (c) 1999 Vaclav Slavik // Licence: wxWindows Licence ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ #pragma implementation "htmlfilter.h" #endif #include "wx/wxprec.h" #if wxUSE_HTML #ifdef __BORDLANDC__ #pragma hdrstop #endif #ifndef WXPRECOMP #include "wx/wx.h" #endif #include "wx/html/htmlfilter.h" #include "wx/html/htmlwin.h" /* There is code for several default filters: */ IMPLEMENT_ABSTRACT_CLASS(wxHtmlFilter, wxObject) //-------------------------------------------------------------------------------- // wxHtmlFilterPlainText // filter for text/plain or uknown //-------------------------------------------------------------------------------- IMPLEMENT_DYNAMIC_CLASS(wxHtmlFilterPlainText, wxHtmlFilter) bool wxHtmlFilterPlainText::CanRead(const wxFSFile& WXUNUSED(file)) const { return TRUE; } wxString wxHtmlFilterPlainText::ReadFile(const wxFSFile& file) const { wxInputStream *s = file.GetStream(); char *src; wxString doc, doc2; if (s == NULL) return wxEmptyString; src = new char[s -> GetSize()+1]; src[s -> GetSize()] = 0; s -> Read(src, s -> GetSize()); doc = src; delete [] src; doc.Replace(_T("<"), _T("<"), TRUE); doc.Replace(_T(">"), _T(">"), TRUE); doc2 = _T("
\n") + doc + _T("\n"); return doc2; } //-------------------------------------------------------------------------------- // wxHtmlFilterImage // filter for image/* //-------------------------------------------------------------------------------- class wxHtmlFilterImage : public wxHtmlFilter { DECLARE_DYNAMIC_CLASS(wxHtmlFilterImage) public: virtual bool CanRead(const wxFSFile& file) const; virtual wxString ReadFile(const wxFSFile& file) const; }; IMPLEMENT_DYNAMIC_CLASS(wxHtmlFilterImage, wxHtmlFilter) bool wxHtmlFilterImage::CanRead(const wxFSFile& file) const { return (file.GetMimeType().Left(6) == "image/"); } wxString wxHtmlFilterImage::ReadFile(const wxFSFile& file) const { return ("