X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/83a732882adf32f93d25cd7e3a0ad20f7231ec49..71aba8333cc915afff9e740c944f7fa7247abacb:/wxPython/contrib/iewin/IEHtmlWin.h?ds=sidebyside diff --git a/wxPython/contrib/iewin/IEHtmlWin.h b/wxPython/contrib/iewin/IEHtmlWin.h index 7dcfdb6852..b4c7eea2a1 100644 --- a/wxPython/contrib/iewin/IEHtmlWin.h +++ b/wxPython/contrib/iewin/IEHtmlWin.h @@ -61,8 +61,11 @@ enum wxIEHtmlRefreshLevel wxIEHTML_REFRESH_COMPLETELY = 3 }; +class IStreamAdaptorBase; + class wxIEHtmlWin : public wxActiveX { + public: wxIEHtmlWin(wxWindow * parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition, @@ -74,6 +77,7 @@ public: void LoadUrl(const wxString&); bool LoadString(wxString html); bool LoadStream(istream *strm); + bool LoadStream(wxInputStream *is); void SetCharset(wxString charset); void SetEditMode(bool seton); @@ -92,6 +96,7 @@ public: protected: void SetupBrowser(); + bool LoadStream(IStreamAdaptorBase *pstrm); wxAutoOleInterface m_webBrowser; };