wxIEHTML_REFRESH_COMPLETELY = 3
};
+class IStreamAdaptorBase;
+
class wxIEHtmlWin : public wxActiveX
{
+
public:
wxIEHtmlWin(wxWindow * parent, wxWindowID id = -1,
const wxPoint& pos = wxDefaultPosition,
void LoadUrl(const wxString&);
bool LoadString(wxString html);
bool LoadStream(istream *strm);
+ bool LoadStream(wxInputStream *is);
void SetCharset(wxString charset);
void SetEditMode(bool seton);
protected:
void SetupBrowser();
+ bool LoadStream(IStreamAdaptorBase *pstrm);
wxAutoOleInterface<IWebBrowser2> m_webBrowser;
};