X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/61b50a43aaaf29fe9c2f848958adafc496439123..f41bc3e3f3fda37fba548440b230288c5eed0953:/include/wx/html/htmlpars.h diff --git a/include/wx/html/htmlpars.h b/include/wx/html/htmlpars.h index aef73949fb..a7f067b5a1 100644 --- a/include/wx/html/htmlpars.h +++ b/include/wx/html/htmlpars.h @@ -31,6 +31,14 @@ class WXDLLEXPORT wxHtmlEntitiesParser; class wxHtmlTextPieces; class wxHtmlParserState; + +enum wxHtmlURLType +{ + wxHTML_URL_PAGE, + wxHTML_URL_IMAGE, + wxHTML_URL_OTHER +}; + // This class handles generic parsing of HTML document : it scans // the document and divide it into blocks of tags (where one block // consists of starting and ending tag and of text between these @@ -48,6 +56,10 @@ public: wxFileSystem* GetFS() const { return m_FS; } + // Opens file if the parser is allowed to open given URL (may be forbidden + // for security reasons) + virtual wxFSFile *OpenURL(wxHtmlURLType type, const wxString& url) const; + // You can simply call this method when you need parsed output. // This method does these things: // 1. call InitParser(source); @@ -226,7 +238,7 @@ public: // (with respect to output encoding) wxString Parse(const wxString& input); - // Returns character for given entity + // Returns character for given entity or 0 if the enity is unknown wxChar GetEntityChar(const wxString& entity); // Returns character that represents given Unicode code