1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/webview_ie.cpp
3 // Purpose: wxMSW wxWebViewIE class implementation for web view component
4 // Author: Marianne Gagnon
6 // Copyright: (c) 2010 Marianne Gagnon, Steven Lamerton
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
13 #if defined(__BORLANDC__)
17 #include "wx/msw/webview_ie.h"
27 // Various definitions are missing from mingw
29 typedef enum CommandStateChangeConstants
{
30 CSC_UPDATECOMMANDS
= (int) 0xFFFFFFFF,
31 CSC_NAVIGATEFORWARD
= 0x1,
32 CSC_NAVIGATEBACK
= 0x2
33 } CommandStateChangeConstants
;
35 #define DISPID_COMMANDSTATECHANGE 105
36 #define DISPID_NAVIGATECOMPLETE2 252
37 #define DISPID_NAVIGATEERROR 271
38 #define DISPID_NEWWINDOW3 273
39 #define OLECMDID_OPTICAL_ZOOM 63
40 #define INET_E_ERROR_FIRST 0x800C0002L
41 #define INET_E_INVALID_URL 0x800C0002L
42 #define INET_E_NO_SESSION 0x800C0003L
43 #define INET_E_CANNOT_CONNECT 0x800C0004L
44 #define INET_E_RESOURCE_NOT_FOUND 0x800C0005L
45 #define INET_E_OBJECT_NOT_FOUND 0x800C0006L
46 #define INET_E_DATA_NOT_AVAILABLE 0x800C0007L
47 #define INET_E_DOWNLOAD_FAILURE 0x800C0008L
48 #define INET_E_AUTHENTICATION_REQUIRED 0x800C0009L
49 #define INET_E_NO_VALID_MEDIA 0x800C000AL
50 #define INET_E_CONNECTION_TIMEOUT 0x800C000BL
51 #define INET_E_INVALID_REQUEST 0x800C000CL
52 #define INET_E_UNKNOWN_PROTOCOL 0x800C000DL
53 #define INET_E_SECURITY_PROBLEM 0x800C000EL
54 #define INET_E_CANNOT_LOAD_DATA 0x800C000FL
55 #define INET_E_CANNOT_INSTANTIATE_OBJECT 0x800C0010L
56 #define INET_E_QUERYOPTION_UNKNOWN 0x800C0013L
57 #define INET_E_REDIRECT_FAILED 0x800C0014L
58 #define INET_E_REDIRECT_TO_DIR 0x800C0015L
59 #define INET_E_CANNOT_LOCK_REQUEST 0x800C0016L
60 #define INET_E_USE_EXTEND_BINDING 0x800C0017L
61 #define INET_E_TERMINATED_BIND 0x800C0018L
62 #define INET_E_INVALID_CERTIFICATE 0x800C0019L
63 #define INET_E_CODE_DOWNLOAD_DECLINED 0x800C0100L
64 #define INET_E_RESULT_DISPATCHED 0x800C0200L
65 #define INET_E_CANNOT_REPLACE_SFP_FILE 0x800C0300L
66 #define INET_E_CODE_INSTALL_BLOCKED_BY_HASH_POLICY 0x800C0500L
67 #define INET_E_CODE_INSTALL_SUPPRESSED 0x800C0400L
69 #define REFRESH_NORMAL 0
70 #define REFRESH_COMPLETELY 3
73 BEGIN_EVENT_TABLE(wxWebViewIE
, wxControl
)
74 EVT_ACTIVEX(wxID_ANY
, wxWebViewIE::onActiveXEvent
)
75 EVT_ERASE_BACKGROUND(wxWebViewIE::onEraseBg
)
78 bool wxWebViewIE::Create(wxWindow
* parent
,
86 if (!wxControl::Create(parent
, id
, pos
, size
, style
,
87 wxDefaultValidator
, name
))
93 m_canNavigateBack
= false;
94 m_canNavigateForward
= false;
96 m_historyLoadingFromList
= false;
97 m_historyEnabled
= true;
98 m_historyPosition
= -1;
100 if (::CoCreateInstance(CLSID_WebBrowser
, NULL
,
101 CLSCTX_INPROC_SERVER
, // CLSCTX_INPROC,
102 IID_IWebBrowser2
, (void**)&m_webBrowser
) != 0)
104 wxLogError("Failed to initialize IE, CoCreateInstance returned an error");
108 m_ie
.SetDispatchPtr(m_webBrowser
); // wxAutomationObject will release itself
110 m_webBrowser
->put_RegisterAsBrowser(VARIANT_TRUE
);
111 m_webBrowser
->put_RegisterAsDropTarget(VARIANT_TRUE
);
112 //m_webBrowser->put_Silent(VARIANT_FALSE);
114 m_container
= new wxActiveXContainer(this, IID_IWebBrowser2
, m_webBrowser
);
116 SetBackgroundStyle(wxBG_STYLE_PAINT
);
117 SetDoubleBuffered(true);
123 void wxWebViewIE::LoadUrl(const wxString
& url
)
125 wxVariant out
= m_ie
.CallMethod("Navigate", (BSTR
) url
.wc_str(),
126 NULL
, NULL
, NULL
, NULL
);
128 // FIXME: why is out value null??
129 //(HRESULT)(out.GetLong()) == S_OK;
132 void wxWebViewIE::SetPage(const wxString
& html
, const wxString
& baseUrl
)
134 LoadUrl("about:blank");
136 // Let the wx events generated for navigation events be processed, so
137 // that the underlying IE component completes its Document object.
138 // FIXME: calling wxYield is not elegant nor very reliable probably
141 wxVariant documentVariant
= m_ie
.GetProperty("Document");
142 void* documentPtr
= documentVariant
.GetVoidPtr();
144 wxASSERT (documentPtr
!= NULL
);
146 // TODO: consider the "baseUrl" parameter if possible
147 // TODO: consider encoding
148 BSTR bstr
= SysAllocString(html
.wc_str());
150 // Creates a new one-dimensional array
151 SAFEARRAY
*psaStrings
= SafeArrayCreateVector(VT_VARIANT
, 0, 1);
152 if (psaStrings
!= NULL
)
155 HRESULT hr
= SafeArrayAccessData(psaStrings
, (LPVOID
*)¶m
);
157 param
->bstrVal
= bstr
;
159 hr
= SafeArrayUnaccessData(psaStrings
);
161 IHTMLDocument2
* document
= (IHTMLDocument2
*)documentPtr
;
162 document
->write(psaStrings
);
164 // SafeArrayDestroy calls SysFreeString for each BSTR
165 SafeArrayDestroy(psaStrings
);
169 wxLogError("wxWebViewIE::SetPage() : psaStrings is NULL");
174 wxString
wxWebViewIE::GetPageSource()
176 wxVariant documentVariant
= m_ie
.GetProperty("Document");
177 void* documentPtr
= documentVariant
.GetVoidPtr();
179 if (documentPtr
== NULL
)
181 return wxEmptyString
;
184 IHTMLDocument2
* document
= (IHTMLDocument2
*)documentPtr
;
186 IHTMLElement
*bodyTag
= NULL
;
187 IHTMLElement
*htmlTag
= NULL
;
188 document
->get_body(&bodyTag
);
189 wxASSERT(bodyTag
!= NULL
);
192 bodyTag
->get_parentElement(&htmlTag
);
193 wxASSERT(htmlTag
!= NULL
);
196 htmlTag
->get_outerHTML(&bstr
);
201 //wxMessageBox(wxString(bstr));
203 // TODO: check encoding
204 return wxString(bstr
);
207 // FIXME? retrieve OLECMDID_GETZOOMRANGE instead of hardcoding range 0-4
208 wxWebViewZoom
wxWebViewIE::GetZoom()
210 const int zoom
= GetIETextZoom();
215 return wxWEB_VIEW_ZOOM_TINY
;
218 return wxWEB_VIEW_ZOOM_SMALL
;
221 return wxWEB_VIEW_ZOOM_MEDIUM
;
224 return wxWEB_VIEW_ZOOM_LARGE
;
227 return wxWEB_VIEW_ZOOM_LARGEST
;
231 return wxWEB_VIEW_ZOOM_MEDIUM
;
234 void wxWebViewIE::SetZoom(wxWebViewZoom zoom
)
236 // I know I could cast from enum to int since wxWebViewZoom happens to
237 // match with IE's zoom levels, but I don't like doing that, what if enum
241 case wxWEB_VIEW_ZOOM_TINY
:
244 case wxWEB_VIEW_ZOOM_SMALL
:
247 case wxWEB_VIEW_ZOOM_MEDIUM
:
250 case wxWEB_VIEW_ZOOM_LARGE
:
253 case wxWEB_VIEW_ZOOM_LARGEST
:
261 void wxWebViewIE::SetIETextZoom(int level
)
264 VariantInit (&zoomVariant
);
265 V_VT(&zoomVariant
) = VT_I4
;
266 V_I4(&zoomVariant
) = level
;
268 HRESULT result
= m_webBrowser
->ExecWB(OLECMDID_ZOOM
,
269 OLECMDEXECOPT_DONTPROMPTUSER
,
271 wxASSERT (result
== S_OK
);
273 VariantClear (&zoomVariant
);
276 int wxWebViewIE::GetIETextZoom()
279 VariantInit (&zoomVariant
);
280 V_VT(&zoomVariant
) = VT_I4
;
281 V_I4(&zoomVariant
) = 4;
283 HRESULT result
= m_webBrowser
->ExecWB(OLECMDID_ZOOM
,
284 OLECMDEXECOPT_DONTPROMPTUSER
,
286 wxASSERT (result
== S_OK
);
288 int zoom
= V_I4(&zoomVariant
);
289 // wxMessageBox(wxString::Format("Zoom : %i", zoom));
290 VariantClear (&zoomVariant
);
295 void wxWebViewIE::SetIEOpticalZoom(float zoom
)
297 // TODO: add support for optical zoom (IE7+ only)
299 // TODO: get range from OLECMDID_OPTICAL_GETZOOMRANGE instead of hardcoding?
300 wxASSERT(zoom
>= 10.0f
);
301 wxASSERT(zoom
<= 1000.0f
);
304 VariantInit (&zoomVariant
);
305 V_VT(&zoomVariant
) = VT_I4
;
306 V_I4(&zoomVariant
) = (zoom
* 100.0f
);
308 HRESULT result
= m_webBrowser
->ExecWB((OLECMDID
)OLECMDID_OPTICAL_ZOOM
,
309 OLECMDEXECOPT_DODEFAULT
,
312 wxASSERT (result
== S_OK
);
315 float wxWebViewIE::GetIEOpticalZoom()
317 // TODO: add support for optical zoom (IE7+ only)
320 VariantInit (&zoomVariant
);
321 V_VT(&zoomVariant
) = VT_I4
;
322 V_I4(&zoomVariant
) = -1;
324 HRESULT result
= m_webBrowser
->ExecWB((OLECMDID
)OLECMDID_OPTICAL_ZOOM
,
325 OLECMDEXECOPT_DODEFAULT
, NULL
,
327 wxASSERT (result
== S_OK
);
329 const int zoom
= V_I4(&zoomVariant
);
330 VariantClear (&zoomVariant
);
332 return zoom
/ 100.0f
;
335 void wxWebViewIE::SetZoomType(wxWebViewZoomType
)
337 // TODO: add support for optical zoom (IE7+ only)
341 wxWebViewZoomType
wxWebViewIE::GetZoomType() const
343 // TODO: add support for optical zoom (IE7+ only)
344 return wxWEB_VIEW_ZOOM_TYPE_TEXT
;
347 bool wxWebViewIE::CanSetZoomType(wxWebViewZoomType
) const
349 // both are supported
350 // TODO: IE6 only supports text zoom, check if it's IE6 first
354 void wxWebViewIE::Print()
356 m_webBrowser
->ExecWB(OLECMDID_PRINTPREVIEW
,
357 OLECMDEXECOPT_DODEFAULT
, NULL
, NULL
);
360 bool wxWebViewIE::CanGoBack()
363 return m_historyPosition
> 0;
368 bool wxWebViewIE::CanGoForward()
371 return m_historyPosition
!= m_historyList
.size() - 1;
376 void wxWebViewIE::LoadHistoryItem(wxSharedPtr
<wxWebHistoryItem
> item
)
379 for(unsigned int i
= 0; i
< m_historyList
.size(); i
++)
381 //We compare the actual pointers to find the correct item
382 if(m_historyList
[i
].get() == item
.get())
385 wxASSERT_MSG(pos
!= m_historyList
.size(), "invalid history item");
386 m_historyLoadingFromList
= true;
387 LoadUrl(item
->GetUrl());
388 m_historyPosition
= pos
;
391 wxVector
<wxSharedPtr
<wxWebHistoryItem
> > wxWebViewIE::GetBackwardHistory()
393 wxVector
<wxSharedPtr
<wxWebHistoryItem
> > backhist
;
394 //As we don't have std::copy or an iterator constructor in the wxwidgets
395 //native vector we construct it by hand
396 for(int i
= 0; i
< m_historyPosition
; i
++)
398 backhist
.push_back(m_historyList
[i
]);
403 wxVector
<wxSharedPtr
<wxWebHistoryItem
> > wxWebViewIE::GetForwardHistory()
405 wxVector
<wxSharedPtr
<wxWebHistoryItem
> > forwardhist
;
406 //As we don't have std::copy or an iterator constructor in the wxwidgets
407 //native vector we construct it by hand
408 for(int i
= m_historyPosition
+ 1; i
< m_historyList
.size(); i
++)
410 forwardhist
.push_back(m_historyList
[i
]);
415 void wxWebViewIE::GoBack()
417 LoadHistoryItem(m_historyList
[m_historyPosition
- 1]);
420 void wxWebViewIE::GoForward()
422 LoadHistoryItem(m_historyList
[m_historyPosition
+ 1]);
425 void wxWebViewIE::Stop()
427 wxVariant out
= m_ie
.CallMethod("Stop");
429 // FIXME: why is out value null??
430 //return (HRESULT)(out.GetLong()) == S_OK;
433 void wxWebViewIE::ClearHistory()
435 m_historyList
.clear();
436 m_historyPosition
= -1;
439 void wxWebViewIE::EnableHistory(bool enable
)
441 m_historyEnabled
= enable
;
442 m_historyList
.clear();
443 m_historyPosition
= -1;
446 void wxWebViewIE::Reload(wxWebViewReloadFlags flags
)
450 V_VT(&level
) = VT_I2
;
454 case wxWEB_VIEW_RELOAD_DEFAULT
:
455 V_I2(&level
) = REFRESH_NORMAL
;
457 case wxWEB_VIEW_RELOAD_NO_CACHE
:
458 V_I2(&level
) = REFRESH_COMPLETELY
;
461 wxFAIL_MSG("Unexpected reload type");
464 m_webBrowser
->Refresh2(&level
);
467 bool wxWebViewIE::IsOfflineMode()
469 wxVariant out
= m_ie
.GetProperty("Offline");
471 wxASSERT(out
.GetType() == "bool");
473 return out
.GetBool();
476 void wxWebViewIE::SetOfflineMode(bool offline
)
478 // FIXME: the wxWidgets docs do not really document what the return
479 // parameter of PutProperty is
480 const bool success
= m_ie
.PutProperty("Offline", (offline
?
486 bool wxWebViewIE::IsBusy()
488 if (m_isBusy
) return true;
490 wxVariant out
= m_ie
.GetProperty("Busy");
492 wxASSERT(out
.GetType() == "bool");
494 return out
.GetBool();
497 wxString
wxWebViewIE::GetCurrentURL()
499 wxVariant out
= m_ie
.GetProperty("LocationURL");
501 wxASSERT(out
.GetType() == "string");
502 return out
.GetString();
505 wxString
wxWebViewIE::GetCurrentTitle()
507 wxVariant documentVariant
= m_ie
.GetProperty("Document");
508 void* documentPtr
= documentVariant
.GetVoidPtr();
509 IHTMLDocument2
* document
= (IHTMLDocument2
*)documentPtr
;
511 wxASSERT(documentPtr
&& document
);
514 document
->get_nameProp(&title
);
515 return wxString(title
);
518 bool wxWebViewIE::CanCut()
520 return CanExecCommand("Cut");
523 bool wxWebViewIE::CanCopy()
525 return CanExecCommand("Copy");
527 bool wxWebViewIE::CanPaste()
529 return CanExecCommand("Paste");
532 void wxWebViewIE::Cut()
537 void wxWebViewIE::Copy()
542 void wxWebViewIE::Paste()
544 ExecCommand("Paste");
547 bool wxWebViewIE::CanUndo()
549 return CanExecCommand("Undo");
551 bool wxWebViewIE::CanRedo()
553 return CanExecCommand("Redo");
556 void wxWebViewIE::Undo()
561 void wxWebViewIE::Redo()
566 bool wxWebViewIE::CanExecCommand(wxString command
)
568 wxVariant documentVariant
= m_ie
.GetProperty("Document");
569 void* documentPtr
= documentVariant
.GetVoidPtr();
570 IHTMLDocument2
* document
= (IHTMLDocument2
*)documentPtr
;
572 wxASSERT(documentPtr
&& document
);
574 VARIANT_BOOL enabled
;
575 document
->queryCommandEnabled(SysAllocString(command
.wc_str()), &enabled
);
577 return (enabled
== VARIANT_TRUE
);
580 void wxWebViewIE::ExecCommand(wxString command
)
582 wxVariant documentVariant
= m_ie
.GetProperty("Document");
583 void* documentPtr
= documentVariant
.GetVoidPtr();
584 IHTMLDocument2
* document
= (IHTMLDocument2
*)documentPtr
;
586 wxASSERT(documentPtr
&& document
);
588 document
->execCommand(SysAllocString(command
.wc_str()), VARIANT_FALSE
, VARIANT(), NULL
);
591 void wxWebViewIE::onActiveXEvent(wxActiveXEvent
& evt
)
593 if (m_webBrowser
== NULL
) return;
595 switch (evt
.GetDispatchId())
597 case DISPID_BEFORENAVIGATE2
:
601 wxString url
= evt
[1].GetString();
602 wxString target
= evt
[3].GetString();
604 wxWebNavigationEvent
event(wxEVT_COMMAND_WEB_VIEW_NAVIGATING
,
605 GetId(), url
, target
, true);
606 event
.SetEventObject(this);
607 HandleWindowEvent(event
);
609 if (event
.IsVetoed())
611 wxActiveXEventNativeMSW
* nativeParams
=
612 evt
.GetNativeParameters();
613 *V_BOOLREF(&nativeParams
->pDispParams
->rgvarg
[0]) = VARIANT_TRUE
;
616 // at this point, either the navigation event has been cancelled
617 // and we're not busy, either it was accepted and IWebBrowser2's
618 // Busy property will be true; so we don't need our override
625 case DISPID_NAVIGATECOMPLETE2
:
627 wxString url
= evt
[1].GetString();
628 // TODO: set target parameter if possible
629 wxString target
= wxEmptyString
;
630 wxWebNavigationEvent
event(wxEVT_COMMAND_WEB_VIEW_NAVIGATED
,
631 GetId(), url
, target
, false);
632 event
.SetEventObject(this);
633 HandleWindowEvent(event
);
637 case DISPID_PROGRESSCHANGE
:
643 case DISPID_DOCUMENTCOMPLETE
:
645 //Only send a complete even if we are actually finished, this brings
646 //the event in to line with webkit
648 m_webBrowser
->get_ReadyState( &rs
);
649 if(rs
!= READYSTATE_COMPLETE
)
652 wxString url
= evt
[1].GetString();
654 //As we are complete we also add to the history list, but not if the
655 //page is not the main page, ie it is a subframe
656 if(m_historyEnabled
&& !m_historyLoadingFromList
&& url
== GetCurrentURL())
658 //If we are not at the end of the list, then erase everything
659 //between us and the end before adding the new page
660 if(m_historyPosition
!= m_historyList
.size() - 1)
662 m_historyList
.erase(m_historyList
.begin() + m_historyPosition
+ 1,
663 m_historyList
.end());
665 wxSharedPtr
<wxWebHistoryItem
> item(new wxWebHistoryItem(url
, GetCurrentTitle()));
666 m_historyList
.push_back(item
);
669 //Reset as we are done now
670 m_historyLoadingFromList
= false;
671 // TODO: set target parameter if possible
672 wxString target
= wxEmptyString
;
673 wxWebNavigationEvent
event(wxEVT_COMMAND_WEB_VIEW_LOADED
, GetId(),
675 event
.SetEventObject(this);
676 HandleWindowEvent(event
);
680 case DISPID_STATUSTEXTCHANGE
:
685 case DISPID_TITLECHANGE
:
690 case DISPID_NAVIGATEERROR
:
692 wxWebNavigationError errorType
= wxWEB_NAV_ERR_OTHER
;
693 wxString errorCode
= "?";
694 switch (evt
[3].GetLong())
696 case INET_E_INVALID_URL
: // (0x800C0002L or -2146697214)
697 errorCode
= "INET_E_INVALID_URL";
698 errorType
= wxWEB_NAV_ERR_REQUEST
;
700 case INET_E_NO_SESSION
: // (0x800C0003L or -2146697213)
701 errorCode
= "INET_E_NO_SESSION";
702 errorType
= wxWEB_NAV_ERR_CONNECTION
;
704 case INET_E_CANNOT_CONNECT
: // (0x800C0004L or -2146697212)
705 errorCode
= "INET_E_CANNOT_CONNECT";
706 errorType
= wxWEB_NAV_ERR_CONNECTION
;
708 case INET_E_RESOURCE_NOT_FOUND
: // (0x800C0005L or -2146697211)
709 errorCode
= "INET_E_RESOURCE_NOT_FOUND";
710 errorType
= wxWEB_NAV_ERR_NOT_FOUND
;
712 case INET_E_OBJECT_NOT_FOUND
: // (0x800C0006L or -2146697210)
713 errorCode
= "INET_E_OBJECT_NOT_FOUND";
714 errorType
= wxWEB_NAV_ERR_NOT_FOUND
;
716 case INET_E_DATA_NOT_AVAILABLE
: // (0x800C0007L or -2146697209)
717 errorCode
= "INET_E_DATA_NOT_AVAILABLE";
718 errorType
= wxWEB_NAV_ERR_NOT_FOUND
;
720 case INET_E_DOWNLOAD_FAILURE
: // (0x800C0008L or -2146697208)
721 errorCode
= "INET_E_DOWNLOAD_FAILURE";
722 errorType
= wxWEB_NAV_ERR_CONNECTION
;
724 case INET_E_AUTHENTICATION_REQUIRED
: // (0x800C0009L or -2146697207)
725 errorCode
= "INET_E_AUTHENTICATION_REQUIRED";
726 errorType
= wxWEB_NAV_ERR_AUTH
;
728 case INET_E_NO_VALID_MEDIA
: // (0x800C000AL or -2146697206)
729 errorCode
= "INET_E_NO_VALID_MEDIA";
730 errorType
= wxWEB_NAV_ERR_REQUEST
;
732 case INET_E_CONNECTION_TIMEOUT
: // (0x800C000BL or -2146697205)
733 errorCode
= "INET_E_CONNECTION_TIMEOUT";
734 errorType
= wxWEB_NAV_ERR_CONNECTION
;
736 case INET_E_INVALID_REQUEST
: // (0x800C000CL or -2146697204)
737 errorCode
= "INET_E_INVALID_REQUEST";
738 errorType
= wxWEB_NAV_ERR_REQUEST
;
740 case INET_E_UNKNOWN_PROTOCOL
: // (0x800C000DL or -2146697203)
741 errorCode
= "INET_E_UNKNOWN_PROTOCOL";
742 errorType
= wxWEB_NAV_ERR_REQUEST
;
744 case INET_E_SECURITY_PROBLEM
: // (0x800C000EL or -2146697202)
745 errorCode
= "INET_E_SECURITY_PROBLEM";
746 errorType
= wxWEB_NAV_ERR_SECURITY
;
748 case INET_E_CANNOT_LOAD_DATA
: // (0x800C000FL or -2146697201)
749 errorCode
= "INET_E_CANNOT_LOAD_DATA";
750 errorType
= wxWEB_NAV_ERR_OTHER
;
752 case INET_E_CANNOT_INSTANTIATE_OBJECT
:
753 // CoCreateInstance will return an error code if this happens,
754 // we'll handle this above.
757 case INET_E_REDIRECT_FAILED
: // (0x800C0014L or -2146697196)
758 errorCode
= "INET_E_REDIRECT_FAILED";
759 errorType
= wxWEB_NAV_ERR_OTHER
;
761 case INET_E_REDIRECT_TO_DIR
: // (0x800C0015L or -2146697195)
762 errorCode
= "INET_E_REDIRECT_TO_DIR";
763 errorType
= wxWEB_NAV_ERR_REQUEST
;
765 case INET_E_CANNOT_LOCK_REQUEST
: // (0x800C0016L or -2146697194)
766 errorCode
= "INET_E_CANNOT_LOCK_REQUEST";
767 errorType
= wxWEB_NAV_ERR_OTHER
;
769 case INET_E_USE_EXTEND_BINDING
: // (0x800C0017L or -2146697193)
770 errorCode
= "INET_E_USE_EXTEND_BINDING";
771 errorType
= wxWEB_NAV_ERR_OTHER
;
773 case INET_E_TERMINATED_BIND
: // (0x800C0018L or -2146697192)
774 errorCode
= "INET_E_TERMINATED_BIND";
775 errorType
= wxWEB_NAV_ERR_OTHER
;
777 case INET_E_INVALID_CERTIFICATE
: // (0x800C0019L or -2146697191)
778 errorCode
= "INET_E_INVALID_CERTIFICATE";
779 errorType
= wxWEB_NAV_ERR_CERTIFICATE
;
781 case INET_E_CODE_DOWNLOAD_DECLINED
: // (0x800C0100L or -2146696960)
782 errorCode
= "INET_E_CODE_DOWNLOAD_DECLINED";
783 errorType
= wxWEB_NAV_ERR_USER_CANCELLED
;
785 case INET_E_RESULT_DISPATCHED
: // (0x800C0200L or -2146696704)
786 // cancel request cancelled...
787 errorCode
= "INET_E_RESULT_DISPATCHED";
788 errorType
= wxWEB_NAV_ERR_OTHER
;
790 case INET_E_CANNOT_REPLACE_SFP_FILE
: // (0x800C0300L or -2146696448)
791 errorCode
= "INET_E_CANNOT_REPLACE_SFP_FILE";
792 errorType
= wxWEB_NAV_ERR_SECURITY
;
794 case INET_E_CODE_INSTALL_BLOCKED_BY_HASH_POLICY
:
795 errorCode
= "INET_E_CODE_INSTALL_BLOCKED_BY_HASH_POLICY";
796 errorType
= wxWEB_NAV_ERR_SECURITY
;
798 case INET_E_CODE_INSTALL_SUPPRESSED
:
799 errorCode
= "INET_E_CODE_INSTALL_SUPPRESSED";
800 errorType
= wxWEB_NAV_ERR_SECURITY
;
804 wxString url
= evt
[1].GetString();
805 wxString target
= evt
[2].GetString();
806 wxWebNavigationEvent
event(wxEVT_COMMAND_WEB_VIEW_ERROR
, GetId(),
808 event
.SetEventObject(this);
809 event
.SetInt(errorType
);
810 event
.SetString(errorCode
);
811 HandleWindowEvent(event
);
815 case DISPID_COMMANDSTATECHANGE
:
817 long commandId
= evt
[0].GetLong();
818 bool enable
= evt
[1].GetBool();
819 if (commandId
== CSC_NAVIGATEBACK
)
821 m_canNavigateBack
= enable
;
823 else if (commandId
== CSC_NAVIGATEFORWARD
)
825 m_canNavigateForward
= enable
;
829 case DISPID_NEWWINDOW3
:
831 wxString url
= evt
[4].GetString();
833 wxWebNavigationEvent
event(wxEVT_COMMAND_WEB_VIEW_NEWWINDOW
,
834 GetId(), url
, wxEmptyString
, true);
835 event
.SetEventObject(this);
836 HandleWindowEvent(event
);
838 //If we veto the event then we cancel the new window
839 if (event
.IsVetoed())
841 wxActiveXEventNativeMSW
* nativeParams
= evt
.GetNativeParameters();
842 *V_BOOLREF(&nativeParams
->pDispParams
->rgvarg
[3]) = VARIANT_TRUE
;