No real changes, just avoid overloaded virtual wxWebView::SetPage().
[wxWidgets.git] / include / wx / msw / webview_ie.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/msw/webviewie.h
3 // Purpose: wxMSW IE wxWebView backend
4 // Author: Marianne Gagnon
5 // Id: $Id$
6 // Copyright: (c) 2010 Marianne Gagnon, 2011 Steven Lamerton
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef wxWebViewIE_H
11 #define wxWebViewIE_H
12
13 #include "wx/setup.h"
14
15 #if wxUSE_WEBVIEW && wxUSE_WEBVIEW_IE && defined(__WXMSW__)
16
17 #include "wx/control.h"
18 #include "wx/webview.h"
19 #include "wx/msw/ole/automtn.h"
20 #include "wx/msw/ole/activex.h"
21 #include "wx/msw/ole/oleutils.h"
22 #include "wx/msw/private/comptr.h"
23 #include "wx/msw/wrapwin.h"
24 #include "wx/msw/missing.h"
25 #include "wx/sharedptr.h"
26 #include "wx/vector.h"
27
28 /* Classes and definitions from urlmon.h vary in their
29 * completeness between compilers and versions of compilers.
30 * We implement our own versions here which should work
31 * for all compilers. The definitions are taken from the
32 * mingw-w64 headers which are public domain.
33 */
34
35 #ifndef REFRESH_NORMAL
36 #define REFRESH_NORMAL 0
37 #endif
38
39 #ifndef REFRESH_COMPLETELY
40 #define REFRESH_COMPLETELY 3
41 #endif
42
43 typedef enum __wxMIDL_IBindStatusCallback_0006
44 {
45 wxBSCF_FIRSTDATANOTIFICATION = 0x1,
46 wxBSCF_INTERMEDIATEDATANOTIFICATION = 0x2,
47 wxBSCF_LASTDATANOTIFICATION = 0x4,
48 wxBSCF_DATAFULLYAVAILABLE = 0x8,
49 wxBSCF_AVAILABLEDATASIZEUNKNOWN = 0x10
50 } wxBSCF;
51
52 EXTERN_C const IID CLSID_FileProtocol;
53
54 typedef struct _tagwxBINDINFO
55 {
56 ULONG cbSize;
57 LPWSTR szExtraInfo;
58 STGMEDIUM stgmedData;
59 DWORD grfBindInfoF;
60 DWORD dwBindVerb;
61 LPWSTR szCustomVerb;
62 DWORD cbstgmedData;
63 DWORD dwOptions;
64 DWORD dwOptionsFlags;
65 DWORD dwCodePage;
66 SECURITY_ATTRIBUTES securityAttributes;
67 IID iid;
68 IUnknown *pUnk;
69 DWORD dwReserved;
70 } wxBINDINFO;
71
72 typedef struct _tagwxPROTOCOLDATA
73 {
74 DWORD grfFlags;
75 DWORD dwState;
76 LPVOID pData;
77 ULONG cbData;
78 } wxPROTOCOLDATA;
79
80 class wxIInternetBindInfo : public IUnknown
81 {
82 public:
83 virtual HRESULT wxSTDCALL GetBindInfo(DWORD *grfBINDF,wxBINDINFO *pbindinfo) = 0;
84 virtual HRESULT wxSTDCALL GetBindString(ULONG ulStringType,LPOLESTR *ppwzStr,
85 ULONG cEl,ULONG *pcElFetched) = 0;
86 };
87
88 class wxIInternetProtocolSink : public IUnknown
89 {
90 public:
91 virtual HRESULT wxSTDCALL Switch(wxPROTOCOLDATA *pProtocolData) = 0;
92 virtual HRESULT wxSTDCALL ReportProgress(ULONG ulStatusCode,
93 LPCWSTR szStatusText) = 0;
94 virtual HRESULT wxSTDCALL ReportData(DWORD grfBSCF,ULONG ulProgress,
95 ULONG ulProgressMax) = 0;
96 virtual HRESULT wxSTDCALL ReportResult(HRESULT hrResult,DWORD dwError,
97 LPCWSTR szResult) = 0;
98 };
99
100 class wxIInternetProtocolRoot : public IUnknown
101 {
102 public:
103 virtual HRESULT wxSTDCALL Start(LPCWSTR szUrl,wxIInternetProtocolSink *pOIProtSink,
104 wxIInternetBindInfo *pOIBindInfo,DWORD grfPI,
105 HANDLE_PTR dwReserved) = 0;
106 virtual HRESULT wxSTDCALL Continue(wxPROTOCOLDATA *pProtocolData) = 0;
107 virtual HRESULT wxSTDCALL Abort(HRESULT hrReason,DWORD dwOptions) = 0;
108 virtual HRESULT wxSTDCALL Terminate(DWORD dwOptions) = 0;
109 virtual HRESULT wxSTDCALL Suspend(void) = 0;
110 virtual HRESULT wxSTDCALL Resume(void) = 0;
111 };
112
113
114 class wxIInternetProtocol : public wxIInternetProtocolRoot
115 {
116 public:
117 virtual HRESULT wxSTDCALL Read(void *pv,ULONG cb,ULONG *pcbRead) = 0;
118 virtual HRESULT wxSTDCALL Seek(LARGE_INTEGER dlibMove,DWORD dwOrigin,
119 ULARGE_INTEGER *plibNewPosition) = 0;
120 virtual HRESULT wxSTDCALL LockRequest(DWORD dwOptions) = 0;
121 virtual HRESULT wxSTDCALL UnlockRequest(void) = 0;
122 };
123
124
125 class wxIInternetSession : public IUnknown
126 {
127 public:
128 virtual HRESULT wxSTDCALL RegisterNameSpace(IClassFactory *pCF,REFCLSID rclsid,
129 LPCWSTR pwzProtocol,
130 ULONG cPatterns,
131 const LPCWSTR *ppwzPatterns,
132 DWORD dwReserved) = 0;
133 virtual HRESULT wxSTDCALL UnregisterNameSpace(IClassFactory *pCF,
134 LPCWSTR pszProtocol) = 0;
135 virtual HRESULT wxSTDCALL RegisterMimeFilter(IClassFactory *pCF,
136 REFCLSID rclsid,
137 LPCWSTR pwzType) = 0;
138 virtual HRESULT wxSTDCALL UnregisterMimeFilter(IClassFactory *pCF,
139 LPCWSTR pwzType) = 0;
140 virtual HRESULT wxSTDCALL CreateBinding(LPBC pBC,LPCWSTR szUrl,
141 IUnknown *pUnkOuter,IUnknown **ppUnk,
142 wxIInternetProtocol **ppOInetProt,
143 DWORD dwOption) = 0;
144 virtual HRESULT wxSTDCALL SetSessionOption(DWORD dwOption,LPVOID pBuffer,
145 DWORD dwBufferLength,
146 DWORD dwReserved) = 0;
147 virtual HRESULT wxSTDCALL GetSessionOption(DWORD dwOption,LPVOID pBuffer,
148 DWORD *pdwBufferLength,
149 DWORD dwReserved) = 0;
150 };
151
152 /* END OF URLMON.H implementation */
153
154 /* Same goes for the mshtmhst.h, these are also taken
155 * from mingw-w64 headers.
156 */
157
158 typedef enum _tagwxDOCHOSTUIFLAG
159 {
160 DOCHOSTUIFLAG_DIALOG = 0x1,
161 DOCHOSTUIFLAG_DISABLE_HELP_MENU = 0x2,
162 DOCHOSTUIFLAG_NO3DBORDER = 0x4,
163 DOCHOSTUIFLAG_SCROLL_NO = 0x8,
164 DOCHOSTUIFLAG_DISABLE_SCRIPT_INACTIVE = 0x10,
165 DOCHOSTUIFLAG_OPENNEWWIN = 0x20,
166 DOCHOSTUIFLAG_DISABLE_OFFSCREEN = 0x40,
167 DOCHOSTUIFLAG_FLAT_SCROLLBAR = 0x80,
168 DOCHOSTUIFLAG_DIV_BLOCKDEFAULT = 0x100,
169 DOCHOSTUIFLAG_ACTIVATE_CLIENTHIT_ONLY = 0x200,
170 DOCHOSTUIFLAG_OVERRIDEBEHAVIORFACTORY = 0x400,
171 DOCHOSTUIFLAG_CODEPAGELINKEDFONTS = 0x800,
172 DOCHOSTUIFLAG_URL_ENCODING_DISABLE_UTF8 = 0x1000,
173 DOCHOSTUIFLAG_URL_ENCODING_ENABLE_UTF8 = 0x2000,
174 DOCHOSTUIFLAG_ENABLE_FORMS_AUTOCOMPLETE = 0x4000,
175 DOCHOSTUIFLAG_ENABLE_INPLACE_NAVIGATION = 0x10000,
176 DOCHOSTUIFLAG_IME_ENABLE_RECONVERSION = 0x20000,
177 DOCHOSTUIFLAG_THEME = 0x40000,
178 DOCHOSTUIFLAG_NOTHEME = 0x80000,
179 DOCHOSTUIFLAG_NOPICS = 0x100000,
180 DOCHOSTUIFLAG_NO3DOUTERBORDER = 0x200000,
181 DOCHOSTUIFLAG_DISABLE_EDIT_NS_FIXUP = 0x400000,
182 DOCHOSTUIFLAG_LOCAL_MACHINE_ACCESS_CHECK = 0x800000,
183 DOCHOSTUIFLAG_DISABLE_UNTRUSTEDPROTOCOL = 0x1000000
184 } DOCHOSTUIFLAG;
185
186 typedef struct _tagwxDOCHOSTUIINFO
187 {
188 ULONG cbSize;
189 DWORD dwFlags;
190 DWORD dwDoubleClick;
191 OLECHAR *pchHostCss;
192 OLECHAR *pchHostNS;
193 } DOCHOSTUIINFO;
194
195 class wxIDocHostUIHandler : public IUnknown
196 {
197 public:
198 virtual HRESULT wxSTDCALL ShowContextMenu(DWORD dwID, POINT *ppt,
199 IUnknown *pcmdtReserved,
200 IDispatch *pdispReserved) = 0;
201
202 virtual HRESULT wxSTDCALL GetHostInfo(DOCHOSTUIINFO *pInfo) = 0;
203
204 virtual HRESULT wxSTDCALL ShowUI(DWORD dwID,
205 IOleInPlaceActiveObject *pActiveObject,
206 IOleCommandTarget *pCommandTarget,
207 IOleInPlaceFrame *pFrame,
208 IOleInPlaceUIWindow *pDoc) = 0;
209
210 virtual HRESULT wxSTDCALL HideUI(void) = 0;
211
212 virtual HRESULT wxSTDCALL UpdateUI(void) = 0;
213
214 virtual HRESULT wxSTDCALL EnableModeless(BOOL fEnable) = 0;
215
216 virtual HRESULT wxSTDCALL OnDocWindowActivate(BOOL fActivate) = 0;
217
218 virtual HRESULT wxSTDCALL OnFrameWindowActivate(BOOL fActivate) = 0;
219
220 virtual HRESULT wxSTDCALL ResizeBorder(LPCRECT prcBorder,
221 IOleInPlaceUIWindow *pUIWindow,
222 BOOL fRameWindow) = 0;
223
224 virtual HRESULT wxSTDCALL TranslateAccelerator(LPMSG lpMsg,
225 const GUID *pguidCmdGroup,
226 DWORD nCmdID) = 0;
227
228 virtual HRESULT wxSTDCALL GetOptionKeyPath(LPOLESTR *pchKey,
229 DWORD dw) = 0;
230
231 virtual HRESULT wxSTDCALL GetDropTarget(IDropTarget *pDropTarget,
232 IDropTarget **ppDropTarget) = 0;
233
234 virtual HRESULT wxSTDCALL GetExternal(IDispatch **ppDispatch) = 0;
235
236 virtual HRESULT wxSTDCALL TranslateUrl(DWORD dwTranslate,
237 OLECHAR *pchURLIn,
238 OLECHAR **ppchURLOut) = 0;
239
240 virtual HRESULT wxSTDCALL FilterDataObject(IDataObject *pDO,
241 IDataObject **ppDORet) = 0;
242 };
243
244 /* END OF MSHTMHST.H implementation */
245
246 struct IHTMLDocument2;
247 class wxFSFile;
248 class ClassFactory;
249 class wxIEContainer;
250 class DocHostUIHandler;
251
252 class WXDLLIMPEXP_WEBVIEW wxWebViewIE : public wxWebView
253 {
254 public:
255
256 wxWebViewIE() {}
257
258 wxWebViewIE(wxWindow* parent,
259 wxWindowID id,
260 const wxString& url = wxWebViewDefaultURLStr,
261 const wxPoint& pos = wxDefaultPosition,
262 const wxSize& size = wxDefaultSize,
263 long style = 0,
264 const wxString& name = wxWebViewNameStr)
265 {
266 Create(parent, id, url, pos, size, style, name);
267 }
268
269 ~wxWebViewIE();
270
271 bool Create(wxWindow* parent,
272 wxWindowID id,
273 const wxString& url = wxWebViewDefaultURLStr,
274 const wxPoint& pos = wxDefaultPosition,
275 const wxSize& size = wxDefaultSize,
276 long style = 0,
277 const wxString& name = wxWebViewNameStr);
278
279 virtual void LoadURL(const wxString& url);
280 virtual void LoadHistoryItem(wxSharedPtr<wxWebViewHistoryItem> item);
281 virtual wxVector<wxSharedPtr<wxWebViewHistoryItem> > GetBackwardHistory();
282 virtual wxVector<wxSharedPtr<wxWebViewHistoryItem> > GetForwardHistory();
283
284 virtual bool CanGoForward() const;
285 virtual bool CanGoBack() const;
286 virtual void GoBack();
287 virtual void GoForward();
288 virtual void ClearHistory();
289 virtual void EnableHistory(bool enable = true);
290 virtual void Stop();
291 virtual void Reload(wxWebViewReloadFlags flags = wxWEB_VIEW_RELOAD_DEFAULT);
292
293 virtual wxString GetPageSource() const;
294 virtual wxString GetPageText() const;
295
296 virtual bool IsBusy() const;
297 virtual wxString GetCurrentURL() const;
298 virtual wxString GetCurrentTitle() const;
299
300 virtual void SetZoomType(wxWebViewZoomType);
301 virtual wxWebViewZoomType GetZoomType() const;
302 virtual bool CanSetZoomType(wxWebViewZoomType) const;
303
304 virtual void Print();
305
306 virtual wxWebViewZoom GetZoom() const;
307 virtual void SetZoom(wxWebViewZoom zoom);
308
309 //Clipboard functions
310 virtual bool CanCut() const;
311 virtual bool CanCopy() const;
312 virtual bool CanPaste() const;
313 virtual void Cut();
314 virtual void Copy();
315 virtual void Paste();
316
317 //Undo / redo functionality
318 virtual bool CanUndo() const;
319 virtual bool CanRedo() const;
320 virtual void Undo();
321 virtual void Redo();
322
323 //Editing functions
324 virtual void SetEditable(bool enable = true);
325 virtual bool IsEditable() const;
326
327 //Selection
328 virtual void SelectAll();
329 virtual bool HasSelection() const;
330 virtual void DeleteSelection();
331 virtual wxString GetSelectedText() const;
332 virtual wxString GetSelectedSource() const;
333 virtual void ClearSelection();
334
335 virtual void RunScript(const wxString& javascript);
336
337 //Virtual Filesystem Support
338 virtual void RegisterHandler(wxSharedPtr<wxWebViewHandler> handler);
339
340 // ---- IE-specific methods
341
342 // FIXME: I seem to be able to access remote webpages even in offline mode...
343 bool IsOfflineMode();
344 void SetOfflineMode(bool offline);
345
346 wxWebViewZoom GetIETextZoom() const;
347 void SetIETextZoom(wxWebViewZoom level);
348
349 wxWebViewZoom GetIEOpticalZoom() const;
350 void SetIEOpticalZoom(wxWebViewZoom level);
351
352 void onActiveXEvent(wxActiveXEvent& evt);
353 void onEraseBg(wxEraseEvent&) {}
354
355 DECLARE_EVENT_TABLE();
356
357 protected:
358 virtual void DoSetPage(const wxString& html, const wxString& baseUrl);
359
360 private:
361 wxIEContainer* m_container;
362 wxAutomationObject m_ie;
363 IWebBrowser2* m_webBrowser;
364 DWORD m_dwCookie;
365 wxCOMPtr<DocHostUIHandler> m_uiHandler;
366
367 //We store the current zoom type;
368 wxWebViewZoomType m_zoomType;
369
370 /** The "Busy" property of IWebBrowser2 does not always return busy when
371 * we'd want it to; this variable may be set to true in cases where the
372 * Busy property is false but should be true.
373 */
374 bool m_isBusy;
375 //We manage our own history, the history list contains the history items
376 //which are added as documentcomplete events arrive, unless we are loading
377 //an item from the history. The position is stored as an int, and reflects
378 //where we are in the history list.
379 wxVector<wxSharedPtr<wxWebViewHistoryItem> > m_historyList;
380 wxVector<ClassFactory*> m_factories;
381 int m_historyPosition;
382 bool m_historyLoadingFromList;
383 bool m_historyEnabled;
384
385 //Generic helper functions for IHtmlDocument commands
386 bool CanExecCommand(wxString command) const;
387 void ExecCommand(wxString command);
388 wxCOMPtr<IHTMLDocument2> GetDocument() const;
389 //Toggles control features see INTERNETFEATURELIST for values.
390 bool EnableControlFeature(long flag, bool enable = true);
391
392 wxDECLARE_DYNAMIC_CLASS(wxWebViewIE);
393 };
394
395 class VirtualProtocol : public wxIInternetProtocol
396 {
397 protected:
398 wxIInternetProtocolSink* m_protocolSink;
399 wxString m_html;
400 VOID * fileP;
401
402 wxFSFile* m_file;
403 wxSharedPtr<wxWebViewHandler> m_handler;
404
405 public:
406 VirtualProtocol(wxSharedPtr<wxWebViewHandler> handler);
407 ~VirtualProtocol() {}
408
409 //IUnknown
410 DECLARE_IUNKNOWN_METHODS;
411
412 //IInternetProtocolRoot
413 HRESULT STDMETHODCALLTYPE Abort(HRESULT WXUNUSED(hrReason),
414 DWORD WXUNUSED(dwOptions))
415 { return E_NOTIMPL; }
416 HRESULT STDMETHODCALLTYPE Continue(wxPROTOCOLDATA *WXUNUSED(pProtocolData))
417 { return S_OK; }
418 HRESULT STDMETHODCALLTYPE Resume() { return S_OK; }
419 HRESULT STDMETHODCALLTYPE Start(LPCWSTR szUrl,
420 wxIInternetProtocolSink *pOIProtSink,
421 wxIInternetBindInfo *pOIBindInfo,
422 DWORD grfPI,
423 HANDLE_PTR dwReserved);
424 HRESULT STDMETHODCALLTYPE Suspend() { return S_OK; }
425 HRESULT STDMETHODCALLTYPE Terminate(DWORD WXUNUSED(dwOptions)) { return S_OK; }
426
427 //IInternetProtocol
428 HRESULT STDMETHODCALLTYPE LockRequest(DWORD WXUNUSED(dwOptions))
429 { return S_OK; }
430 HRESULT STDMETHODCALLTYPE Read(void *pv, ULONG cb, ULONG *pcbRead);
431 HRESULT STDMETHODCALLTYPE Seek(LARGE_INTEGER WXUNUSED(dlibMove),
432 DWORD WXUNUSED(dwOrigin),
433 ULARGE_INTEGER* WXUNUSED(plibNewPosition))
434 { return E_FAIL; }
435 HRESULT STDMETHODCALLTYPE UnlockRequest() { return S_OK; }
436 };
437
438 class ClassFactory : public IClassFactory
439 {
440 public:
441 ClassFactory(wxSharedPtr<wxWebViewHandler> handler) : m_handler(handler) {}
442
443 //IClassFactory
444 HRESULT STDMETHODCALLTYPE CreateInstance(IUnknown* pUnkOuter,
445 REFIID riid, void** ppvObject);
446 HRESULT STDMETHODCALLTYPE LockServer(BOOL fLock);
447
448 //IUnknown
449 DECLARE_IUNKNOWN_METHODS;
450
451 private:
452 wxSharedPtr<wxWebViewHandler> m_handler;
453 };
454
455 class wxIEContainer : public wxActiveXContainer
456 {
457 public:
458 wxIEContainer(wxWindow *parent, REFIID iid, IUnknown *pUnk, DocHostUIHandler* uiHandler = NULL);
459 virtual ~wxIEContainer();
460 virtual bool QueryClientSiteInterface(REFIID iid, void **_interface, const char *&desc);
461 private:
462 DocHostUIHandler* m_uiHandler;
463 };
464
465 class DocHostUIHandler : public wxIDocHostUIHandler
466 {
467 public:
468 DocHostUIHandler() {};
469 ~DocHostUIHandler() {};
470 virtual HRESULT wxSTDCALL ShowContextMenu(DWORD dwID, POINT *ppt,
471 IUnknown *pcmdtReserved,
472 IDispatch *pdispReserved);
473
474 virtual HRESULT wxSTDCALL GetHostInfo(DOCHOSTUIINFO *pInfo);
475
476 virtual HRESULT wxSTDCALL ShowUI(DWORD dwID,
477 IOleInPlaceActiveObject *pActiveObject,
478 IOleCommandTarget *pCommandTarget,
479 IOleInPlaceFrame *pFrame,
480 IOleInPlaceUIWindow *pDoc);
481
482 virtual HRESULT wxSTDCALL HideUI(void);
483
484 virtual HRESULT wxSTDCALL UpdateUI(void);
485
486 virtual HRESULT wxSTDCALL EnableModeless(BOOL fEnable);
487
488 virtual HRESULT wxSTDCALL OnDocWindowActivate(BOOL fActivate);
489
490 virtual HRESULT wxSTDCALL OnFrameWindowActivate(BOOL fActivate);
491
492 virtual HRESULT wxSTDCALL ResizeBorder(LPCRECT prcBorder,
493 IOleInPlaceUIWindow *pUIWindow,
494 BOOL fRameWindow);
495
496 virtual HRESULT wxSTDCALL TranslateAccelerator(LPMSG lpMsg,
497 const GUID *pguidCmdGroup,
498 DWORD nCmdID);
499
500 virtual HRESULT wxSTDCALL GetOptionKeyPath(LPOLESTR *pchKey,
501 DWORD dw);
502
503 virtual HRESULT wxSTDCALL GetDropTarget(IDropTarget *pDropTarget,
504 IDropTarget **ppDropTarget);
505
506 virtual HRESULT wxSTDCALL GetExternal(IDispatch **ppDispatch);
507
508 virtual HRESULT wxSTDCALL TranslateUrl(DWORD dwTranslate,
509 OLECHAR *pchURLIn,
510 OLECHAR **ppchURLOut);
511
512 virtual HRESULT wxSTDCALL FilterDataObject(IDataObject *pDO,
513 IDataObject **ppDORet);
514 //IUnknown
515 DECLARE_IUNKNOWN_METHODS;
516 };
517
518 #endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_IE && defined(__WXMSW__)
519
520 #endif // wxWebViewIE_H