From 95ea3af2b190553309f06f61da3e326577066423 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 16 Dec 2023 13:17:59 -0500 Subject: [PATCH] update bindings to MSFT webview2 --- minigui_addons/webview.d | 59 +- webview.d | 11352 ++++++++++++++++++++++++++++++------- 2 files changed, 9440 insertions(+), 1971 deletions(-) diff --git a/minigui_addons/webview.d b/minigui_addons/webview.d index 9506133..16bdd64 100644 --- a/minigui_addons/webview.d +++ b/minigui_addons/webview.d @@ -29,6 +29,9 @@ module arsd.minigui_addons.webview; // FIXME: i think i can download the cef automatically if needed. +// want to add mute support +// https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/win32/icorewebview2_8?view=webview2-1.0.2210.55 + import arsd.core; version(linux) @@ -114,6 +117,7 @@ class WebViewWidgetBase : NestedChildWindowWidget { version(wv2) class WebViewWidget_WV2 : WebViewWidgetBase { private RC!ICoreWebView2 webview_window; + private RC!ICoreWebView2_12 webview_window_12; private RC!ICoreWebView2Environment webview_env; private RC!ICoreWebView2Controller controller; @@ -135,11 +139,58 @@ class WebViewWidget_WV2 : WebViewWidgetBase { webview_window = controller.CoreWebView2; + webview_window_12 = webview_window.queryInterface!ICoreWebView2_12; + + bool enableStatusBar = true; + + if(webview_window_12) { + enableStatusBar = false; + webview_window_12.add_StatusBarTextChanged((sender, args) { + this.status = toGC(&webview_window_12.raw.get_StatusBarText); + return S_OK; + }); + } + webview_window.add_DocumentTitleChanged((sender, args) { this.title = toGC(&sender.get_DocumentTitle); return S_OK; }); + webview_window.add_NewWindowRequested((sender, args) { + // args.get_Uri + // args.get_IsUserInitiated + // args.put_NewWindow(); + + string url = toGC(&args.get_Uri); + int ret; + + WebViewWidget_WV2 widget; + + runInGuiThread({ + ret = 0; + + scope WebViewWidget delegate(Widget, BrowserSettings) accept = (parent, passed_settings) { + ret = 1; + if(parent !is null) { + auto widget = new WebViewWidget_WV2(url, openNewWindow, passed_settings, parent); + + return widget; + } + return null; + }; + openNewWindow(OpenNewWindowParams(url, accept)); + return; + }); + + if(ret) { + args.put_Handled(true); + // args.put_NewWindow(widget.webview_window.returnable); + } + + return S_OK; + + }); + // add_HistoryChanged // that's where CanGoBack and CanGoForward can be rechecked. @@ -147,7 +198,7 @@ class WebViewWidget_WV2 : WebViewWidgetBase { Settings.IsScriptEnabled = TRUE; Settings.AreDefaultScriptDialogsEnabled = TRUE; Settings.IsWebMessageEnabled = TRUE; - + Settings.IsStatusBarEnabled = enableStatusBar; auto ert = webview_window.add_NavigationStarting( delegate (sender, args) { @@ -162,8 +213,10 @@ class WebViewWidget_WV2 : WebViewWidgetBase { //error = webview_window.NavigateToString("Hello"w.ptr); //error = webview_window.Navigate("http://192.168.1.10/"w.ptr); - WCharzBuffer bfr = WCharzBuffer(url); - webview_window.Navigate(bfr.ptr); + if(url !is null) { + WCharzBuffer bfr = WCharzBuffer(url); + webview_window.Navigate(bfr.ptr); + } controller.IsVisible = true; diff --git a/webview.d b/webview.d index 5d84407..fda96ad 100644 --- a/webview.d +++ b/webview.d @@ -103,9 +103,10 @@ enum activeEngine = WebviewEngine.wv2; struct RC(T) { private T object; - this(T t) { + this(T t, bool addRef = true) { object = t; - object.AddRef(); + if(addRef && object) + object.AddRef(); } this(this) { if(object is null) return; @@ -117,8 +118,17 @@ struct RC(T) { object = null; } + RC!I queryInterface(I)() { + I i; + auto err = object.QueryInterface(&I.iid, cast(void**) &i); + if(err != S_OK) + return RC!I(null, false); + else + return RC!I(i, false); // QueryInterface already calls AddRef + } + bool opCast(T:bool)() nothrow { - return inner !is null; + return object !is null; } void opAssign(T obj) { @@ -146,6 +156,13 @@ struct RC(T) { } } +/+ +// does NOT add ref, use after you queryInterface +RC!T makeRcd(T)(T t) { + return RC!T(t, false); +} ++/ + extern(Windows) alias StringMethod = int delegate(wchar**); @@ -22326,981 +22343,1970 @@ cef_zip_reader_t* cef_zip_reader_create (cef_stream_reader_t* stream); version(Windows) { -/* ************************************ */ +/+ + ***** Webview2 Bindings ***** -// File generated by idl2d from -// C:\Users\me\source\repos\webviewtest\packages\Microsoft.Web.WebView2.1.0.664.37\WebView2.idl -//module webview2; + TO UPDATE THIS: + Get the new package from https://www.nuget.org/packages/Microsoft.Web.WebView2 + Note that is a .zip file so you can extract the WebView2.idl file by just treating it as such + + Use my idl2d fork (from ~/program/idl2d or dub) on it `./idl2d WebView2.idl` to make webview2.d. + + Just delete any `import sdk.*` lines. Comment out the lines that mention `DEFINE_ENUM_FLAG_OPERATORS` (there's like a dozen, it is some C macro that isn't translated and i don't think it is important). + + And paste it in the version(inline_webview2_bindings) block. ++/ + +alias EventRegistrationToken = long; +version=inline_webview2_bindings; + +version(inline_webview2_bindings) { public import core.sys.windows.windows; public import core.sys.windows.unknwn; public import core.sys.windows.oaidl; public import core.sys.windows.objidl; -alias EventRegistrationToken = long; // Copyright (C) Microsoft Corporation. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -/+ -Copyright (C) Microsoft Corporation. All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * The name of Microsoft Corporation, or the names of its contributors -may not be used to endorse or promote products derived from this -software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -+/ - -// # API Review -// All APIs need API review. List API review documents here with the URI to the -// doc and the change ID of the IDL when the document was created. -// API documents: -// * 916246ec [WebView2 API Specification](https://aka.ms/WebView2APISpecification) -// -// # Style -// Follow the [Win32 API Design Guidelines](https://aka.ms/Win32APIDesignGuidelines) -// while editing this file. For any style rules unspecified follow the Anaheim -// style. Specifically, follow Anaheim indenting and line limit style rules in -// this file. -// -// # Documentation -// Please ensure that any new API includes complete documentation in its -// JavaDoc comments in this file and sample usage in the Sample App. -// Comments intended for public API documentation should start with 3 slashes. -// The first sentence is the brief the brief description of the API and -// shouldn't include the name of the API. Use markdown to style your public API -// documentation. -// -// # WebView and JavaScript capitalization -// camel case | webViewExample | javaScriptExample -// Pascal case | WebViewExample | JavaScriptExample -// Upper case | WEBVIEW_EXAMPLE | JAVASCRIPT_EXAMPLE -// -// That said, in API names use the term 'script' rather than 'JavaScript'. -// Script is shorter and there is only one supported scripting language on the -// web so the specificity of JavaScript is unnecessary. -// -// # URI (not URL) -// We use Uri in parameter names and type names -// throughout. URIs identify resources while URLs (a subset of URIs) also -// locates resources. This difference is not generally well understood. Because -// all URLs are URIs we can ignore the conversation of trying to explain the -// difference between the two and still be technically accurate by always using -// the term URI. Additionally, whether a URI is locatable depends on the context -// since end developers can at runtime specify custom URI scheme resolvers. -// -// # Event pattern -// Events have a method to add and to remove event handlers: -// ``` -// HRESULT add_{EventName}( -// ICoreWebView2{EventName}EventHandler* eventHandler, -// EventRegistrationToken* token); -// -// HRESULT remove_{EventName}(EventRegistrationToken token); -// ``` -// Add takes an event handler delegate interface with a single Invoke method. -// ``` -// ICoreWebView2{EventName}EventHandler::Invoke( -// {SenderType}* sender, -// ICoreWebView2{EventHandler}EventArgs* args); -// ``` -// The Invoke method has two parameters. The first is the sender, the object -// which is firing the event. The second is the EventArgs type. It doesn't take -// the event arg parameters directly so we can version interfaces correctly. -// If the event has no properties on its event args type, then the Invoke method -// should take IUnknown* as its event args parameter so it is possible to add -// event args interfaces in the future without requiring a new event. For events -// with no sender (a static event), the Invoke method has only the event args -// parameter. -// -// # Deferrable event pattern -// Generally, events should be deferrable when their event args have settable -// properties. In order for the caller to use asynchronous methods to produce -// the value for those settable properties we must allow the caller to defer -// the WebView reading those properties until asynchronously later. A deferrable -// event should have the following method on its event args interface: -// `HRESULT GetDeferral([out, retval] ICoreWebView2Deferral** deferral);` -// If called, the event is deferred and calling Complete on the -// ICoreWebView2Deferral ends the deferral. -// -// # Asynchronous method pattern -// Async methods take a final parameter that is the completed handler: -// `{MethodName}(..., ICoreWebView2{MethodName}CompletedHandler* handler)` -// The handler has a single Invoke method: -// `ICoreWebView2{MethodName}CompletedHandler::Invoke( -// HRESULT errorCode, {AsyncReturnType});` -// -// # Property pattern -// For properties with getters in IDL you have -// `[propget] HRESULT {PropertyName}([out, retval] {PropertyType}*)` -// And for properties which also have setters in IDL you have -// `[propput] HRESULT {PropertyName}([in] {PropertyType});` -// -// # Versioning -// The loader DLL may be older or newer than the client DLL. We have to deal -// with compatibility across several dimensions: -// * There's the DLL export contract between the loader DLL and the client -// DLL as well as the interfaces defined in this IDL that are built into both -// the app code and the client DLL. -// * There are two kinds of versioned changes we need to be able to make: -// compatible changes and breaking changes. In both cases we need to make the -// change in a safe manner. For compatible that means everything continues to -// work unchanged despite the loader and client being different versions. For -// breaking changes this means the host app is unable to create a -// WebView using the different version browser and receives an associated -// error message (doesn't crash). -// * We also need to consider when the loader and host app is using a newer -// version than the browser and when the loader and host app is using an -// older version than the browser. -// -// ## Scenario 1: Older SDK in host app, Newer browser, Compatible change -// In order to be compatible the newer client DLL must still support the older -// client DLL exports. Similarly for the interfaces - they must all be exactly -// the same with no modified IIDs, no reordered methods, no modified method -// parameters and so on. The client DLL may have more DLL exports and more interfaces -// but no changes to the older shipped DLL export or interfaces. -// App code doesn't need to do anything special in this case. -// -// ## Scenario 2: Older SDK in host app, Newer browser, Breaking change -// For breaking changes in the DLL export, the client DLL must change the DLL -// export name. The old loader will attempt to use the old client DLL export. -// When the loader finds the export missing it will fail. -// For breaking changes in the interface, we must change the IID of the modified -// interface. Additionally the loader DLL must validate that the returned object -// supports the IID it expects and fail otherwise. -// The app code must ensure that WebView objects succeed in their QueryInterface -// calls. Basically the app code must have error handling for objects failing -// QueryInterface and for the initial creation failing in order to handle -// breaking changes gracefully. -// -// ## Scenario 3: Newer SDK in host app, Older browser, Compatible change -// In order to be compatible, the newer loader DLL must fallback to calling the -// older client DLL exports if the client DLL doesn't have the most recent DLL -// exports. -// For interface versioning the loader DLL shouldn't be impacted. -// The app code must not assume an object supports all newer versioned -// interfaces. Ideally it checks the success of QueryInterface for newer -// interfaces and if not supported turns off associated app features or -// otherwise fails gracefully. -// -// ## Scenario 4: Newer SDK in host app, Older browser, Breaking change -// For breaking changes in the DLL export, a new export name will be used after -// a breaking change and the loader DLL will just not check for pre-breaking -// change exports from the client DLL. If the client DLL doesn't have the -// correct exports, then the loader returns failure to the caller. -// For breaking changes in the interface, the IIDs of broken interfaces will -// have been modified. The loader will validate that the -// object returned supports the correct base interface IID and return failure to -// the caller otherwise. -// The app code must allow for QueryInterface calls to fail if the object -// doesn't support the newer IIDs. -// -// ## Actions -// * DLL export compatible changes: Create a new DLL export with a new name. -// Ideally implement the existing DLL export as a call into the new DLL -// export to reduce upkeep burden. -// * DLL export breaking changes: Give the modified DLL export a new name and -// remove all older DLL exports. -// * Interface compatible changes: Don't modify shipped interfaces. Add a new -// interface with an incremented version number suffix -// (ICoreWebView2_3) or feature group name suffix -// (ICoreWebView2WithNavigationHistory). -// * Interface breaking changes: After modifying a shipped interface, give it -// a new IID. -// * Loader: When finding the client DLL export it must check its known range -// of compatible exports in order from newest to oldest and use the newest -// one found. It must not attempt to use an older export from before a -// breaking change. Before returning objects to the caller, the loader must -// validate that the object actually implements the expected interface. -// * App code: Check for error from the DLL export methods as they can fail if -// the loader is used with an old browser from before a breaking change or -// with a newer browser that is after a breaking change. -// Check for errors when calling QueryInterface on a WebView object. The -// QueryInterface call may fail with E_NOINTERFACE if the object is from an -// older browser version that doesn't support the newer interface or if -// using a newer browser version that had a breaking change on that -// interface. - -/+[uuid(26d34152-879f-4065-bea2-3daa2cfadfb8), version(1.0)]+/ -/+ library WebView2 +/ +@("uuid(26d34152-879f-4065-bea2-3daa2cfadfb8), version(1.0)") +enum LibraryInfo; +version(all) +{ /+ library WebView2 +/ // Interface forward declarations + /+ interface ICoreWebView2AcceleratorKeyPressedEventArgs; +/ +/+ interface ICoreWebView2AcceleratorKeyPressedEventArgs2; +/ /+ interface ICoreWebView2AcceleratorKeyPressedEventHandler; +/ /+ interface ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler; +/ /+ interface ICoreWebView2CallDevToolsProtocolMethodCompletedHandler; +/ /+ interface ICoreWebView2CapturePreviewCompletedHandler; +/ /+ interface ICoreWebView2; +/ +/+ interface ICoreWebView2_2; +/ +/+ interface ICoreWebView2_3; +/ +/+ interface ICoreWebView2_4; +/ +/+ interface ICoreWebView2_5; +/ +/+ interface ICoreWebView2_6; +/ +/+ interface ICoreWebView2_7; +/ +/+ interface ICoreWebView2_8; +/ +/+ interface ICoreWebView2_9; +/ +/+ interface ICoreWebView2_10; +/ +/+ interface ICoreWebView2_11; +/ +/+ interface ICoreWebView2_12; +/ +/+ interface ICoreWebView2_13; +/ +/+ interface ICoreWebView2_14; +/ +/+ interface ICoreWebView2_15; +/ +/+ interface ICoreWebView2_16; +/ +/+ interface ICoreWebView2_17; +/ +/+ interface ICoreWebView2_18; +/ +/+ interface ICoreWebView2_19; +/ +/+ interface ICoreWebView2_20; +/ +/+ interface ICoreWebView2BasicAuthenticationRequestedEventArgs; +/ +/+ interface ICoreWebView2BasicAuthenticationRequestedEventHandler; +/ +/+ interface ICoreWebView2BasicAuthenticationResponse; +/ +/+ interface ICoreWebView2BrowserProcessExitedEventArgs; +/ +/+ interface ICoreWebView2BrowserProcessExitedEventHandler; +/ +/+ interface ICoreWebView2BytesReceivedChangedEventHandler; +/ +/+ interface ICoreWebView2CompositionController; +/ +/+ interface ICoreWebView2CompositionController2; +/ +/+ interface ICoreWebView2CompositionController3; +/ /+ interface ICoreWebView2Controller; +/ +/+ interface ICoreWebView2Controller2; +/ +/+ interface ICoreWebView2Controller3; +/ +/+ interface ICoreWebView2Controller4; +/ +/+ interface ICoreWebView2ControllerOptions; +/ +/+ interface ICoreWebView2ControllerOptions2; +/ /+ interface ICoreWebView2ContentLoadingEventArgs; +/ /+ interface ICoreWebView2ContentLoadingEventHandler; +/ -/+ interface ICoreWebView2DocumentTitleChangedEventHandler; +/ -/+ interface ICoreWebView2ContainsFullScreenElementChangedEventHandler; +/ +/+ interface ICoreWebView2ContextMenuRequestedEventArgs; +/ +/+ interface ICoreWebView2ContextMenuRequestedEventHandler; +/ +/+ interface ICoreWebView2Cookie; +/ +/+ interface ICoreWebView2CookieList; +/ +/+ interface ICoreWebView2CookieManager; +/ +/+ interface ICoreWebView2Certificate; +/ +/+ interface ICoreWebView2ClientCertificate; +/ +/+ interface ICoreWebView2StringCollection; +/ +/+ interface ICoreWebView2ClearBrowsingDataCompletedHandler; +/ +/+ interface ICoreWebView2ClientCertificateCollection; +/ +/+ interface ICoreWebView2ClientCertificateRequestedEventArgs; +/ +/+ interface ICoreWebView2ClientCertificateRequestedEventHandler; +/ +/+ interface ICoreWebView2ContextMenuItem; +/ +/+ interface ICoreWebView2ContextMenuItemCollection; +/ +/+ interface ICoreWebView2ContextMenuRequestedEventArgs; +/ +/+ interface ICoreWebView2ContextMenuRequestedEventHandler; +/ +/+ interface ICoreWebView2ContextMenuTarget; +/ +/+ interface ICoreWebView2ClearServerCertificateErrorActionsCompletedHandler; +/ +/+ interface ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler; +/ /+ interface ICoreWebView2CreateCoreWebView2ControllerCompletedHandler; +/ /+ interface ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler; +/ +/+ interface ICoreWebView2ContainsFullScreenElementChangedEventHandler; +/ +/+ interface ICoreWebView2CursorChangedEventHandler; +/ +/+ interface ICoreWebView2CustomItemSelectedEventHandler; +/ +/+ interface ICoreWebView2CustomSchemeRegistration; +/ +/+ interface ICoreWebView2DocumentTitleChangedEventHandler; +/ +/+ interface ICoreWebView2DOMContentLoadedEventArgs; +/ +/+ interface ICoreWebView2DOMContentLoadedEventHandler; +/ /+ interface ICoreWebView2Deferral; +/ /+ interface ICoreWebView2DevToolsProtocolEventReceivedEventArgs; +/ +/+ interface ICoreWebView2DevToolsProtocolEventReceivedEventArgs2; +/ /+ interface ICoreWebView2DevToolsProtocolEventReceivedEventHandler; +/ /+ interface ICoreWebView2DevToolsProtocolEventReceiver; +/ +/+ interface ICoreWebView2DownloadOperation; +/ +/+ interface ICoreWebView2DownloadStartingEventArgs; +/ +/+ interface ICoreWebView2DownloadStartingEventHandler; +/ /+ interface ICoreWebView2Environment; +/ +/+ interface ICoreWebView2Environment2; +/ +/+ interface ICoreWebView2Environment3; +/ +/+ interface ICoreWebView2Environment4; +/ +/+ interface ICoreWebView2Environment5; +/ +/+ interface ICoreWebView2Environment6; +/ +/+ interface ICoreWebView2Environment7; +/ +/+ interface ICoreWebView2Environment8; +/ +/+ interface ICoreWebView2Environment9; +/ +/+ interface ICoreWebView2Environment10; +/ +/+ interface ICoreWebView2Environment11; +/ +/+ interface ICoreWebView2Environment12; +/ +/+ interface ICoreWebView2Environment13; +/ /+ interface ICoreWebView2EnvironmentOptions; +/ +/+ interface ICoreWebView2EnvironmentOptions2; +/ +/+ interface ICoreWebView2EnvironmentOptions3; +/ +/+ interface ICoreWebView2EnvironmentOptions4; +/ +/+ interface ICoreWebView2EnvironmentOptions5; +/ +/+ interface ICoreWebView2EnvironmentOptions6; +/ +/+ interface ICoreWebView2EstimatedEndTimeChangedEventHandler; +/ /+ interface ICoreWebView2ExecuteScriptCompletedHandler; +/ +/+ interface ICoreWebView2GetProcessExtendedInfosCompletedHandler; +/ +/+ interface ICoreWebView2ProcessExtendedInfo; +/ +/+ interface ICoreWebView2ProcessExtendedInfoCollection; +/ +/+ interface ICoreWebView2Frame; +/ +/+ interface ICoreWebView2Frame2; +/ +/+ interface ICoreWebView2Frame3; +/ +/+ interface ICoreWebView2Frame4; +/ +/+ interface ICoreWebView2Frame5; +/ +/+ interface ICoreWebView2FrameContentLoadingEventHandler; +/ +/+ interface ICoreWebView2FrameCreatedEventArgs; +/ +/+ interface ICoreWebView2FrameCreatedEventHandler; +/ +/+ interface ICoreWebView2FrameDestroyedEventHandler; +/ +/+ interface ICoreWebView2FrameDOMContentLoadedEventHandler; +/ +/+ interface ICoreWebView2FrameNameChangedEventHandler; +/ +/+ interface ICoreWebView2FrameNavigationCompletedEventHandler; +/ +/+ interface ICoreWebView2FrameNavigationStartingEventHandler; +/ +/+ interface ICoreWebView2FramePermissionRequestedEventHandler; +/ +/+ interface ICoreWebView2FrameWebMessageReceivedEventHandler; +/ +/+ interface ICoreWebView2FrameInfo; +/ +/+ interface ICoreWebView2FrameInfo2; +/ +/+ interface ICoreWebView2FrameInfoCollection; +/ +/+ interface ICoreWebView2FrameInfoCollectionIterator; +/ /+ interface ICoreWebView2FocusChangedEventHandler; +/ +/+ interface ICoreWebView2GetCookiesCompletedHandler; +/ +/+ interface ICoreWebView2GetNonDefaultPermissionSettingsCompletedHandler; +/ /+ interface ICoreWebView2HistoryChangedEventHandler; +/ /+ interface ICoreWebView2HttpHeadersCollectionIterator; +/ /+ interface ICoreWebView2HttpRequestHeaders; +/ /+ interface ICoreWebView2HttpResponseHeaders; +/ +/+ interface ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler; +/ +/+ interface ICoreWebView2LaunchingExternalUriSchemeEventArgs; +/ +/+ interface ICoreWebView2LaunchingExternalUriSchemeEventHandler; +/ /+ interface ICoreWebView2MoveFocusRequestedEventArgs; +/ /+ interface ICoreWebView2MoveFocusRequestedEventHandler; +/ /+ interface ICoreWebView2NavigationCompletedEventArgs; +/ +/+ interface ICoreWebView2NavigationCompletedEventArgs2; +/ /+ interface ICoreWebView2NavigationCompletedEventHandler; +/ /+ interface ICoreWebView2NavigationStartingEventArgs; +/ +/+ interface ICoreWebView2NavigationStartingEventArgs2; +/ +/+ interface ICoreWebView2NavigationStartingEventArgs3; +/ /+ interface ICoreWebView2NavigationStartingEventHandler; +/ /+ interface ICoreWebView2NewBrowserVersionAvailableEventHandler; +/ /+ interface ICoreWebView2NewWindowRequestedEventArgs; +/ +/+ interface ICoreWebView2NewWindowRequestedEventArgs2; +/ +/+ interface ICoreWebView2NewWindowRequestedEventArgs3; +/ /+ interface ICoreWebView2NewWindowRequestedEventHandler; +/ /+ interface ICoreWebView2PermissionRequestedEventArgs; +/ +/+ interface ICoreWebView2PermissionRequestedEventArgs2; +/ +/+ interface ICoreWebView2PermissionRequestedEventArgs3; +/ /+ interface ICoreWebView2PermissionRequestedEventHandler; +/ +/+ interface ICoreWebView2PermissionSettingCollectionView; +/ +/+ interface ICoreWebView2PermissionSetting; +/ +/+ interface ICoreWebView2PointerInfo; +/ +/+ interface ICoreWebView2PrintSettings; +/ +/+ interface ICoreWebView2PrintSettings2; +/ +/+ interface ICoreWebView2PrintToPdfCompletedHandler; +/ +/+ interface ICoreWebView2PrintCompletedHandler; +/ +/+ interface ICoreWebView2PrintToPdfStreamCompletedHandler; +/ /+ interface ICoreWebView2ProcessFailedEventArgs; +/ +/+ interface ICoreWebView2ProcessFailedEventArgs2; +/ /+ interface ICoreWebView2ProcessFailedEventHandler; +/ +/+ interface ICoreWebView2Profile; +/ +/+ interface ICoreWebView2Profile2; +/ +/+ interface ICoreWebView2Profile3; +/ +/+ interface ICoreWebView2Profile4; +/ +/+ interface ICoreWebView2Profile5; +/ +/+ interface ICoreWebView2Profile6; +/ +/+ interface ICoreWebView2Profile7; +/ +/+ interface ICoreWebView2Profile8; +/ +/+ interface ICoreWebView2ProfileDeletedEventHandler; +/ +/+ interface ICoreWebView2RasterizationScaleChangedEventHandler; +/ +/+ interface ICoreWebView2ServerCertificateErrorDetectedEventArgs; +/ +/+ interface ICoreWebView2ServerCertificateErrorDetectedEventHandler; +/ +/+ interface ICoreWebView2SetPermissionStateCompletedHandler; +/ /+ interface ICoreWebView2ScriptDialogOpeningEventArgs; +/ /+ interface ICoreWebView2ScriptDialogOpeningEventHandler; +/ /+ interface ICoreWebView2Settings; +/ +/+ interface ICoreWebView2Settings2; +/ +/+ interface ICoreWebView2Settings3; +/ +/+ interface ICoreWebView2Settings4; +/ +/+ interface ICoreWebView2Settings5; +/ +/+ interface ICoreWebView2Settings6; +/ +/+ interface ICoreWebView2Settings7; +/ +/+ interface ICoreWebView2Settings8; +/ +/+ interface ICoreWebView2SharedBuffer; +/ /+ interface ICoreWebView2SourceChangedEventArgs; +/ /+ interface ICoreWebView2SourceChangedEventHandler; +/ +/+ interface ICoreWebView2StateChangedEventHandler; +/ +/+ interface ICoreWebView2StatusBarTextChangedEventHandler; +/ +/+ interface ICoreWebView2TrySuspendCompletedHandler; +/ /+ interface ICoreWebView2WebMessageReceivedEventArgs; +/ /+ interface ICoreWebView2WebMessageReceivedEventHandler; +/ /+ interface ICoreWebView2WebResourceRequest; +/ /+ interface ICoreWebView2WebResourceRequestedEventArgs; +/ /+ interface ICoreWebView2WebResourceRequestedEventHandler; +/ /+ interface ICoreWebView2WebResourceResponse; +/ +/+ interface ICoreWebView2WebResourceResponseReceivedEventHandler; +/ +/+ interface ICoreWebView2WebResourceResponseReceivedEventArgs; +/ +/+ interface ICoreWebView2WebResourceResponseView; +/ +/+ interface ICoreWebView2WebResourceResponseViewGetContentCompletedHandler; +/ /+ interface ICoreWebView2WindowCloseRequestedEventHandler; +/ /+ interface ICoreWebView2WindowFeatures; +/ /+ interface ICoreWebView2ZoomFactorChangedEventHandler; +/ +/+ interface ICoreWebView2IsMutedChangedEventHandler; +/ +/+ interface ICoreWebView2IsDocumentPlayingAudioChangedEventHandler; +/ +/+ interface ICoreWebView2ProcessInfo; +/ +/+ interface ICoreWebView2ProcessInfoCollection; +/ +/+ interface ICoreWebView2ProcessInfosChangedEventHandler; +/ +/+ interface ICoreWebView2FaviconChangedEventHandler; +/ +/+ interface ICoreWebView2GetFaviconCompletedHandler; +/ +/+ interface ICoreWebView2ProfileAddBrowserExtensionCompletedHandler; +/ +/+ interface ICoreWebView2ProfileGetBrowserExtensionsCompletedHandler; +/ +/+ interface ICoreWebView2BrowserExtensionList; +/ +/+ interface ICoreWebView2BrowserExtension; +/ +/+ interface ICoreWebView2BrowserExtensionEnableCompletedHandler; +/ +/+ interface ICoreWebView2BrowserExtensionRemoveCompletedHandler; +/ // Enums and structs -/// Image format used by the ICoreWebView2::CapturePreview method. -/+[v1_enum]+/ + +/// Specifies the image format for the `ICoreWebView2::CapturePreview` method. + +@("v1_enum") enum /+ COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT+/ { - /// PNG image format. + + /// Indicates that the PNG image format is used. + COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT_PNG, - /// JPEG image format. + + /// Indicates the JPEG image format is used. + COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT_JPEG, } alias int COREWEBVIEW2_CAPTURE_PREVIEW_IMAGE_FORMAT; -/// Kind of JavaScript dialog used in the -/// ICoreWebView2ScriptDialogOpeningEventHandler interface. -/+[v1_enum]+/ +/// Kind of cookie SameSite status used in the ICoreWebView2Cookie interface. +/// These fields match those as specified in https://developer.mozilla.org/docs/Web/HTTP/Cookies#. +/// Learn more about SameSite cookies here: https://tools.ietf.org/html/draft-west-first-party-cookies-07 +@("v1_enum") +enum /+ COREWEBVIEW2_COOKIE_SAME_SITE_KIND+/ +{ + /// None SameSite type. No restrictions on cross-site requests. + COREWEBVIEW2_COOKIE_SAME_SITE_KIND_NONE, + /// Lax SameSite type. The cookie will be sent with "same-site" requests, and with "cross-site" top level navigation. + COREWEBVIEW2_COOKIE_SAME_SITE_KIND_LAX, + /// Strict SameSite type. The cookie will only be sent along with "same-site" requests. + COREWEBVIEW2_COOKIE_SAME_SITE_KIND_STRICT, +} +alias int COREWEBVIEW2_COOKIE_SAME_SITE_KIND; + +/// Kind of cross origin resource access allowed for host resources during download. +/// Note that other normal access checks like same origin DOM access check and [Content +/// Security Policy](https://developer.mozilla.org/docs/Web/HTTP/CSP) still apply. +/// The following table illustrates the host resource cross origin access according to +/// access context and `COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND`. +/// +/// Cross Origin Access Context | DENY | ALLOW | DENY_CORS +/// --- | --- | --- | --- +/// From DOM like src of img, script or iframe element| Deny | Allow | Allow +/// From Script like Fetch or XMLHttpRequest| Deny | Allow | Deny +@("v1_enum") +enum /+ COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND+/ +{ + /// All cross origin resource access is denied, including normal sub resource access + /// as src of a script or image element. + COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND_DENY, + + /// All cross origin resource access is allowed, including accesses that are + /// subject to Cross-Origin Resource Sharing(CORS) check. The behavior is similar to + /// a web site sends back http header Access-Control-Allow-Origin: *. + COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND_ALLOW, + + /// Cross origin resource access is allowed for normal sub resource access like + /// as src of a script or image element, while any access that subjects to CORS check + /// will be denied. + /// See [Cross-Origin Resource Sharing](https://developer.mozilla.org/docs/Web/HTTP/CORS) + /// for more information. + COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND_DENY_CORS, +} +alias int COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND; + +/// Specifies the JavaScript dialog type used in the +/// `ICoreWebView2ScriptDialogOpeningEventHandler` interface. + +@("v1_enum") enum /+ COREWEBVIEW2_SCRIPT_DIALOG_KIND+/ { - /// A dialog invoked via the window.alert JavaScript function. + + /// Indicates that the dialog uses the `window.alert` JavaScript function. + COREWEBVIEW2_SCRIPT_DIALOG_KIND_ALERT, - /// A dialog invoked via the window.confirm JavaScript function. + + /// Indicates that the dialog uses the `window.confirm` JavaScript function. + COREWEBVIEW2_SCRIPT_DIALOG_KIND_CONFIRM, - /// A dialog invoked via the window.prompt JavaScript function. + + /// Indicates that the dialog uses the `window.prompt` JavaScript function. + COREWEBVIEW2_SCRIPT_DIALOG_KIND_PROMPT, - /// A dialog invoked via the beforeunload JavaScript event. + + /// Indicates that the dialog uses the `beforeunload` JavaScript event. + COREWEBVIEW2_SCRIPT_DIALOG_KIND_BEFOREUNLOAD, } alias int COREWEBVIEW2_SCRIPT_DIALOG_KIND; -/// Kind of process failure used in the ICoreWebView2ProcessFailedEventHandler -/// interface. -/+[v1_enum]+/ +/// Specifies the process failure type used in the +/// `ICoreWebView2ProcessFailedEventArgs` interface. The values in this enum +/// make reference to the process kinds in the Chromium architecture. For more +/// information about what these processes are and what they do, see +/// [Browser Architecture - Inside look at modern web browser](https://developers.google.com/web/updates/2018/09/inside-browser-part1). + +@("v1_enum") enum /+ COREWEBVIEW2_PROCESS_FAILED_KIND+/ { - /// Indicates the browser process terminated unexpectedly. - /// The WebView automatically goes into the Closed state. - /// The app has to recreate a new WebView to recover from this failure. + + /// Indicates that the browser process ended unexpectedly. The WebView + /// automatically moves to the Closed state. The app has to recreate a new + /// WebView to recover from this failure. + COREWEBVIEW2_PROCESS_FAILED_KIND_BROWSER_PROCESS_EXITED, - /// Indicates the render process terminated unexpectedly. - /// A new render process will be created automatically and navigated to an - /// error page. - /// The app can use Reload to try to recover from this failure. + /// Indicates that the main frame's render process ended unexpectedly. Any + /// subframes in the WebView will be gone too. A new render process is + /// created automatically and navigated to an error page. You can use the + /// `Reload` method to try to recover from this failure. Alternatively, you + /// can `Close` and recreate the WebView. + COREWEBVIEW2_PROCESS_FAILED_KIND_RENDER_PROCESS_EXITED, - /// Indicates the render process becomes unresponsive. - // Note that this does not seem to work right now. - // Does not fire for simple long running script case, the only related test - // SitePerProcessBrowserTest::NoCommitTimeoutForInvisibleWebContents is - // disabled. + /// Indicates that the main frame's render process is unresponsive. Renderer + /// process unresponsiveness can happen for the following reasons: + /// + /// * There is a **long-running script** being executed. For example, the + /// web content in your WebView might be performing a synchronous XHR, or have + /// entered an infinite loop. + /// * The **system is busy**. + /// + /// The `ProcessFailed` event will continue to be raised every few seconds + /// until the renderer process has become responsive again. The application + /// can consider taking action if the event keeps being raised. For example, + /// the application might show UI for the user to decide to keep waiting or + /// reload the page, or navigate away. + COREWEBVIEW2_PROCESS_FAILED_KIND_RENDER_PROCESS_UNRESPONSIVE, + + /// Indicates that a frame-only render process ended unexpectedly. The process + /// exit does not affect the top-level document, only a subset of the + /// subframes within it. The content in these frames is replaced with an error + /// page in the frame. Your application can communicate with the main frame to + /// recover content in the impacted frames, using + /// `ICoreWebView2ProcessFailedEventArgs2::FrameInfosForFailedProcess` to get + /// information about the impacted frames. + + COREWEBVIEW2_PROCESS_FAILED_KIND_FRAME_RENDER_PROCESS_EXITED, + + /// Indicates that a utility process ended unexpectedly. The failed process + /// is recreated automatically. Your application does **not** need to handle + /// recovery for this event, but can use `ICoreWebView2ProcessFailedEventArgs` + /// and `ICoreWebView2ProcessFailedEventArgs2` to collect information about + /// the failure, including `ProcessDescription`. + + COREWEBVIEW2_PROCESS_FAILED_KIND_UTILITY_PROCESS_EXITED, + + /// Indicates that a sandbox helper process ended unexpectedly. This failure + /// is not fatal. Your application does **not** need to handle recovery for + /// this event, but can use `ICoreWebView2ProcessFailedEventArgs` and + /// `ICoreWebView2ProcessFailedEventArgs2` to collect information about + /// the failure. + + COREWEBVIEW2_PROCESS_FAILED_KIND_SANDBOX_HELPER_PROCESS_EXITED, + + /// Indicates that the GPU process ended unexpectedly. The failed process + /// is recreated automatically. Your application does **not** need to handle + /// recovery for this event, but can use `ICoreWebView2ProcessFailedEventArgs` + /// and `ICoreWebView2ProcessFailedEventArgs2` to collect information about + /// the failure. + + COREWEBVIEW2_PROCESS_FAILED_KIND_GPU_PROCESS_EXITED, + + /// Indicates that a PPAPI plugin process ended unexpectedly. This failure + /// is not fatal. Your application does **not** need to handle recovery for + /// this event, but can use `ICoreWebView2ProcessFailedEventArgs` and + /// `ICoreWebView2ProcessFailedEventArgs2` to collect information about + /// the failure, including `ProcessDescription`. + + COREWEBVIEW2_PROCESS_FAILED_KIND_PPAPI_PLUGIN_PROCESS_EXITED, + + /// Indicates that a PPAPI plugin broker process ended unexpectedly. This failure + /// is not fatal. Your application does **not** need to handle recovery for + /// this event, but can use `ICoreWebView2ProcessFailedEventArgs` and + /// `ICoreWebView2ProcessFailedEventArgs2` to collect information about + /// the failure. + + COREWEBVIEW2_PROCESS_FAILED_KIND_PPAPI_BROKER_PROCESS_EXITED, + + /// Indicates that a process of unspecified kind ended unexpectedly. Your + /// application can use `ICoreWebView2ProcessFailedEventArgs` and + /// `ICoreWebView2ProcessFailedEventArgs2` to collect information about + /// the failure. + + COREWEBVIEW2_PROCESS_FAILED_KIND_UNKNOWN_PROCESS_EXITED, } alias int COREWEBVIEW2_PROCESS_FAILED_KIND; -/// The type of a permission request. -/+[v1_enum]+/ +/// Specifies the process failure reason used in the +/// `ICoreWebView2ProcessFailedEventArgs` interface. For process failures where +/// a process has exited, it indicates the type of issue that produced the +/// process exit. + +@("v1_enum") +enum /+ COREWEBVIEW2_PROCESS_FAILED_REASON+/ +{ + + /// An unexpected process failure occurred. + COREWEBVIEW2_PROCESS_FAILED_REASON_UNEXPECTED, + + /// The process became unresponsive. + /// This only applies to the main frame's render process. + + COREWEBVIEW2_PROCESS_FAILED_REASON_UNRESPONSIVE, + + /// The process was terminated. For example, from Task Manager. + + COREWEBVIEW2_PROCESS_FAILED_REASON_TERMINATED, + + /// The process crashed. Most crashes will generate dumps in the location + /// indicated by `ICoreWebView2Environment11::get_FailureReportFolderPath`. + + COREWEBVIEW2_PROCESS_FAILED_REASON_CRASHED, + + /// The process failed to launch. + + COREWEBVIEW2_PROCESS_FAILED_REASON_LAUNCH_FAILED, + + /// The process terminated due to running out of memory. + + COREWEBVIEW2_PROCESS_FAILED_REASON_OUT_OF_MEMORY, + + /// The process exited because its corresponding profile was deleted. + COREWEBVIEW2_PROCESS_FAILED_REASON_PROFILE_DELETED, +} +alias int COREWEBVIEW2_PROCESS_FAILED_REASON; + +/// Indicates the type of a permission request. + +@("v1_enum") enum /+ COREWEBVIEW2_PERMISSION_KIND+/ { - /// Unknown permission. + + /// Indicates an unknown permission. + COREWEBVIEW2_PERMISSION_KIND_UNKNOWN_PERMISSION, - /// Permission to capture audio. + /// Indicates permission to capture audio. + COREWEBVIEW2_PERMISSION_KIND_MICROPHONE, - /// Permission to capture video. + /// Indicates permission to capture video. + COREWEBVIEW2_PERMISSION_KIND_CAMERA, - /// Permission to access geolocation. + /// Indicates permission to access geolocation. + COREWEBVIEW2_PERMISSION_KIND_GEOLOCATION, - /// Permission to send web notifications. - /// This permission request is currently auto rejected and - /// no event is fired for it. + /// Indicates permission to send web notifications. Apps that would like to + /// show notifications should handle `PermissionRequested` events + /// and no browser permission prompt will be shown for notification requests. + /// Note that push notifications are currently unavailable in WebView2. + COREWEBVIEW2_PERMISSION_KIND_NOTIFICATIONS, - /// Permission to access generic sensor. - /// Generic Sensor covering ambient-light-sensor, accelerometer, gyroscope - /// and magnetometer. + /// Indicates permission to access generic sensor. Generic Sensor covering + /// ambient-light-sensor, accelerometer, gyroscope, and magnetometer. + COREWEBVIEW2_PERMISSION_KIND_OTHER_SENSORS, - /// Permission to read system clipboard without a user gesture. + /// Indicates permission to read the system clipboard without a user gesture. + COREWEBVIEW2_PERMISSION_KIND_CLIPBOARD_READ, + + /// Indicates permission to automatically download multiple files. Permission + /// is requested when multiple downloads are triggered in quick succession. + + COREWEBVIEW2_PERMISSION_KIND_MULTIPLE_AUTOMATIC_DOWNLOADS, + + /// Indicates permission to read and write to files or folders on the device. + /// Permission is requested when developers use the [File System Access API](https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API) + /// to show the file or folder picker to the end user, and then request + /// "readwrite" permission for the user's selection. + + COREWEBVIEW2_PERMISSION_KIND_FILE_READ_WRITE, + + /// Indicates permission to play audio and video automatically on sites. This + /// permission affects the autoplay attribute and play method of the audio and + /// video HTML elements, and the start method of the Web Audio API. See the + /// [Autoplay guide for media and Web Audio APIs](https://developer.mozilla.org/en-US/docs/Web/Media/Autoplay_guide) for details. + + COREWEBVIEW2_PERMISSION_KIND_AUTOPLAY, + + /// Indicates permission to use fonts on the device. Permission is requested + /// when developers use the [Local Font Access API](https://wicg.github.io/local-font-access/) + /// to query the system fonts available for styling web content. + + COREWEBVIEW2_PERMISSION_KIND_LOCAL_FONTS, + + /// Indicates permission to send and receive system exclusive messages to/from MIDI + /// (Musical Instrument Digital Interface) devices. Permission is requested + /// when developers use the [Web MIDI API](https://developer.mozilla.org/en-US/docs/Web/API/Web_MIDI_API) + /// to request access to system exclusive MIDI messages. + COREWEBVIEW2_PERMISSION_KIND_MIDI_SYSTEM_EXCLUSIVE_MESSAGES, + + /// Indicates permission to open and place windows on the screen. Permission is + /// requested when developers use the [Multi-Screen Window Placement API](https://www.w3.org/TR/window-placement/) + /// to get screen details. + COREWEBVIEW2_PERMISSION_KIND_WINDOW_MANAGEMENT, } alias int COREWEBVIEW2_PERMISSION_KIND; -/// Response to a permission request. -/+[v1_enum]+/ +/// Specifies the response to a permission request. + +@("v1_enum") enum /+ COREWEBVIEW2_PERMISSION_STATE+/ { - /// Use default browser behavior, which normally prompt users for decision. + + /// Specifies that the default browser behavior is used, which normally + /// prompt users for decision. + COREWEBVIEW2_PERMISSION_STATE_DEFAULT, - /// Grant the permission request. + /// Specifies that the permission request is granted. + COREWEBVIEW2_PERMISSION_STATE_ALLOW, - /// Deny the permission request. + /// Specifies that the permission request is denied. + COREWEBVIEW2_PERMISSION_STATE_DENY, } alias int COREWEBVIEW2_PERMISSION_STATE; -/// Error status values for web navigations. -/+[v1_enum]+/ +/// Indicates the error status values for web navigations. + +@("v1_enum") enum /+ COREWEBVIEW2_WEB_ERROR_STATUS+/ { - /// An unknown error occurred. + + /// Indicates that an unknown error occurred. + COREWEBVIEW2_WEB_ERROR_STATUS_UNKNOWN, - /// The SSL certificate common name does not match the web address. + /// Indicates that the SSL certificate common name does not match the web + /// address. + COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_COMMON_NAME_IS_INCORRECT, - /// The SSL certificate has expired. + /// Indicates that the SSL certificate has expired. + COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_EXPIRED, - /// The SSL client certificate contains errors. + /// Indicates that the SSL client certificate contains errors. + COREWEBVIEW2_WEB_ERROR_STATUS_CLIENT_CERTIFICATE_CONTAINS_ERRORS, - /// The SSL certificate has been revoked. + /// Indicates that the SSL certificate has been revoked. + COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_REVOKED, - /// The SSL certificate is invalid -- this could mean the certificate did not - /// match the public key pins for the host name, the certificate is signed by - /// an untrusted authority or using a weak sign algorithm, the certificate + /// Indicates that the SSL certificate is not valid. The certificate may not + /// match the public key pins for the host name, the certificate is signed + /// by an untrusted authority or using a weak sign algorithm, the certificate /// claimed DNS names violate name constraints, the certificate contains a - /// weak key, the certificate's validity period is too long, lack of - /// revocation information or revocation mechanism, non-unique host name, lack - /// of certificate transparency information, or the certificate is chained to - /// a [legacy Symantec - /// root](https://security.googleblog.com/2018/03/distrust-of-symantec-pki-immediate.html). + /// weak key, the validity period of the certificate is too long, lack of + /// revocation information or revocation mechanism, non-unique host name, + /// lack of certificate transparency information, or the certificate is + /// chained to a + /// [legacy Symantec root](https://security.googleblog.com/2018/03/distrust-of-symantec-pki-immediate.html). + COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_IS_INVALID, - /// The host is unreachable. + /// Indicates that the host is unreachable. + COREWEBVIEW2_WEB_ERROR_STATUS_SERVER_UNREACHABLE, - /// The connection has timed out. + /// Indicates that the connection has timed out. + COREWEBVIEW2_WEB_ERROR_STATUS_TIMEOUT, - /// The server returned an invalid or unrecognized response. + /// Indicates that the server returned an invalid or unrecognized response. + COREWEBVIEW2_WEB_ERROR_STATUS_ERROR_HTTP_INVALID_SERVER_RESPONSE, - /// The connection was aborted. + /// Indicates that the connection was stopped. + COREWEBVIEW2_WEB_ERROR_STATUS_CONNECTION_ABORTED, - /// The connection was reset. + /// Indicates that the connection was reset. + COREWEBVIEW2_WEB_ERROR_STATUS_CONNECTION_RESET, - /// The Internet connection has been lost. + /// Indicates that the Internet connection has been lost. + COREWEBVIEW2_WEB_ERROR_STATUS_DISCONNECTED, - /// Cannot connect to destination. + /// Indicates that a connection to the destination was not established. + COREWEBVIEW2_WEB_ERROR_STATUS_CANNOT_CONNECT, - /// Could not resolve provided host name. + /// Indicates that the provided host name was not able to be resolved. + COREWEBVIEW2_WEB_ERROR_STATUS_HOST_NAME_NOT_RESOLVED, - /// The operation was canceled. + /// Indicates that the operation was canceled. This status code is also used + /// in the following cases: + /// - When the app cancels a navigation via NavigationStarting event. + /// - For original navigation if the app navigates the WebView2 in a rapid succession + /// away after the load for original navigation commenced, but before it completed. + COREWEBVIEW2_WEB_ERROR_STATUS_OPERATION_CANCELED, - /// The request redirect failed. + /// Indicates that the request redirect failed. + COREWEBVIEW2_WEB_ERROR_STATUS_REDIRECT_FAILED, - /// An unexpected error occurred. + /// Indicates that an unexpected error occurred. + COREWEBVIEW2_WEB_ERROR_STATUS_UNEXPECTED_ERROR, + + /// Indicates that user is prompted with a login, waiting on user action. + /// Initial navigation to a login site will always return this even if app provides + /// credential using BasicAuthenticationRequested. + /// HTTP response status code in this case is 401. + /// See status code reference here: https://developer.mozilla.org/docs/Web/HTTP/Status. + + COREWEBVIEW2_WEB_ERROR_STATUS_VALID_AUTHENTICATION_CREDENTIALS_REQUIRED, + + /// Indicates that user lacks proper authentication credentials for a proxy server. + /// HTTP response status code in this case is 407. + /// See status code reference here: https://developer.mozilla.org/docs/Web/HTTP/Status. + + COREWEBVIEW2_WEB_ERROR_STATUS_VALID_PROXY_AUTHENTICATION_REQUIRED, } alias int COREWEBVIEW2_WEB_ERROR_STATUS; -/// Enum for web resource request contexts. -/+[v1_enum]+/ +/// Specifies the web resource request contexts. + +@("v1_enum") enum /+ COREWEBVIEW2_WEB_RESOURCE_CONTEXT+/ { - /// All resources + + /// Specifies all resources. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_ALL, - /// Document resources + + /// Specifies a document resource. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_DOCUMENT, - /// CSS resources + + /// Specifies a CSS resource. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_STYLESHEET, - /// Image resources + + /// Specifies an image resource. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_IMAGE, - /// Other media resources such as videos + + /// Specifies another media resource such as a video. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_MEDIA, - /// Font resources + + /// Specifies a font resource. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_FONT, - /// Script resources + + /// Specifies a script resource. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_SCRIPT, - /// XML HTTP requests + + /// Specifies an XML HTTP request, Fetch and EventSource API communication. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_XML_HTTP_REQUEST, - /// Fetch API communication + + /// Specifies a Fetch API communication. + + // Note that this isn't working. Fetch API requests are fired as a part + // of COREWEBVIEW2_WEB_RESOURCE_CONTEXT_XML_HTTP_REQUEST. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_FETCH, - /// TextTrack resources + + /// Specifies a TextTrack resource. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_TEXT_TRACK, - /// EventSource API communication + + /// Specifies an EventSource API communication. + + // Note that this isn't working. EventSource API requests are fired as a part + // of COREWEBVIEW2_WEB_RESOURCE_CONTEXT_XML_HTTP_REQUEST. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_EVENT_SOURCE, - /// WebSocket API communication + + /// Specifies a WebSocket API communication. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_WEBSOCKET, - /// Web App Manifests + + /// Specifies a Web App Manifest. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_MANIFEST, - /// Signed HTTP Exchanges + + /// Specifies a Signed HTTP Exchange. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_SIGNED_EXCHANGE, - /// Ping requests + + /// Specifies a Ping request. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_PING, - /// CSP Violation Reports + + /// Specifies a CSP Violation Report. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_CSP_VIOLATION_REPORT, - /// Other resources + + /// Specifies an other resource. + COREWEBVIEW2_WEB_RESOURCE_CONTEXT_OTHER } alias int COREWEBVIEW2_WEB_RESOURCE_CONTEXT; -/// Reason for moving focus. -/+[v1_enum]+/ +/// Specifies the reason for moving focus. + +@("v1_enum") enum /+ COREWEBVIEW2_MOVE_FOCUS_REASON+/ { - /// Code setting focus into WebView. + + /// Specifies that the code is setting focus into WebView. + COREWEBVIEW2_MOVE_FOCUS_REASON_PROGRAMMATIC, - /// Moving focus due to Tab traversal forward. + /// Specifies that the focus is moving due to Tab traversal forward. + COREWEBVIEW2_MOVE_FOCUS_REASON_NEXT, - /// Moving focus due to Tab traversal backward. + /// Specifies that the focus is moving due to Tab traversal backward. + COREWEBVIEW2_MOVE_FOCUS_REASON_PREVIOUS, } alias int COREWEBVIEW2_MOVE_FOCUS_REASON; -/// The type of key event that triggered an AcceleratorKeyPressed event. -/+[v1_enum]+/ +/// Specifies the key event type that triggered an `AcceleratorKeyPressed` +/// event. + +@("v1_enum") enum /+ COREWEBVIEW2_KEY_EVENT_KIND+/ { - /// Correspond to window message WM_KEYDOWN. + + /// Specifies that the key event type corresponds to window message + /// `WM_KEYDOWN`. + COREWEBVIEW2_KEY_EVENT_KIND_KEY_DOWN, - /// Correspond to window message WM_KEYUP. + /// Specifies that the key event type corresponds to window message + /// `WM_KEYUP`. + COREWEBVIEW2_KEY_EVENT_KIND_KEY_UP, - /// Correspond to window message WM_SYSKEYDOWN. + /// Specifies that the key event type corresponds to window message + /// `WM_SYSKEYDOWN`. + COREWEBVIEW2_KEY_EVENT_KIND_SYSTEM_KEY_DOWN, - /// Correspond to window message WM_SYSKEYUP. + /// Specifies that the key event type corresponds to window message + /// `WM_SYSKEYUP`. + COREWEBVIEW2_KEY_EVENT_KIND_SYSTEM_KEY_UP, } alias int COREWEBVIEW2_KEY_EVENT_KIND; -/// A structure representing the information packed into the LPARAM given -/// to a Win32 key event. See the documentation for WM_KEYDOWN for details -/// at https://docs.microsoft.com/windows/win32/inputdev/wm-keydown +/// Specifies the browser process exit type used in the +/// `ICoreWebView2BrowserProcessExitedEventArgs` interface. + +@("v1_enum") +enum /+ COREWEBVIEW2_BROWSER_PROCESS_EXIT_KIND+/ +{ + + /// Indicates that the browser process ended normally. + + COREWEBVIEW2_BROWSER_PROCESS_EXIT_KIND_NORMAL, + + /// Indicates that the browser process ended unexpectedly. + /// A `ProcessFailed` event will also be sent to listening WebViews from the + /// `ICoreWebView2Environment` associated to the failed process. + + COREWEBVIEW2_BROWSER_PROCESS_EXIT_KIND_FAILED +} +alias int COREWEBVIEW2_BROWSER_PROCESS_EXIT_KIND; + +/// Contains the information packed into the `LPARAM` sent to a Win32 key +/// event. For more information about `WM_KEYDOWN`, navigate to +/// [WM_KEYDOWN message](/windows/win32/inputdev/wm-keydown). + struct COREWEBVIEW2_PHYSICAL_KEY_STATUS { - /// The repeat count for the current message. + + /// Specifies the repeat count for the current message. + UINT32 RepeatCount; - /// The scan code. + + /// Specifies the scan code. + UINT32 ScanCode; - /// Indicates whether the key is an extended key. + + /// Indicates that the key is an extended key. + BOOL IsExtendedKey; - /// The context code. + + /// Indicates that a menu key is held down (context code). + BOOL IsMenuKeyDown; - /// The previous key state. + + /// Indicates that the key was held down. + BOOL WasKeyDown; - /// The transition state. + + /// Indicates that the key was released. + BOOL IsKeyReleased; } + +/// A value representing RGBA color (Red, Green, Blue, Alpha) for WebView2. +/// Each component takes a value from 0 to 255, with 0 being no intensity +/// and 255 being the highest intensity. + +struct COREWEBVIEW2_COLOR +{ + + /// Specifies the intensity of the Alpha ie. opacity value. 0 is transparent, + /// 255 is opaque. + + BYTE A; + + /// Specifies the intensity of the Red color. + + BYTE R; + + /// Specifies the intensity of the Green color. + + BYTE G; + + /// Specifies the intensity of the Blue color. + + BYTE B; +} + +/// Mouse event type used by SendMouseInput to convey the type of mouse event +/// being sent to WebView. The values of this enum align with the matching +/// WM_* window messages. + +@("v1_enum") +enum /+ COREWEBVIEW2_MOUSE_EVENT_KIND+/ +{ + + /// Mouse horizontal wheel scroll event, WM_MOUSEHWHEEL. + + COREWEBVIEW2_MOUSE_EVENT_KIND_HORIZONTAL_WHEEL = 0x020E, + + /// Left button double click mouse event, WM_LBUTTONDBLCLK. + + COREWEBVIEW2_MOUSE_EVENT_KIND_LEFT_BUTTON_DOUBLE_CLICK = 0x0203, + + /// Left button down mouse event, WM_LBUTTONDOWN. + + COREWEBVIEW2_MOUSE_EVENT_KIND_LEFT_BUTTON_DOWN = 0x0201, + + /// Left button up mouse event, WM_LBUTTONUP. + + COREWEBVIEW2_MOUSE_EVENT_KIND_LEFT_BUTTON_UP = 0x0202, + + /// Mouse leave event, WM_MOUSELEAVE. + + COREWEBVIEW2_MOUSE_EVENT_KIND_LEAVE = 0x02A3, + + /// Middle button double click mouse event, WM_MBUTTONDBLCLK. + + COREWEBVIEW2_MOUSE_EVENT_KIND_MIDDLE_BUTTON_DOUBLE_CLICK = 0x0209, + + /// Middle button down mouse event, WM_MBUTTONDOWN. + + COREWEBVIEW2_MOUSE_EVENT_KIND_MIDDLE_BUTTON_DOWN = 0x0207, + + /// Middle button up mouse event, WM_MBUTTONUP. + + COREWEBVIEW2_MOUSE_EVENT_KIND_MIDDLE_BUTTON_UP = 0x0208, + + /// Mouse move event, WM_MOUSEMOVE. + + COREWEBVIEW2_MOUSE_EVENT_KIND_MOVE = 0x0200, + + /// Right button double click mouse event, WM_RBUTTONDBLCLK. + + COREWEBVIEW2_MOUSE_EVENT_KIND_RIGHT_BUTTON_DOUBLE_CLICK = 0x0206, + + /// Right button down mouse event, WM_RBUTTONDOWN. + + COREWEBVIEW2_MOUSE_EVENT_KIND_RIGHT_BUTTON_DOWN = 0x0204, + + /// Right button up mouse event, WM_RBUTTONUP. + + COREWEBVIEW2_MOUSE_EVENT_KIND_RIGHT_BUTTON_UP = 0x0205, + + /// Mouse wheel scroll event, WM_MOUSEWHEEL. + + COREWEBVIEW2_MOUSE_EVENT_KIND_WHEEL = 0x020A, + + /// First or second X button double click mouse event, WM_XBUTTONDBLCLK. + + COREWEBVIEW2_MOUSE_EVENT_KIND_X_BUTTON_DOUBLE_CLICK = 0x020D, + + /// First or second X button down mouse event, WM_XBUTTONDOWN. + + COREWEBVIEW2_MOUSE_EVENT_KIND_X_BUTTON_DOWN = 0x020B, + + /// First or second X button up mouse event, WM_XBUTTONUP. + + COREWEBVIEW2_MOUSE_EVENT_KIND_X_BUTTON_UP = 0x020C, + + /// Mouse Right Button Down event over a nonclient area, WM_NCRBUTTONDOWN. + + COREWEBVIEW2_MOUSE_EVENT_KIND_NON_CLIENT_RIGHT_BUTTON_DOWN = 0x00A4, + + /// Mouse Right Button up event over a nonclient area, WM_NCRBUTTONUP. + + COREWEBVIEW2_MOUSE_EVENT_KIND_NON_CLIENT_RIGHT_BUTTON_UP = 0x00A5, +} +alias int COREWEBVIEW2_MOUSE_EVENT_KIND; + +/// Mouse event virtual keys associated with a COREWEBVIEW2_MOUSE_EVENT_KIND for +/// SendMouseInput. These values can be combined into a bit flag if more than +/// one virtual key is pressed for the event. The values of this enum align +/// with the matching MK_* mouse keys. + +@("v1_enum") +enum /+ COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS+/ +{ + + /// No additional keys pressed. + + COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_NONE = 0x0, + + /// Left mouse button is down, MK_LBUTTON. + + COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_LEFT_BUTTON = 0x0001, + + /// Right mouse button is down, MK_RBUTTON. + + COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_RIGHT_BUTTON = 0x0002, + + /// SHIFT key is down, MK_SHIFT. + + COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_SHIFT = 0x0004, + + /// CTRL key is down, MK_CONTROL. + + COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_CONTROL = 0x0008, + + /// Middle mouse button is down, MK_MBUTTON. + + COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_MIDDLE_BUTTON = 0x0010, + + /// First X button is down, MK_XBUTTON1 + + COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_X_BUTTON1 = 0x0020, + + /// Second X button is down, MK_XBUTTON2 + + COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS_X_BUTTON2 = 0x0040, +} +alias int COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS; +// DEFINE_ENUM_FLAG_OPERATORS(COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS) + +/// Pointer event type used by SendPointerInput to convey the type of pointer +/// event being sent to WebView. The values of this enum align with the +/// matching WM_POINTER* window messages. + +@("v1_enum") +enum /+ COREWEBVIEW2_POINTER_EVENT_KIND+/ +{ + + /// Corresponds to WM_POINTERACTIVATE. + + COREWEBVIEW2_POINTER_EVENT_KIND_ACTIVATE = 0x024B, + + /// Corresponds to WM_POINTERDOWN. + + COREWEBVIEW2_POINTER_EVENT_KIND_DOWN = 0x0246, + + /// Corresponds to WM_POINTERENTER. + + COREWEBVIEW2_POINTER_EVENT_KIND_ENTER = 0x0249, + + /// Corresponds to WM_POINTERLEAVE. + + COREWEBVIEW2_POINTER_EVENT_KIND_LEAVE = 0x024A, + + /// Corresponds to WM_POINTERUP. + + COREWEBVIEW2_POINTER_EVENT_KIND_UP = 0x0247, + + /// Corresponds to WM_POINTERUPDATE. + + COREWEBVIEW2_POINTER_EVENT_KIND_UPDATE = 0x0245, +} +alias int COREWEBVIEW2_POINTER_EVENT_KIND; + +/// Mode for how the Bounds property is interpreted in relation to the RasterizationScale property. +@("v1_enum") +enum /+ COREWEBVIEW2_BOUNDS_MODE+/ +{ + + /// Bounds property represents raw pixels. Physical size of Webview is not impacted by RasterizationScale. + + COREWEBVIEW2_BOUNDS_MODE_USE_RAW_PIXELS, + + /// Bounds property represents logical pixels and the RasterizationScale property is used to get the physical size of the WebView. + + COREWEBVIEW2_BOUNDS_MODE_USE_RASTERIZATION_SCALE, +} +alias int COREWEBVIEW2_BOUNDS_MODE; + +/// Specifies the client certificate kind. +@("v1_enum") enum /+ COREWEBVIEW2_CLIENT_CERTIFICATE_KIND+/ +{ + /// Specifies smart card certificate. + COREWEBVIEW2_CLIENT_CERTIFICATE_KIND_SMART_CARD, + /// Specifies PIN certificate. + COREWEBVIEW2_CLIENT_CERTIFICATE_KIND_PIN, + /// Specifies other certificate. + COREWEBVIEW2_CLIENT_CERTIFICATE_KIND_OTHER, +} +alias int COREWEBVIEW2_CLIENT_CERTIFICATE_KIND; + +/// State of the download operation. +@("v1_enum") +enum /+ COREWEBVIEW2_DOWNLOAD_STATE+/ +{ + /// The download is in progress. + COREWEBVIEW2_DOWNLOAD_STATE_IN_PROGRESS, + /// The connection with the file host was broken. The `InterruptReason` property + /// can be accessed from `ICoreWebView2DownloadOperation`. See + /// `COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON` for descriptions of kinds of + /// interrupt reasons. Host can check whether an interrupted download can be + /// resumed with the `CanResume` property on the `ICoreWebView2DownloadOperation`. + /// Once resumed, a download is in the `COREWEBVIEW2_DOWNLOAD_STATE_IN_PROGRESS` state. + COREWEBVIEW2_DOWNLOAD_STATE_INTERRUPTED, + /// The download completed successfully. + COREWEBVIEW2_DOWNLOAD_STATE_COMPLETED, +} +alias int COREWEBVIEW2_DOWNLOAD_STATE; + +/// Reason why a download was interrupted. +@("v1_enum") +enum /+ COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON+/ +{ + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NONE, + + /// Generic file error. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_FAILED, + /// Access denied due to security restrictions. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_ACCESS_DENIED, + /// Disk full. User should free some space or choose a different location to + /// store the file. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_NO_SPACE, + /// Result file path with file name is too long. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_NAME_TOO_LONG, + /// File is too large for file system. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_TOO_LARGE, + /// Microsoft Defender Smartscreen detected a virus in the file. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_MALICIOUS, + /// File was in use, too many files opened, or out of memory. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_TRANSIENT_ERROR, + /// File blocked by local policy. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_BLOCKED_BY_POLICY, + /// Security check failed unexpectedly. Microsoft Defender SmartScreen could + /// not scan this file. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_SECURITY_CHECK_FAILED, + /// Seeking past the end of a file in opening a file, as part of resuming an + /// interrupted download. The file did not exist or was not as large as + /// expected. Partially downloaded file was truncated or deleted, and download + /// will be restarted automatically. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_TOO_SHORT, + /// Partial file did not match the expected hash and was deleted. Download + /// will be restarted automatically. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_HASH_MISMATCH, + + /// Generic network error. User can retry the download manually. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NETWORK_FAILED, + /// Network operation timed out. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NETWORK_TIMEOUT, + /// Network connection lost. User can retry the download manually. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NETWORK_DISCONNECTED, + /// Server has gone down. User can retry the download manually. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NETWORK_SERVER_DOWN, + /// Network request invalid because original or redirected URI is invalid, has + /// an unsupported scheme, or is disallowed by network policy. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_NETWORK_INVALID_REQUEST, + + /// Generic server error. User can retry the download manually. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_FAILED, + /// Server does not support range requests. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_NO_RANGE, + /// Server does not have the requested data. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_BAD_CONTENT, + /// Server did not authorize access to resource. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_UNAUTHORIZED, + /// Server certificate problem. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_CERTIFICATE_PROBLEM, + /// Server access forbidden. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_FORBIDDEN, + /// Unexpected server response. Responding server may not be intended server. + /// User can retry the download manually. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_UNEXPECTED_RESPONSE, + /// Server sent fewer bytes than the Content-Length header. Content-length + /// header may be invalid or connection may have closed. Download is treated + /// as complete unless there are + /// [strong validators](https://tools.ietf.org/html/rfc7232#section-2) present + /// to interrupt the download. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_CONTENT_LENGTH_MISMATCH, + /// Unexpected cross-origin redirect. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_CROSS_ORIGIN_REDIRECT, + + /// User canceled the download. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_USER_CANCELED, + /// User shut down the WebView. Resuming downloads that were interrupted + /// during shutdown is not yet supported. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_USER_SHUTDOWN, + /// User paused the download. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_USER_PAUSED, + + /// WebView crashed. + COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_DOWNLOAD_PROCESS_CRASHED, +} +alias int COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON; + +/// The orientation for printing, used by the `Orientation` property on +/// `ICoreWebView2PrintSettings`. +@("v1_enum") +enum /+ COREWEBVIEW2_PRINT_ORIENTATION+/ +{ + /// Print the page(s) in portrait orientation. + COREWEBVIEW2_PRINT_ORIENTATION_PORTRAIT, + + /// Print the page(s) in landscape orientation. + COREWEBVIEW2_PRINT_ORIENTATION_LANDSCAPE, +} +alias int COREWEBVIEW2_PRINT_ORIENTATION; + +/// The default download dialog can be aligned to any of the WebView corners +/// by setting the `DefaultDownloadDialogCornerAlignment` property. The default +/// position is top-right corner. +@("v1_enum") +enum /+ COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT+/ +{ + + /// Top-left corner of the WebView. + COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT_TOP_LEFT, + + /// Top-right corner of the WebView. + COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT_TOP_RIGHT, + + /// Bottom-left corner of the WebView. + COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT_BOTTOM_LEFT, + + /// Bottom-right corner of the WebView. + COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT_BOTTOM_RIGHT, +} +alias int COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT; + +/// Indicates the process type used in the ICoreWebView2ProcessInfo interface. +@("v1_enum") +enum /+ COREWEBVIEW2_PROCESS_KIND+/ +{ + /// Indicates the browser process kind. + COREWEBVIEW2_PROCESS_KIND_BROWSER, + + /// Indicates the render process kind. + COREWEBVIEW2_PROCESS_KIND_RENDERER, + + /// Indicates the utility process kind. + COREWEBVIEW2_PROCESS_KIND_UTILITY, + + /// Indicates the sandbox helper process kind. + COREWEBVIEW2_PROCESS_KIND_SANDBOX_HELPER, + + /// Indicates the GPU process kind. + COREWEBVIEW2_PROCESS_KIND_GPU, + + /// Indicates the PPAPI plugin process kind. + COREWEBVIEW2_PROCESS_KIND_PPAPI_PLUGIN, + + /// Indicates the PPAPI plugin broker process kind. + COREWEBVIEW2_PROCESS_KIND_PPAPI_BROKER, +} +alias int COREWEBVIEW2_PROCESS_KIND; + +// PDF toolbar item. This enum must be in sync with ToolBarItem in pdf-store-data-types.ts +/// Specifies the PDF toolbar item types used for the `ICoreWebView2Settings::put_HiddenPdfToolbarItems` method. +@("v1_enum") +enum /+ COREWEBVIEW2_PDF_TOOLBAR_ITEMS+/ +{ + + /// No item + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_NONE = 0x0, + + /// The save button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_SAVE = 0x0001, + + /// The print button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_PRINT = 0x0002, + + /// The save as button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_SAVE_AS = 0x0004, + + /// The zoom in button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_ZOOM_IN = 0x0008, + + /// The zoom out button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_ZOOM_OUT = 0x0010, + + /// The rotate button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_ROTATE = 0x0020, + + /// The fit page button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_FIT_PAGE = 0x0040, + + /// The page layout button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_PAGE_LAYOUT = 0x0080, + + /// The bookmarks button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_BOOKMARKS = 0x0100, + + /// The page select button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_PAGE_SELECTOR = 0x0200, + + /// The search button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_SEARCH = 0x0400, + + /// The full screen button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_FULL_SCREEN = 0x0800, + + /// The more settings button + COREWEBVIEW2_PDF_TOOLBAR_ITEMS_MORE_SETTINGS = 0x1000, +} +alias int COREWEBVIEW2_PDF_TOOLBAR_ITEMS; +// DEFINE_ENUM_FLAG_OPERATORS(COREWEBVIEW2_PDF_TOOLBAR_ITEMS) + +/// Indicates the kind of context for which the context menu was created +/// for the `ICoreWebView2ContextMenuTarget::get_Kind` method. +/// This enum will always represent the active element that caused the context menu request. +/// If there is a selection with multiple images, audio and text, for example, the element that +/// the end user right clicks on within this selection will be the option represented by this enum. +@("v1_enum") +enum /+ COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND+/ +{ + /// Indicates that the context menu was created for the page without any additional content. + COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND_PAGE, + + /// Indicates that the context menu was created for an image element. + COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND_IMAGE, + + /// Indicates that the context menu was created for selected text. + COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND_SELECTED_TEXT, + + /// Indicates that the context menu was created for an audio element. + COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND_AUDIO, + + /// Indicates that the context menu was created for a video element. + COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND_VIDEO, +} +alias int COREWEBVIEW2_CONTEXT_MENU_TARGET_KIND; + +/// Specifies the menu item kind +/// for the `ICoreWebView2ContextMenuItem::get_Kind` method +@("v1_enum") +enum /+ COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND+/ +{ + /// Specifies a command menu item kind. + COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND_COMMAND, + + /// Specifies a check box menu item kind. `ContextMenuItem` objects of this kind + /// will need the `IsChecked` property to determine current state of the check box. + COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND_CHECK_BOX, + + /// Specifies a radio button menu item kind. `ContextMenuItem` objects of this kind + /// will need the `IsChecked` property to determine current state of the radio button. + COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND_RADIO, + + /// Specifies a separator menu item kind. `ContextMenuItem` objects of this kind + /// are used to signal a visual separator with no functionality. + COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND_SEPARATOR, + + /// Specifies a submenu menu item kind. `ContextMenuItem` objects of this kind will contain + /// a `ContextMenuItemCollection` of its children `ContextMenuItem` objects. + COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND_SUBMENU, +} +alias int COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND; + +/// An enum to represent the options for WebView2 color scheme: auto, light, or dark. +@("v1_enum") +enum /+ COREWEBVIEW2_PREFERRED_COLOR_SCHEME+/ +{ + /// Auto color scheme. + COREWEBVIEW2_PREFERRED_COLOR_SCHEME_AUTO, + + /// Light color scheme. + COREWEBVIEW2_PREFERRED_COLOR_SCHEME_LIGHT, + + /// Dark color scheme. + COREWEBVIEW2_PREFERRED_COLOR_SCHEME_DARK +} +alias int COREWEBVIEW2_PREFERRED_COLOR_SCHEME; + +/// Specifies the datatype for the +/// `ICoreWebView2Profile2::ClearBrowsingData` method. +@("v1_enum") +enum /+ COREWEBVIEW2_BROWSING_DATA_KINDS+/ +{ + + /// Specifies file systems data. + COREWEBVIEW2_BROWSING_DATA_KINDS_FILE_SYSTEMS = 1 << 0, + + /// Specifies data stored by the IndexedDB DOM feature. + COREWEBVIEW2_BROWSING_DATA_KINDS_INDEXED_DB = 1 << 1, + + /// Specifies data stored by the localStorage DOM API. + COREWEBVIEW2_BROWSING_DATA_KINDS_LOCAL_STORAGE = 1 << 2, + + /// Specifies data stored by the Web SQL database DOM API. + COREWEBVIEW2_BROWSING_DATA_KINDS_WEB_SQL = 1 << 3, + + /// Specifies data stored by the CacheStorage DOM API. + COREWEBVIEW2_BROWSING_DATA_KINDS_CACHE_STORAGE = 1 << 4, + + /// Specifies DOM storage data, now and future. This browsing data kind is + /// inclusive of COREWEBVIEW2_BROWSING_DATA_KINDS_FILE_SYSTEMS, + /// COREWEBVIEW2_BROWSING_DATA_KINDS_INDEXED_DB, + /// COREWEBVIEW2_BROWSING_DATA_KINDS_LOCAL_STORAGE, + /// COREWEBVIEW2_BROWSING_DATA_KINDS_WEB_SQL, + /// COREWEBVIEW2_BROWSING_DATA_KINDS_SERVICE_WORKERS, + /// COREWEBVIEW2_BROWSING_DATA_KINDS_CACHE_STORAGE, + /// and some other data kinds not listed yet to keep consistent with + /// [DOM-accessible storage](https://www.w3.org/TR/clear-site-data/#storage). + COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_DOM_STORAGE = 1 << 5, + + /// Specifies HTTP cookies data. + COREWEBVIEW2_BROWSING_DATA_KINDS_COOKIES = 1 << 6, + + /// Specifies all site data, now and future. This browsing data kind + /// is inclusive of COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_DOM_STORAGE and + /// COREWEBVIEW2_BROWSING_DATA_KINDS_COOKIES. New site data types + /// may be added to this data kind in the future. + COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_SITE = 1 << 7, + + /// Specifies disk cache. + COREWEBVIEW2_BROWSING_DATA_KINDS_DISK_CACHE = 1 << 8, + + /// Specifies download history data. + COREWEBVIEW2_BROWSING_DATA_KINDS_DOWNLOAD_HISTORY = 1 << 9, + + /// Specifies general autofill form data. + /// This excludes password information and includes information like: + /// names, street and email addresses, phone numbers, and arbitrary input. + /// This also includes payment data. + COREWEBVIEW2_BROWSING_DATA_KINDS_GENERAL_AUTOFILL = 1 << 10, + + /// Specifies password autosave data. + COREWEBVIEW2_BROWSING_DATA_KINDS_PASSWORD_AUTOSAVE = 1 << 11, + + /// Specifies browsing history data. + COREWEBVIEW2_BROWSING_DATA_KINDS_BROWSING_HISTORY = 1 << 12, + + /// Specifies settings data. + COREWEBVIEW2_BROWSING_DATA_KINDS_SETTINGS = 1 << 13, + + /// Specifies profile data that should be wiped to make it look like a new profile. + /// This does not delete account-scoped data like passwords but will remove access + /// to account-scoped data by signing the user out. + /// Specifies all profile data, now and future. New profile data types may be added + /// to this data kind in the future. + /// This browsing data kind is inclusive of COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_SITE, + /// COREWEBVIEW2_BROWSING_DATA_KINDS_DISK_CACHE, + /// COREWEBVIEW2_BROWSING_DATA_KINDS_DOWNLOAD_HISTORY, + /// COREWEBVIEW2_BROWSING_DATA_KINDS_GENERAL_AUTOFILL, + /// COREWEBVIEW2_BROWSING_DATA_KINDS_PASSWORD_AUTOSAVE, + /// COREWEBVIEW2_BROWSING_DATA_KINDS_BROWSING_HISTORY, and + /// COREWEBVIEW2_BROWSING_DATA_KINDS_SETTINGS. + COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_PROFILE = 1 << 14, + + /// Specifies service workers registered for an origin, and clear will result in + /// termination and deregistration of them. + COREWEBVIEW2_BROWSING_DATA_KINDS_SERVICE_WORKERS = 1 << 15, +} +alias int COREWEBVIEW2_BROWSING_DATA_KINDS; +// DEFINE_ENUM_FLAG_OPERATORS(COREWEBVIEW2_BROWSING_DATA_KINDS) + +/// Specifies the action type when server certificate error is detected to be +/// used in the `ICoreWebView2ServerCertificateErrorDetectedEventArgs` +/// interface. +@("v1_enum") enum /+ COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION+/ +{ + /// Indicates to ignore the warning and continue the request with the TLS + /// certificate. This decision is cached for the RequestUri's host and the + /// server certificate in the session. + COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION_ALWAYS_ALLOW, + + /// Indicates to reject the certificate and cancel the request. + COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION_CANCEL, + + /// Indicates to display the default TLS interstitial error page to user for + /// page navigations. + /// For others TLS certificate is rejected and the request is cancelled. + COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION_DEFAULT +} +alias int COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION; + +/// Specifies the image format to use for favicon. +@("v1_enum") +enum /+ COREWEBVIEW2_FAVICON_IMAGE_FORMAT+/ +{ + /// Indicates that the PNG image format is used. + COREWEBVIEW2_FAVICON_IMAGE_FORMAT_PNG, + + /// Indicates the JPEG image format is used. + COREWEBVIEW2_FAVICON_IMAGE_FORMAT_JPEG, +} +alias int COREWEBVIEW2_FAVICON_IMAGE_FORMAT; + +/// Specifies the print dialog kind. +@("v1_enum") enum /+ COREWEBVIEW2_PRINT_DIALOG_KIND+/ +{ + /// Opens the browser print preview dialog. + COREWEBVIEW2_PRINT_DIALOG_KIND_BROWSER, + + /// Opens the system print dialog. + COREWEBVIEW2_PRINT_DIALOG_KIND_SYSTEM, +} +alias int COREWEBVIEW2_PRINT_DIALOG_KIND; + +/// Specifies the duplex option for a print. +@("v1_enum") enum /+ COREWEBVIEW2_PRINT_DUPLEX+/ +{ + /// The default duplex for a printer. + COREWEBVIEW2_PRINT_DUPLEX_DEFAULT, + + /// Print on only one side of the sheet. + COREWEBVIEW2_PRINT_DUPLEX_ONE_SIDED, + + /// Print on both sides of the sheet, flipped along the long edge. + COREWEBVIEW2_PRINT_DUPLEX_TWO_SIDED_LONG_EDGE, + + /// Print on both sides of the sheet, flipped along the short edge. + COREWEBVIEW2_PRINT_DUPLEX_TWO_SIDED_SHORT_EDGE, +} +alias int COREWEBVIEW2_PRINT_DUPLEX; + +/// Specifies the color mode for a print. +@("v1_enum") enum /+ COREWEBVIEW2_PRINT_COLOR_MODE+/ +{ + /// The default color mode for a printer. + COREWEBVIEW2_PRINT_COLOR_MODE_DEFAULT, + + /// Indicate that the printed output will be in color. + COREWEBVIEW2_PRINT_COLOR_MODE_COLOR, + + /// Indicate that the printed output will be in shades of gray. + COREWEBVIEW2_PRINT_COLOR_MODE_GRAYSCALE, +} +alias int COREWEBVIEW2_PRINT_COLOR_MODE; + +/// Specifies the collation for a print. +@("v1_enum") enum /+ COREWEBVIEW2_PRINT_COLLATION+/ +{ + /// The default collation for a printer. + COREWEBVIEW2_PRINT_COLLATION_DEFAULT, + + /// Indicate that the collation has been selected for the printed output. + COREWEBVIEW2_PRINT_COLLATION_COLLATED, + + /// Indicate that the collation has not been selected for the printed output. + COREWEBVIEW2_PRINT_COLLATION_UNCOLLATED, +} +alias int COREWEBVIEW2_PRINT_COLLATION; + +/// Specifies the media size for a print. +@("v1_enum") enum /+ COREWEBVIEW2_PRINT_MEDIA_SIZE+/ +{ + /// The default media size for a printer. + COREWEBVIEW2_PRINT_MEDIA_SIZE_DEFAULT, + + /// Indicate custom media size that is specific to the printer. + COREWEBVIEW2_PRINT_MEDIA_SIZE_CUSTOM, +} +alias int COREWEBVIEW2_PRINT_MEDIA_SIZE; + +/// Indicates the status for printing. +@("v1_enum") enum /+ COREWEBVIEW2_PRINT_STATUS+/ +{ + /// Indicates that the print operation is succeeded. + COREWEBVIEW2_PRINT_STATUS_SUCCEEDED, + + /// Indicates that the printer is not available. + COREWEBVIEW2_PRINT_STATUS_PRINTER_UNAVAILABLE, + + /// Indicates that the print operation is failed. + COREWEBVIEW2_PRINT_STATUS_OTHER_ERROR, +} +alias int COREWEBVIEW2_PRINT_STATUS; + +/// Tracking prevention levels. +@("v1_enum") enum /+ COREWEBVIEW2_TRACKING_PREVENTION_LEVEL+/ +{ + /// Tracking prevention is turned off. + COREWEBVIEW2_TRACKING_PREVENTION_LEVEL_NONE, + /// The least restrictive level of tracking prevention. Set to this level to + /// protect against malicious trackers but allows most other trackers and + /// personalize content and ads. + /// + /// See [Current tracking prevention + /// behavior](/microsoft-edge/web-platform/tracking-prevention#current-tracking-prevention-behavior) + /// for fine-grained information on what is being blocked with this level and + /// can change with different Edge versions. + COREWEBVIEW2_TRACKING_PREVENTION_LEVEL_BASIC, + /// The default level of tracking prevention. Set to this level to + /// protect against social media tracking on top of malicious trackers. + /// Content and ads will likely be less personalized. + /// + /// See [Current tracking prevention + /// behavior](/microsoft-edge/web-platform/tracking-prevention#current-tracking-prevention-behavior) + /// for fine-grained information on what is being blocked with this level and + /// can change with different Edge versions. + COREWEBVIEW2_TRACKING_PREVENTION_LEVEL_BALANCED, + /// The most restrictive level of tracking prevention. Set to this level to + /// protect + /// against malicious trackers and most trackers across sites. Content and ads + /// will likely have minimal personalization. + /// + /// This level blocks the most trackers but could cause some websites to not + /// behave as expected. + /// + /// See [Current tracking prevention + /// behavior](/microsoft-edge/web-platform/tracking-prevention#current-tracking-prevention-behavior) + /// for fine-grained information on what is being blocked with this level and + /// can change with different Edge versions. + COREWEBVIEW2_TRACKING_PREVENTION_LEVEL_STRICT, +} +alias int COREWEBVIEW2_TRACKING_PREVENTION_LEVEL; + +/// Specifies the desired access from script to `CoreWebView2SharedBuffer`. +@("v1_enum") +enum /+ COREWEBVIEW2_SHARED_BUFFER_ACCESS+/ +{ + /// Script from web page only has read access to the shared buffer. + COREWEBVIEW2_SHARED_BUFFER_ACCESS_READ_ONLY, + + /// Script from web page has read and write access to the shared buffer. + COREWEBVIEW2_SHARED_BUFFER_ACCESS_READ_WRITE +} +alias int COREWEBVIEW2_SHARED_BUFFER_ACCESS; + +/// Specifies memory usage target level of WebView. +@("v1_enum") +enum /+ COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL+/ +{ + /// Specifies normal memory usage target level. + COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL_NORMAL, + + /// Specifies low memory usage target level. + /// Used for inactivate WebView for reduced memory consumption. + COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL_LOW, +} +alias int COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL; + +/// Specifies the navigation kind of each navigation. +@("v1_enum") +enum /+ COREWEBVIEW2_NAVIGATION_KIND+/ +{ + /// A navigation caused by `CoreWebView2.Reload()`, `location.reload()`, the end user + /// using F5 or other UX, or other reload mechanisms to reload the current document + /// without modifying the navigation history. + COREWEBVIEW2_NAVIGATION_KIND_RELOAD = 0, + + /// A navigation back or forward to a different entry in the session navigation history, + /// like via `CoreWebView2.Back()`, `location.back()`, the end user pressing Alt+Left + /// or other UX, or other mechanisms to navigate back or forward in the current + /// session navigation history. + /// + // Note: This kind doesn't distinguish back or forward, because we can't + // distinguish it from origin source `blink.mojom.NavigationType`. + COREWEBVIEW2_NAVIGATION_KIND_BACK_OR_FORWARD = 1, + + /// A navigation to another document, which can be caused by `CoreWebView2.Navigate()`, + /// `window.location.href = ...`, or other WebView2 or DOM APIs that navigate to a new URI. + COREWEBVIEW2_NAVIGATION_KIND_NEW_DOCUMENT = 2, +} +alias int COREWEBVIEW2_NAVIGATION_KIND; + +/// Indicates the frame type used in the `ICoreWebView2FrameInfo` interface. +@("v1_enum") +enum /+ COREWEBVIEW2_FRAME_KIND+/ +{ + /// Indicates that the frame is an unknown type frame. We may extend this enum + /// type to identify more frame kinds in the future. + COREWEBVIEW2_FRAME_KIND_UNKNOWN, + /// Indicates that the frame is a primary main frame(webview). + COREWEBVIEW2_FRAME_KIND_MAIN_FRAME, + /// Indicates that the frame is an iframe. + COREWEBVIEW2_FRAME_KIND_IFRAME, + /// Indicates that the frame is an embed element. + COREWEBVIEW2_FRAME_KIND_EMBED, + /// Indicates that the frame is an object element. + COREWEBVIEW2_FRAME_KIND_OBJECT, +} +alias int COREWEBVIEW2_FRAME_KIND; + // End of enums and structs -/// WebView2 enables you to host web content using the -/// latest Edge web browser technology. -/// -/// ## Navigation events -/// The normal sequence of navigation events is NavigationStarting, -/// SourceChanged, ContentLoading and then NavigationCompleted. -/// The following events describe the state of WebView during each navigation: -/// NavigationStarting: WebView is starting to navigate and the navigation will -/// result in a network request. The host can disallow the request at this time. -/// SourceChanged: The source of WebView is changed to a new URL. This may also -/// be due to a navigation that doesn't cause a network request such as a fragment -/// navigation. -/// HistoryChanged: WebView's history has been updated as a result of -/// the navigation. -/// ContentLoading: WebView has started loading new content. -/// NavigationCompleted: WebView has completed loading content on the new page. -/// Developers can track navigations to each new document by the navigation ID. -/// WebView's navigation ID changes every time there is a successful navigation -/// to a new document. -/// -/// -/// \dot -/// digraph NavigationEvents { -/// node [fontname=Roboto, shape=rectangle] -/// edge [fontname=Roboto] -/// -/// NewDocument -> NavigationStarting; -/// NavigationStarting -> SourceChanged -> ContentLoading [label="New Document"]; -/// ContentLoading -> HistoryChanged; -/// SameDocument -> SourceChanged; -/// SourceChanged -> HistoryChanged [label="Same Document"]; -/// HistoryChanged -> NavigationCompleted; -/// NavigationStarting -> NavigationStarting [label="Redirect"]; -/// NavigationStarting -> NavigationCompleted [label="Failure"]; -/// } -/// \enddot -/// -/// Note that this is for navigation events with the same NavigationId event -/// arg. Navigations events with different NavigationId event args may overlap. -/// For instance, if you start a navigation wait for its NavigationStarting -/// event and then start another navigation you'll see the NavigationStarting -/// for the first navigate followed by the NavigationStarting of the second -/// navigate, followed by the NavigationCompleted for the first navigation and -/// then all the rest of the appropriate navigation events for the second -/// navigation. -/// In error cases there may or may not be a ContentLoading event depending -/// on whether the navigation is continued to an error page. -/// In case of an HTTP redirect, there will be multiple NavigationStarting -/// events in a row, with ones following the first will have their IsRedirect -/// flag set, however navigation ID remains the same. Same document navigations -/// do not result in NavigationStarting event and also do not increment the -/// navigation ID. -/// -/// To monitor or cancel navigations inside subframes in the WebView, use -/// FrameNavigationStarting. -/// -/// ## Process model -/// WebView2 uses the same process model as the Edge web -/// browser. There is one Edge browser process per specified user data directory -/// in a user session that will serve any WebView2 calling -/// process that specifies that user data directory. This means one Edge browser -/// process may be serving multiple calling processes and one calling -/// process may be using multiple Edge browser processes. -/// -/// \dot -/// digraph ProcessModelNClientsNServers { -/// node [fontname=Roboto, shape=rectangle]; -/// edge [fontname=Roboto]; -/// -/// Host1 [label="Calling\nprocess 1"]; -/// Host2 [label="Calling\nprocess 2"]; -/// Browser1 [label="Edge processes\ngroup 1"]; -/// Browser2 [label="Edge processes\ngroup 2"]; -/// -/// Host1 -> Browser1; -/// Host1 -> Browser2; -/// Host2 -> Browser2; -/// } -/// \enddot -/// -/// Associated with each browser process there will be some number of -/// render processes. -/// These are created as -/// necessary to service potentially multiple frames in different WebViews. The -/// number of render processes varies based on the site isolation browser -/// feature and the number of distinct disconnected origins rendered in -/// associated WebViews. -/// -/// \dot -/// digraph ProcessModelClientServer { -/// node [fontname=Roboto, shape=rectangle]; -/// edge [fontname=Roboto]; -/// graph [fontname=Roboto]; -/// -/// Host [label="Calling process"]; -/// subgraph cluster_0 { -/// labeljust = "l"; -/// label = "Edge processes group"; -/// Browser [label="Edge browser\nprocess"]; -/// Render1 [label="Edge render\nprocess 1"]; -/// Render2 [label="Edge render\nprocess 2"]; -/// RenderN [label="Edge render\nprocess N"]; -/// GPU [label="Edge GPU\nprocess"]; -/// } -/// -/// Host -> Browser; -/// Browser -> Render1; -/// Browser -> Render2; -/// Browser -> RenderN; -/// Browser -> GPU; -/// } -/// \enddot -/// -/// You can react to crashes and hangs in these browser and render processes -/// using the ProcessFailure event. -/// -/// You can safely shutdown associated browser and render processes using the -/// Close method. -/// -/// ## Threading model -/// The WebView2 must be created on a UI thread. Specifically a -/// thread with a message pump. All callbacks will occur on that thread and -/// calls into the WebView must be done on that thread. It is not safe to use -/// the WebView from another thread. -/// -/// Callbacks including event handlers and completion handlers execute serially. -/// That is, if you have an event handler running and begin a message loop no -/// other event handlers or completion callbacks will begin executing -/// reentrantly. -/// -/// ## Security -/// Always check the Source property of the WebView before using ExecuteScript, -/// PostWebMessageAsJson, PostWebMessageAsString, or any other method to send -/// information into the WebView. The WebView may have navigated to another page -/// via the end user interacting with the page or script in the page causing -/// navigation. Similarly, be very careful with -/// AddScriptToExecuteOnDocumentCreated. All future navigations will run this -/// script and if it provides access to information intended only for a certain -/// origin, any HTML document may have access. -/// -/// When examining the result of an ExecuteScript method call, a -/// WebMessageReceived event, always check the Source of the sender, or any -/// other mechanism of receiving information from an HTML document in a WebView -/// validate the URI of the HTML document is what you expect. -/// -/// When constructing a message to send into a WebView, prefer using -/// PostWebMessageAsJson and construct the JSON string parameter using a JSON -/// library. This will prevent accidentally encoding information into a JSON string -/// or script, and ensure no attacker controlled input can -/// modify the rest of the JSON message or run arbitrary script. -/// -/// ## String types -/// String out parameters are LPWSTR null terminated strings. The callee -/// allocates the string using CoTaskMemAlloc. Ownership is transferred to the -/// caller and it is up to the caller to free the memory using CoTaskMemFree. -/// -/// String in parameters are LPCWSTR null terminated strings. The caller ensures -/// the string is valid for the duration of the synchronous function call. -/// If the callee needs to retain that value to some point after the function -/// call completes, the callee must allocate its own copy of the string value. -/// -/// ## URI and JSON parsing -/// Various methods provide or accept URIs and JSON as strings. Please use your -/// own preferred library for parsing and generating these strings. -/// -/// If WinRT is available for your app you can use `Windows.Data.Json.JsonObject` -/// and `IJsonObjectStatics` to parse or produce JSON strings or `Windows.Foundation.Uri` -/// and `IUriRuntimeClassFactory` to parse and produce URIs. Both of these work -/// in Win32 apps. -/// -/// If you use IUri and CreateUri to parse URIs you may want to use the -/// following URI creation flags to have CreateUri behavior more closely match -/// the URI parsing in the WebView: -/// `Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME | Uri_CREATE_NO_DECODE_EXTRA_INFO` -/// -/// ## Debugging -/// Open DevTools with the normal shortcuts: `F12` or `Ctrl+Shift+I`. -/// You can use the `--auto-open-devtools-for-tabs` command argument switch to -/// have the DevTools window open immediately when first creating a WebView. See -/// CreateCoreWebView2Controller documentation for how to provide additional command -/// line arguments to the browser process. -/// Check out the LoaderOverride registry key in the CreateCoreWebView2Controller -/// documentation. -/// -/// ## Versioning -/// After you've used a particular version of the SDK to build your app, your -/// app may end up running with an older or newer version of installed browser -/// binaries. Until version 1.0.0.0 of WebView2 there may be breaking changes -/// during updates that will prevent your SDK from working with different -/// versions of installed browser binaries. After version 1.0.0.0 different -/// versions of the SDK can work with different versions of the installed -/// browser by following these best practices: -/// -/// To account for breaking changes to the API be sure to check for failure when -/// calling the DLL export CreateCoreWebView2Environment and when -/// calling QueryInterface on any CoreWebView2 object. A return value of -/// E_NOINTERFACE can indicate the SDK is not compatible with the Edge -/// browser binaries. -/// -/// Checking for failure from QueryInterface will also account for cases where -/// the SDK is newer than the version of the Edge browser and your app attempts -/// to use an interface of which the Edge browser is unaware. -/// -/// When an interface is unavailable, you can consider disabling the associated -/// feature if possible, or otherwise informing the end user they need to update -/// their browser. +/// WebView2 enables you to host web content using the latest Microsoft Edge +/// browser and web technology. + const GUID IID_ICoreWebView2 = ICoreWebView2.iid; interface ICoreWebView2 : IUnknown { static const GUID iid = { 0x76eceacb,0x0462,0x4d94,[ 0xac,0x83,0x42,0x3a,0x67,0x93,0x77,0x5e ] }; - extern(Windows): - /// The ICoreWebView2Settings object contains various modifiable settings for - /// the running WebView. - /+[ propget]+/ - HRESULT get_Settings(/+[out, retval]+/ ICoreWebView2Settings * settings); - /// The URI of the current top level document. This value potentially - /// changes as a part of the SourceChanged event firing for some cases - /// such as navigating to a different site or fragment navigations. It will - /// remain the same for other types of navigations such as page reloads or - /// history.pushState with the same URL as the current page. + /// The `ICoreWebView2Settings` object contains various modifiable settings + /// for the running WebView. + + @(" propget") + HRESULT get_Settings(@("out, retval") ICoreWebView2Settings * settings); + + /// The URI of the current top level document. This value potentially + /// changes as a part of the `SourceChanged` event that runs for some cases + /// such as navigating to a different site or fragment navigations. It + /// remains the same for other types of navigations such as page refreshes + /// or `history.pushState` with the same URL as the current page. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). /// /// \snippet ControlComponent.cpp SourceChanged - /+[ propget]+/ - HRESULT get_Source(/+[out, retval]+/ LPWSTR* uri); + @(" propget") + HRESULT get_Source(@("out, retval") LPWSTR* uri); - /// Cause a navigation of the top level document to the specified URI. See - /// the navigation events for more information. Note that this starts a - /// navigation and the corresponding NavigationStarting event will fire - /// sometime after this Navigate call completes. + /// Cause a navigation of the top-level document to run to the specified URI. + /// For more information, navigate to [Navigation + /// events](/microsoft-edge/webview2/concepts/navigation-events). + /// + /// \> [!NOTE]\n\> This operation starts a navigation and the corresponding + /// `NavigationStarting` event triggers sometime after `Navigate` runs. /// /// \snippet ControlComponent.cpp Navigate HRESULT Navigate(in LPCWSTR uri); - /// Initiates a navigation to htmlContent as source HTML of a new - /// document. The htmlContent parameter may not be larger than 2 MB - /// in total size. The origin of the new page will be about:blank. + /// Initiates a navigation to htmlContent as source HTML of a new document. + /// The `htmlContent` parameter may not be larger than 2 MB (2 * 1024 * 1024 bytes) in total size. + /// The origin of the new page is `about:blank`. /// + /// ```cpp + /// SetVirtualHostNameToFolderMapping( + /// L"appassets.example", L"assets", + /// COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND_DENY); + /// + /// WCHAR c_navString[] = LR" + /// + /// + /// + ///

Click me

+ /// "; + /// m_webView->NavigateToString(c_navString); + /// ``` /// \snippet SettingsComponent.cpp NavigateToString HRESULT NavigateToString(in LPCWSTR htmlContent); - /// Add an event handler for the NavigationStarting event. - /// NavigationStarting fires when the WebView main frame is - /// requesting permission to navigate to a different URI. This will fire for - /// redirects as well. + /// Add an event handler for the `NavigationStarting` event. + /// `NavigationStarting` runs when the WebView main frame is requesting + /// permission to navigate to a different URI. Redirects trigger this + /// operation as well, and the navigation id is the same as the original + /// one. /// - /// Corresponding navigations can be blocked until the event handler returns. + /// Navigations will be blocked until all `NavigationStarting` event handlers + /// return. /// /// \snippet SettingsComponent.cpp NavigationStarting HRESULT add_NavigationStarting( /+[in]+/ ICoreWebView2NavigationStartingEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_NavigationStarting. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_NavigationStarting`. HRESULT remove_NavigationStarting( in EventRegistrationToken token); - /// Add an event handler for the ContentLoading event. - /// ContentLoading fires before any content is loaded, including scripts added - /// with AddScriptToExecuteOnDocumentCreated. - /// ContentLoading will not fire if a same page navigation occurs - /// (such as through fragment navigations or history.pushState navigations). - /// This follows the NavigationStarting and SourceChanged events and - /// precedes the HistoryChanged and NavigationCompleted events. + /// Add an event handler for the `ContentLoading` event. `ContentLoading` + /// triggers before any content is loaded, including scripts added with + /// `AddScriptToExecuteOnDocumentCreated`. `ContentLoading` does not trigger + /// if a same page navigation occurs (such as through `fragment` + /// navigations or `history.pushState` navigations). This operation + /// follows the `NavigationStarting` and `SourceChanged` events and precedes + /// the `HistoryChanged` and `NavigationCompleted` events. HRESULT add_ContentLoading( /+[in]+/ ICoreWebView2ContentLoadingEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_ContentLoading. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_ContentLoading`. HRESULT remove_ContentLoading( in EventRegistrationToken token); - /// Add an event handler for the SourceChanged event. - /// SourceChanged fires when the Source property changes. - /// SourceChanged fires for navigating to a different site or fragment - /// navigations. - /// It will not fire for other types of navigations such as page reloads or - /// history.pushState with the same URL as the current page. - /// SourceChanged fires before ContentLoading for navigation to a new document. + /// Add an event handler for the `SourceChanged` event. `SourceChanged` + /// triggers when the `Source` property changes. `SourceChanged` runs when + /// navigating to a different site or fragment navigations. It does not + /// trigger for other types of navigations such as page refreshes or + /// `history.pushState` with the same URL as the current page. + /// `SourceChanged` runs before `ContentLoading` for navigation to a new + /// document. /// /// \snippet ControlComponent.cpp SourceChanged HRESULT add_SourceChanged( /+[in]+/ ICoreWebView2SourceChangedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_SourceChanged. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_SourceChanged`. HRESULT remove_SourceChanged( in EventRegistrationToken token); - /// Add an event handler for the HistoryChanged event. - /// HistoryChanged listens to the change of navigation history for the top - /// level document. Use HistoryChanged to check if CanGoBack/CanGoForward - /// value has changed. HistoryChanged also fires for using GoBack/GoForward. - /// HistoryChanged fires after SourceChanged and ContentLoading. + /// Add an event handler for the `HistoryChanged` event. `HistoryChanged` is + /// raised for changes to joint session history, which consists of top-level + /// and manual frame navigations. Use `HistoryChanged` to verify that the + /// `CanGoBack` or `CanGoForward` value has changed. `HistoryChanged` also + /// runs for using `GoBack` or `GoForward`. `HistoryChanged` runs after + /// `SourceChanged` and `ContentLoading`. `CanGoBack` is false for + /// navigations initiated through ICoreWebView2Frame APIs if there has not yet + /// been a user gesture. /// /// \snippet ControlComponent.cpp HistoryChanged HRESULT add_HistoryChanged( /+[in]+/ ICoreWebView2HistoryChangedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_HistoryChanged. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_HistoryChanged`. HRESULT remove_HistoryChanged( in EventRegistrationToken token); - /// Add an event handler for the NavigationCompleted event. - /// NavigationCompleted fires when the WebView has completely loaded - /// (body.onload has fired) or loading stopped with error. + /// Add an event handler for the `NavigationCompleted` event. + /// `NavigationCompleted` runs when the WebView has completely loaded + /// (concurrently when `body.onload` runs) or loading stopped with error. /// /// \snippet ControlComponent.cpp NavigationCompleted HRESULT add_NavigationCompleted( /+[in]+/ ICoreWebView2NavigationCompletedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_NavigationCompleted. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_NavigationCompleted`. HRESULT remove_NavigationCompleted( in EventRegistrationToken token); - /// Add an event handler for the FrameNavigationStarting event. - /// FrameNavigationStarting fires when a child frame in the WebView - /// requests permission to navigate to a different URI. This will fire for - /// redirects as well. + /// Add an event handler for the `FrameNavigationStarting` event. + /// `FrameNavigationStarting` triggers when a child frame in the WebView + /// requests permission to navigate to a different URI. Redirects trigger + /// this operation as well, and the navigation id is the same as the original + /// one. /// - /// Corresponding navigations can be blocked until the event handler returns. + /// Navigations will be blocked until all `FrameNavigationStarting` event + /// handlers return. /// /// \snippet SettingsComponent.cpp FrameNavigationStarting HRESULT add_FrameNavigationStarting( /+[in]+/ ICoreWebView2NavigationStartingEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_FrameNavigationStarting. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with + /// `add_FrameNavigationStarting`. HRESULT remove_FrameNavigationStarting( in EventRegistrationToken token); - /// Add an event handler for the FrameNavigationCompleted event. - /// FrameNavigationCompleted fires when a child frame has completely - /// loaded (body.onload has fired) or loading stopped with error. + /// Add an event handler for the `FrameNavigationCompleted` event. + /// `FrameNavigationCompleted` triggers when a child frame has completely + /// loaded (concurrently when `body.onload` has triggered) or loading stopped with error. /// /// \snippet ControlComponent.cpp FrameNavigationCompleted HRESULT add_FrameNavigationCompleted( /+[in]+/ ICoreWebView2NavigationCompletedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_FrameNavigationCompleted. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with + /// `add_FrameNavigationCompleted`. HRESULT remove_FrameNavigationCompleted( in EventRegistrationToken token); - /// Add an event handler for the ScriptDialogOpening event. - /// ScriptDialogOpening fires when a JavaScript dialog (alert, confirm, - /// prompt, or beforeunload) will show for the webview. This event only fires - /// if the ICoreWebView2Settings::AreDefaultScriptDialogsEnabled property is - /// set to false. The ScriptDialogOpening event can be used to suppress - /// dialogs or replace default dialogs with custom dialogs. + /// Add an event handler for the `ScriptDialogOpening` event. + /// `ScriptDialogOpening` runs when a JavaScript dialog (`alert`, `confirm`, + /// `prompt`, or `beforeunload`) displays for the webview. This event only + /// triggers if the `ICoreWebView2Settings::AreDefaultScriptDialogsEnabled` + /// property is set to `FALSE`. The `ScriptDialogOpening` event suppresses + /// dialogs or replaces default dialogs with custom dialogs. /// - /// If a deferral is not taken on the event args, the subsequent scripts can be - /// blocked until the event handler returns. If a deferral is taken, then the + /// If a deferral is not taken on the event args, the subsequent scripts are + /// blocked until the event handler returns. If a deferral is taken, the /// scripts are blocked until the deferral is completed. /// /// \snippet SettingsComponent.cpp ScriptDialogOpening HRESULT add_ScriptDialogOpening( /+[in]+/ ICoreWebView2ScriptDialogOpeningEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_ScriptDialogOpening. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_ScriptDialogOpening`. HRESULT remove_ScriptDialogOpening( in EventRegistrationToken token); - /// Add an event handler for the PermissionRequested event. - /// PermissionRequested fires when content in a WebView requests permission to - /// access some privileged resources. + /// Add an event handler for the `PermissionRequested` event. + /// `PermissionRequested` runs when content in a WebView requests permission + /// to access some privileged resources. /// - /// If a deferral is not taken on the event args, the subsequent scripts can - /// be blocked until the event handler returns. If a deferral is taken, then - /// the scripts are blocked until the deferral is completed. + /// If a deferral is not taken on the event args, the subsequent scripts are + /// blocked until the event handler returns. If a deferral is taken, the + /// scripts are blocked until the deferral is completed. /// - /// \snippet SettingsComponent.cpp PermissionRequested + /// \snippet SettingsComponent.cpp PermissionRequested0 + /// \snippet SettingsComponent.cpp PermissionRequested1 HRESULT add_PermissionRequested( /+[in]+/ ICoreWebView2PermissionRequestedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_PermissionRequested. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_PermissionRequested`. HRESULT remove_PermissionRequested( in EventRegistrationToken token); - /// Add an event handler for the ProcessFailed event. - /// ProcessFailed fires when a WebView process is terminated unexpectedly or - /// becomes unresponsive. + /// Add an event handler for the `ProcessFailed` event. + /// `ProcessFailed` runs when any of the processes in the + /// [WebView2 Process Group](/microsoft-edge/webview2/concepts/process-model?tabs=csharp#processes-in-the-webview2-runtime) + /// encounters one of the following conditions: + /// + /// Condition | Details + /// ---|--- + /// Unexpected exit | The process indicated by the event args has exited unexpectedly (usually due to a crash). The failure might or might not be recoverable and some failures are auto-recoverable. + /// Unresponsiveness | The process indicated by the event args has become unresponsive to user input. This is only reported for renderer processes, and will run every few seconds until the process becomes responsive again. + /// + /// \> [!NOTE]\n\> When the failing process is the browser process, a + /// `ICoreWebView2Environment5::BrowserProcessExited` event will run too. + /// + /// Your application can use `ICoreWebView2ProcessFailedEventArgs` and + /// `ICoreWebView2ProcessFailedEventArgs2` to identify which condition and + /// process the event is for, and to collect diagnostics and handle recovery + /// if necessary. For more details about which cases need to be handled by + /// your application, see `COREWEBVIEW2_PROCESS_FAILED_KIND`. /// /// \snippet ProcessComponent.cpp ProcessFailed HRESULT add_ProcessFailed( /+[in]+/ ICoreWebView2ProcessFailedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_ProcessFailed. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_ProcessFailed`. HRESULT remove_ProcessFailed( in EventRegistrationToken token); - /// Add the provided JavaScript to a list of scripts that should be executed - /// after the global object has been created, but before the HTML document has + /// Add the provided JavaScript to a list of scripts that should be run after + /// the global object has been created, but before the HTML document has /// been parsed and before any other script included by the HTML document is - /// executed. This method injects a script that runs on all top-level document - /// and child frame page navigations. - /// This method runs asynchronously, and you must wait for the completion - /// handler to finish before the injected script is ready to run. When this - /// method completes, the handler's `Invoke` method is called with the `id` of - /// the injected script. `id` is a string. To remove the injected script, use + /// run. This method injects a script that runs on all top-level document + /// and child frame page navigations. This method runs asynchronously, and + /// you must wait for the completion handler to finish before the injected + /// script is ready to run. When this method completes, the `Invoke` method + /// of the handler is run with the `id` of the injected script. `id` is a + /// string. To remove the injected script, use /// `RemoveScriptToExecuteOnDocumentCreated`. /// - /// Note that if an HTML document has sandboxing of some kind via + /// If the method is run in add_NewWindowRequested handler it should be called + /// before the new window is set. If called after setting the NewWindow property, the initial script + /// may or may not apply to the initial navigation and may only apply to the subsequent navigation. + /// For more details see `ICoreWebView2NewWindowRequestedEventArgs::put_NewWindow`. + /// + /// \> [!NOTE]\n\> If an HTML document is running in a sandbox of some kind using /// [sandbox](https://developer.mozilla.org/docs/Web/HTML/Element/iframe#attr-sandbox) - /// properties or the [Content-Security-Policy HTTP - /// header](https://developer.mozilla.org/docs/Web/HTTP/Headers/Content-Security-Policy) - /// this will affect the script run here. So, for example, if the - /// 'allow-modals' keyword is not set then calls to the `alert` function will - /// be ignored. + /// properties or the + /// [Content-Security-Policy](https://developer.mozilla.org/docs/Web/HTTP/Headers/Content-Security-Policy) + /// HTTP header affects the script that runs. For example, if the + /// `allow-modals` keyword is not set then requests to run the `alert` + /// function are ignored. /// /// \snippet ScriptComponent.cpp AddScriptToExecuteOnDocumentCreated HRESULT AddScriptToExecuteOnDocumentCreated( in LPCWSTR javaScript, /+[in]+/ ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler handler); - /// Remove the corresponding JavaScript added using `AddScriptToExecuteOnDocumentCreated` - /// with the specified script id. + /// Remove the corresponding JavaScript added using + /// `AddScriptToExecuteOnDocumentCreated` with the specified script ID. The + /// script ID should be the one returned by the `AddScriptToExecuteOnDocumentCreated`. + /// Both use `AddScriptToExecuteOnDocumentCreated` and this method in `NewWindowRequested` + /// event handler at the same time sometimes causes trouble. Since invalid scripts will + /// be ignored, the script IDs you got may not be valid anymore. HRESULT RemoveScriptToExecuteOnDocumentCreated(in LPCWSTR id); - /// Execute JavaScript code from the javascript parameter in the - /// current top level document rendered in the WebView. This will execute - /// asynchronously and when complete, if a handler is provided in the - /// ExecuteScriptCompletedHandler parameter, its Invoke method will be - /// called with the result of evaluating the provided JavaScript. The result - /// value is a JSON encoded string. - /// If the result is undefined, contains a reference cycle, or otherwise - /// cannot be encoded into JSON, the JSON null value will be returned as the - /// string 'null'. Note that a function that has no explicit return value - /// returns undefined. - /// If the executed script throws an unhandled exception, then the result is - /// also 'null'. - /// This method is applied asynchronously. If the method is called after - /// NavigationStarting event during a navigation, the script will be executed - /// in the new document when loading it, around the time ContentLoading is - /// fired. ExecuteScript will work even if - /// ICoreWebView2Settings::IsScriptEnabled is set to FALSE. + /// Run JavaScript code from the javascript parameter in the current + /// top-level document rendered in the WebView. The result of evaluating + /// the provided JavaScript is used in this parameter. The result value is + /// a JSON encoded string. If the result is undefined, contains a reference + /// cycle, or otherwise is not able to be encoded into JSON, then the result + /// is considered to be null, which is encoded in JSON as the string "null". + /// + /// \> [!NOTE]\n\> A function that has no explicit return value returns undefined. If the + /// script that was run throws an unhandled exception, then the result is + /// also "null". This method is applied asynchronously. If the method is + /// run after the `NavigationStarting` event during a navigation, the script + /// runs in the new document when loading it, around the time + /// `ContentLoading` is run. This operation executes the script even if + /// `ICoreWebView2Settings::IsScriptEnabled` is set to `FALSE`. /// /// \snippet ScriptComponent.cpp ExecuteScript HRESULT ExecuteScript( in LPCWSTR javaScript, /+[in]+/ ICoreWebView2ExecuteScriptCompletedHandler handler); - /// Capture an image of what WebView is displaying. Specify the - /// format of the image with the imageFormat parameter. - /// The resulting image binary data is written to the provided imageStream - /// parameter. When CapturePreview finishes writing to the stream, the Invoke - /// method on the provided handler parameter is called. + /// Capture an image of what WebView is displaying. Specify the format of + /// the image with the `imageFormat` parameter. The resulting image binary + /// data is written to the provided `imageStream` parameter. When + /// `CapturePreview` finishes writing to the stream, the `Invoke` method on + /// the provided `handler` parameter is run. This method fails if called + /// before the first ContentLoading event. For example if this is called in + /// the NavigationStarting event for the first navigation it will fail. + /// For subsequent navigations, the method may not fail, but will not capture + /// an image of a given webpage until the ContentLoading event has been fired + /// for it. Any call to this method prior to that will result in a capture of + /// the page being navigated away from. /// /// \snippet FileComponent.cpp CapturePreview HRESULT CapturePreview( @@ -23308,76 +24314,103 @@ interface ICoreWebView2 : IUnknown in IStream* imageStream, /+[in]+/ ICoreWebView2CapturePreviewCompletedHandler handler); - /// Reload the current page. This is similar to navigating to the URI of + /// Reload the current page. This is similar to navigating to the URI of /// current top level document including all navigation events firing and - /// respecting any entries in the HTTP cache. But, the back/forward history - /// will not be modified. + /// respecting any entries in the HTTP cache. But, the back or forward + /// history are not modified. HRESULT Reload(); /// Post the specified webMessage to the top level document in this WebView. - /// The top level document's window.chrome.webview's message event fires. - /// JavaScript in that document may subscribe and unsubscribe to the event - /// via the following: + /// The main page receives the message by subscribing to the `message` event of the + /// `window.chrome.webview` of the page document. /// - /// ``` - /// window.chrome.webview.addEventListener('message', handler) - /// window.chrome.webview.removeEventListener('message', handler) + /// ```cpp + /// window.chrome.webview.addEventListener('message', handler) + /// window.chrome.webview.removeEventListener('message', handler) /// ``` /// - /// The event args is an instance of `MessageEvent`. - /// The ICoreWebView2Settings::IsWebMessageEnabled setting must be true or - /// this method will fail with E_INVALIDARG. - /// The event arg's data property is the webMessage string parameter parsed - /// as a JSON string into a JavaScript object. - /// The event arg's source property is a reference to the - /// `window.chrome.webview` object. - /// See add_WebMessageReceived for information on sending messages from the - /// HTML document in the WebView to the host. - /// This message is sent asynchronously. If a navigation occurs before the - /// message is posted to the page, then the message will not be sent. + /// The event args is an instance of `MessageEvent`. The + /// `ICoreWebView2Settings::IsWebMessageEnabled` setting must be `TRUE` or + /// the web message will not be sent. The `data` property of the event + /// arg is the `webMessage` string parameter parsed as a JSON string into a + /// JavaScript object. The `source` property of the event arg is a reference + /// to the `window.chrome.webview` object. For information about sending + /// messages from the HTML document in the WebView to the host, navigate to + /// [add_WebMessageReceived](/microsoft-edge/webview2/reference/win32/icorewebview2#add_webmessagereceived). + /// The message is delivered asynchronously. If a navigation occurs before + /// the message is posted to the page, the message is discarded. /// /// \snippet ScenarioWebMessage.cpp WebMessageReceived HRESULT PostWebMessageAsJson(in LPCWSTR webMessageAsJson); - /// This is a helper for posting a message that is a simple string - /// rather than a JSON string representation of a JavaScript object. This - /// behaves in exactly the same manner as PostWebMessageAsJson but the - /// `window.chrome.webview` message event arg's data property will be a string - /// with the same value as webMessageAsString. Use this instead of - /// PostWebMessageAsJson if you want to communicate via simple strings rather - /// than JSON objects. + /// Posts a message that is a simple string rather than a JSON string + /// representation of a JavaScript object. This behaves in exactly the same + /// manner as `PostWebMessageAsJson`, but the `data` property of the event + /// arg of the `window.chrome.webview` message is a string with the same + /// value as `webMessageAsString`. Use this instead of + /// `PostWebMessageAsJson` if you want to communicate using simple strings + /// rather than JSON objects. HRESULT PostWebMessageAsString(in LPCWSTR webMessageAsString); - /// Add an event handler for the WebMessageReceived event. - /// WebMessageReceived fires when the - /// ICoreWebView2Settings::IsWebMessageEnabled setting is set and the top - /// level document of the WebView calls `window.chrome.webview.postMessage`. - /// The postMessage function is `void postMessage(object)` where - /// object is any object supported by JSON conversion. + /// Add an event handler for the `WebMessageReceived` event. + /// `WebMessageReceived` runs when the + /// `ICoreWebView2Settings::IsWebMessageEnabled` setting is set and the + /// top-level document of the WebView runs + /// `window.chrome.webview.postMessage`. The `postMessage` function is + /// `void postMessage(object)` where object is any object supported by JSON + /// conversion. /// - /// \snippet ScenarioWebMessage.html chromeWebView + /// \snippet assets\ScenarioWebMessage.html chromeWebView /// - /// When postMessage is called, the handler's Invoke method will be called - /// with the postMessage's object parameter converted to a JSON string. + /// When the page calls `postMessage`, the object parameter is converted to a + /// JSON string and is posted asynchronously to the host process. This will + /// result in the handler's `Invoke` method being called with the JSON string + /// as a parameter. /// /// \snippet ScenarioWebMessage.cpp WebMessageReceived + /// + /// If the same page calls `postMessage` multiple times, the corresponding + /// `WebMessageReceived` events are guaranteed to be fired in the same order. + /// However, if multiple frames call `postMessage`, there is no guaranteed + /// order. In addition, `WebMessageReceived` events caused by calls to + /// `postMessage` are not guaranteed to be sequenced with events caused by DOM + /// APIs. For example, if the page runs + /// + /// ```javascript + /// chrome.webview.postMessage("message"); + /// window.open(); + /// ``` + /// + /// then the `NewWindowRequested` event might be fired before the + /// `WebMessageReceived` event. If you need the `WebMessageReceived` event + /// to happen before anything else, then in the `WebMessageReceived` handler + /// you can post a message back to the page and have the page wait until it + /// receives that message before continuing. HRESULT add_WebMessageReceived( /+[in]+/ ICoreWebView2WebMessageReceivedEventHandler handler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_WebMessageReceived. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_WebMessageReceived`. HRESULT remove_WebMessageReceived( in EventRegistrationToken token); - /// Call an asynchronous DevToolsProtocol method. See the - /// [DevTools Protocol Viewer](https://aka.ms/DevToolsProtocolDocs) - /// for a list and description of available methods. - /// The methodName parameter is the full name of the method in the format - /// `{domain}.{method}`. - /// The parametersAsJson parameter is a JSON formatted string containing - /// the parameters for the corresponding method. - /// The handler's Invoke method will be called when the method asynchronously - /// completes. Invoke will be called with the method's return object as a - /// JSON string. + /// Runs an asynchronous `DevToolsProtocol` method. For more information + /// about available methods, navigate to + /// [DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/tot) + /// . The `methodName` parameter is the full name of the method in the + /// `{domain}.{method}` format. The `parametersAsJson` parameter is a JSON + /// formatted string containing the parameters for the corresponding method. + /// The `Invoke` method of the `handler` is run when the method + /// asynchronously completes. `Invoke` is run with the return object of the + /// method as a JSON string. This function returns E_INVALIDARG if the `methodName` is + /// unknown or the `parametersAsJson` has an error. In the case of such an error, the + /// `returnObjectAsJson` parameter of the handler will include information + /// about the error. + /// Note even though WebView2 dispatches the CDP messages in the order called, + /// CDP method calls may be processed out of order. + /// If you require CDP methods to run in a particular order, you should wait + /// for the previous method's completed handler to run before calling the + /// next method. /// /// \snippet ScriptComponent.cpp CallDevToolsProtocolMethod HRESULT CallDevToolsProtocolMethod( @@ -23385,730 +24418,2831 @@ interface ICoreWebView2 : IUnknown in LPCWSTR parametersAsJson, /+[in]+/ ICoreWebView2CallDevToolsProtocolMethodCompletedHandler handler); - /// The process id of the browser process that hosts the WebView. - /+[ propget]+/ - HRESULT get_BrowserProcessId(/+[out, retval]+/ UINT32* value); + /// The process ID of the browser process that hosts the WebView. + @(" propget") + HRESULT get_BrowserProcessId(@("out, retval") UINT32* value); + + /// `TRUE` if the WebView is able to navigate to a previous page in the + /// navigation history. If `CanGoBack` changes value, the `HistoryChanged` + /// event runs. + @(" propget") + HRESULT get_CanGoBack(@("out, retval") BOOL* canGoBack); + + /// `TRUE` if the WebView is able to navigate to a next page in the + /// navigation history. If `CanGoForward` changes value, the + /// `HistoryChanged` event runs. + @(" propget") + HRESULT get_CanGoForward(@("out, retval") BOOL* canGoForward); - /// Returns true if the WebView can navigate to a previous page in the - /// navigation history. - /// The HistoryChanged event will fire if CanGoBack changes value. - /+[ propget]+/ - HRESULT get_CanGoBack(/+[out, retval]+/ BOOL* canGoBack); - /// Returns true if the WebView can navigate to a next page in the navigation - /// history. - /// The HistoryChanged event will fire if CanGoForward changes value. - /+[ propget]+/ - HRESULT get_CanGoForward(/+[out, retval]+/ BOOL* canGoForward); /// Navigates the WebView to the previous page in the navigation history. HRESULT GoBack(); + /// Navigates the WebView to the next page in the navigation history. HRESULT GoForward(); - /// Get a DevTools Protocol event receiver that allows you to subscribe to - /// a DevTools Protocol event. - /// The eventName parameter is the full name of the event in the format - /// `{domain}.{event}`. - /// See the [DevTools Protocol Viewer](https://aka.ms/DevToolsProtocolDocs) - /// for a list of DevTools Protocol events description, and event args. + /// Get a DevTools Protocol event receiver that allows you to subscribe to a + /// DevTools Protocol event. The `eventName` parameter is the full name of + /// the event in the format `{domain}.{event}`. For more information about + /// DevTools Protocol events description and event args, navigate to + /// [DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/tot). /// /// \snippet ScriptComponent.cpp DevToolsProtocolEventReceived HRESULT GetDevToolsProtocolEventReceiver( in LPCWSTR eventName, - /+[out, retval]+/ ICoreWebView2DevToolsProtocolEventReceiver * receiver); + @("out, retval") ICoreWebView2DevToolsProtocolEventReceiver * receiver); - /// Stop all navigations and pending resource fetches. Does not stop - /// scripts. + /// Stop all navigations and pending resource fetches. Does not stop scripts. HRESULT Stop(); - /// Add an event handler for the NewWindowRequested event. - /// NewWindowRequested fires when content inside the WebView requests to open - /// a new window, such as through window.open. The app can pass a target - /// WebView that will be considered the opened window. + /// Add an event handler for the `NewWindowRequested` event. + /// `NewWindowRequested` runs when content inside the WebView requests to + /// open a new window, such as through `window.open`. The app can pass a + /// target WebView that is considered the opened window or mark the event as + /// `Handled`, in which case WebView2 does not open a window. + /// If either `Handled` or `NewWindow` properties are not set, the target + /// content will be opened on a popup window. /// - /// Scripts resulted in the new window requested can be blocked until the - /// event handler returns if a deferral is not taken on the event args. If a - /// deferral is taken, then scripts are blocked until the deferral is - /// completed. + /// If a deferral is not taken on the event args, scripts that resulted in the + /// new window that are requested are blocked until the event handler returns. + /// If a deferral is taken, then scripts are blocked until the deferral is + /// completed or new window is set. + /// + /// For more details and considerations on the target WebView to be supplied + /// at the opened window, see `ICoreWebView2NewWindowRequestedEventArgs::put_NewWindow`. /// /// \snippet AppWindow.cpp NewWindowRequested HRESULT add_NewWindowRequested( /+[in]+/ ICoreWebView2NewWindowRequestedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_NewWindowRequested. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_NewWindowRequested`. HRESULT remove_NewWindowRequested( in EventRegistrationToken token); - /// Add an event handler for the DocumentTitleChanged event. - /// DocumentTitleChanged fires when the DocumentTitle property of the WebView - /// changes and may fire before or after the NavigationCompleted event. + /// Add an event handler for the `DocumentTitleChanged` event. + /// `DocumentTitleChanged` runs when the `DocumentTitle` property of the + /// WebView changes and may run before or after the `NavigationCompleted` + /// event. /// /// \snippet FileComponent.cpp DocumentTitleChanged HRESULT add_DocumentTitleChanged( /+[in]+/ ICoreWebView2DocumentTitleChangedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_DocumentTitleChanged. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_DocumentTitleChanged`. HRESULT remove_DocumentTitleChanged( in EventRegistrationToken token); - /// The title for the current top level document. - /// If the document has no explicit title or is otherwise empty, - /// a default that may or may not match the URI of the document will be used. - /+[ propget]+/ - HRESULT get_DocumentTitle(/+[out, retval]+/ LPWSTR* title); + /// The title for the current top-level document. If the document has no + /// explicit title or is otherwise empty, a default that may or may not match + /// the URI of the document is used. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_DocumentTitle(@("out, retval") LPWSTR* title); /// Add the provided host object to script running in the WebView with the - /// specified name. - /// Host objects are exposed as host object proxies via - /// `window.chrome.webview.hostObjects.`. - /// Host object proxies are promises and will resolve to an object - /// representing the host object. - /// The promise is rejected if the app has not added an object with the name. + /// specified name. Host objects are exposed as host object proxies using + /// `window.chrome.webview.hostObjects.{name}`. Host object proxies are + /// promises and resolves to an object representing the host object. The + /// promise is rejected if the app has not added an object with the name. /// When JavaScript code access a property or method of the object, a promise - /// is return, which will resolve to the value returned from the host for the - /// property or method, or rejected in case of error such as there is no such - /// property or method on the object or parameters are invalid. - /// For example, when the application code does the following: + /// is return, which resolves to the value returned from the host for the + /// property or method, or rejected in case of error, for example, no + /// property or method on the object or parameters are not valid. /// - /// ``` - /// VARIANT object; - /// object.vt = VT_DISPATCH; - /// object.pdispVal = appObject; - /// webview->AddHostObjectToScript(L"host_object", &host); - /// ``` - /// - /// JavaScript code in the WebView will be able to access appObject as - /// following and then access attributes and methods of appObject: - /// - /// ``` - /// let app_object = await window.chrome.webview.hostObjects.host_object; - /// let attr1 = await app_object.attr1; - /// let result = await app_object.method1(parameters); - /// ``` - /// - /// Note that while simple types, IDispatch and array are supported, generic - /// IUnknown, VT_DECIMAL, or VT_RECORD variant is not supported. - /// Remote JavaScript objects like callback functions are represented as - /// an VT_DISPATCH VARIANT with the object implementing IDispatch. The - /// JavaScript callback method may be invoked using DISPID_VALUE for the - /// DISPID. - /// Nested arrays are supported up to a depth of 3. - /// Arrays of by reference types are not supported. - /// VT_EMPTY and VT_NULL are mapped into JavaScript as null. In JavaScript - /// null and undefined are mapped to VT_EMPTY. + /// \> [!NOTE]\n\> While simple types, `IDispatch` and array are supported, and + /// `IUnknown` objects that also implement `IDispatch` are treated as `IDispatch`, + /// generic `IUnknown`, `VT_DECIMAL`, or `VT_RECORD` variant is not supported. + /// Remote JavaScript objects like callback functions are represented as an + /// `VT_DISPATCH` `VARIANT` with the object implementing `IDispatch`. The + /// JavaScript callback method may be invoked using `DISPID_VALUE` for the + /// `DISPID`. Such callback method invocations will return immediately and will + /// not wait for the JavaScript function to run and so will not provide the return + /// value of the JavaScript function. + /// Nested arrays are supported up to a depth of 3. Arrays of by + /// reference types are not supported. `VT_EMPTY` and `VT_NULL` are mapped + /// into JavaScript as `null`. In JavaScript, `null` and undefined are + /// mapped to `VT_EMPTY`. /// /// Additionally, all host objects are exposed as - /// `window.chrome.webview.hostObjects.sync.`. Here the host - /// objects are exposed as synchronous host object proxies. These are not - /// promises and calls to functions or property access synchronously block - /// running script waiting to communicate cross process for the host code to - /// run. Accordingly this can result in reliability issues and it is - /// recommended that you use the promise based asynchronous - /// `window.chrome.webview.hostObjects.` API described above. + /// `window.chrome.webview.hostObjects.sync.{name}`. Here the host objects + /// are exposed as synchronous host object proxies. These are not promises + /// and function runtimes or property access synchronously block running + /// script waiting to communicate cross process for the host code to run. + /// Accordingly the result may have reliability issues and it is recommended + /// that you use the promise-based asynchronous + /// `window.chrome.webview.hostObjects.{name}` API. /// - /// Synchronous host object proxies and asynchronous host object proxies - /// can both proxy the same host object. Remote changes made by one proxy - /// will be reflected in any other proxy of that same host object whether + /// Synchronous host object proxies and asynchronous host object proxies may + /// both use a proxy to the same host object. Remote changes made by one + /// proxy propagates to any other proxy of that same host object whether /// the other proxies and synchronous or asynchronous. /// - /// While JavaScript is blocked on a synchronous call to native code, that - /// native code is unable to call back to JavaScript. Attempts to do so will - /// fail with HRESULT_FROM_WIN32(ERROR_POSSIBLE_DEADLOCK). + /// While JavaScript is blocked on a synchronous run to native code, that + /// native code is unable to run back to JavaScript. Attempts to do so fail + /// with `HRESULT_FROM_WIN32(ERROR_POSSIBLE_DEADLOCK)`. /// /// Host object proxies are JavaScript Proxy objects that intercept all /// property get, property set, and method invocations. Properties or methods - /// that are a part of the Function or Object prototype are run locally. - /// Additionally any property or method in the array - /// `chrome.webview.hostObjects.options.forceLocalProperties` will also be - /// run locally. This defaults to including optional methods that have - /// meaning in JavaScript like `toJSON` and `Symbol.toPrimitive`. You can add - /// more to this array as required. + /// that are a part of the Function or Object prototype are run locally. + /// Additionally any property or method in the + /// `chrome.webview.hostObjects.options.forceLocalProperties` + /// array are also run locally. This defaults to including optional methods + /// that have meaning in JavaScript like `toJSON` and `Symbol.toPrimitive`. + /// Add more to the array as required. /// - /// There's a method `chrome.webview.hostObjects.cleanupSome` that will best - /// effort garbage collect host object proxies. + /// The `chrome.webview.hostObjects.cleanupSome` method performs a best + /// effort garbage collection on host object proxies. + /// + /// The `chrome.webview.hostObjects.options` object provides the ability to + /// change some functionality of host objects. + /// + /// Options property | Details + /// ---|--- + /// `forceLocalProperties` | This is an array of host object property names that will be run locally, instead of being called on the native host object. This defaults to `then`, `toJSON`, `Symbol.toString`, and `Symbol.toPrimitive`. You can add other properties to specify that they should be run locally on the javascript host object proxy. + /// `log` | This is a callback that will be called with debug information. For example, you can set this to `console.log.bind(console)` to have it print debug information to the console to help when troubleshooting host object usage. By default this is null. + /// `shouldSerializeDates` | By default this is false, and javascript Date objects will be sent to host objects as a string using `JSON.stringify`. You can set this property to true to have Date objects properly serialize as a `VT_DATE` when sending to the native host object, and have `VT_DATE` properties and return values create a javascript Date object. + /// `defaultSyncProxy` | When calling a method on a synchronous proxy, the result should also be a synchronous proxy. But in some cases, the sync/async context is lost (for example, when providing to native code a reference to a function, and then calling that function in native code). In these cases, the proxy will be asynchronous, unless this property is set. + /// `forceAsyncMethodMatches ` | This is an array of regular expressions. When calling a method on a synchronous proxy, the method call will be performed asynchronously if the method name matches a string or regular expression in this array. Setting this value to `Async` will make any method that ends with Async be an asynchronous method call. If an async method doesn't match here and isn't forced to be asynchronous, the method will be invoked synchronously, blocking execution of the calling JavaScript and then returning the resolution of the promise, rather than returning a promise. + /// `ignoreMemberNotFoundError` | By default, an exception is thrown when attempting to get the value of a proxy property that doesn't exist on the corresponding native class. Setting this property to `true` switches the behavior to match Chakra WinRT projection (and general JavaScript) behavior of returning `undefined` with no error. /// /// Host object proxies additionally have the following methods which run - /// locally: - /// * applyHostFunction, getHostProperty, setHostProperty: Perform a - /// method invocation, property get, or property set on the host object. - /// You can use these to explicitly force a method or property to run - /// remotely if there is a conflicting local method or property. For - /// instance, `proxy.toString()` will run the local toString method on the - /// proxy object. But ``proxy.applyHostFunction('toString')`` runs - /// `toString` on the host proxied object instead. - /// * getLocalProperty, setLocalProperty: Perform property get, or property - /// set locally. You can use these methods to force getting or setting a - /// property on the host object proxy itself rather than on the host - /// object it represents. For instance, `proxy.unknownProperty` will get the - /// property named `unknownProperty` from the host proxied object. But - /// ``proxy.getLocalProperty('unknownProperty')`` will get the value of the property - /// `unknownProperty` on the proxy object itself. - /// * sync: Asynchronous host object proxies expose a sync method which - /// returns a promise for a synchronous host object proxy for the same - /// host object. For example, - /// `chrome.webview.hostObjects.sample.methodCall()` returns an - /// asynchronous host object proxy. You can use the `sync` method to - /// obtain a synchronous host object proxy instead: - /// `const syncProxy = await chrome.webview.hostObjects.sample.methodCall().sync()` - /// * async: Synchronous host object proxies expose an async method which - /// blocks and returns an asynchronous host object proxy for the same - /// host object. For example, `chrome.webview.hostObjects.sync.sample.methodCall()` returns a - /// synchronous host object proxy. Calling the `async` method on this blocks - /// and then returns an asynchronous host object proxy for the same host object: - /// `const asyncProxy = chrome.webview.hostObjects.sync.sample.methodCall().async()` - /// * then: Asynchronous host object proxies have a then method. This - /// allows them to be awaitable. `then` will return a promise that resolves - /// with a representation of the host object. If the proxy represents a - /// JavaScript literal then a copy of that is returned locally. If - /// the proxy represents a function then a non-awaitable proxy is returned. - /// If the proxy represents a JavaScript object with a mix of literal - /// properties and function properties, then the a copy of the object is - /// returned with some properties as host object proxies. + /// locally. + /// + /// Method name | Details + /// ---|--- + ///`applyHostFunction`, `getHostProperty`, `setHostProperty` | Perform a method invocation, property get, or property set on the host object. Use the methods to explicitly force a method or property to run remotely if a conflicting local method or property exists. For instance, `proxy.toString()` runs the local `toString` method on the proxy object. But proxy.applyHostFunction('toString') runs `toString` on the host proxied object instead. + ///`getLocalProperty`, `setLocalProperty` | Perform property get, or property set locally. Use the methods to force getting or setting a property on the host object proxy rather than on the host object it represents. For instance, `proxy.unknownProperty` gets the property named `unknownProperty` from the host proxied object. But proxy.getLocalProperty('unknownProperty') gets the value of the property `unknownProperty` on the proxy object. + ///`sync` | Asynchronous host object proxies expose a sync method which returns a promise for a synchronous host object proxy for the same host object. For example, `chrome.webview.hostObjects.sample.methodCall()` returns an asynchronous host object proxy. Use the `sync` method to obtain a synchronous host object proxy instead: `const syncProxy = await chrome.webview.hostObjects.sample.methodCall().sync()`. + ///`async` | Synchronous host object proxies expose an async method which blocks and returns an asynchronous host object proxy for the same host object. For example, `chrome.webview.hostObjects.sync.sample.methodCall()` returns a synchronous host object proxy. Running the `async` method on this blocks and then returns an asynchronous host object proxy for the same host object: `const asyncProxy = chrome.webview.hostObjects.sync.sample.methodCall().async()`. + ///`then` | Asynchronous host object proxies have a `then` method. Allows proxies to be awaitable. `then` returns a promise that resolves with a representation of the host object. If the proxy represents a JavaScript literal, a copy of that is returned locally. If the proxy represents a function, a non-awaitable proxy is returned. If the proxy represents a JavaScript object with a mix of literal properties and function properties, the a copy of the object is returned with some properties as host object proxies. /// /// All other property and method invocations (other than the above Remote - /// object proxy methods, forceLocalProperties list, and properties on - /// Function and Object prototypes) are run remotely. Asynchronous host + /// object proxy methods, `forceLocalProperties` list, and properties on + /// Function and Object prototypes) are run remotely. Asynchronous host /// object proxies return a promise representing asynchronous completion of - /// remotely invoking the method, or getting the property. - /// The promise resolves after the remote operations complete and - /// the promises resolve to the resulting value of the operation. - /// Synchronous host object proxies work similarly but block JavaScript - /// execution and wait for the remote operation to complete. + /// remotely invoking the method, or getting the property. The promise + /// resolves after the remote operations complete and the promises resolve to + /// the resulting value of the operation. Synchronous host object proxies + /// work similarly, but block running JavaScript and wait for the remote + /// operation to complete. /// /// Setting a property on an asynchronous host object proxy works slightly - /// differently. The set returns immediately and the return value is the value - /// that will be set. This is a requirement of the JavaScript Proxy object. + /// differently. The set returns immediately and the return value is the + /// value that is set. This is a requirement of the JavaScript Proxy object. /// If you need to asynchronously wait for the property set to complete, use - /// the setHostProperty method which returns a promise as described above. + /// the `setHostProperty` method which returns a promise as described above. /// Synchronous object property set property synchronously blocks until the /// property is set. /// - /// For example, suppose you have a COM object with the following interface + /// For example, suppose you have a COM object with the following interface. /// /// \snippet HostObjectSample.idl AddHostObjectInterface /// - /// We can add an instance of this interface into our JavaScript with - /// `AddHostObjectToScript`. In this case we name it `sample`: + /// Add an instance of this interface into your JavaScript with + /// `AddHostObjectToScript`. In this case, name it `sample`. /// /// \snippet ScenarioAddHostObject.cpp AddHostObjectToScript /// - /// Then in the HTML document we can use this COM object via `chrome.webview.hostObjects.sample`: + /// In the HTML document, use the COM object using + /// `chrome.webview.hostObjects.sample`. + /// Note that `CoreWebView2.AddHostObjectToScript` only applies to the + /// top-level document and not to frames. To add host objects to frames use + /// `CoreWebView2Frame.AddHostObjectToScript`. /// - /// \snippet ScenarioAddHostObject.html HostObjectUsage - /// Exposing host objects to script has security risk. Please follow - /// [best practices](https://docs.microsoft.com/microsoft-edge/webview2/concepts/security). + /// \snippet assets\ScenarioAddHostObject.html HostObjectUsage + /// + /// Exposing host objects to script has security risk. For more information + /// about best practices, navigate to + /// [Best practices for developing secure WebView2 applications](/microsoft-edge/webview2/concepts/security). HRESULT AddHostObjectToScript(in LPCWSTR name, in VARIANT* object); /// Remove the host object specified by the name so that it is no longer - /// accessible from JavaScript code in the WebView. - /// While new access attempts will be denied, if the object is already - /// obtained by JavaScript code in the WebView, the JavaScript code will - /// continue to have access to that object. - /// Calling this method for a name that is already removed or never added will - /// fail. + /// accessible from JavaScript code in the WebView. While new access + /// attempts are denied, if the object is already obtained by JavaScript code + /// in the WebView, the JavaScript code continues to have access to that + /// object. Run this method for a name that is already removed or never + /// added fails. HRESULT RemoveHostObjectFromScript(in LPCWSTR name); - /// Opens the DevTools window for the current document in the WebView. - /// Does nothing if called when the DevTools window is already open. + /// Opens the DevTools window for the current document in the WebView. Does + /// nothing if run when the DevTools window is already open. HRESULT OpenDevToolsWindow(); - /// Add an event handler for the ContainsFullScreenElementChanged event. - /// ContainsFullScreenElementChanged fires when the ContainsFullScreenElement - /// property changes. This means that an HTML element inside the WebView is - /// entering fullscreen to the size of the WebView or leaving fullscreen. This - /// event is useful when, for example, a video element requests to go - /// fullscreen. The listener of ContainsFullScreenElementChanged can then - /// resize the WebView in response. + /// Add an event handler for the `ContainsFullScreenElementChanged` event. + /// `ContainsFullScreenElementChanged` triggers when the + /// `ContainsFullScreenElement` property changes. An HTML element inside the + /// WebView may enter fullscreen to the size of the WebView or leave + /// fullscreen. This event is useful when, for example, a video element + /// requests to go fullscreen. The listener of + /// `ContainsFullScreenElementChanged` may resize the WebView in response. /// /// \snippet AppWindow.cpp ContainsFullScreenElementChanged HRESULT add_ContainsFullScreenElementChanged( /+[in]+/ ICoreWebView2ContainsFullScreenElementChangedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); + @("out") EventRegistrationToken* token); + /// Remove an event handler previously added with - /// add_ContainsFullScreenElementChanged. + /// `add_ContainsFullScreenElementChanged`. HRESULT remove_ContainsFullScreenElementChanged( in EventRegistrationToken token); /// Indicates if the WebView contains a fullscreen HTML element. - /+[ propget]+/ + @(" propget") HRESULT get_ContainsFullScreenElement( - /+[out, retval]+/ BOOL* containsFullScreenElement); + @("out, retval") BOOL* containsFullScreenElement); - /// Add an event handler for the WebResourceRequested event. - /// WebResourceRequested fires when the WebView is performing a URL request to - /// a matching URL and resource context filter that was added with - /// AddWebResourceRequestedFilter. At least one filter must be added for the - /// event to fire. + /// Add an event handler for the `WebResourceRequested` event. + /// `WebResourceRequested` runs when the WebView is performing a URL request + /// to a matching URL and resource context filter that was added with + /// `AddWebResourceRequestedFilter`. At least one filter must be added for + /// the event to run. /// - /// The web resource requested can be blocked until the event handler returns - /// if a deferral is not taken on the event args. If a deferral is taken, then - /// the web resource requested is blocked until the deferral is completed. + /// The web resource requested may be blocked until the event handler returns + /// if a deferral is not taken on the event args. If a deferral is taken, + /// then the web resource requested is blocked until the deferral is + /// completed. /// - /// \snippet SettingsComponent.cpp WebResourceRequested + /// If this event is subscribed in the add_NewWindowRequested handler it should be called + /// after the new window is set. For more details see `ICoreWebView2NewWindowRequestedEventArgs::put_NewWindow`. + /// + /// This event is by default raised for file, http, and https URI schemes. + /// This is also raised for registered custom URI schemes. For more details + /// see `ICoreWebView2CustomSchemeRegistration`. + /// + /// \snippet SettingsComponent.cpp WebResourceRequested0 + /// \snippet SettingsComponent.cpp WebResourceRequested1 HRESULT add_WebResourceRequested( /+[in]+/ ICoreWebView2WebResourceRequestedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_WebResourceRequested. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_WebResourceRequested`. HRESULT remove_WebResourceRequested( in EventRegistrationToken token); - /// Adds a URI and resource context filter to the WebResourceRequested event. - /// The URI parameter can be a wildcard string ('*': zero or more, '?': - /// exactly one). nullptr is equivalent to L"". - /// See COREWEBVIEW2_WEB_RESOURCE_CONTEXT enum for description of resource - /// context filters. + /// Adds a URI and resource context filter for the `WebResourceRequested` + /// event. A web resource request with a resource context that matches this + /// filter's resource context and a URI that matches this filter's URI + /// wildcard string will be raised via the `WebResourceRequested` event. + /// + /// The `uri` parameter value is a wildcard string matched against the URI + /// of the web resource request. This is a glob style + /// wildcard string in which a `*` matches zero or more characters and a `?` + /// matches exactly one character. + /// These wildcard characters can be escaped using a backslash just before + /// the wildcard character in order to represent the literal `*` or `?`. + /// + /// The matching occurs over the URI as a whole string and not limiting + /// wildcard matches to particular parts of the URI. + /// The wildcard filter is compared to the URI after the URI has been + /// normalized, any URI fragment has been removed, and non-ASCII hostnames + /// have been converted to punycode. + /// + /// Specifying a `nullptr` for the uri is equivalent to an empty string which + /// matches no URIs. + /// + /// For more information about resource context filters, navigate to + /// [COREWEBVIEW2_WEB_RESOURCE_CONTEXT](/microsoft-edge/webview2/reference/win32/webview2-idl#corewebview2_web_resource_context). + /// + /// | URI Filter String | Request URI | Match | Notes | + /// | ---- | ---- | ---- | ---- | + /// | `*` | `https://contoso.com/a/b/c` | Yes | A single * will match all URIs | + /// | `*://contoso.com/*` | `https://contoso.com/a/b/c` | Yes | Matches everything in contoso.com across all schemes | + /// | `*://contoso.com/*` | `https://example.com/?https://contoso.com/` | Yes | But also matches a URI with just the same text anywhere in the URI | + /// | `example` | `https://contoso.com/example` | No | The filter does not perform partial matches | + /// | `*example` | `https://contoso.com/example` | Yes | The filter matches across URI parts | + /// | `*example` | `https://contoso.com/path/?example` | Yes | The filter matches across URI parts | + /// | `*example` | `https://contoso.com/path/?query#example` | No | The filter is matched against the URI with no fragment | + /// | `*example` | `https://example` | No | The URI is normalized before filter matching so the actual URI used for comparison is `https://example/` | + /// | `*example/` | `https://example` | Yes | Just like above, but this time the filter ends with a / just like the normalized URI | + /// | `https://xn--qei.example/` | `https://❤.example/` | Yes | Non-ASCII hostnames are normalized to punycode before wildcard comparison | + /// | `https://❤.example/` | `https://xn--qei.example/` | No | Non-ASCII hostnames are normalized to punycode before wildcard comparison | HRESULT AddWebResourceRequestedFilter( - in LPCWSTR uri, - in COREWEBVIEW2_WEB_RESOURCE_CONTEXT resourceContext); - /// Removes a matching WebResource filter that was previously added for the - /// WebResourceRequested event. If the same filter was added multiple times, - /// then it will need to be removed as many times as it was added for the - /// removal to be effective. Returns E_INVALIDARG for a filter that was never - /// added. - HRESULT RemoveWebResourceRequestedFilter( - in LPCWSTR uri, - in COREWEBVIEW2_WEB_RESOURCE_CONTEXT resourceContext); + in LPCWSTR /*const*/ uri, + in COREWEBVIEW2_WEB_RESOURCE_CONTEXT /*const*/ resourceContext); - /// Add an event handler for the WindowCloseRequested event. - /// WindowCloseRequested fires when content inside the WebView requested to - /// close the window, such as after window.close is called. The app should - /// close the WebView and related app window if that makes sense to the app. + /// Removes a matching WebResource filter that was previously added for the + /// `WebResourceRequested` event. If the same filter was added multiple + /// times, then it must be removed as many times as it was added for the + /// removal to be effective. Returns `E_INVALIDARG` for a filter that was + /// never added. + HRESULT RemoveWebResourceRequestedFilter( + in LPCWSTR /*const*/ uri, + in COREWEBVIEW2_WEB_RESOURCE_CONTEXT /*const*/ resourceContext); + + /// Add an event handler for the `WindowCloseRequested` event. + /// `WindowCloseRequested` triggers when content inside the WebView + /// requested to close the window, such as after `window.close` is run. The + /// app should close the WebView and related app window if that makes sense + /// to the app. /// /// \snippet AppWindow.cpp WindowCloseRequested HRESULT add_WindowCloseRequested( /+[in]+/ ICoreWebView2WindowCloseRequestedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_WindowCloseRequested. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_WindowCloseRequested`. HRESULT remove_WindowCloseRequested( in EventRegistrationToken token); } -/// This interface is the owner of the CoreWebView2 object, and provides support -/// for resizing, showing and hiding, focusing, and other functionality related -/// to windowing and composition. The CoreWebView2Controller owns the CoreWebView2, -/// and if all references to the CoreWebView2Controller go away, the WebView will -/// be closed. +/// A continuation of the ICoreWebView2 interface. +const GUID IID_ICoreWebView2_2 = ICoreWebView2_2.iid; + +interface ICoreWebView2_2 : ICoreWebView2 +{ + static const GUID iid = { 0x9E8F0CF8,0xE670,0x4B5E,[ 0xB2,0xBC,0x73,0xE0,0x61,0xE3,0x18,0x4C ] }; + /// Add an event handler for the WebResourceResponseReceived event. + /// WebResourceResponseReceived is raised when the WebView receives the + /// response for a request for a web resource (any URI resolution performed by + /// the WebView; such as HTTP/HTTPS, file and data requests from redirects, + /// navigations, declarations in HTML, implicit favicon lookups, and fetch API + /// usage in the document). The host app can use this event to view the actual + /// request and response for a web resource. There is no guarantee about the + /// order in which the WebView processes the response and the host app's + /// handler runs. The app's handler will not block the WebView from processing + /// the response. + /// \snippet ScenarioAuthentication.cpp WebResourceResponseReceived + HRESULT add_WebResourceResponseReceived( + /+[in]+/ ICoreWebView2WebResourceResponseReceivedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + /// Remove an event handler previously added with + /// add_WebResourceResponseReceived. + HRESULT remove_WebResourceResponseReceived( + in EventRegistrationToken token); + + /// Navigates using a constructed WebResourceRequest object. This lets you + /// provide post data or additional request headers during navigation. + /// The headers in the WebResourceRequest override headers + /// added by WebView2 runtime except for Cookie headers. + /// Method can only be either "GET" or "POST". Provided post data will only + /// be sent only if the method is "POST" and the uri scheme is HTTP(S). + /// \snippet ScenarioNavigateWithWebResourceRequest.cpp NavigateWithWebResourceRequest + HRESULT NavigateWithWebResourceRequest(/+[in]+/ ICoreWebView2WebResourceRequest request); + + /// Add an event handler for the DOMContentLoaded event. + /// DOMContentLoaded is raised when the initial html document has been parsed. + /// This aligns with the document's DOMContentLoaded event in html. + /// + /// \snippet ScenarioDOMContentLoaded.cpp DOMContentLoaded + HRESULT add_DOMContentLoaded( + /+[in]+/ ICoreWebView2DOMContentLoadedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with add_DOMContentLoaded. + HRESULT remove_DOMContentLoaded( + in EventRegistrationToken token); + + /// Gets the cookie manager object associated with this ICoreWebView2. + /// See ICoreWebView2CookieManager. + /// + /// \snippet ScenarioCookieManagement.cpp CookieManager + @(" propget") + HRESULT get_CookieManager(@("out, retval") ICoreWebView2CookieManager * cookieManager); + + /// Exposes the CoreWebView2Environment used to create this CoreWebView2. + @(" propget") + HRESULT get_Environment(@("out, retval") ICoreWebView2Environment * environment); +} + +/// A continuation of the ICoreWebView2_2 interface. +const GUID IID_ICoreWebView2_3 = ICoreWebView2_3.iid; + +interface ICoreWebView2_3 : ICoreWebView2_2 +{ + static const GUID iid = { 0xA0D6DF20,0x3B92,0x416D,[ 0xAA,0x0C,0x43,0x7A,0x9C,0x72,0x78,0x57 ] }; + /// An app may call the `TrySuspend` API to have the WebView2 consume less memory. + /// This is useful when a Win32 app becomes invisible, or when a Universal Windows + /// Platform app is being suspended, during the suspended event handler before completing + /// the suspended event. + /// The CoreWebView2Controller's IsVisible property must be false when the API is called. + /// Otherwise, the API fails with `HRESULT_FROM_WIN32(ERROR_INVALID_STATE)`. + /// Suspending is similar to putting a tab to sleep in the Edge browser. Suspending pauses + /// WebView script timers and animations, minimizes CPU usage for the associated + /// browser renderer process and allows the operating system to reuse the memory that was + /// used by the renderer process for other processes. + /// Note that Suspend is best effort and considered completed successfully once the request + /// is sent to browser renderer process. If there is a running script, the script will continue + /// to run and the renderer process will be suspended after that script is done. + /// See [Sleeping Tabs FAQ](https://techcommunity.microsoft.com/t5/articles/sleeping-tabs-faq/m-p/1705434) + /// for conditions that might prevent WebView from being suspended. In those situations, + /// the completed handler will be invoked with isSuccessful as false and errorCode as S_OK. + /// The WebView will be automatically resumed when it becomes visible. Therefore, the + /// app normally does not have to call `Resume` explicitly. + /// The app can call `Resume` and then `TrySuspend` periodically for an invisible WebView so that + /// the invisible WebView can sync up with latest data and the page ready to show fresh content + /// when it becomes visible. + /// All WebView APIs can still be accessed when a WebView is suspended. Some APIs like Navigate + /// will auto resume the WebView. To avoid unexpected auto resume, check `IsSuspended` property + /// before calling APIs that might change WebView state. + /// + /// \snippet ViewComponent.cpp ToggleIsVisibleOnMinimize + /// + /// \snippet ViewComponent.cpp Suspend + /// + HRESULT TrySuspend(/+[in]+/ ICoreWebView2TrySuspendCompletedHandler handler); + + /// Resumes the WebView so that it resumes activities on the web page. + /// This API can be called while the WebView2 controller is invisible. + /// The app can interact with the WebView immediately after `Resume`. + /// WebView will be automatically resumed when it becomes visible. + /// + /// \snippet ViewComponent.cpp ToggleIsVisibleOnMinimize + /// + /// \snippet ViewComponent.cpp Resume + /// + HRESULT Resume(); + + /// Whether WebView is suspended. + /// `TRUE` when WebView is suspended, from the time when TrySuspend has completed + /// successfully until WebView is resumed. + @(" propget") + HRESULT get_IsSuspended(@("out, retval") BOOL* isSuspended); + + /// Sets a mapping between a virtual host name and a folder path to make available to web sites + /// via that host name. + /// + /// After setting the mapping, documents loaded in the WebView can use HTTP or HTTPS URLs at + /// the specified host name specified by hostName to access files in the local folder specified + /// by folderPath. + /// + /// This mapping applies to both top-level document and iframe navigations as well as subresource + /// references from a document. This also applies to web workers including dedicated/shared worker + /// and service worker, for loading either worker scripts or subresources + /// (importScripts(), fetch(), XHR, etc.) issued from within a worker. + /// For virtual host mapping to work with service worker, please keep the virtual host name + /// mappings consistent among all WebViews sharing the same browser instance. As service worker + /// works independently of WebViews, we merge mappings from all WebViews when resolving virtual + /// host name, inconsistent mappings between WebViews would lead unexpected behavior. + /// + /// Due to a current implementation limitation, media files accessed using virtual host name can be + /// very slow to load. + /// As the resource loaders for the current page might have already been created and running, + /// changes to the mapping might not be applied to the current page and a reload of the page is + /// needed to apply the new mapping. + /// + /// Both absolute and relative paths are supported for folderPath. Relative paths are interpreted + /// as relative to the folder where the exe of the app is in. + /// + /// Note that the folderPath length must not exceed the Windows MAX_PATH limit. + /// + /// accessKind specifies the level of access to resources under the virtual host from other sites. + /// + /// For example, after calling + /// ```cpp + /// SetVirtualHostNameToFolderMapping( + /// L"appassets.example", L"assets", + /// COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND_DENY); + /// ``` + /// navigating to `https://appassets.example/my-local-file.html` will + /// show the content from my-local-file.html in the assets subfolder located on disk under + /// the same path as the app's executable file. + /// + /// DOM elements that want to reference local files will have their host reference virtual host in the source. + /// If there are multiple folders being used, define one unique virtual host per folder. + /// For example, you can embed a local image like this + /// ```cpp + /// WCHAR c_navString[] = L""; + /// m_webView->NavigateToString(c_navString); + /// ``` + /// The example above shows the image wv2.png by resolving the folder mapping above. + /// + /// You should typically choose virtual host names that are never used by real sites. + /// If you own a domain such as example.com, another option is to use a subdomain reserved for + /// the app (like my-app.example.com). + /// + /// [RFC 6761](https://tools.ietf.org/html/rfc6761) has reserved several special-use domain + /// names that are guaranteed to not be used by real sites (for example, .example, .test, and + /// .invalid.) + /// + /// Note that using `.local` as the top-level domain name will work but can cause a delay + /// during navigations. You should avoid using `.local` if you can. + /// + /// Apps should use distinct domain names when mapping folder from different sources that + /// should be isolated from each other. For instance, the app might use app-file.example for + /// files that ship as part of the app, and book1.example might be used for files containing + /// books from a less trusted source that were previously downloaded and saved to the disk by + /// the app. + /// + /// The host name used in the APIs is canonicalized using Chromium's host name parsing logic + /// before being used internally. For more information see [HTML5 2.6 URLs](https://dev.w3.org/html5/spec-LC/urls.html). + /// + /// All host names that are canonicalized to the same string are considered identical. + /// For example, `EXAMPLE.COM` and `example.com` are treated as the same host name. + /// An international host name and its Punycode-encoded host name are considered the same host + /// name. There is no DNS resolution for host name and the trailing '.' is not normalized as + /// part of canonicalization. + /// + /// Therefore `example.com` and `example.com.` are treated as different host names. Similarly, + /// `virtual-host-name` and `virtual-host-name.example.com` are treated as different host names + /// even if the machine has a DNS suffix of `example.com`. + /// + /// Specify the minimal cross-origin access necessary to run the app. If there is not a need to + /// access local resources from other origins, use COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND_DENY. + /// + /// \snippet AppWindow.cpp AddVirtualHostNameToFolderMapping + /// + /// \snippet AppWindow.cpp LocalUrlUsage + HRESULT SetVirtualHostNameToFolderMapping( + in LPCWSTR hostName, + in LPCWSTR folderPath, + in COREWEBVIEW2_HOST_RESOURCE_ACCESS_KIND accessKind); + + /// Clears a host name mapping for local folder that was added by `SetVirtualHostNameToFolderMapping`. + HRESULT ClearVirtualHostNameToFolderMapping( + in LPCWSTR hostName); +} + +/// A continuation of the ICoreWebView2_3 interface to support FrameCreated and +/// DownloadStarting events. +const GUID IID_ICoreWebView2_4 = ICoreWebView2_4.iid; + +interface ICoreWebView2_4 : ICoreWebView2_3 +{ + static const GUID iid = { 0x20d02d59,0x6df2,0x42dc,[ 0xbd,0x06,0xf9,0x8a,0x69,0x4b,0x13,0x02 ] }; + /// Raised when a new iframe is created. + /// Handle this event to get access to ICoreWebView2Frame objects. + /// Use ICoreWebView2Frame.add_Destroyed to listen for when this iframe goes + /// away. + HRESULT add_FrameCreated( + /+[in]+/ ICoreWebView2FrameCreatedEventHandler eventHandler, + @("out") EventRegistrationToken * token); + + /// Remove an event handler previously added with add_FrameCreated. + HRESULT remove_FrameCreated(in EventRegistrationToken token); + + /// Add an event handler for the `DownloadStarting` event. This event is + /// raised when a download has begun, blocking the default download dialog, + /// but not blocking the progress of the download. + /// + /// The host can choose to cancel a download, change the result file path, + /// and hide the default download dialog. + /// If the host chooses to cancel the download, the download is not saved, no + /// dialog is shown, and the state is changed to + /// COREWEBVIEW2_DOWNLOAD_STATE_INTERRUPTED with interrupt reason + /// COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_USER_CANCELED. Otherwise, the + /// download is saved to the default path after the event completes, + /// and default download dialog is shown if the host did not choose to hide it. + /// The host can change the visibility of the download dialog using the + /// `Handled` property. If the event is not handled, downloads complete + /// normally with the default dialog shown. + /// + /// \snippet ScenarioCustomDownloadExperience.cpp DownloadStarting + HRESULT add_DownloadStarting( + /+[in]+/ ICoreWebView2DownloadStartingEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_DownloadStarting`. + HRESULT remove_DownloadStarting( + in EventRegistrationToken token); +} + +/// A continuation of the ICoreWebView2_4 interface to support ClientCertificateRequested +/// event. +const GUID IID_ICoreWebView2_5 = ICoreWebView2_5.iid; + +interface ICoreWebView2_5 : ICoreWebView2_4 +{ + static const GUID iid = { 0xbedb11b8,0xd63c,0x11eb,[ 0xb8,0xbc,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// Add an event handler for the ClientCertificateRequested event. + /// The ClientCertificateRequested event is raised when the WebView2 + /// is making a request to an HTTP server that needs a client certificate + /// for HTTP authentication. + /// Read more about HTTP client certificates at + /// [RFC 8446 The Transport Layer Security (TLS) Protocol Version 1.3](https://tools.ietf.org/html/rfc8446). + /// + /// With this event you have several options for responding to client certificate requests: + /// + /// Scenario | Handled | Cancel | SelectedCertificate + /// ---------------------------------------------------------- | ------- | ------ | ------------------- + /// Respond to server with a certificate | True | False | MutuallyTrustedCertificate value + /// Respond to server without certificate | True | False | null + /// Display default client certificate selection dialog prompt | False | False | n/a + /// Cancel the request | n/a | True | n/a + /// + /// If you don't handle the event, WebView2 will + /// show the default client certificate selection dialog prompt to user. + /// + /// \snippet SettingsComponent.cpp ClientCertificateRequested1 + /// \snippet ScenarioClientCertificateRequested.cpp ClientCertificateRequested2 + HRESULT add_ClientCertificateRequested( + /+[in]+/ ICoreWebView2ClientCertificateRequestedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with add_ClientCertificateRequested. + HRESULT remove_ClientCertificateRequested(in EventRegistrationToken token); +} + +/// This interface is an extension of `ICoreWebView2_5` that manages opening +/// the browser task manager window. +const GUID IID_ICoreWebView2_6 = ICoreWebView2_6.iid; + +interface ICoreWebView2_6 : ICoreWebView2_5 +{ + static const GUID iid = { 0x499aadac,0xd92c,0x4589,[ 0x8a,0x75,0x11,0x1b,0xfc,0x16,0x77,0x95 ] }; + /// Opens the Browser Task Manager view as a new window in the foreground. + /// If the Browser Task Manager is already open, this will bring it into + /// the foreground. WebView2 currently blocks the Shift+Esc shortcut for + /// opening the task manager. An end user can open the browser task manager + /// manually via the `Browser task manager` entry of the DevTools window's + /// title bar's context menu. + HRESULT OpenTaskManagerWindow(); +} + +/// This interface is an extension of `ICoreWebView2_6` that supports printing +/// to PDF. +const GUID IID_ICoreWebView2_7 = ICoreWebView2_7.iid; + +interface ICoreWebView2_7 : ICoreWebView2_6 +{ + static const GUID iid = { 0x79c24d83,0x09a3,0x45ae,[ 0x94,0x18,0x48,0x7f,0x32,0xa5,0x87,0x40 ] }; + /// Print the current page to PDF asynchronously with the provided settings. + /// See `ICoreWebView2PrintSettings` for description of settings. Passing + /// nullptr for `printSettings` results in default print settings used. + /// + /// Use `resultFilePath` to specify the path to the PDF file. The host should + /// provide an absolute path, including file name. If the path + /// points to an existing file, the file will be overwritten. If the path is + /// not valid, the method fails with `E_INVALIDARG`. + /// + /// The async `PrintToPdf` operation completes when the data has been written + /// to the PDF file. At this time the + /// `ICoreWebView2PrintToPdfCompletedHandler` is invoked. If the + /// application exits before printing is complete, the file is not saved. + /// Only one `Printing` operation can be in progress at a time. If + /// `PrintToPdf` is called while a `PrintToPdf` or `PrintToPdfStream` or `Print` or + /// `ShowPrintUI` job is in progress, the completed handler is immediately invoked + /// with `isSuccessful` set to FALSE. + /// + /// \snippet FileComponent.cpp PrintToPdf + HRESULT PrintToPdf( + in LPCWSTR resultFilePath, + /+[in]+/ ICoreWebView2PrintSettings printSettings, + /+[in]+/ ICoreWebView2PrintToPdfCompletedHandler handler); +} + +/// This interface is an extension of `ICoreWebView2_7` that supports media features. +const GUID IID_ICoreWebView2_8 = ICoreWebView2_8.iid; + +interface ICoreWebView2_8 : ICoreWebView2_7 +{ + static const GUID iid = { 0xE9632730,0x6E1E,0x43AB,[ 0xB7,0xB8,0x7B,0x2C,0x9E,0x62,0xE0,0x94 ] }; + /// Adds an event handler for the `IsMutedChanged` event. + /// `IsMutedChanged` is raised when the IsMuted property changes value. + /// + /// \snippet AudioComponent.cpp IsMutedChanged + HRESULT add_IsMutedChanged( + /+[in]+/ ICoreWebView2IsMutedChangedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_IsMutedChanged`. + HRESULT remove_IsMutedChanged( + in EventRegistrationToken token); + + /// Indicates whether all audio output from this CoreWebView2 is muted or not. + /// + /// \snippet AudioComponent.cpp ToggleIsMuted + @(" propget") + HRESULT get_IsMuted(@("out, retval") BOOL* value); + + /// Sets the `IsMuted` property. + /// + /// \snippet AudioComponent.cpp ToggleIsMuted + @(" propput") + HRESULT put_IsMuted(in BOOL value); + + /// Adds an event handler for the `IsDocumentPlayingAudioChanged` event. + /// `IsDocumentPlayingAudioChanged` is raised when the IsDocumentPlayingAudio property changes value. + /// + /// \snippet AudioComponent.cpp IsDocumentPlayingAudioChanged + HRESULT add_IsDocumentPlayingAudioChanged( + /+[in]+/ ICoreWebView2IsDocumentPlayingAudioChangedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_IsDocumentPlayingAudioChanged`. + HRESULT remove_IsDocumentPlayingAudioChanged( + in EventRegistrationToken token); + + /// Indicates whether any audio output from this CoreWebView2 is playing. + /// This property will be true if audio is playing even if IsMuted is true. + /// + /// \snippet AudioComponent.cpp IsDocumentPlayingAudio + @(" propget") + HRESULT get_IsDocumentPlayingAudio(@("out, retval") BOOL* value); +} + +/// This interface is an extension of `ICoreWebView2_8` that default download +/// dialog positioning and anchoring. +const GUID IID_ICoreWebView2_9 = ICoreWebView2_9.iid; + +interface ICoreWebView2_9 : ICoreWebView2_8 +{ + static const GUID iid = { 0x4d7b2eab,0x9fdc,0x468d,[ 0xb9,0x98,0xa9,0x26,0x0b,0x5e,0xd6,0x51 ] }; + /// Raised when the `IsDefaultDownloadDialogOpen` property changes. This event + /// comes after the `DownloadStarting` event. Setting the `Handled` property + /// on the `DownloadStartingEventArgs` disables the default download dialog + /// and ensures that this event is never raised. + HRESULT add_IsDefaultDownloadDialogOpenChanged( + /+[in]+/ ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler handler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with + /// `add_IsDefaultDownloadDialogOpenChanged`. + HRESULT remove_IsDefaultDownloadDialogOpenChanged( + in EventRegistrationToken token); + + /// `TRUE` if the default download dialog is currently open. The value of this + /// property changes only when the default download dialog is explicitly + /// opened or closed. Hiding the WebView implicitly hides the dialog, but does + /// not change the value of this property. + @(" propget") + HRESULT get_IsDefaultDownloadDialogOpen(@("out, retval") BOOL* value); + + /// Open the default download dialog. If the dialog is opened before there + /// are recent downloads, the dialog shows all past downloads for the + /// current profile. Otherwise, the dialog shows only the recent downloads + /// with a "See more" button for past downloads. Calling this method raises + /// the `IsDefaultDownloadDialogOpenChanged` event if the dialog was closed. + /// No effect if the dialog is already open. + /// + /// \snippet ViewComponent.cpp ToggleDefaultDownloadDialog + HRESULT OpenDefaultDownloadDialog(); + + /// Close the default download dialog. Calling this method raises the + /// `IsDefaultDownloadDialogOpenChanged` event if the dialog was open. No + /// effect if the dialog is already closed. + HRESULT CloseDefaultDownloadDialog(); + + /// Get the default download dialog corner alignment. + @(" propget") + HRESULT get_DefaultDownloadDialogCornerAlignment( + @("out, retval") COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT* value); + + /// Set the default download dialog corner alignment. The dialog can be + /// aligned to any of the WebView corners (see + /// COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT). When the WebView + /// or dialog changes size, the dialog keeps its position relative to the + /// corner. The dialog may become partially or completely outside of the + /// WebView bounds if the WebView is small enough. Set the margin relative to + /// the corner with the `DefaultDownloadDialogMargin` property. The corner + /// alignment and margin should be set during initialization to ensure that + /// they are correctly applied when the layout is first computed, otherwise + /// they will not take effect until the next time the WebView position or size + /// is updated. + /// + /// \snippet ViewComponent.cpp SetDefaultDownloadDialogPosition + @(" propput") + HRESULT put_DefaultDownloadDialogCornerAlignment( + in COREWEBVIEW2_DEFAULT_DOWNLOAD_DIALOG_CORNER_ALIGNMENT value); + + /// Get the default download dialog margin. + @(" propget") + HRESULT get_DefaultDownloadDialogMargin(@("out, retval") POINT* value); + + /// Set the default download dialog margin relative to the WebView corner + /// specified by `DefaultDownloadDialogCornerAlignment`. The margin is a + /// point that describes the vertical and horizontal distances between the + /// chosen WebView corner and the default download dialog corner nearest to + /// it. Positive values move the dialog towards the center of the WebView from + /// the chosen WebView corner, and negative values move the dialog away from + /// it. Use (0, 0) to align the dialog to the WebView corner with no margin. + /// The corner alignment and margin should be set during initialization to + /// ensure that they are correctly applied when the layout is first computed, + /// otherwise they will not take effect until the next time the WebView + /// position or size is updated. + @(" propput") + HRESULT put_DefaultDownloadDialogMargin(in POINT value); +} + +/// This interface is an extension of `ICoreWebView2_9` that supports +/// BasicAuthenticationRequested event. +const GUID IID_ICoreWebView2_10 = ICoreWebView2_10.iid; + +interface ICoreWebView2_10 : ICoreWebView2_9 +{ + static const GUID iid = { 0xb1690564,0x6f5a,0x4983,[ 0x8e,0x48,0x31,0xd1,0x14,0x3f,0xec,0xdb ] }; + /// Add an event handler for the BasicAuthenticationRequested event. + /// BasicAuthenticationRequested event is raised when WebView encounters a + /// Basic HTTP Authentication request as described in + /// https://developer.mozilla.org/docs/Web/HTTP/Authentication, a Digest + /// HTTP Authentication request as described in + /// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Authorization#digest, + /// an NTLM authentication or a Proxy Authentication request. + /// + /// The host can provide a response with credentials for the authentication or + /// cancel the request. If the host sets the Cancel property to false but does not + /// provide either UserName or Password properties on the Response property, then + /// WebView2 will show the default authentication challenge dialog prompt to + /// the user. + /// + /// \snippet ScenarioAuthentication.cpp BasicAuthenticationRequested + HRESULT add_BasicAuthenticationRequested( + /+[in]+/ ICoreWebView2BasicAuthenticationRequestedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with add_BasicAuthenticationRequested. + HRESULT remove_BasicAuthenticationRequested( + in EventRegistrationToken token); +} + +/// This interface is an extension of `ICoreWebView2_10` that supports sessionId +/// for CDP method calls and ContextMenuRequested event. +const GUID IID_ICoreWebView2_11 = ICoreWebView2_11.iid; + +interface ICoreWebView2_11 : ICoreWebView2_10 +{ + static const GUID iid = { 0x0be78e56,0xc193,0x4051,[ 0xb9,0x43,0x23,0xb4,0x60,0xc0,0x8b,0xdb ] }; + /// Runs an asynchronous `DevToolsProtocol` method for a specific session of + /// an attached target. + /// There could be multiple `DevToolsProtocol` targets in a WebView. + /// Besides the top level page, iframes from different origin and web workers + /// are also separate targets. Attaching to these targets allows interaction with them. + /// When the DevToolsProtocol is attached to a target, the connection is identified + /// by a sessionId. + /// To use this API, you must set the `flatten` parameter to true when calling + /// `Target.attachToTarget` or `Target.setAutoAttach` `DevToolsProtocol` method. + /// Using `Target.setAutoAttach` is recommended as that would allow you to attach + /// to dedicated worker targets, which are not discoverable via other APIs like + /// `Target.getTargets`. + /// For more information about targets and sessions, navigate to + /// [DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/tot/Target). + /// For more information about available methods, navigate to + /// [DevTools Protocol Viewer](https://chromedevtools.github.io/devtools-protocol/tot) + /// The `sessionId` parameter is the sessionId for an attached target. + /// nullptr or empty string is treated as the session for the default target for the top page. + /// The `methodName` parameter is the full name of the method in the + /// `{domain}.{method}` format. The `parametersAsJson` parameter is a JSON + /// formatted string containing the parameters for the corresponding method. + /// The `Invoke` method of the `handler` is run when the method + /// asynchronously completes. `Invoke` is run with the return object of the + /// method as a JSON string. This function returns E_INVALIDARG if the `methodName` is + /// unknown or the `parametersAsJson` has an error. In the case of such an error, the + /// `returnObjectAsJson` parameter of the handler will include information + /// about the error. + /// + /// \snippet ScriptComponent.cpp DevToolsProtocolMethodMultiSession + /// + /// \snippet ScriptComponent.cpp CallDevToolsProtocolMethodForSession + HRESULT CallDevToolsProtocolMethodForSession( + in LPCWSTR sessionId, + in LPCWSTR methodName, + in LPCWSTR parametersAsJson, + /+[in]+/ ICoreWebView2CallDevToolsProtocolMethodCompletedHandler handler); + + /// Add an event handler for the `ContextMenuRequested` event. + /// `ContextMenuRequested` event is raised when a context menu is requested by the user + /// and the content inside WebView hasn't disabled context menus. + /// The host has the option to create their own context menu with the information provided in + /// the event or can add items to or remove items from WebView context menu. + /// If the host doesn't handle the event, WebView will display the default context menu. + /// + /// \snippet SettingsComponent.cpp EnableCustomMenu + HRESULT add_ContextMenuRequested( + /+[in]+/ ICoreWebView2ContextMenuRequestedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_ContextMenuRequested`. + HRESULT remove_ContextMenuRequested( + in EventRegistrationToken token); +} + +/// This interface is an extension of `ICoreWebView2_11` that supports +/// StatusBarTextChanged event. +const GUID IID_ICoreWebView2_12 = ICoreWebView2_12.iid; + +interface ICoreWebView2_12 : ICoreWebView2_11 +{ + static const GUID iid = { 0x35D69927,0xBCFA,0x4566,[ 0x93,0x49,0x6B,0x3E,0x0D,0x15,0x4C,0xAC ] }; + /// Add an event handler for the `StatusBarTextChanged` event. + /// `StatusBarTextChanged` fires when the WebView is showing a status message, + /// a URL, or an empty string (an indication to hide the status bar). + /// \snippet SettingsComponent.cpp StatusBarTextChanged + HRESULT add_StatusBarTextChanged( + /+[in]+/ ICoreWebView2StatusBarTextChangedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_StatusBarTextChanged`. + HRESULT remove_StatusBarTextChanged(in EventRegistrationToken token); + + /// The status message text. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_StatusBarText(@("out, retval") LPWSTR* value); +} + +/// This interface is an extension of `ICoreWebView2_12` that supports Profile +/// API. +const GUID IID_ICoreWebView2_13 = ICoreWebView2_13.iid; + +interface ICoreWebView2_13 : ICoreWebView2_12 +{ + static const GUID iid = { 0xF75F09A8,0x667E,0x4983,[ 0x88,0xD6,0xC8,0x77,0x3F,0x31,0x5E,0x84 ] }; + /// The associated `ICoreWebView2Profile` object. If this CoreWebView2 was created with a + /// CoreWebView2ControllerOptions, the CoreWebView2Profile will match those specified options. + /// Otherwise if this CoreWebView2 was created without a CoreWebView2ControllerOptions, then + /// this will be the default CoreWebView2Profile for the corresponding CoreWebView2Environment. + /// + /// \snippet AppWindow.cpp CoreWebView2Profile + @(" propget") + HRESULT get_Profile(@("out, retval") ICoreWebView2Profile * value); +} + +/// This interface is an extension of `ICoreWebView2_13` that adds +/// ServerCertificate support. +const GUID IID_ICoreWebView2_14 = ICoreWebView2_14.iid; + +interface ICoreWebView2_14 : ICoreWebView2_13 +{ + static const GUID iid = { 0x6DAA4F10,0x4A90,0x4753,[ 0x88,0x98,0x77,0xC5,0xDF,0x53,0x41,0x65 ] }; + /// Add an event handler for the ServerCertificateErrorDetected event. + /// The ServerCertificateErrorDetected event is raised when the WebView2 + /// cannot verify server's digital certificate while loading a web page. + /// + /// This event will raise for all web resources and follows the `WebResourceRequested` event. + /// + /// If you don't handle the event, WebView2 will show the default TLS interstitial error page to the user + /// for navigations, and for non-navigations the web request is cancelled. + /// + /// Note that WebView2 before raising `ServerCertificateErrorDetected` raises a `NavigationCompleted` event + /// with `IsSuccess` as FALSE and any of the below WebErrorStatuses that indicate a certificate failure. + /// + /// - COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_COMMON_NAME_IS_INCORRECT + /// - COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_EXPIRED + /// - COREWEBVIEW2_WEB_ERROR_STATUS_CLIENT_CERTIFICATE_CONTAINS_ERRORS + /// - COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_REVOKED + /// - COREWEBVIEW2_WEB_ERROR_STATUS_CERTIFICATE_IS_INVALID + /// + /// For more details see `ICoreWebView2NavigationCompletedEventArgs::get_IsSuccess` and handle + /// ServerCertificateErrorDetected event or show the default TLS interstitial error page to the user + /// according to the app needs. + /// + /// WebView2 caches the response when action is `COREWEBVIEW2_SERVER_CERTIFICATE_ERROR_ACTION_ALWAYS_ALLOW` + /// for the RequestUri's host and the server certificate in the session and the `ServerCertificateErrorDetected` + /// event won't be raised again. + /// + /// To raise the event again you must clear the cache using `ClearServerCertificateErrorActions`. + /// + /// \snippet SettingsComponent.cpp ServerCertificateErrorDetected1 + HRESULT add_ServerCertificateErrorDetected( + /+[in]+/ ICoreWebView2ServerCertificateErrorDetectedEventHandler + eventHandler, + @("out") EventRegistrationToken* token); + /// Remove an event handler previously added with add_ServerCertificateErrorDetected. + HRESULT remove_ServerCertificateErrorDetected(in EventRegistrationToken token); + + /// Clears all cached decisions to proceed with TLS certificate errors from the + /// ServerCertificateErrorDetected event for all WebView2's sharing the same session. + HRESULT ClearServerCertificateErrorActions( + /+[in]+/ ICoreWebView2ClearServerCertificateErrorActionsCompletedHandler + handler); +} + +/// Receives `StatusBarTextChanged` events. +const GUID IID_ICoreWebView2StatusBarTextChangedEventHandler = ICoreWebView2StatusBarTextChangedEventHandler.iid; + +interface ICoreWebView2StatusBarTextChangedEventHandler : IUnknown +{ + static const GUID iid = { 0xA5E3B0D0,0x10DF,0x4156,[ 0xBF,0xAD,0x3B,0x43,0x86,0x7A,0xCA,0xC6 ] }; + /// Called to provide the implementer with the event args for the + /// corresponding event. No event args exist and the `args` + /// parameter is set to `null`. + HRESULT Invoke( + /+[in]+/ ICoreWebView2 sender, + /+[in]+/ IUnknown args); +} + +/// This interface is an extension of `ICoreWebView2_14` that supports status Favicons. +const GUID IID_ICoreWebView2_15 = ICoreWebView2_15.iid; + +interface ICoreWebView2_15 : ICoreWebView2_14 +{ + static const GUID iid = { 0x517B2D1D,0x7DAE,0x4A66,[ 0xA4,0xF4,0x10,0x35,0x2F,0xFB,0x95,0x18 ] }; + /// Add an event handler for the `FaviconChanged` event. + /// The `FaviconChanged` event is raised when the + /// [favicon](https://developer.mozilla.org/docs/Glossary/Favicon) + /// had a different URL then the previous URL. + /// The FaviconChanged event will be raised for first navigating to a new + /// document, whether or not a document declares a Favicon in HTML if the + /// favicon is different from the previous fav icon. The event will + /// be raised again if a favicon is declared in its HTML or has script + /// to set its favicon. The favicon information can then be retrieved with + /// `GetFavicon` and `FaviconUri`. + HRESULT add_FaviconChanged( + /+[in]+/ ICoreWebView2FaviconChangedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove the event handler for `FaviconChanged` event. + HRESULT remove_FaviconChanged( + in EventRegistrationToken token); + + /// Get the current Uri of the favicon as a string. + /// If the value is null, then the return value is `E_POINTER`, otherwise it is `S_OK`. + /// If a page has no favicon then the value is an empty string. + @(" propget") + HRESULT get_FaviconUri(@("out, retval") LPWSTR* value); + + /// Async function for getting the actual image data of the favicon. + /// The image is copied to the `imageStream` object in `ICoreWebView2GetFaviconCompletedHandler`. + /// If there is no image then no data would be copied into the imageStream. + /// The `format` is the file format to return the image stream. + /// `completedHandler` is executed at the end of the operation. + /// + /// \snippet SettingsComponent.cpp FaviconChanged + HRESULT GetFavicon( + in COREWEBVIEW2_FAVICON_IMAGE_FORMAT format, + /+[in]+/ ICoreWebView2GetFaviconCompletedHandler completedHandler); +} + +/// A continuation of the `ICoreWebView2` interface to support printing. +const GUID IID_ICoreWebView2_16 = ICoreWebView2_16.iid; + +interface ICoreWebView2_16 : ICoreWebView2_15 +{ + static const GUID iid = { 0x0EB34DC9,0x9F91,0x41E1,[ 0x86,0x39,0x95,0xCD,0x59,0x43,0x90,0x6B ] }; + /// Print the current web page asynchronously to the specified printer with the provided settings. + /// See `ICoreWebView2PrintSettings` for description of settings. Passing + /// nullptr for `printSettings` results in default print settings used. + /// + /// The handler will return `errorCode` as `S_OK` and `printStatus` as COREWEBVIEW2_PRINT_STATUS_PRINTER_UNAVAILABLE + /// if `printerName` doesn't match with the name of any installed printers on the user OS. The handler + /// will return `errorCode` as `E_INVALIDARG` and `printStatus` as COREWEBVIEW2_PRINT_STATUS_OTHER_ERROR + /// if the caller provides invalid settings for a given printer. + /// + /// The async `Print` operation completes when it finishes printing to the printer. + /// At this time the `ICoreWebView2PrintCompletedHandler` is invoked. + /// Only one `Printing` operation can be in progress at a time. If `Print` is called while a `Print` or `PrintToPdf` + /// or `PrintToPdfStream` or `ShowPrintUI` job is in progress, the completed handler is immediately invoked + /// with `E_ABORT` and `printStatus` is COREWEBVIEW2_PRINT_STATUS_OTHER_ERROR. + /// This is only for printing operation on one webview. + /// + /// | errorCode | printStatus | Notes | + /// | --- | --- | --- | + /// | S_OK | COREWEBVIEW2_PRINT_STATUS_SUCCEEDED | Print operation succeeded. | + /// | S_OK | COREWEBVIEW2_PRINT_STATUS_PRINTER_UNAVAILABLE | If specified printer is not found or printer status is not available, offline or error state. | + /// | S_OK | COREWEBVIEW2_PRINT_STATUS_OTHER_ERROR | Print operation is failed. | + /// | E_INVALIDARG | COREWEBVIEW2_PRINT_STATUS_OTHER_ERROR | If the caller provides invalid settings for the specified printer. | + /// | E_ABORT | COREWEBVIEW2_PRINT_STATUS_OTHER_ERROR | Print operation is failed as printing job already in progress. | + /// + /// \snippet AppWindow.cpp PrintToPrinter + HRESULT Print( + /+[in]+/ ICoreWebView2PrintSettings printSettings, + /+[in]+/ ICoreWebView2PrintCompletedHandler handler); + + /// Opens the print dialog to print the current web page. See `COREWEBVIEW2_PRINT_DIALOG_KIND` + /// for descriptions of print dialog kinds. + /// + /// Invoking browser or system print dialog doesn't open new print dialog if + /// it is already open. + /// + /// \snippet AppWindow.cpp ShowPrintUI + HRESULT ShowPrintUI(in COREWEBVIEW2_PRINT_DIALOG_KIND printDialogKind); + + /// Provides the Pdf data of current web page asynchronously for the provided settings. + /// Stream will be rewound to the start of the pdf data. + /// + /// See `ICoreWebView2PrintSettings` for description of settings. Passing + /// nullptr for `printSettings` results in default print settings used. + /// + /// The async `PrintToPdfStream` operation completes when it finishes + /// writing to the stream. At this time the `ICoreWebView2PrintToPdfStreamCompletedHandler` + /// is invoked. Only one `Printing` operation can be in progress at a time. If + /// `PrintToPdfStream` is called while a `PrintToPdfStream` or `PrintToPdf` or `Print` + /// or `ShowPrintUI` job is in progress, the completed handler is immediately invoked with `E_ABORT`. + /// This is only for printing operation on one webview. + /// + /// \snippet AppWindow.cpp PrintToPdfStream + HRESULT PrintToPdfStream(/+[in]+/ ICoreWebView2PrintSettings printSettings, + /+[in]+/ ICoreWebView2PrintToPdfStreamCompletedHandler handler); +} + +/// Receives the result of the `Print` method. +const GUID IID_ICoreWebView2PrintCompletedHandler = ICoreWebView2PrintCompletedHandler.iid; + +interface ICoreWebView2PrintCompletedHandler : IUnknown +{ + static const GUID iid = { 0x8FD80075,0xED08,0x42DB,[ 0x85,0x70,0xF5,0xD1,0x49,0x77,0x46,0x1E ] }; + /// Provides the result of the corresponding asynchronous method. + HRESULT Invoke(in HRESULT errorCode, in COREWEBVIEW2_PRINT_STATUS printStatus); +} + +/// This interface is an extension of `ICoreWebView2_16` that supports shared buffer based on file mapping. +const GUID IID_ICoreWebView2_17 = ICoreWebView2_17.iid; + +interface ICoreWebView2_17 : ICoreWebView2_16 +{ + static const GUID iid = { 0x702E75D4,0xFD44,0x434D,[ 0x9D,0x70,0x1A,0x68,0xA6,0xB1,0x19,0x2A ] }; + /// Share a shared buffer object with script of the main frame in the WebView. + /// The script will receive a `sharedbufferreceived` event from chrome.webview. + /// The event arg for that event will have the following methods and properties: + /// `getBuffer()`: return an ArrayBuffer object with the backing content from the shared buffer. + /// `additionalData`: an object as the result of parsing `additionalDataAsJson` as JSON string. + /// This property will be `undefined` if `additionalDataAsJson` is nullptr or empty string. + /// `source`: with a value set as `chrome.webview` object. + /// If a string is provided as `additionalDataAsJson` but it is not a valid JSON string, + /// the API will fail with `E_INVALIDARG`. + /// If `access` is COREWEBVIEW2_SHARED_BUFFER_ACCESS_READ_ONLY, the script will only have read access to the buffer. + /// If the script tries to modify the content in a read only buffer, it will cause an access + /// violation in WebView renderer process and crash the renderer process. + /// If the shared buffer is already closed, the API will fail with `RO_E_CLOSED`. + /// + /// The script code should call `chrome.webview.releaseBuffer` with + /// the shared buffer as the parameter to release underlying resources as soon + /// as it does not need access to the shared buffer any more. + /// + /// The application can post the same shared buffer object to multiple web pages or iframes, or + /// post to the same web page or iframe multiple times. Each `PostSharedBufferToScript` will + /// create a separate ArrayBuffer object with its own view of the memory and is separately + /// released. The underlying shared memory will be released when all the views are released. + /// + /// For example, if we want to send data to script for one time read only consumption. + /// + /// \snippet ScenarioSharedBuffer.cpp OneTimeShareBuffer + /// + /// In the HTML document, + /// + /// \snippet assets\ScenarioSharedBuffer.html ShareBufferScriptCode_1 + /// + /// \snippet assets\ScenarioSharedBuffer.html ShareBufferScriptCode_2 + /// + /// Sharing a buffer to script has security risk. You should only share buffer with trusted site. + /// If a buffer is shared to a untrusted site, possible sensitive information could be leaked. + /// If a buffer is shared as modifiable by the script and the script modifies it in an unexpected way, + /// it could result in corrupted data that might even crash the application. + /// + HRESULT PostSharedBufferToScript( + /+[in]+/ ICoreWebView2SharedBuffer sharedBuffer, + in COREWEBVIEW2_SHARED_BUFFER_ACCESS access, + in LPCWSTR additionalDataAsJson); +} + +/// Receives the result of the `PrintToPdfStream` method. +/// `errorCode` returns S_OK if the PrintToPdfStream operation succeeded. +/// The printable pdf data is returned in the `pdfStream` object. +const GUID IID_ICoreWebView2PrintToPdfStreamCompletedHandler = ICoreWebView2PrintToPdfStreamCompletedHandler.iid; + +interface ICoreWebView2PrintToPdfStreamCompletedHandler : IUnknown +{ + static const GUID iid = { 0x4C9F8229,0x8F93,0x444F,[ 0xA7,0x11,0x2C,0x0D,0xFD,0x63,0x59,0xD5 ] }; + /// Provides the result of the corresponding asynchronous method. + HRESULT Invoke(in HRESULT errorCode, in IStream* pdfStream); +} + +/// Settings used by the `Print` method. +const GUID IID_ICoreWebView2PrintSettings2 = ICoreWebView2PrintSettings2.iid; + +interface ICoreWebView2PrintSettings2 : ICoreWebView2PrintSettings +{ + static const GUID iid = { 0xCA7F0E1F,0x3484,0x41D1,[ 0x8C,0x1A,0x65,0xCD,0x44,0xA6,0x3F,0x8D ] }; + /// Page range to print. Defaults to empty string, which means print all pages. + /// If the Page range is empty string or null, then it applies the default. + /// + /// The PageRanges property is a list of page ranges specifying one or more pages that + /// should be printed separated by commas. Any whitespace between page ranges is ignored. + /// A valid page range is either a single integer identifying the page to print, or a range + /// in the form `[start page]-[last page]` where `start page` and `last page` are integers + /// identifying the first and last inclusive pages respectively to print. + /// Every page identifier is an integer greater than 0 unless wildcards are used (see below examples). + /// The first page is 1. + /// + /// In a page range of the form `[start page]-[last page]` the start page number must be + /// larger than 0 and less than or equal to the document's total page count. + /// If the `start page` is not present, then 1 is used as the `start page`. + /// The `last page` must be larger than the `start page`. + /// If the `last page` is not present, then the document total page count is used as the `last page`. + /// + /// Repeating a page does not print it multiple times. To print multiple times, use the `Copies` property. + /// + /// The pages are always printed in ascending order, even if specified in non-ascending order. + /// + /// If page range is not valid or if a page is greater than document total page count, + /// `ICoreWebView2PrintCompletedHandler` or `ICoreWebView2PrintToPdfStreamCompletedHandler` + /// handler will return `E_INVALIDARG`. + /// + /// The following examples assume a document with 20 total pages. + /// + /// | Example | Result | Notes | + /// | --- | --- | --- | + /// | "2" | Page 2 | | + /// | "1-4, 9, 3-6, 10, 11" | Pages 1-6, 9-11 | | + /// | "1-4, -6" | Pages 1-6 | The "-6" is interpreted as "1-6". | + /// | "2-" | Pages 2-20 | The "2-" is interpreted as "pages 2 to the end of the document". | + /// | "4-2, 11, -6" | Invalid | "4-2" is an invalid range. | + /// | "-" | Pages 1-20 | The "-" is interpreted as "page 1 to the end of the document". | + /// | "1-4dsf, 11" | Invalid | | + /// | "2-2" | Page 2 | | + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings) + @(" propget") + HRESULT get_PageRanges(@("out, retval") LPWSTR* value); + + /// Set the `PageRanges` property. + @(" propput") + HRESULT put_PageRanges(in LPCWSTR value); + + /// Prints multiple pages of a document on a single piece of paper. Choose from 1, 2, 4, 6, 9 or 16. + /// The default value is 1. + @(" propget") + HRESULT get_PagesPerSide(@("out, retval") INT32* value); + + /// Set the `PagesPerSide` property. Returns `E_INVALIDARG` if an invalid value is + /// provided, and the current value is not changed. + /// + /// Below examples shows print output for PagesPerSide and Duplex. + /// + /// | PagesPerSide | Total pages | Two-sided printing | Result | + /// | --- | --- | --- | --- | + /// | 1 | 1 | - | 1 page on the front side. | + /// | 2 | 1 | Yes | 1 page on the front side. | + /// | 2 | 4 | - | 2 pages on the first paper and 2 pages on the next paper. | + /// | 2 | 4 | Yes | 2 pages on the front side and 2 pages on back side. | + /// | 4 | 4 | Yes | 4 pages on the front side. | + /// | 4 | 8 | Yes | 4 pages on the front side and 4 pages on the back side. | + @(" propput") + HRESULT put_PagesPerSide(in INT32 value); + + /// Number of copies to print. Minimum value is `1` and the maximum copies count is `999`. + /// The default value is 1. + /// + /// This value is ignored in PrintToPdfStream method. + @(" propget") + HRESULT get_Copies(@("out, retval") INT32* value); + + /// Set the `Copies` property. Returns `E_INVALIDARG` if an invalid value is provided + /// and the current value is not changed. + @(" propput") + HRESULT put_Copies(in INT32 value); + + /// Printer collation. See `COREWEBVIEW2_PRINT_COLLATION` for descriptions of + /// collation. The default value is `COREWEBVIEW2_PRINT_COLLATION_DEFAULT`. + /// + /// Printing uses default value of printer's collation if an invalid value is provided + /// for the specific printer. + /// + /// This value is ignored in PrintToPdfStream method. + @(" propget") + HRESULT get_Collation(@("out, retval") COREWEBVIEW2_PRINT_COLLATION* value); + + /// Set the `Collation` property. + @(" propput") + HRESULT put_Collation(in COREWEBVIEW2_PRINT_COLLATION value); + + /// Printer color mode. See `COREWEBVIEW2_PRINT_COLOR_MODE` for descriptions + /// of color modes. The default value is `COREWEBVIEW2_PRINT_COLOR_MODE_DEFAULT`. + /// + /// Printing uses default value of printer supported color if an invalid value is provided + /// for the specific printer. + @(" propget") + HRESULT get_ColorMode(@("out, retval") COREWEBVIEW2_PRINT_COLOR_MODE* value); + + /// Set the `ColorMode` property. + @(" propput") + HRESULT put_ColorMode(in COREWEBVIEW2_PRINT_COLOR_MODE value); + + /// Printer duplex settings. See `COREWEBVIEW2_PRINT_DUPLEX` for descriptions of duplex. + /// The default value is `COREWEBVIEW2_PRINT_DUPLEX_DEFAULT`. + /// + /// Printing uses default value of printer's duplex if an invalid value is provided + /// for the specific printer. + /// + /// This value is ignored in PrintToPdfStream method. + @(" propget") + HRESULT get_Duplex(@("out, retval") COREWEBVIEW2_PRINT_DUPLEX* value); + + /// Set the `Duplex` property. + @(" propput") + HRESULT put_Duplex(in COREWEBVIEW2_PRINT_DUPLEX value); + + /// Printer media size. See `COREWEBVIEW2_PRINT_MEDIA_SIZE` for descriptions of media size. + /// The default value is `COREWEBVIEW2_PRINT_MEDIA_SIZE_DEFAULT`. + /// + /// If media size is `COREWEBVIEW2_PRINT_MEDIA_SIZE_CUSTOM`, you should set the `PageWidth` + /// and `PageHeight`. + /// + /// Printing uses default value of printer supported media size if an invalid value is provided + /// for the specific printer. + /// + /// This value is ignored in PrintToPdfStream method. + @(" propget") + HRESULT get_MediaSize(@("out, retval") COREWEBVIEW2_PRINT_MEDIA_SIZE* value); + + /// Set the `MediaSize` property. + @(" propput") + HRESULT put_MediaSize(in COREWEBVIEW2_PRINT_MEDIA_SIZE value); + + /// The name of the printer to use. Defaults to empty string. + /// If the printer name is empty string or null, then it prints to the default + /// printer on the user OS. + /// + /// This value is ignored in PrintToPdfStream method. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings) + @(" propget") + HRESULT get_PrinterName(@("out, retval") LPWSTR* value); + + /// Set the `PrinterName` property. If provided printer name doesn't match + /// with the name of any installed printers on the user OS, + /// `ICoreWebView2PrintCompletedHandler` handler will return `errorCode` as + /// `S_OK` and `printStatus` as COREWEBVIEW2_PRINT_STATUS_PRINTER_UNAVAILABLE. + /// + /// Use [Enum Printers](/windows/win32/printdocs/enumprinters) + /// to enumerate available printers. + @(" propput") + HRESULT put_PrinterName(in LPCWSTR value); +} + +/// This interface is an extension of `ICoreWebView2_17` that manages +/// navigation requests to URI schemes registered with the OS. +const GUID IID_ICoreWebView2_18 = ICoreWebView2_18.iid; + +interface ICoreWebView2_18 : ICoreWebView2_17 +{ + static const GUID iid = { 0x7A626017,0x28BE,0x49B2,[ 0xB8,0x65,0x3B,0xA2,0xB3,0x52,0x2D,0x90 ] }; + /// Add an event handler for the `LaunchingExternalUriScheme` event. + /// The `LaunchingExternalUriScheme` event is raised when a navigation request is made to + /// a URI scheme that is registered with the OS. + /// The `LaunchingExternalUriScheme` event handler may suppress the default dialog + /// or replace the default dialog with a custom dialog. + /// + /// If a deferral is not taken on the event args, the external URI scheme launch is + /// blocked until the event handler returns. If a deferral is taken, the + /// external URI scheme launch is blocked until the deferral is completed. + /// The host also has the option to cancel the URI scheme launch. + /// + /// The `NavigationStarting` and `NavigationCompleted` events will be raised, + /// regardless of whether the `Cancel` property is set to `TRUE` or + /// `FALSE`. The `NavigationCompleted` event will be raised with the `IsSuccess` property + /// set to `FALSE` and the `WebErrorStatus` property set to `ConnectionAborted` regardless of + /// whether the host sets the `Cancel` property on the + /// `ICoreWebView2LaunchingExternalUriSchemeEventArgs`. The `SourceChanged`, `ContentLoading`, + /// and `HistoryChanged` events will not be raised for this navigation to the external URI + /// scheme regardless of the `Cancel` property. + /// The `LaunchingExternalUriScheme` event will be raised after the + /// `NavigationStarting` event and before the `NavigationCompleted` event. + /// The default `CoreWebView2Settings` will also be updated upon navigation to an external + /// URI scheme. If a setting on the `CoreWebView2Settings` interface has been changed, + /// navigating to an external URI scheme will trigger the `CoreWebView2Settings` to update. + /// + /// The WebView2 may not display the default dialog based on user settings, browser settings, + /// and whether the origin is determined as a + /// [trustworthy origin](https://w3c.github.io/webappsec-secure-contexts# + /// potentially-trustworthy-origin); however, the event will still be raised. + /// + /// If the request is initiated by a cross-origin frame without a user gesture, + /// the request will be blocked and the `LaunchingExternalUriScheme` event will not + /// be raised. + /// \snippet SettingsComponent.cpp ToggleLaunchingExternalUriScheme + HRESULT add_LaunchingExternalUriScheme( + /+[in]+/ ICoreWebView2LaunchingExternalUriSchemeEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with + /// `add_LaunchingExternalUriScheme`. + HRESULT remove_LaunchingExternalUriScheme( + in EventRegistrationToken token); +} + +/// This interface is an extension of `ICoreWebView2_18` that manages memory usage +/// target level. +const GUID IID_ICoreWebView2_19 = ICoreWebView2_19.iid; + +interface ICoreWebView2_19 : ICoreWebView2_18 +{ + static const GUID iid = { 0x6921F954,0x79B0,0x437F,[ 0xA9,0x97,0xC8,0x58,0x11,0x89,0x7C,0x68 ] }; + + /// `MemoryUsageTargetLevel` indicates desired memory consumption level of + /// WebView. + @(" propget") + HRESULT get_MemoryUsageTargetLevel( + @("out, retval") COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL* level); + + /// An app may set `MemoryUsageTargetLevel` to indicate desired memory + /// consumption level of WebView. Scripts will not be impacted and continue + /// to run. This is useful for inactive apps that still want to run scripts + /// and/or keep network connections alive and therefore could not call + /// `TrySuspend` and `Resume` to reduce memory consumption. These apps can + /// set memory usage target level to `COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL_LOW` + /// when the app becomes inactive, and set back to + /// `COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL_NORMAL` when the app becomes + /// active. It is not necessary to set CoreWebView2Controller's IsVisible + /// property to false when setting the property. + /// It is a best effort operation to change memory usage level, and the + /// API will return before the operation completes. + /// Setting the level to `COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL_LOW` + /// could potentially cause memory for some WebView browser processes to be + /// swapped out to disk in some circumstances. + /// It is a best effort to reduce memory usage as much as possible. If a script + /// runs after its related memory has been swapped out, the memory will be swapped + /// back in to ensure the script can still run, but performance might be impacted. + /// Therefore, the app should set the level back to + /// `COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL_NORMAL` when the app becomes + /// active again. Setting memory usage target level back to normal will not happen + /// automatically. + /// An app should choose to use either the combination of `TrySuspend` and `Resume` + /// or the combination of setting MemoryUsageTargetLevel to low and normal. It is + /// not advisable to mix them. + /// Trying to set `MemoryUsageTargetLevel` while suspended will be ignored. + /// The `TrySuspend` and `Resume` methods will change the `MemoryUsageTargetLevel`. + /// `TrySuspend` will automatically set `MemoryUsageTargetLevel` to low while + /// `Resume` on suspended WebView will automatically set `MemoryUsageTargetLevel` + /// to normal. Calling `Resume` when the WebView is not suspended would not change + /// `MemoryUsageTargetLevel`. + /// + /// \snippet ViewComponent.cpp MemoryUsageTargetLevel + @(" propput") + HRESULT put_MemoryUsageTargetLevel( + in COREWEBVIEW2_MEMORY_USAGE_TARGET_LEVEL level); +} + +/// This interface is an extension of `ICoreWebView2_19` that provides the `FrameId` property. +const GUID IID_ICoreWebView2_20 = ICoreWebView2_20.iid; + +interface ICoreWebView2_20 : ICoreWebView2_19 +{ + static const GUID iid = { 0xb4bc1926,0x7305,0x11ee,[ 0xb9,0x62,0x02,0x42,0xac,0x12,0x00,0x02 ] }; + /// The unique identifier of the main frame. It's the same kind of ID as + /// with the `FrameId` in `CoreWebView2Frame` and via `CoreWebView2FrameInfo`. + /// Note that `FrameId` may not be valid if `CoreWebView2` has not done + /// any navigation. It's safe to get this value during or after the first + /// `ContentLoading` event. Otherwise, it could return the invalid frame Id 0. + @(" propget") + HRESULT get_FrameId(@("out, retval") UINT32* id); +} + +/// Event handler for the `LaunchingExternalUriScheme` event. +const GUID IID_ICoreWebView2LaunchingExternalUriSchemeEventHandler = ICoreWebView2LaunchingExternalUriSchemeEventHandler.iid; + +interface ICoreWebView2LaunchingExternalUriSchemeEventHandler : IUnknown +{ + static const GUID iid = { 0x74F712E0,0x8165,0x43A9,[ 0xA1,0x3F,0x0C,0xCE,0x59,0x7E,0x75,0xDF ] }; + /// Receives the event args for the corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2 sender, + /+[in]+/ ICoreWebView2LaunchingExternalUriSchemeEventArgs args); +} + +/// Event args for `LaunchingExternalUriScheme` event. +const GUID IID_ICoreWebView2LaunchingExternalUriSchemeEventArgs = ICoreWebView2LaunchingExternalUriSchemeEventArgs.iid; + +interface ICoreWebView2LaunchingExternalUriSchemeEventArgs : IUnknown +{ + static const GUID iid = { 0x07D1A6C3,0x7175,0x4BA1,[ 0x93,0x06,0xE5,0x93,0xCA,0x07,0xE4,0x6C ] }; + /// The URI with the external URI scheme to be launched. + + @(" propget") + HRESULT get_Uri(@("out, retval") LPWSTR* value); + + /// The origin initiating the external URI scheme launch. + /// The origin will be an empty string if the request is initiated by calling + /// `CoreWebView2.Navigate` on the external URI scheme. If a script initiates + /// the navigation, the `InitiatingOrigin` will be the top-level document's + /// `Source`, for example, if `window.location` is set to `"calculator://", the + /// `InitiatingOrigin` will be set to `calculator://`. If the request is initiated + /// from a child frame, the `InitiatingOrigin` will be the source of that child frame. + + @(" propget") + HRESULT get_InitiatingOrigin(@("out, retval") LPWSTR* value); + + /// `TRUE` when the external URI scheme request was initiated through a user gesture. + /// + /// \> [!NOTE]\n\> Being initiated through a user gesture does not mean that user intended + /// to access the associated resource. + + @(" propget") + HRESULT get_IsUserInitiated(@("out, retval") BOOL* value); + + /// The event handler may set this property to `TRUE` to cancel the external URI scheme + /// launch. If set to `TRUE`, the external URI scheme will not be launched, and the default + /// dialog is not displayed. This property can be used to replace the normal + /// handling of launching an external URI scheme. + /// The initial value of the `Cancel` property is `FALSE`. + + @(" propget") + HRESULT get_Cancel(@("out, retval") BOOL* value); + + /// Sets the `Cancel` property. + + @(" propput") + HRESULT put_Cancel(in BOOL value); + + /// Returns an `ICoreWebView2Deferral` object. Use this operation to + /// complete the event at a later time. + + HRESULT GetDeferral(@("out, retval") ICoreWebView2Deferral * value); +} + +/// The caller implements this interface to handle the BasicAuthenticationRequested event. +const GUID IID_ICoreWebView2BasicAuthenticationRequestedEventHandler = ICoreWebView2BasicAuthenticationRequestedEventHandler.iid; + +interface ICoreWebView2BasicAuthenticationRequestedEventHandler : IUnknown +{ + static const GUID iid = { 0x58b4d6c2,0x18d4,0x497e,[ 0xb3,0x9b,0x9a,0x96,0x53,0x3f,0xa2,0x78 ] }; + /// Called to provide the implementer with the event args for the + /// corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2 sender, + /+[in]+/ ICoreWebView2BasicAuthenticationRequestedEventArgs args); +} + +/// Implements the interface to receive `IsDefaultDownloadDialogOpenChanged` +/// events. +const GUID IID_ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler = ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler.iid; + +interface ICoreWebView2IsDefaultDownloadDialogOpenChangedEventHandler : IUnknown +{ + static const GUID iid = { 0x3117da26,0xae13,0x438d,[ 0xbd,0x46,0xed,0xbe,0xb2,0xc4,0xce,0x81 ] }; + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke(/+[in]+/ ICoreWebView2 sender, + /+[in]+/ IUnknown args); +} + +/// Receives the result of the `PrintToPdf` method. If the print to PDF +/// operation succeeds, `isSuccessful` is true. Otherwise, if the operation +/// failed, `isSuccessful` is set to false. An invalid path returns +/// `E_INVALIDARG`. +const GUID IID_ICoreWebView2PrintToPdfCompletedHandler = ICoreWebView2PrintToPdfCompletedHandler.iid; + +interface ICoreWebView2PrintToPdfCompletedHandler : IUnknown +{ + static const GUID iid = { 0xccf1ef04,0xfd8e,0x4d5f,[ 0xb2,0xde,0x09,0x83,0xe4,0x1b,0x8c,0x36 ] }; + + /// Provides the result of the corresponding asynchronous method. + HRESULT Invoke(in HRESULT errorCode, BOOL isSuccessful); +} + +/// Settings used by the `PrintToPdf` method. +const GUID IID_ICoreWebView2PrintSettings = ICoreWebView2PrintSettings.iid; + +interface ICoreWebView2PrintSettings : IUnknown +{ + static const GUID iid = { 0x377f3721,0xc74e,0x48ca,[ 0x8d,0xb1,0xdf,0x68,0xe5,0x1d,0x60,0xe2 ] }; + + /// The orientation can be portrait or landscape. The default orientation is + /// portrait. See `COREWEBVIEW2_PRINT_ORIENTATION`. + @(" propget") + HRESULT get_Orientation( + @("out, retval") COREWEBVIEW2_PRINT_ORIENTATION* orientation); + + /// Sets the `Orientation` property. + @(" propput") + HRESULT put_Orientation( + in COREWEBVIEW2_PRINT_ORIENTATION orientation); + + /// The scale factor is a value between 0.1 and 2.0. The default is 1.0. + @(" propget") + HRESULT get_ScaleFactor(@("out, retval") double* scaleFactor); + + /// Sets the `ScaleFactor` property. Returns `E_INVALIDARG` if an invalid + /// value is provided, and the current value is not changed. + @(" propput") + HRESULT put_ScaleFactor(in double scaleFactor); + + /// The page width in inches. The default width is 8.5 inches. + @(" propget") + HRESULT get_PageWidth(@("out, retval") double* pageWidth); + + /// Sets the `PageWidth` property. Returns `E_INVALIDARG` if the page width is + /// less than or equal to zero, and the current value is not changed. + @(" propput") + HRESULT put_PageWidth(in double pageWidth); + + /// The page height in inches. The default height is 11 inches. + @(" propget") + HRESULT get_PageHeight(@("out, retval") double* pageHeight); + + /// Sets the `PageHeight` property. Returns `E_INVALIDARG` if the page height + /// is less than or equal to zero, and the current value is not changed. + @(" propput") + HRESULT put_PageHeight(in double pageHeight); + + /// The top margin in inches. The default is 1 cm, or ~0.4 inches. + @(" propget") + HRESULT get_MarginTop(@("out, retval") double* marginTop); + + /// Sets the `MarginTop` property. A margin cannot be less than zero. + /// Returns `E_INVALIDARG` if an invalid value is provided, and the current + /// value is not changed. + @(" propput") + HRESULT put_MarginTop(in double marginTop); + + /// The bottom margin in inches. The default is 1 cm, or ~0.4 inches. + @(" propget") + HRESULT get_MarginBottom(@("out, retval") double* marginBottom); + + /// Sets the `MarginBottom` property. A margin cannot be less than zero. + /// Returns `E_INVALIDARG` if an invalid value is provided, and the current + /// value is not changed. + @(" propput") + HRESULT put_MarginBottom(in double marginBottom); + + /// The left margin in inches. The default is 1 cm, or ~0.4 inches. + @(" propget") + HRESULT get_MarginLeft(@("out, retval") double* marginLeft); + + /// Sets the `MarginLeft` property. A margin cannot be less than zero. + /// Returns `E_INVALIDARG` if an invalid value is provided, and the current + /// value is not changed. + @(" propput") + HRESULT put_MarginLeft(in double marginLeft); + + /// The right margin in inches. The default is 1 cm, or ~0.4 inches. + @(" propget") + HRESULT get_MarginRight(@("out, retval") double* marginRight); + + /// Set the `MarginRight` property.A margin cannot be less than zero. + /// Returns `E_INVALIDARG` if an invalid value is provided, and the current + /// value is not changed. + @(" propput") + HRESULT put_MarginRight(in double marginRight); + + /// `TRUE` if background colors and images should be printed. The default value + /// is `FALSE`. + @(" propget") + HRESULT get_ShouldPrintBackgrounds( + @("out, retval") BOOL* shouldPrintBackgrounds); + + /// Set the `ShouldPrintBackgrounds` property. + @(" propput") + HRESULT put_ShouldPrintBackgrounds(in BOOL shouldPrintBackgrounds); + + /// `TRUE` if only the current end user's selection of HTML in the document + /// should be printed. The default value is `FALSE`. + @(" propget") + HRESULT get_ShouldPrintSelectionOnly( + @("out, retval") BOOL* shouldPrintSelectionOnly); + + /// Set the `ShouldPrintSelectionOnly` property. + @(" propput") + HRESULT put_ShouldPrintSelectionOnly( + in BOOL shouldPrintSelectionOnly); + + /// `TRUE` if header and footer should be printed. The default value is `FALSE`. + /// The header consists of the date and time of printing, and the title of the + /// page. The footer consists of the URI and page number. The height of the + /// header and footer is 0.5 cm, or ~0.2 inches. + @(" propget") + HRESULT get_ShouldPrintHeaderAndFooter( + @("out, retval") BOOL* shouldPrintHeaderAndFooter); + + /// Set the `ShouldPrintHeaderAndFooter` property. + @(" propput") + HRESULT put_ShouldPrintHeaderAndFooter( + in BOOL shouldPrintHeaderAndFooter); + + /// The title in the header if `ShouldPrintHeaderAndFooter` is `TRUE`. The + /// default value is the title of the current document. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_HeaderTitle(@("out, retval") LPWSTR* headerTitle); + + /// Set the `HeaderTitle` property. If an empty string or null value is + /// provided, no title is shown in the header. + @(" propput") + HRESULT put_HeaderTitle(in LPCWSTR headerTitle); + + /// The URI in the footer if `ShouldPrintHeaderAndFooter` is `TRUE`. The + /// default value is the current URI. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_FooterUri(@("out, retval") LPWSTR* footerUri); + + /// Set the `FooterUri` property. If an empty string or null value is + /// provided, no URI is shown in the footer. + @(" propput") + HRESULT put_FooterUri(in LPCWSTR footerUri); +} + +/// The caller implements this interface to receive the TrySuspend result. +const GUID IID_ICoreWebView2TrySuspendCompletedHandler = ICoreWebView2TrySuspendCompletedHandler.iid; + +interface ICoreWebView2TrySuspendCompletedHandler : IUnknown +{ + static const GUID iid = { 0x00F206A7,0x9D17,0x4605,[ 0x91,0xF6,0x4E,0x8E,0x4D,0xE1,0x92,0xE3 ] }; + + /// Provides the result of the TrySuspend operation. + /// See [Sleeping Tabs FAQ](https://techcommunity.microsoft.com/t5/articles/sleeping-tabs-faq/m-p/1705434) + /// for conditions that might prevent WebView from being suspended. In those situations, + /// isSuccessful will be false and errorCode is S_OK. + HRESULT Invoke(in HRESULT errorCode, in BOOL isSuccessful); +} + +/// The owner of the `CoreWebView2` object that provides support for resizing, +/// showing and hiding, focusing, and other functionality related to +/// windowing and composition. The `CoreWebView2Controller` owns the +/// `CoreWebView2`, and if all references to the `CoreWebView2Controller` go +/// away, the WebView is closed. const GUID IID_ICoreWebView2Controller = ICoreWebView2Controller.iid; interface ICoreWebView2Controller : IUnknown { static const GUID iid = { 0x4d00c0d1,0x9434,0x4eb6,[ 0x80,0x78,0x86,0x97,0xa5,0x60,0x33,0x4f ] }; - extern(Windows): - /// The IsVisible property determines whether to show or hide the WebView. - /// If IsVisible is set to false, the WebView will be transparent and will - /// not be rendered. However, this will not affect the window containing - /// the WebView (the HWND parameter that was passed to CreateCoreWebView2Controller). - /// If you want that window to disappear too, call ShowWindow on it directly - /// in addition to modifying the IsVisible property. - /// WebView as a child window won't get window messages when the top window - /// is minimized or restored. For performance reason, developer should set - /// IsVisible property of the WebView to false when the app window is - /// minimized and back to true when app window is restored. App window can do - /// this by handling SC_MINIMIZE and SC_RESTORE command upon receiving - /// WM_SYSCOMMAND message. + + /// The `IsVisible` property determines whether to show or hide the WebView2. + /// If `IsVisible` is set to `FALSE`, the WebView2 is transparent and is + /// not rendered. However, this does not affect the window containing the + /// WebView2 (the `HWND` parameter that was passed to + /// `CreateCoreWebView2Controller`). If you want that window to disappear + /// too, run `ShowWindow` on it directly in addition to modifying the + /// `IsVisible` property. WebView2 as a child window does not get window + /// messages when the top window is minimized or restored. For performance + /// reasons, developers should set the `IsVisible` property of the WebView to + /// `FALSE` when the app window is minimized and back to `TRUE` when the app + /// window is restored. The app window does this by handling + /// `SIZE_MINIMIZED and SIZE_RESTORED` command upon receiving `WM_SIZE` + /// message. + /// + /// There are CPU and memory benefits when the page is hidden. For instance, + /// Chromium has code that throttles activities on the page like animations + /// and some tasks are run less frequently. Similarly, WebView2 will + /// purge some caches to reduce memory usage. /// /// \snippet ViewComponent.cpp ToggleIsVisible - /+[ propget]+/ - HRESULT get_IsVisible(/+[out, retval]+/ BOOL* isVisible); - /// Set the IsVisible property. + @(" propget") + HRESULT get_IsVisible(@("out, retval") BOOL* isVisible); + + /// Sets the `IsVisible` property. /// /// \snippet ViewComponent.cpp ToggleIsVisibleOnMinimize - /+[ propput]+/ + @(" propput") HRESULT put_IsVisible(in BOOL isVisible); - /// The WebView bounds. - /// Bounds are relative to the parent HWND. The app has two ways it can - /// position a WebView: - /// 1. Create a child HWND that is the WebView parent HWND. Position this - /// window where the WebView should be. In this case, use (0, 0) for the - /// WebView's Bound's top left corner (the offset). - /// 2. Use the app's top most window as the WebView parent HWND. Set the - /// WebView's Bound's top left corner so that the WebView is positioned - /// correctly in the app. - /// The Bound's values are in the host's coordinate space. - /+[ propget]+/ - HRESULT get_Bounds(/+[out, retval]+/ RECT* bounds); - /// Set the Bounds property. + /// The WebView bounds. Bounds are relative to the parent `HWND`. The app + /// has two ways to position a WebView. + /// + /// * Create a child `HWND` that is the WebView parent `HWND`. Position + /// the window where the WebView should be. Use `(0, 0)` for the + /// top-left corner (the offset) of the `Bounds` of the WebView. + /// * Use the top-most window of the app as the WebView parent HWND. For + /// example, to position WebView correctly in the app, set the top-left + /// corner of the Bound of the WebView. + /// + /// The values of `Bounds` are limited by the coordinate space of the host. + + @(" propget") + HRESULT get_Bounds(@("out, retval") RECT* bounds); + + /// Sets the `Bounds` property. /// /// \snippet ViewComponent.cpp ResizeWebView - /+[ propput]+/ + + @(" propput") HRESULT put_Bounds(in RECT bounds); /// The zoom factor for the WebView. - /// Note that changing zoom factor could cause `window.innerWidth/innerHeight` - /// and page layout to change. - /// A zoom factor that is applied by the host by calling ZoomFactor - /// becomes the new default zoom for the WebView. This zoom factor applies - /// across navigations and is the zoom factor WebView is returned to when the - /// user presses ctrl+0. When the zoom factor is changed by the user - /// (resulting in the app receiving ZoomFactorChanged), that zoom applies - /// only for the current page. Any user applied zoom is only for the current - /// page and is reset on a navigation. - /// Specifying a zoomFactor less than or equal to 0 is not allowed. - /// WebView also has an internal supported zoom factor range. When a specified - /// zoom factor is out of that range, it will be normalized to be within the - /// range, and a ZoomFactorChanged event will be fired for the real - /// applied zoom factor. When this range normalization happens, the - /// ZoomFactor property will report the zoom factor specified during the - /// previous modification of the ZoomFactor property until the - /// ZoomFactorChanged event is received after WebView applies the normalized - /// zoom factor. - /+[ propget]+/ - HRESULT get_ZoomFactor(/+[out, retval]+/ double* zoomFactor); - /// Set the ZoomFactor property. - /+[ propput]+/ + /// + /// \> [!NOTE]\n\> Changing zoom factor may cause `window.innerWidth`, + /// `window.innerHeight`, both, and page layout to change. A zoom factor + /// that is applied by the host by running `ZoomFactor` becomes the new + /// default zoom for the WebView. The zoom factor applies across navigations + /// and is the zoom factor WebView is returned to when the user chooses + /// Ctrl+0. When the zoom factor is changed by the user (resulting in + /// the app receiving `ZoomFactorChanged`), that zoom applies only for the + /// current page. Any user applied zoom is only for the current page and is + /// reset on a navigation. Specifying a `zoomFactor` less than or equal to + /// `0` is not allowed. WebView also has an internal supported zoom factor + /// range. When a specified zoom factor is out of that range, it is + /// normalized to be within the range, and a `ZoomFactorChanged` event is + /// triggered for the real applied zoom factor. When the range normalization + /// happens, the `ZoomFactor` property reports the zoom factor specified + /// during the previous modification of the `ZoomFactor` property until the + /// `ZoomFactorChanged` event is received after WebView applies the + /// normalized zoom factor. + + @(" propget") + HRESULT get_ZoomFactor(@("out, retval") double* zoomFactor); + + /// Sets the `ZoomFactor` property. + + @(" propput") HRESULT put_ZoomFactor(in double zoomFactor); - /// Add an event handler for the ZoomFactorChanged event. - /// ZoomFactorChanged fires when the ZoomFactor property of the WebView changes. - /// The event could fire because the caller modified the ZoomFactor property, - /// or due to the user manually modifying the zoom. When it is modified by the - /// caller via the ZoomFactor property, the internal zoom factor is updated - /// immediately and there will be no ZoomFactorChanged event. - /// WebView associates the last used zoom factor for each site. Therefore, it - /// is possible for the zoom factor to change when navigating to a different - /// page. When the zoom factor changes due to this, the ZoomFactorChanged - /// event fires right after the ContentLoading event. + /// Adds an event handler for the `ZoomFactorChanged` event. + /// `ZoomFactorChanged` runs when the `ZoomFactor` property of the WebView + /// changes. The event may run because the `ZoomFactor` property was + /// modified, or due to the user manually modifying the zoom. When it is + /// modified using the `ZoomFactor` property, the internal zoom factor is + /// updated immediately and no `ZoomFactorChanged` event is triggered. + /// WebView associates the last used zoom factor for each site. It is + /// possible for the zoom factor to change when navigating to a different + /// page. When the zoom factor changes due to a navigation change, the + /// `ZoomFactorChanged` event runs right after the `ContentLoading` event. /// /// \snippet ViewComponent.cpp ZoomFactorChanged + HRESULT add_ZoomFactorChanged( /+[in]+/ ICoreWebView2ZoomFactorChangedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_ZoomFactorChanged. + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_ZoomFactorChanged`. + HRESULT remove_ZoomFactorChanged( in EventRegistrationToken token); - /// Update Bounds and ZoomFactor properties at the same time. This operation - /// is atomic from the host's perspective. After returning from this function, - /// the Bounds and ZoomFactor properties will have both been updated if the - /// function is successful, or neither will be updated if the function fails. - /// If Bounds and ZoomFactor are both updated by the same scale (i.e. Bounds - /// and ZoomFactor are both doubled), then the page will not see a change in - /// window.innerWidth/innerHeight and the WebView will render the content at - /// the new size and zoom without intermediate renderings. - /// This function can also be used to update just one of ZoomFactor or Bounds - /// by passing in the new value for one and the current value for the other. + /// Updates `Bounds` and `ZoomFactor` properties at the same time. This + /// operation is atomic from the perspective of the host. After returning + /// from this function, the `Bounds` and `ZoomFactor` properties are both + /// updated if the function is successful, or neither is updated if the + /// function fails. If `Bounds` and `ZoomFactor` are both updated by the + /// same scale (for example, `Bounds` and `ZoomFactor` are both doubled), + /// then the page does not display a change in `window.innerWidth` or + /// `window.innerHeight` and the WebView renders the content at the new size + /// and zoom without intermediate renderings. This function also updates + /// just one of `ZoomFactor` or `Bounds` by passing in the new value for one + /// and the current value for the other. /// /// \snippet ViewComponent.cpp SetBoundsAndZoomFactor + HRESULT SetBoundsAndZoomFactor(in RECT bounds, in double zoomFactor); - /// Move focus into WebView. WebView will get focus and focus will be set to - /// correspondent element in the page hosted in the WebView. - /// For Programmatic reason, focus is set to previously focused element or - /// the default element if there is no previously focused element. - /// For Next reason, focus is set to the first element. - /// For Previous reason, focus is set to the last element. - /// WebView can also got focus through user interaction like clicking into - /// WebView or Tab into it. - /// For tabbing, the app can call MoveFocus with Next or Previous to align - /// with tab and shift+tab respectively when it decides the WebView is the - /// next tabbable element. Or, the app can call IsDialogMessage as part of - /// its message loop to allow the platform to auto handle tabbing. The - /// platform will rotate through all windows with WS_TABSTOP. When the - /// WebView gets focus from IsDialogMessage, it will internally put the focus - /// on the first or last element for tab and shift+tab respectively. + /// Moves focus into WebView. WebView gets focus and focus is set to + /// correspondent element in the page hosted in the WebView. For + /// Programmatic reason, focus is set to previously focused element or the + /// default element if no previously focused element exists. For `Next` + /// reason, focus is set to the first element. For `Previous` reason, focus + /// is set to the last element. WebView changes focus through user + /// interaction including selecting into a WebView or Tab into it. For + /// tabbing, the app runs MoveFocus with Next or Previous to align with Tab + /// and Shift+Tab respectively when it decides the WebView is the next + /// element that may exist in a tab. Or, the app runs `IsDialogMessage` + /// as part of the associated message loop to allow the platform to auto + /// handle tabbing. The platform rotates through all windows with + /// `WS_TABSTOP`. When the WebView gets focus from `IsDialogMessage`, it is + /// internally put the focus on the first or last element for tab and + /// Shift+Tab respectively. /// /// \snippet App.cpp MoveFocus0 /// /// \snippet ControlComponent.cpp MoveFocus1 /// /// \snippet ControlComponent.cpp MoveFocus2 + HRESULT MoveFocus(in COREWEBVIEW2_MOVE_FOCUS_REASON reason); - /// Add an event handler for the MoveFocusRequested event. - /// MoveFocusRequested fires when user tries to tab out of the WebView. - /// The WebView's focus has not changed when this event is fired. + /// Adds an event handler for the `MoveFocusRequested` event. + /// `MoveFocusRequested` runs when user tries to tab out of the WebView. The + /// focus of the WebView has not changed when this event is run. /// /// \snippet ControlComponent.cpp MoveFocusRequested + HRESULT add_MoveFocusRequested( /+[in]+/ ICoreWebView2MoveFocusRequestedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_MoveFocusRequested. + @("out") EventRegistrationToken* token); + + /// Removes an event handler previously added with `add_MoveFocusRequested`. + HRESULT remove_MoveFocusRequested( in EventRegistrationToken token); - /// Add an event handler for the GotFocus event. - /// GotFocus fires when WebView got focus. + /// Adds an event handler for the `GotFocus` event. `GotFocus` runs when + /// WebView has focus. + HRESULT add_GotFocus( /+[in]+/ ICoreWebView2FocusChangedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_GotFocus. + @("out") EventRegistrationToken* token); + + /// Removes an event handler previously added with `add_GotFocus`. + HRESULT remove_GotFocus( in EventRegistrationToken token); - /// Add an event handler for the LostFocus event. - /// LostFocus fires when WebView lost focus. - /// In the case where MoveFocusRequested event is fired, the focus is still - /// on WebView when MoveFocusRequested event fires. LostFocus only fires - /// afterwards when app's code or default action of MoveFocusRequested event - /// set focus away from WebView. + /// Adds an event handler for the `LostFocus` event. `LostFocus` runs when + /// WebView loses focus. In the case where `MoveFocusRequested` event is + /// run, the focus is still on WebView when `MoveFocusRequested` event runs. + /// `LostFocus` only runs afterwards when code of the app or default action + /// of `MoveFocusRequested` event set focus away from WebView. + HRESULT add_LostFocus( /+[in]+/ ICoreWebView2FocusChangedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_LostFocus. + @("out") EventRegistrationToken* token); + + /// Removes an event handler previously added with `add_LostFocus`. + HRESULT remove_LostFocus( in EventRegistrationToken token); - /// Add an event handler for the AcceleratorKeyPressed event. - /// AcceleratorKeyPressed fires when an accelerator key or key combo is - /// pressed or released while the WebView is focused. A key is considered an - /// accelerator if either: - /// 1. Ctrl or Alt is currently being held, or - /// 2. the pressed key does not map to a character. + /// Adds an event handler for the `AcceleratorKeyPressed` event. + /// `AcceleratorKeyPressed` runs when an accelerator key or key combo is + /// pressed or released while the WebView is focused. A key is considered an + /// accelerator if either of the following conditions are true. + /// + /// * Ctrl or Alt is currently being held. + /// * The pressed key does not map to a character. + /// /// A few specific keys are never considered accelerators, such as Shift. - /// The Escape key is always considered an accelerator. + /// The `Escape` key is always considered an accelerator. /// - /// Autorepeated key events caused by holding the key down will also fire this - /// event. You can filter these out by checking the event args' - /// KeyEventLParam or PhysicalKeyStatus. + /// Auto-repeated key events caused by holding the key down also triggers + /// this event. Filter out the auto-repeated key events by verifying the + /// `KeyEventLParam` or `PhysicalKeyStatus` event args. /// - /// In windowed mode, this event handler is called synchronously. Until you - /// call Handled() on the event args or the event handler returns, the browser - /// process will be blocked and outgoing cross-process COM calls will fail - /// with RPC_E_CANTCALLOUT_ININPUTSYNCCALL. All CoreWebView2 API methods will + /// In windowed mode, the event handler is run synchronously. Until you + /// run `Handled()` on the event args or the event handler returns, the + /// browser process is blocked and outgoing cross-process COM requests fail + /// with `RPC_E_CANTCALLOUT_ININPUTSYNCCALL`. All `CoreWebView2` API methods /// work, however. /// - /// In windowless mode, the event handler is called asynchronously. Further - /// input will not reach the browser until the event handler returns or - /// Handled() is called, but the browser process itself will not be blocked, - /// and outgoing COM calls will work normally. + /// In windowless mode, the event handler is run asynchronously. Further + /// input do not reach the browser until the event handler returns or + /// `Handled()` is run, but the browser process is not blocked, and outgoing + /// COM requests work normally. /// - /// It is recommended to call Handled(TRUE) as early as you can know that you want - /// to handle the accelerator key. + /// It is recommended to run `Handled(TRUE)` as early as are able to know + /// that you want to handle the accelerator key. /// /// \snippet ControlComponent.cpp AcceleratorKeyPressed + HRESULT add_AcceleratorKeyPressed( /+[in]+/ ICoreWebView2AcceleratorKeyPressedEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - /// Remove an event handler previously added with add_AcceleratorKeyPressed. + @("out") EventRegistrationToken* token); + + /// Removes an event handler previously added with + /// `add_AcceleratorKeyPressed`. + HRESULT remove_AcceleratorKeyPressed( in EventRegistrationToken token); /// The parent window provided by the app that this WebView is using to - /// render content. This API initially returns the window passed into - /// CreateCoreWebView2Controller. - /+[ propget]+/ - HRESULT get_ParentWindow(/+[out, retval]+/ HWND* parentWindow); + /// render content. This API initially returns the window passed into + /// `CreateCoreWebView2Controller`. - /// Set the parent window for the WebView. This will cause the WebView to - /// reparent its window to the newly provided window. - /+[ propput]+/ + @(" propget") + HRESULT get_ParentWindow(@("out, retval") HWND* parentWindow); + + /// Sets the parent window for the WebView. This causes the WebView to + /// re-parent the main WebView window to the newly provided window. + + @(" propput") HRESULT put_ParentWindow(in HWND parentWindow); - /// This is a notification separate from Bounds that tells WebView its - /// parent (or any ancestor) HWND moved. This is needed for accessibility and - /// certain dialogs in WebView to work correctly. + /// This is a notification separate from `Bounds` that tells WebView that the + /// main WebView parent (or any ancestor) `HWND` moved. This is needed + /// for accessibility and certain dialogs in WebView to work correctly. + /// /// \snippet ViewComponent.cpp NotifyParentWindowPositionChanged + HRESULT NotifyParentWindowPositionChanged(); /// Closes the WebView and cleans up the underlying browser instance. - /// Cleaning up the browser instance will release the resources powering the WebView. - /// The browser instance will be shut down if there are no other WebViews using it. + /// Cleaning up the browser instance releases the resources powering the + /// WebView. The browser instance is shut down if no other WebViews are + /// using it. /// - /// After calling Close, all method calls will fail and event handlers - /// will stop firing. Specifically, the WebView will release its references - /// to its event handlers when Close is called. + /// After running `Close`, most methods will fail and event handlers stop + /// running. Specifically, the WebView releases the associated references to + /// any associated event handlers when `Close` is run. /// - /// Close is implicitly called when the CoreWebView2Controller loses its final - /// reference and is destructed. But it is best practice to explicitly call - /// Close to avoid any accidental cycle of references between the WebView - /// and the app code. Specifically, if you capture a reference to the WebView - /// in an event handler you will create a reference cycle between the WebView - /// and the event handler. Calling Close will break this cycle by releasing - /// all event handlers. But to avoid this situation it is best practice both - /// to explicitly call Close on the WebView and to not capture a reference to - /// the WebView to ensure the WebView can be cleaned up correctly. + /// `Close` is implicitly run when the `CoreWebView2Controller` loses the + /// final reference and is destructed. But it is best practice to + /// explicitly run `Close` to avoid any accidental cycle of references + /// between the WebView and the app code. Specifically, if you capture a + /// reference to the WebView in an event handler you create a reference cycle + /// between the WebView and the event handler. Run `Close` to break the + /// cycle by releasing all event handlers. But to avoid the situation, it is + /// best to both explicitly run `Close` on the WebView and to not capture a + /// reference to the WebView to ensure the WebView is cleaned up correctly. + /// `Close` is synchronous and won't trigger the `beforeunload` event. /// /// \snippet AppWindow.cpp Close HRESULT Close(); - /// Gets the CoreWebView2 associated with this CoreWebView2Controller. - /+[ propget]+/ - HRESULT get_CoreWebView2(/+[out, retval]+/ ICoreWebView2 * coreWebView2); + /// Gets the `CoreWebView2` associated with this `CoreWebView2Controller`. + + @(" propget") + HRESULT get_CoreWebView2(@("out, retval") ICoreWebView2 * coreWebView2); } -/// This interface is used to complete deferrals on event args that -/// support getting deferrals via their GetDeferral method. +/// A continuation of the ICoreWebView2Controller interface. +const GUID IID_ICoreWebView2Controller2 = ICoreWebView2Controller2.iid; + +interface ICoreWebView2Controller2 : ICoreWebView2Controller +{ + static const GUID iid = { 0xc979903e,0xd4ca,0x4228,[ 0x92,0xeb,0x47,0xee,0x3f,0xa9,0x6e,0xab ] }; + /// The `DefaultBackgroundColor` property is the color WebView renders + /// underneath all web content. This means WebView renders this color when + /// there is no web content loaded such as before the initial navigation or + /// between navigations. This also means web pages with undefined css + /// background properties or background properties containing transparent + /// pixels will render their contents over this color. Web pages with defined + /// and opaque background properties that span the page will obscure the + /// `DefaultBackgroundColor` and display normally. The default value for this + /// property is white to resemble the native browser experience. + /// + /// The Color is specified by the COREWEBVIEW2_COLOR that represents an RGBA + /// value. The `A` represents an Alpha value, meaning + /// `DefaultBackgroundColor` can be transparent. In the case of a transparent + /// `DefaultBackgroundColor` WebView will render hosting app content as the + /// background. This Alpha value is not supported on Windows 7. Any `A` value + /// other than 255 will result in E_INVALIDARG on Windows 7. + /// It is supported on all other WebView compatible platforms. + /// + /// Semi-transparent colors are not currently supported by this API and + /// setting `DefaultBackgroundColor` to a semi-transparent color will fail + /// with E_INVALIDARG. The only supported alpha values are 0 and 255, all + /// other values will result in E_INVALIDARG. + /// `DefaultBackgroundColor` can only be an opaque color or transparent. + /// + /// This value may also be set by using the + /// `WEBVIEW2_DEFAULT_BACKGROUND_COLOR` environment variable. There is a + /// known issue with background color where setting the color by API can + /// still leave the app with a white flicker before the + /// `DefaultBackgroundColor` takes effect. Setting the color via environment + /// variable solves this issue. The value must be a hex value that can + /// optionally prepend a 0x. The value must account for the alpha value + /// which is represented by the first 2 digits. So any hex value fewer than 8 + /// digits will assume a prepended 00 to the hex value and result in a + /// transparent color. + /// `get_DefaultBackgroundColor` will return the result of this environment + /// variable if used. This environment variable can only set the + /// `DefaultBackgroundColor` once. Subsequent updates to background color + /// must be done through API call. + /// + /// \snippet ViewComponent.cpp DefaultBackgroundColor + @(" propget") + HRESULT get_DefaultBackgroundColor( + @("out, retval") COREWEBVIEW2_COLOR* backgroundColor); + + /// Sets the `DefaultBackgroundColor` property. + @(" propput") + HRESULT put_DefaultBackgroundColor( + in COREWEBVIEW2_COLOR backgroundColor); +} + +/// A continuation of the ICoreWebView2Controller2 interface. +const GUID IID_ICoreWebView2Controller3 = ICoreWebView2Controller3.iid; + +interface ICoreWebView2Controller3 : ICoreWebView2Controller2 +{ + static const GUID iid = { 0xf9614724,0x5d2b,0x41dc,[ 0xae,0xf7,0x73,0xd6,0x2b,0x51,0x54,0x3b ] }; + /// The rasterization scale for the WebView. The rasterization scale is the + /// combination of the monitor DPI scale and text scaling set by the user. + /// This value should be updated when the DPI scale of the app's top level + /// window changes (i.e. monitor DPI scale changes or window changes monitor) + /// or when the text scale factor of the system changes. + /// + /// \snippet AppWindow.cpp DPIChanged + /// + /// \snippet AppWindow.cpp TextScaleChanged1 + /// + /// \snippet AppWindow.cpp TextScaleChanged2 + /// + /// Rasterization scale applies to the WebView content, as well as + /// popups, context menus, scroll bars, and so on. Normal app scaling + /// scenarios should use the ZoomFactor property or SetBoundsAndZoomFactor + /// API which only scale the rendered HTML content and not popups, context + /// menus, scroll bars, and so on. + /// + /// \snippet ViewComponent.cpp RasterizationScale + @(" propget") + HRESULT get_RasterizationScale(@("out, retval") double* scale); + /// Set the rasterization scale property. + @(" propput") + HRESULT put_RasterizationScale(in double scale); + + /// ShouldDetectMonitorScaleChanges property determines whether the WebView + /// attempts to track monitor DPI scale changes. When true, the WebView will + /// track monitor DPI scale changes, update the RasterizationScale property, + /// and raises RasterizationScaleChanged event. When false, the WebView will + /// not track monitor DPI scale changes, and the app must update the + /// RasterizationScale property itself. RasterizationScaleChanged event will + /// never raise when ShouldDetectMonitorScaleChanges is false. Apps that want + /// to set their own rasterization scale should set this property to false to + /// avoid the WebView2 updating the RasterizationScale property to match the + /// monitor DPI scale. + @(" propget") + HRESULT get_ShouldDetectMonitorScaleChanges(@("out, retval") BOOL* value); + /// Set the ShouldDetectMonitorScaleChanges property. + @(" propput") + HRESULT put_ShouldDetectMonitorScaleChanges(in BOOL value); + + /// Add an event handler for the RasterizationScaleChanged event. + /// The event is raised when the WebView detects that the monitor DPI scale + /// has changed, ShouldDetectMonitorScaleChanges is true, and the WebView has + /// changed the RasterizationScale property. + /// + /// \snippet ViewComponent.cpp RasterizationScaleChanged + HRESULT add_RasterizationScaleChanged( + /+[in]+/ ICoreWebView2RasterizationScaleChangedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + /// Remove an event handler previously added with + /// add_RasterizationScaleChanged. + HRESULT remove_RasterizationScaleChanged( + in EventRegistrationToken token); + + /// BoundsMode affects how setting the Bounds and RasterizationScale + /// properties work. Bounds mode can either be in COREWEBVIEW2_BOUNDS_MODE_USE_RAW_PIXELS + /// mode or COREWEBVIEW2_BOUNDS_MODE_USE_RASTERIZATION_SCALE mode. + /// + /// When the mode is in COREWEBVIEW2_BOUNDS_MODE_USE_RAW_PIXELS, setting the bounds + /// property will set the size of the WebView in raw screen pixels. Changing + /// the rasterization scale in this mode won't change the raw pixel size of + /// the WebView and will only change the rasterization scale. + /// + /// When the mode is in COREWEBVIEW2_BOUNDS_MODE_USE_RASTERIZATION_SCALE, setting the + /// bounds property will change the logical size of the WebView which can be + /// described by the following equation: + /// ```text + /// Logical size * rasterization scale = Raw Pixel size + /// ``` + /// In this case, changing the rasterization scale will keep the logical size + /// the same and change the raw pixel size. + /// + /// \snippet ViewComponent.cpp BoundsMode + @(" propget") + HRESULT get_BoundsMode( + @("out, retval") COREWEBVIEW2_BOUNDS_MODE* boundsMode); + /// Set the BoundsMode property. + @(" propput") + HRESULT put_BoundsMode(in COREWEBVIEW2_BOUNDS_MODE boundsMode); +} + +/// This is the ICoreWebView2Controller4 interface. +/// The ICoreWebView2Controller4 provides interface to enable/disable external drop. +const GUID IID_ICoreWebView2Controller4 = ICoreWebView2Controller4.iid; + +interface ICoreWebView2Controller4 : ICoreWebView2Controller3 +{ + static const GUID iid = { 0x97d418d5,0xa426,0x4e49,[ 0xa1,0x51,0xe1,0xa1,0x0f,0x32,0x7d,0x9e ] }; + /// Gets the `AllowExternalDrop` property which is used to configure the + /// capability that dragging objects from outside the bounds of webview2 and + /// dropping into webview2 is allowed or disallowed. The default value is + /// TRUE. + /// + /// \snippet SettingsComponent.cpp ToggleAllowExternalDrop + @(" propget") + HRESULT get_AllowExternalDrop(@(" out, retval ") BOOL * value); + /// Sets the `AllowExternalDrop` property which is used to configure the + /// capability that dragging objects from outside the bounds of webview2 and + /// dropping into webview2 is allowed or disallowed. + /// + /// \snippet SettingsComponent.cpp ToggleAllowExternalDrop + @(" propput") + HRESULT put_AllowExternalDrop(in BOOL value); +} + +/// This interface is an extension of the ICoreWebView2Controller interface to +/// support visual hosting. An object implementing the +/// ICoreWebView2CompositionController interface will also implement +/// ICoreWebView2Controller. Callers are expected to use +/// ICoreWebView2Controller for resizing, visibility, focus, and so on, and +/// then use ICoreWebView2CompositionController to connect to a composition +/// tree and provide input meant for the WebView. +const GUID IID_ICoreWebView2CompositionController = ICoreWebView2CompositionController.iid; + +interface ICoreWebView2CompositionController : IUnknown +{ + static const GUID iid = { 0x3df9b733,0xb9ae,0x4a15,[ 0x86,0xb4,0xeb,0x9e,0xe9,0x82,0x64,0x69 ] }; + /// The RootVisualTarget is a visual in the hosting app's visual tree. This + /// visual is where the WebView will connect its visual tree. The app uses + /// this visual to position the WebView within the app. The app still needs + /// to use the Bounds property to size the WebView. The RootVisualTarget + /// property can be an IDCompositionVisual or a + /// Windows::UI::Composition::ContainerVisual. WebView will connect its visual + /// tree to the provided visual before returning from the property setter. The + /// app needs to commit on its device setting the RootVisualTarget property. + /// The RootVisualTarget property supports being set to nullptr to disconnect + /// the WebView from the app's visual tree. + /// \snippet ViewComponent.cpp SetRootVisualTarget + /// \snippet ViewComponent.cpp BuildDCompTree + @(" propget") + HRESULT get_RootVisualTarget(@("out, retval") IUnknown * target); + /// Set the RootVisualTarget property. + @(" propput") + HRESULT put_RootVisualTarget(/+[in]+/ IUnknown target); + + /// If eventKind is COREWEBVIEW2_MOUSE_EVENT_KIND_HORIZONTAL_WHEEL or + /// COREWEBVIEW2_MOUSE_EVENT_KIND_WHEEL, then mouseData specifies the amount of + /// wheel movement. A positive value indicates that the wheel was rotated + /// forward, away from the user; a negative value indicates that the wheel was + /// rotated backward, toward the user. One wheel click is defined as + /// WHEEL_DELTA, which is 120. + /// If eventKind is COREWEBVIEW2_MOUSE_EVENT_KIND_X_BUTTON_DOUBLE_CLICK + /// COREWEBVIEW2_MOUSE_EVENT_KIND_X_BUTTON_DOWN, or + /// COREWEBVIEW2_MOUSE_EVENT_KIND_X_BUTTON_UP, then mouseData specifies which X + /// buttons were pressed or released. This value should be 1 if the first X + /// button is pressed/released and 2 if the second X button is + /// pressed/released. + /// If eventKind is COREWEBVIEW2_MOUSE_EVENT_KIND_LEAVE, then virtualKeys, + /// mouseData, and point should all be zero. + /// If eventKind is any other value, then mouseData should be zero. + /// Point is expected to be in the client coordinate space of the WebView. + /// To track mouse events that start in the WebView and can potentially move + /// outside of the WebView and host application, calling SetCapture and + /// ReleaseCapture is recommended. + /// To dismiss hover popups, it is also recommended to send + /// COREWEBVIEW2_MOUSE_EVENT_KIND_LEAVE messages. + /// \snippet ViewComponent.cpp SendMouseInput + HRESULT SendMouseInput( + in COREWEBVIEW2_MOUSE_EVENT_KIND eventKind, + in COREWEBVIEW2_MOUSE_EVENT_VIRTUAL_KEYS virtualKeys, + in UINT32 mouseData, + in POINT point); + + /// SendPointerInput accepts touch or pen pointer input of types defined in + /// COREWEBVIEW2_POINTER_EVENT_KIND. Any pointer input from the system must be + /// converted into an ICoreWebView2PointerInfo first. + HRESULT SendPointerInput( + in COREWEBVIEW2_POINTER_EVENT_KIND eventKind, + /+[in]+/ ICoreWebView2PointerInfo pointerInfo); + + /// The current cursor that WebView thinks it should be. The cursor should be + /// set in WM_SETCURSOR through \::SetCursor or set on the corresponding + /// parent/ancestor HWND of the WebView through \::SetClassLongPtr. The HCURSOR + /// can be freed so CopyCursor/DestroyCursor is recommended to keep your own + /// copy if you are doing more than immediately setting the cursor. + @(" propget") + HRESULT get_Cursor(@("out, retval") HCURSOR* cursor); + + /// The current system cursor ID reported by the underlying rendering engine + /// for WebView. For example, most of the time, when the cursor is over text, + /// this will return the int value for IDC_IBEAM. The systemCursorId is only + /// valid if the rendering engine reports a default Windows cursor resource + /// value. Navigate to + /// [LoadCursorW](/windows/win32/api/winuser/nf-winuser-loadcursorw) for more + /// details. Otherwise, if custom CSS cursors are being used, this will return + /// 0. To actually use systemCursorId in LoadCursor or LoadImage, + /// MAKEINTRESOURCE must be called on it first. + /// + /// \snippet ViewComponent.cpp SystemCursorId + @(" propget") + HRESULT get_SystemCursorId(@("out, retval") UINT32* systemCursorId); + + /// Add an event handler for the CursorChanged event. + /// The event is raised when WebView thinks the cursor should be changed. For + /// example, when the mouse cursor is currently the default cursor but is then + /// moved over text, it may try to change to the IBeam cursor. + /// + /// It is expected for the developer to send + /// COREWEBVIEW2_MOUSE_EVENT_KIND_LEAVE messages (in addition to + /// COREWEBVIEW2_MOUSE_EVENT_KIND_MOVE messages) through the SendMouseInput + /// API. This is to ensure that the mouse is actually within the WebView that + /// sends out CursorChanged events. + /// + /// \snippet ViewComponent.cpp CursorChanged + HRESULT add_CursorChanged( + /+[in]+/ ICoreWebView2CursorChangedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + /// Remove an event handler previously added with add_CursorChanged. + HRESULT remove_CursorChanged( + in EventRegistrationToken token); +} + +/// A continuation of the ICoreWebView2CompositionController interface. +const GUID IID_ICoreWebView2CompositionController2 = ICoreWebView2CompositionController2.iid; + +interface ICoreWebView2CompositionController2 : ICoreWebView2CompositionController +{ + static const GUID iid = { 0x0b6a3d24,0x49cb,0x4806,[ 0xba,0x20,0xb5,0xe0,0x73,0x4a,0x7b,0x26 ] }; + /// Returns the Automation Provider for the WebView. This object implements + /// IRawElementProviderSimple. + @(" propget") + HRESULT get_AutomationProvider(@("out, retval") IUnknown * provider); +} + +/// This interface is the continuation of the +/// ICoreWebView2CompositionController2 interface to manage drag and drop. +const GUID IID_ICoreWebView2CompositionController3 = ICoreWebView2CompositionController3.iid; + +interface ICoreWebView2CompositionController3 : ICoreWebView2CompositionController2 +{ + static const GUID iid = { 0x9570570e,0x4d76,0x4361,[ 0x9e,0xe1,0xf0,0x4d,0x0d,0xbd,0xfb,0x1e ] }; + /// This function corresponds to [IDropTarget::DragEnter](/windows/win32/api/oleidl/nf-oleidl-idroptarget-dragenter). + /// + /// This function has a dependency on AllowExternalDrop property of + /// CoreWebView2Controller and return E_FAIL to callers to indicate this + /// operation is not allowed if AllowExternalDrop property is set to false. + /// + /// The hosting application must register as an IDropTarget and implement + /// and forward DragEnter calls to this function. + /// + /// point parameter must be modified to include the WebView's offset and be in + /// the WebView's client coordinates (Similar to how SendMouseInput works). + /// + /// \snippet DropTarget.cpp DragEnter + HRESULT DragEnter( + in IDataObject* dataObject, + in DWORD keyState, + in POINT point, + @("out, retval") DWORD* effect); + + /// This function corresponds to [IDropTarget::DragLeave](/windows/win32/api/oleidl/nf-oleidl-idroptarget-dragleave). + /// + /// This function has a dependency on AllowExternalDrop property of + /// CoreWebView2Controller and return E_FAIL to callers to indicate this + /// operation is not allowed if AllowExternalDrop property is set to false. + /// + /// The hosting application must register as an IDropTarget and implement + /// and forward DragLeave calls to this function. + /// + /// \snippet DropTarget.cpp DragLeave + HRESULT DragLeave(); + + /// This function corresponds to [IDropTarget::DragOver](/windows/win32/api/oleidl/nf-oleidl-idroptarget-dragover). + /// + /// This function has a dependency on AllowExternalDrop property of + /// CoreWebView2Controller and return E_FAIL to callers to indicate this + /// operation is not allowed if AllowExternalDrop property is set to false. + /// + /// The hosting application must register as an IDropTarget and implement + /// and forward DragOver calls to this function. + /// + /// point parameter must be modified to include the WebView's offset and be in + /// the WebView's client coordinates (Similar to how SendMouseInput works). + /// + /// \snippet DropTarget.cpp DragOver + HRESULT DragOver( + in DWORD keyState, + in POINT point, + @("out, retval") DWORD* effect); + + /// This function corresponds to [IDropTarget::Drop](/windows/win32/api/oleidl/nf-oleidl-idroptarget-drop). + /// + /// This function has a dependency on AllowExternalDrop property of + /// CoreWebView2Controller and return E_FAIL to callers to indicate this + /// operation is not allowed if AllowExternalDrop property is set to false. + /// + /// The hosting application must register as an IDropTarget and implement + /// and forward Drop calls to this function. + /// + /// point parameter must be modified to include the WebView's offset and be in + /// the WebView's client coordinates (Similar to how SendMouseInput works). + /// + /// \snippet DropTarget.cpp Drop + HRESULT Drop( + in IDataObject* dataObject, + in DWORD keyState, + in POINT point, + @("out, retval") DWORD* effect); +} + +/// This interface is used to complete deferrals on event args that support +/// getting deferrals using the `GetDeferral` method. + const GUID IID_ICoreWebView2Deferral = ICoreWebView2Deferral.iid; interface ICoreWebView2Deferral : IUnknown { static const GUID iid = { 0xc10e7f7b,0xb585,0x46f0,[ 0xa6,0x23,0x8b,0xef,0xbf,0x3e,0x4e,0xe0 ] }; - extern(Windows): - /// Completes the associated deferred event. Complete should only be - /// called once for each deferral taken. + + /// Completes the associated deferred event. Complete should only be run + /// once for each deferral taken. + HRESULT Complete(); } -/// Defines properties that enable, disable, or modify WebView -/// features. Setting changes made after NavigationStarting event will not -/// apply until the next top level navigation. +/// Defines properties that enable, disable, or modify WebView features. +/// Changes to `IsGeneralAutofillEnabled` and `IsPasswordAutosaveEnabled` +/// apply immediately, while other setting changes made after `NavigationStarting` +/// event do not apply until the next top-level navigation. + const GUID IID_ICoreWebView2Settings = ICoreWebView2Settings.iid; interface ICoreWebView2Settings : IUnknown { static const GUID iid = { 0xe562e4f0,0xd7fa,0x43ac,[ 0x8d,0x71,0xc0,0x51,0x50,0x49,0x9f,0x00 ] }; - extern(Windows): - /// Controls if JavaScript execution is enabled in all future - /// navigations in the WebView. This only affects scripts in the document; - /// scripts injected with ExecuteScript will run even if script is disabled. - /// It is true by default. + + /// Controls if running JavaScript is enabled in all future navigations in + /// the WebView. This only affects scripts in the document. Scripts + /// injected with `ExecuteScript` runs even if script is disabled. + /// The default value is `TRUE`. /// /// \snippet SettingsComponent.cpp IsScriptEnabled - /+[ propget]+/ + @(" propget") HRESULT get_IsScriptEnabled( - /+[out, retval]+/ BOOL* isScriptEnabled); - /// Set the IsScriptEnabled property. - /+[ propput]+/ + @("out, retval") BOOL* isScriptEnabled); + + /// Sets the `IsScriptEnabled` property. + @(" propput") HRESULT put_IsScriptEnabled(in BOOL isScriptEnabled); - /// The IsWebMessageEnabled property is used when loading a new - /// HTML document. If set to true, communication from the host to the - /// WebView's top level HTML document is allowed via PostWebMessageAsJson, - /// PostWebMessageAsString, and window.chrome.webview's message event - /// (see PostWebMessageAsJson documentation for details). - /// Communication from the WebView's top level HTML document to the host is - /// allowed via window.chrome.webview's postMessage function and - /// add_WebMessageReceived method (see add_WebMessageReceived documentation - /// for details). - /// If set to false, then communication is disallowed. - /// PostWebMessageAsJson and PostWebMessageAsString will - /// fail with E_ACCESSDENIED and window.chrome.webview.postMessage will fail - /// by throwing an instance of an Error object. - /// It is true by default. + /// The `IsWebMessageEnabled` property is used when loading a new HTML + /// document. If set to `TRUE`, communication from the host to the top-level + /// HTML document of the WebView is allowed using `PostWebMessageAsJson`, + /// `PostWebMessageAsString`, and message event of `window.chrome.webview`. + /// For more information, navigate to PostWebMessageAsJson. Communication + /// from the top-level HTML document of the WebView to the host is allowed + /// using the postMessage function of `window.chrome.webview` and + /// `add_WebMessageReceived` method. For more information, navigate to + /// [add_WebMessageReceived](/microsoft-edge/webview2/reference/win32/icorewebview2#add_webmessagereceived). + /// If set to false, then communication is disallowed. `PostWebMessageAsJson` + /// and `PostWebMessageAsString` fails with `E_ACCESSDENIED` and + /// `window.chrome.webview.postMessage` fails by throwing an instance of an + /// `Error` object. The default value is `TRUE`. /// /// \snippet ScenarioWebMessage.cpp IsWebMessageEnabled - /+[ propget]+/ + @(" propget") HRESULT get_IsWebMessageEnabled( - /+[out, retval]+/ BOOL* isWebMessageEnabled); - /// Set the IsWebMessageEnabled property. - /+[ propput]+/ + @("out, retval") BOOL* isWebMessageEnabled); + + /// Sets the `IsWebMessageEnabled` property. + @(" propput") HRESULT put_IsWebMessageEnabled(in BOOL isWebMessageEnabled); - /// AreDefaultScriptDialogsEnabled is used when loading a new HTML document. - /// If set to false, then WebView won't render the default JavaScript dialog - /// box (Specifically those shown by the JavaScript alert, confirm, prompt - /// functions and beforeunload event). Instead, if an event handler is set via - /// add_ScriptDialogOpening, WebView will send an event that will contain all - /// of the information for the dialog and allow the host app to show its own - /// custom UI. It is true by default. - /+[ propget]+/ + /// `AreDefaultScriptDialogsEnabled` is used when loading a new HTML + /// document. If set to `FALSE`, WebView2 does not render the default JavaScript + /// dialog box (Specifically those displayed by the JavaScript alert, + /// confirm, prompt functions and `beforeunload` event). Instead, if an + /// event handler is set using `add_ScriptDialogOpening`, WebView sends an + /// event that contains all of the information for the dialog and allow the + /// host app to show a custom UI. + /// The default value is `TRUE`. + @(" propget") HRESULT get_AreDefaultScriptDialogsEnabled( - /+[out, retval]+/ BOOL* areDefaultScriptDialogsEnabled); - /// Set the AreDefaultScriptDialogsEnabled property. - /+[ propput]+/ + @("out, retval") BOOL* areDefaultScriptDialogsEnabled); + + /// Sets the `AreDefaultScriptDialogsEnabled` property. + @(" propput") HRESULT put_AreDefaultScriptDialogsEnabled( in BOOL areDefaultScriptDialogsEnabled); - /// IsStatusBarEnabled controls whether the status bar will be displayed. The - /// status bar is usually displayed in the lower left of the WebView and shows - /// things such as the URI of a link when the user hovers over it and other - /// information. It is true by default. - /+[ propget]+/ - HRESULT get_IsStatusBarEnabled(/+[out, retval]+/ BOOL* isStatusBarEnabled); - /// Set the IsStatusBarEnabled property. - /+[ propput]+/ + /// `IsStatusBarEnabled` controls whether the status bar is displayed. The + /// status bar is usually displayed in the lower left of the WebView and + /// shows things such as the URI of a link when the user hovers over it and + /// other information. + /// The default value is `TRUE`. + /// The status bar UI can be altered by web content and should not be considered secure. + @(" propget") + HRESULT get_IsStatusBarEnabled(@("out, retval") BOOL* isStatusBarEnabled); + + /// Sets the `IsStatusBarEnabled` property. + @(" propput") HRESULT put_IsStatusBarEnabled(in BOOL isStatusBarEnabled); - /// AreDevToolsEnabled controls whether the user is able to use the context + /// `AreDevToolsEnabled` controls whether the user is able to use the context /// menu or keyboard shortcuts to open the DevTools window. - /// It is true by default. - /+[ propget]+/ - HRESULT get_AreDevToolsEnabled(/+[out, retval]+/ BOOL* areDevToolsEnabled); - /// Set the AreDevToolsEnabled property. - /+[ propput]+/ + /// The default value is `TRUE`. + @(" propget") + HRESULT get_AreDevToolsEnabled(@("out, retval") BOOL* areDevToolsEnabled); + + /// Sets the `AreDevToolsEnabled` property. + @(" propput") HRESULT put_AreDevToolsEnabled(in BOOL areDevToolsEnabled); - /// The AreDefaultContextMenusEnabled property is used to prevent - /// default context menus from being shown to user in WebView. - /// It is true by default. + /// The `AreDefaultContextMenusEnabled` property is used to prevent default + /// context menus from being shown to user in WebView. + /// The default value is `TRUE`. /// /// \snippet SettingsComponent.cpp DisableContextMenu - /+[ propget]+/ - HRESULT get_AreDefaultContextMenusEnabled(/+[out, retval]+/ BOOL* enabled); - /// Set the AreDefaultContextMenusEnabled property. - /+[ propput]+/ + @(" propget") + HRESULT get_AreDefaultContextMenusEnabled(@("out, retval") BOOL* enabled); + + /// Sets the `AreDefaultContextMenusEnabled` property. + @(" propput") HRESULT put_AreDefaultContextMenusEnabled(in BOOL enabled); - /// The AreHostObjectsAllowed property is used to control whether - /// host objects are accessible from the page in WebView. - /// It is true by default. + /// The `AreHostObjectsAllowed` property is used to control whether host + /// objects are accessible from the page in WebView. + /// The default value is `TRUE`. /// /// \snippet SettingsComponent.cpp HostObjectsAccess - /+[ propget]+/ - HRESULT get_AreHostObjectsAllowed(/+[out, retval]+/ BOOL* allowed); - /// Set the AreHostObjectsAllowed property. - /+[ propput]+/ + @(" propget") + HRESULT get_AreHostObjectsAllowed(@("out, retval") BOOL* allowed); + + /// Sets the `AreHostObjectsAllowed` property. + + @(" propput") HRESULT put_AreHostObjectsAllowed(in BOOL allowed); - /// The IsZoomControlEnabled property is used to prevent the user from - /// impacting the zoom of the WebView. It is true by default. - /// When disabled, user will not be able to zoom using ctrl+/- or - /// ctrl+mouse wheel, but the zoom can be set via ZoomFactor API. + /// The `IsZoomControlEnabled` property is used to prevent the user from + /// impacting the zoom of the WebView. When disabled, the user is not able + /// to zoom using Ctrl++, Ctrl+-, or Ctrl+mouse wheel, but the zoom + /// is set using `ZoomFactor` API. The default value is `TRUE`. /// /// \snippet SettingsComponent.cpp DisableZoomControl - /+[ propget]+/ - HRESULT get_IsZoomControlEnabled(/+[out, retval]+/ BOOL* enabled); - /// Set the IsZoomControlEnabled property. - /+[ propput]+/ + + @(" propget") + HRESULT get_IsZoomControlEnabled(@("out, retval") BOOL* enabled); + + /// Sets the `IsZoomControlEnabled` property. + + @(" propput") HRESULT put_IsZoomControlEnabled(in BOOL enabled); - /// The IsBuiltInErrorPageEnabled property is used to disable built in error - /// page for navigation failure and render process failure. It is true by - /// default. - /// When disabled, blank page will be shown when related error happens. + /// The `IsBuiltInErrorPageEnabled` property is used to disable built in + /// error page for navigation failure and render process failure. When + /// disabled, a blank page is displayed when the related error happens. + /// The default value is `TRUE`. /// /// \snippet SettingsComponent.cpp BuiltInErrorPageEnabled - /+[ propget]+/ - HRESULT get_IsBuiltInErrorPageEnabled(/+[out, retval]+/ BOOL* enabled); - /// Set the IsBuiltInErrorPageEnabled property. - /+[ propput]+/ + @(" propget") + HRESULT get_IsBuiltInErrorPageEnabled(@("out, retval") BOOL* enabled); + + /// Sets the `IsBuiltInErrorPageEnabled` property. + @(" propput") HRESULT put_IsBuiltInErrorPageEnabled(in BOOL enabled); } -/// Event args for the ProcessFailed event. +/// A continuation of the ICoreWebView2Settings interface that manages the user agent. + +const GUID IID_ICoreWebView2Settings2 = ICoreWebView2Settings2.iid; + +interface ICoreWebView2Settings2 : ICoreWebView2Settings +{ + static const GUID iid = { 0xee9a0f68,0xf46c,0x4e32,[ 0xac,0x23,0xef,0x8c,0xac,0x22,0x4d,0x2a ] }; + /// Returns the User Agent. The default value is the default User Agent of the + /// Microsoft Edge browser. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + /// + /// \snippet SettingsComponent.cpp UserAgent + @(" propget") + HRESULT get_UserAgent(@("out, retval") LPWSTR* userAgent); + /// Sets the `UserAgent` property. This property may be overridden if + /// the User-Agent header is set in a request. If the parameter is empty + /// the User Agent will not be updated and the current User Agent will remain. + /// Returns `HRESULT_FROM_WIN32(ERROR_INVALID_STATE)` if the owning WebView is + /// closed. + @(" propput") + HRESULT put_UserAgent(in LPCWSTR userAgent); +} + +/// A continuation of the ICoreWebView2Settings interface that manages whether +/// browser accelerator keys are enabled. +const GUID IID_ICoreWebView2Settings3 = ICoreWebView2Settings3.iid; + +interface ICoreWebView2Settings3 : ICoreWebView2Settings2 +{ + static const GUID iid = { 0xfdb5ab74,0xaf33,0x4854,[ 0x84,0xf0,0x0a,0x63,0x1d,0xeb,0x5e,0xba ] }; + /// When this setting is set to FALSE, it disables all accelerator keys that + /// access features specific to a web browser, including but not limited to: + /// - Ctrl-F and F3 for Find on Page + /// - Ctrl-P for Print + /// - Ctrl-R and F5 for Reload + /// - Ctrl-Plus and Ctrl-Minus for zooming + /// - Ctrl-Shift-C and F12 for DevTools + /// - Special keys for browser functions, such as Back, Forward, and Search + /// + /// It does not disable accelerator keys related to movement and text editing, + /// such as: + /// - Home, End, Page Up, and Page Down + /// - Ctrl-X, Ctrl-C, Ctrl-V + /// - Ctrl-A for Select All + /// - Ctrl-Z for Undo + /// + /// Those accelerator keys will always be enabled unless they are handled in + /// the `AcceleratorKeyPressed` event. + /// + /// This setting has no effect on the `AcceleratorKeyPressed` event. The event + /// will be fired for all accelerator keys, whether they are enabled or not. + /// + /// The default value for `AreBrowserAcceleratorKeysEnabled` is TRUE. + /// + /// \snippet SettingsComponent.cpp AreBrowserAcceleratorKeysEnabled + @(" propget") + HRESULT get_AreBrowserAcceleratorKeysEnabled( + @("out, retval") BOOL* areBrowserAcceleratorKeysEnabled); + + /// Sets the `AreBrowserAcceleratorKeysEnabled` property. + @(" propput") + HRESULT put_AreBrowserAcceleratorKeysEnabled( + in BOOL areBrowserAcceleratorKeysEnabled); +} + +/// A continuation of the ICoreWebView2Settings interface to manage autofill. +const GUID IID_ICoreWebView2Settings4 = ICoreWebView2Settings4.iid; + +interface ICoreWebView2Settings4 : ICoreWebView2Settings3 +{ + static const GUID iid = { 0xcb56846c,0x4168,0x4d53,[ 0xb0,0x4f,0x03,0xb6,0xd6,0x79,0x6f,0xf2 ] }; + /// IsPasswordAutosaveEnabled controls whether autosave for password + /// information is enabled. The IsPasswordAutosaveEnabled property behaves + /// independently of the IsGeneralAutofillEnabled property. When IsPasswordAutosaveEnabled is + /// false, no new password data is saved and no Save/Update Password prompts are displayed. + /// However, if there was password data already saved before disabling this setting, + /// then that password information is auto-populated, suggestions are shown and clicking on + /// one will populate the fields. + /// When IsPasswordAutosaveEnabled is true, password information is auto-populated, + /// suggestions are shown and clicking on one will populate the fields, new data + /// is saved, and a Save/Update Password prompt is displayed. + /// It will take effect immediately after setting. + /// The default value is `FALSE`. + /// This property has the same value as + /// `CoreWebView2Profile.IsPasswordAutosaveEnabled`, and changing one will + /// change the other. All `CoreWebView2`s with the same `CoreWebView2Profile` + /// will share the same value for this property, so for the `CoreWebView2`s + /// with the same profile, their + /// `CoreWebView2Settings.IsPasswordAutosaveEnabled` and + /// `CoreWebView2Profile.IsPasswordAutosaveEnabled` will always have the same + /// value. + /// + /// \snippet SettingsComponent.cpp PasswordAutosaveEnabled + @(" propget") + HRESULT get_IsPasswordAutosaveEnabled(@("out, retval") BOOL* value); + + /// Set the IsPasswordAutosaveEnabled property. + @(" propput") + HRESULT put_IsPasswordAutosaveEnabled(in BOOL value); + + /// IsGeneralAutofillEnabled controls whether autofill for information + /// like names, street and email addresses, phone numbers, and arbitrary input + /// is enabled. This excludes password and credit card information. When + /// IsGeneralAutofillEnabled is false, no suggestions appear, and no new information + /// is saved. When IsGeneralAutofillEnabled is true, information is saved, suggestions + /// appear and clicking on one will populate the form fields. + /// It will take effect immediately after setting. + /// The default value is `TRUE`. + /// This property has the same value as + /// `CoreWebView2Profile.IsGeneralAutofillEnabled`, and changing one will + /// change the other. All `CoreWebView2`s with the same `CoreWebView2Profile` + /// will share the same value for this property, so for the `CoreWebView2`s + /// with the same profile, their + /// `CoreWebView2Settings.IsGeneralAutofillEnabled` and + /// `CoreWebView2Profile.IsGeneralAutofillEnabled` will always have the same + /// value. + /// + /// \snippet SettingsComponent.cpp GeneralAutofillEnabled + @(" propget") + HRESULT get_IsGeneralAutofillEnabled(@("out, retval") BOOL* value); + + /// Set the IsGeneralAutofillEnabled property. + @(" propput") + HRESULT put_IsGeneralAutofillEnabled(in BOOL value); +} + +/// A continuation of the ICoreWebView2Settings interface to manage pinch zoom. +const GUID IID_ICoreWebView2Settings5 = ICoreWebView2Settings5.iid; + +interface ICoreWebView2Settings5 : ICoreWebView2Settings4 +{ + static const GUID iid = { 0x183e7052,0x1d03,0x43a0,[ 0xab,0x99,0x98,0xe0,0x43,0xb6,0x6b,0x39 ] }; + /// Pinch-zoom, referred to as "Page Scale" zoom, is performed as a post-rendering step, + /// it changes the page scale factor property and scales the surface the web page is + /// rendered onto when user performs a pinch zooming action. It does not change the layout + /// but rather changes the viewport and clips the web content, the content outside of the + /// viewport isn't visible onscreen and users can't reach this content using mouse. + /// + /// The `IsPinchZoomEnabled` property enables or disables the ability of + /// the end user to use a pinching motion on touch input enabled devices + /// to scale the web content in the WebView2. It defaults to `TRUE`. + /// When set to `FALSE`, the end user cannot pinch zoom after the next navigation. + /// Disabling/Enabling `IsPinchZoomEnabled` only affects the end user's ability to use + /// pinch motions and does not change the page scale factor. + /// This API only affects the Page Scale zoom and has no effect on the + /// existing browser zoom properties (`IsZoomControlEnabled` and `ZoomFactor`) + /// or other end user mechanisms for zooming. + /// + /// \snippet SettingsComponent.cpp TogglePinchZoomEnabled + @(" propget") + HRESULT get_IsPinchZoomEnabled(@("out, retval") BOOL* enabled); + /// Set the `IsPinchZoomEnabled` property + @(" propput") + HRESULT put_IsPinchZoomEnabled(in BOOL enabled); +} + +/// A continuation of the ICoreWebView2Settings interface to manage swipe navigation. +const GUID IID_ICoreWebView2Settings6 = ICoreWebView2Settings6.iid; + +interface ICoreWebView2Settings6 : ICoreWebView2Settings5 +{ + static const GUID iid = { 0x11cb3acd,0x9bc8,0x43b8,[ 0x83,0xbf,0xf4,0x07,0x53,0x71,0x4f,0x87 ] }; + /// The `IsSwipeNavigationEnabled` property enables or disables the ability of the + /// end user to use swiping gesture on touch input enabled devices to + /// navigate in WebView2. It defaults to `TRUE`. + /// + /// When this property is `TRUE`, then all configured navigation gestures are enabled: + /// 1. Swiping left and right to navigate forward and backward is always configured. + /// 2. Swiping down to refresh is off by default and not exposed via our API currently, + /// it requires the "--pull-to-refresh" option to be included in the additional browser + /// arguments to be configured. (See put_AdditionalBrowserArguments.) + /// + /// When set to `FALSE`, the end user cannot swipe to navigate or pull to refresh. + /// This API only affects the overscrolling navigation functionality and has no + /// effect on the scrolling interaction used to explore the web content shown + /// in WebView2. + /// + /// Disabling/Enabling IsSwipeNavigationEnabled takes effect after the + /// next navigation. + /// + /// \snippet SettingsComponent.cpp ToggleSwipeNavigationEnabled + @(" propget") + HRESULT get_IsSwipeNavigationEnabled(@("out, retval") BOOL* enabled); + /// Set the `IsSwipeNavigationEnabled` property + @(" propput") + HRESULT put_IsSwipeNavigationEnabled(in BOOL enabled); +} + +/// A continuation of the ICoreWebView2Settings interface to hide Pdf toolbar items. +const GUID IID_ICoreWebView2Settings7 = ICoreWebView2Settings7.iid; + +interface ICoreWebView2Settings7 : ICoreWebView2Settings6 +{ + static const GUID iid = { 0x488dc902,0x35ef,0x42d2,[ 0xbc,0x7d,0x94,0xb6,0x5c,0x4b,0xc4,0x9c ] }; + /// `HiddenPdfToolbarItems` is used to customize the PDF toolbar items. By default, it is COREWEBVIEW2_PDF_TOOLBAR_ITEMS_NONE and so it displays all of the items. + /// Changes to this property apply to all CoreWebView2s in the same environment and using the same profile. + /// Changes to this setting apply only after the next navigation. + /// \snippet SettingsComponent.cpp ToggleHidePdfToolbarItems + @(" propget") + HRESULT get_HiddenPdfToolbarItems(@("out, retval") COREWEBVIEW2_PDF_TOOLBAR_ITEMS* hidden_pdf_toolbar_items); + + /// Set the `HiddenPdfToolbarItems` property. + @(" propput") + HRESULT put_HiddenPdfToolbarItems(in COREWEBVIEW2_PDF_TOOLBAR_ITEMS hidden_pdf_toolbar_items); +} + +/// A continuation of the ICoreWebView2Settings interface to manage smartscreen. +const GUID IID_ICoreWebView2Settings8 = ICoreWebView2Settings8.iid; + +interface ICoreWebView2Settings8 : ICoreWebView2Settings7 +{ + static const GUID iid = { 0x9e6b0e8f,0x86ad,0x4e81,[ 0x81,0x47,0xa9,0xb5,0xed,0xb6,0x86,0x50 ] }; + /// SmartScreen helps webviews identify reported phishing and malware websites + /// and also helps users make informed decisions about downloads. + /// `IsReputationCheckingRequired` is used to control whether SmartScreen + /// enabled or not. SmartScreen is enabled or disabled for all CoreWebView2s + /// using the same user data folder. If + /// CoreWebView2Setting.IsReputationCheckingRequired is true for any + /// CoreWebView2 using the same user data folder, then SmartScreen is enabled. + /// If CoreWebView2Setting.IsReputationCheckingRequired is false for all + /// CoreWebView2 using the same user data folder, then SmartScreen is + /// disabled. When it is changed, the change will be applied to all WebViews + /// using the same user data folder on the next navigation or download. The + /// default value for `IsReputationCheckingRequired` is true. If the newly + /// created CoreWebview2 does not set SmartScreen to false, when + /// navigating(Such as Navigate(), LoadDataUrl(), ExecuteScript(), etc.), the + /// default value will be applied to all CoreWebview2 using the same user data + /// folder. + /// SmartScreen of WebView2 apps can be controlled by Windows system setting + /// "SmartScreen for Microsoft Edge", specially, for WebView2 in Windows + /// Store apps, SmartScreen is controlled by another Windows system setting + /// "SmartScreen for Microsoft Store apps". When the Windows setting is enabled, the + /// SmartScreen operates under the control of the `IsReputationCheckingRequired`. + /// When the Windows setting is disabled, the SmartScreen will be disabled + /// regardless of the `IsReputationCheckingRequired` value set in WebView2 apps. + /// In other words, under this circumstance the value of + /// `IsReputationCheckingRequired` will be saved but overridden by system setting. + /// Upon re-enabling the Windows setting, the CoreWebview2 will reference the + /// `IsReputationCheckingRequired` to determine the SmartScreen status. + /// \snippet SettingsComponent.cpp ToggleSmartScreen + @(" propget") + HRESULT get_IsReputationCheckingRequired(@("out, retval") BOOL* value); + + /// Sets whether this webview2 instance needs SmartScreen protection for its content. + /// Set the `IsReputationCheckingRequired` property. + @(" propput") + HRESULT put_IsReputationCheckingRequired(in BOOL value); +} + +/// Event args for the `ProcessFailed` event. const GUID IID_ICoreWebView2ProcessFailedEventArgs = ICoreWebView2ProcessFailedEventArgs.iid; interface ICoreWebView2ProcessFailedEventArgs : IUnknown { static const GUID iid = { 0x8155a9a4,0x1474,0x4a86,[ 0x8c,0xae,0x15,0x1b,0x0f,0xa6,0xb8,0xca ] }; - extern(Windows): - /// The kind of process failure that has occurred. - /+[ propget]+/ + + /// The kind of process failure that has occurred. This is a combination of + /// process kind (for example, browser, renderer, gpu) and failure (exit, + /// unresponsiveness). Renderer processes are further divided in _main frame_ + /// renderer (`RenderProcessExited`, `RenderProcessUnresponsive`) and + /// _subframe_ renderer (`FrameRenderProcessExited`). To learn about the + /// conditions under which each failure kind occurs, see + /// `COREWEBVIEW2_PROCESS_FAILED_KIND`. + @(" propget") HRESULT get_ProcessFailedKind( - /+[out, retval]+/ COREWEBVIEW2_PROCESS_FAILED_KIND* processFailedKind); + @("out, retval") COREWEBVIEW2_PROCESS_FAILED_KIND* processFailedKind); } -/// The caller implements this interface to receive ProcessFailed events. +/// Receives `ProcessFailed` events. const GUID IID_ICoreWebView2ProcessFailedEventHandler = ICoreWebView2ProcessFailedEventHandler.iid; interface ICoreWebView2ProcessFailedEventHandler : IUnknown { static const GUID iid = { 0x79e0aea4,0x990b,0x42d9,[ 0xaa,0x1d,0x0f,0xcc,0x2e,0x5b,0xc7,0xf1 ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2ProcessFailedEventArgs args); } -/// The caller implements this interface to receive ZoomFactorChanged -/// events. Use the ICoreWebView2Controller.ZoomFactor property to get the -/// modified zoom factor. +/// Implements the interface to receive `ZoomFactorChanged` events. Use the +/// `ICoreWebView2Controller.ZoomFactor` property to get the modified zoom +/// factor. + const GUID IID_ICoreWebView2ZoomFactorChangedEventHandler = ICoreWebView2ZoomFactorChangedEventHandler.iid; interface ICoreWebView2ZoomFactorChangedEventHandler : IUnknown { static const GUID iid = { 0xb52d71d6,0xc4df,0x4543,[ 0xa9,0x0c,0x64,0xa3,0xe6,0x0f,0x38,0xcb ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. There are no event args and the args - /// parameter will be null. + + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke(/+[in]+/ ICoreWebView2Controller sender, /+[in]+/ IUnknown args); } -/// Iterator for a collection of HTTP headers. See ICoreWebView2HttpRequestHeaders -/// and ICoreWebView2HttpResponseHeaders. +/// Iterator for a collection of HTTP headers. For more information, navigate +/// to ICoreWebView2HttpRequestHeaders and ICoreWebView2HttpResponseHeaders. /// /// \snippet ScenarioWebViewEventMonitor.cpp HttpRequestHeaderIterator const GUID IID_ICoreWebView2HttpHeadersCollectionIterator = ICoreWebView2HttpHeadersCollectionIterator.iid; @@ -24116,933 +27250,2419 @@ const GUID IID_ICoreWebView2HttpHeadersCollectionIterator = ICoreWebView2HttpHea interface ICoreWebView2HttpHeadersCollectionIterator : IUnknown { static const GUID iid = { 0x0702fc30,0xf43b,0x47bb,[ 0xab,0x52,0xa4,0x2c,0xb5,0x52,0xad,0x9f ] }; - extern(Windows): - /// Get the name and value of the current HTTP header of the iterator. This - /// method will fail if the last call to MoveNext set hasNext to FALSE. - HRESULT GetCurrentHeader(/+[out]+/ LPWSTR* name, - /+[out]+/ LPWSTR* value); - /// True when the iterator hasn't run out of headers. If the collection over - /// which the iterator is iterating is empty or if the iterator has gone past - /// the end of the collection then this is false. - /+[ propget]+/ - HRESULT get_HasCurrentHeader(/+[out, retval]+/ BOOL* hasCurrent); + /// Get the name and value of the current HTTP header of the iterator. If + /// the previous `MoveNext` operation set the `hasNext` parameter to `FALSE`, + /// this method fails. + /// + /// The caller must free the returned strings with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). - /// Move the iterator to the next HTTP header in the collection. The hasNext - /// parameter will be set to FALSE if there are no more HTTP headers. After - /// this occurs the GetCurrentHeader method will fail if called. - HRESULT MoveNext(/+[out, retval]+/ BOOL* hasNext); + HRESULT GetCurrentHeader(@("out") LPWSTR* name, + @("out") LPWSTR* value); + + /// `TRUE` when the iterator has not run out of headers. If the collection + /// over which the iterator is iterating is empty or if the iterator has gone + /// past the end of the collection then this is `FALSE`. + + @(" propget") + HRESULT get_HasCurrentHeader(@("out, retval") BOOL* hasCurrent); + + /// Move the iterator to the next HTTP header in the collection. + /// + /// \> [!NOTE]\n \> If no more HTTP headers exist, the `hasNext` parameter is set to + /// `FALSE`. After this occurs the `GetCurrentHeader` method fails. + + HRESULT MoveNext(@("out, retval") BOOL* hasNext); } -/// HTTP request headers. Used to inspect the HTTP request on -/// WebResourceRequested event and NavigationStarting event. -/// Note, you can modify the HTTP request headers from a WebResourceRequested event, -/// but not from a NavigationStarting event. +/// HTTP request headers. Used to inspect the HTTP request on +/// `WebResourceRequested` event and `NavigationStarting` event. +/// +/// \> [!NOTE]\n\> It is possible to modify the HTTP request from a `WebResourceRequested` +/// event, but not from a `NavigationStarting` event. const GUID IID_ICoreWebView2HttpRequestHeaders = ICoreWebView2HttpRequestHeaders.iid; interface ICoreWebView2HttpRequestHeaders : IUnknown { static const GUID iid = { 0xe86cac0e,0x5523,0x465c,[ 0xb5,0x36,0x8f,0xb9,0xfc,0x8c,0x8c,0x60 ] }; - extern(Windows): + /// Gets the header value matching the name. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + HRESULT GetHeader(in LPCWSTR name, - /+[out, retval]+/ LPWSTR* value); - /// Gets the header value matching the name via an iterator. + @("out, retval") LPWSTR* value); + + /// Gets the header value matching the name using an iterator. + HRESULT GetHeaders(in LPCWSTR name, - /+[out, retval]+/ ICoreWebView2HttpHeadersCollectionIterator * iterator); - /// Checks whether the headers contain an entry matching the header name. + @("out, retval") ICoreWebView2HttpHeadersCollectionIterator * iterator); + + /// Verifies that the headers contain an entry that matches the header name. + HRESULT Contains(in LPCWSTR name, - /+[out, retval]+/ BOOL* contains); + @("out, retval") BOOL* contains); + /// Adds or updates header that matches the name. + HRESULT SetHeader(in LPCWSTR name, in LPCWSTR value); + /// Removes header that matches the name. + HRESULT RemoveHeader(in LPCWSTR name); + /// Gets an iterator over the collection of request headers. + HRESULT GetIterator( - /+[out, retval]+/ ICoreWebView2HttpHeadersCollectionIterator * iterator); + @("out, retval") ICoreWebView2HttpHeadersCollectionIterator * iterator); } -/// HTTP response headers. Used to construct a WebResourceResponse for the -/// WebResourceRequested event. +/// HTTP response headers. Used to construct a `WebResourceResponse` for the +/// `WebResourceRequested` event. const GUID IID_ICoreWebView2HttpResponseHeaders = ICoreWebView2HttpResponseHeaders.iid; interface ICoreWebView2HttpResponseHeaders : IUnknown { static const GUID iid = { 0x03c5ff5a,0x9b45,0x4a88,[ 0x88,0x1c,0x89,0xa9,0xf3,0x28,0x61,0x9c ] }; - extern(Windows): + /// Appends header line with name and value. + HRESULT AppendHeader(in LPCWSTR name, in LPCWSTR value); - /// Checks whether the headers contain entries matching the header name. + + /// Verifies that the headers contain entries that match the header name. + HRESULT Contains(in LPCWSTR name, - /+[out, retval]+/ BOOL* contains); + @("out, retval") BOOL* contains); + /// Gets the first header value in the collection matching the name. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + HRESULT GetHeader(in LPCWSTR name, - /+[out, retval]+/ LPWSTR* value); + @("out, retval") LPWSTR* value); + /// Gets the header values matching the name. + HRESULT GetHeaders(in LPCWSTR name, - /+[out, retval]+/ ICoreWebView2HttpHeadersCollectionIterator * iterator); + @("out, retval") ICoreWebView2HttpHeadersCollectionIterator * iterator); + /// Gets an iterator over the collection of entire response headers. + HRESULT GetIterator( - /+[out, retval]+/ ICoreWebView2HttpHeadersCollectionIterator * iterator); + @("out, retval") ICoreWebView2HttpHeadersCollectionIterator * iterator); } -/// An HTTP request used with the WebResourceRequested event. +/// An HTTP request used with the `WebResourceRequested` event. const GUID IID_ICoreWebView2WebResourceRequest = ICoreWebView2WebResourceRequest.iid; interface ICoreWebView2WebResourceRequest : IUnknown { static const GUID iid = { 0x97055cd4,0x512c,0x4264,[ 0x8b,0x5f,0xe3,0xf4,0x46,0xce,0xa6,0xa5 ] }; - extern(Windows): + /// The request URI. - /+[ propget]+/ - HRESULT get_Uri(/+[out, retval]+/ LPWSTR* uri); - /// Set the Uri property. - /+[ propput]+/ + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + + @(" propget") + HRESULT get_Uri(@("out, retval") LPWSTR* uri); + + /// Sets the `Uri` property. + + @(" propput") HRESULT put_Uri(in LPCWSTR uri); /// The HTTP request method. - /+[ propget]+/ - HRESULT get_Method(/+[out, retval]+/ LPWSTR* method); - /// Set the Method property. - /+[ propput]+/ + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + + @(" propget") + HRESULT get_Method(@("out, retval") LPWSTR* method); + + /// Sets the `Method` property. + + @(" propput") HRESULT put_Method(in LPCWSTR method); - /// The HTTP request message body as stream. POST data would be here. - /// If a stream is set, which will override the message body, the stream must - /// have all the content data available by the time this - /// response's WebResourceRequested event deferral is completed. Stream - /// should be agile or be created from a background STA to prevent performance - /// impact to the UI thread. Null means no content data. IStream semantics - /// apply (return S_OK to Read calls until all data is exhausted). - /+[ propget]+/ - HRESULT get_Content(/+[out, retval]+/ IStream** content); - /// Set the Content property. - /+[ propput]+/ + /// The HTTP request message body as stream. POST data should be here. If a + /// stream is set, which overrides the message body, the stream must have + /// all the content data available by the time the `WebResourceRequested` + /// event deferral of this response is completed. Stream should be agile or + /// be created from a background STA to prevent performance impact to the UI + /// thread. `Null` means no content data. `IStream` semantics apply + /// (return `S_OK` to `Read` runs until all data is exhausted). + + @(" propget") + HRESULT get_Content(@("out, retval") IStream** content); + + /// Sets the `Content` property. + + @(" propput") HRESULT put_Content(in IStream* content); /// The mutable HTTP request headers - /+[ propget]+/ - HRESULT get_Headers(/+[out, retval]+/ ICoreWebView2HttpRequestHeaders * headers); + + @(" propget") + HRESULT get_Headers(@("out, retval") ICoreWebView2HttpRequestHeaders * headers); } -/// An HTTP response used with the WebResourceRequested event. +/// An HTTP response used with the `WebResourceRequested` event. const GUID IID_ICoreWebView2WebResourceResponse = ICoreWebView2WebResourceResponse.iid; interface ICoreWebView2WebResourceResponse : IUnknown { static const GUID iid = { 0xaafcc94f,0xfa27,0x48fd,[ 0x97,0xdf,0x83,0x0e,0xf7,0x5a,0xae,0xc9 ] }; - extern(Windows): - /// HTTP response content as stream. Stream must have all the - /// content data available by the time this response's WebResourceRequested - /// event deferral is completed. Stream should be agile or be created from - /// a background thread to prevent performance impact to the UI thread. - /// Null means no content data. IStream semantics - /// apply (return S_OK to Read calls until all data is exhausted). - /+[ propget]+/ - HRESULT get_Content(/+[out, retval]+/ IStream** content); - /// Set the Content property. - /+[ propput]+/ + + /// HTTP response content as stream. Stream must have all the content data + /// available by the time the `WebResourceRequested` event deferral of this + /// response is completed. Stream should be agile or be created from a + /// background thread to prevent performance impact to the UI thread. `Null` + /// means no content data. `IStream` semantics apply (return `S_OK` to + /// `Read` runs until all data is exhausted). + /// When providing the response data, you should consider relevant HTTP + /// request headers just like an HTTP server would do. For example, if the + /// request was for a video resource in a HTML video element, the request may + /// contain the [Range](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Range) + /// header to request only a part of the video that is streaming. In this + /// case, your response stream should be only the portion of the video + /// specified by the range HTTP request headers and you should set the + /// appropriate + /// [Content-Range](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Range) + /// header in the response. + + @(" propget") + HRESULT get_Content(@("out, retval") IStream** content); + + /// Sets the `Content` property. + + @(" propput") HRESULT put_Content(in IStream* content); /// Overridden HTTP response headers. - /+[ propget]+/ - HRESULT get_Headers(/+[out, retval]+/ ICoreWebView2HttpResponseHeaders * headers); + + @(" propget") + HRESULT get_Headers(@("out, retval") ICoreWebView2HttpResponseHeaders * headers); /// The HTTP response status code. - /+[ propget]+/ - HRESULT get_StatusCode(/+[out, retval]+/ int* statusCode); - /// Set the StatusCode property. - /+[ propput]+/ + + @(" propget") + HRESULT get_StatusCode(@("out, retval") int* statusCode); + + /// Sets the `StatusCode` property. + + @(" propput") HRESULT put_StatusCode(in int statusCode); /// The HTTP response reason phrase. - /+[ propget]+/ - HRESULT get_ReasonPhrase(/+[out, retval]+/ LPWSTR* reasonPhrase); - /// Set the ReasonPhrase property. - /+[ propput]+/ + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + + @(" propget") + HRESULT get_ReasonPhrase(@("out, retval") LPWSTR* reasonPhrase); + + /// Sets the `ReasonPhrase` property. + + @(" propput") HRESULT put_ReasonPhrase(in LPCWSTR reasonPhrase); } -/// Event args for the NavigationStarting event. +/// Event args for the `NavigationStarting` event. const GUID IID_ICoreWebView2NavigationStartingEventArgs = ICoreWebView2NavigationStartingEventArgs.iid; interface ICoreWebView2NavigationStartingEventArgs : IUnknown { static const GUID iid = { 0x5b495469,0xe119,0x438a,[ 0x9b,0x18,0x76,0x04,0xf2,0x5f,0x2e,0x49 ] }; - extern(Windows): + /// The uri of the requested navigation. - /+[ propget]+/ - HRESULT get_Uri(/+[out, retval]+/ LPWSTR* uri); + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). - /// True when the navigation was initiated through a user gesture as opposed - /// to programmatic navigation. - /+[ propget]+/ - HRESULT get_IsUserInitiated(/+[out, retval]+/ BOOL* isUserInitiated); + @(" propget") + HRESULT get_Uri(@("out, retval") LPWSTR* uri); - /// True when the navigation is redirected. - /+[ propget]+/ - HRESULT get_IsRedirected(/+[out, retval]+/ BOOL* isRedirected); + /// `TRUE` when the navigation was initiated through a user gesture as + /// opposed to programmatic navigation by page script. Navigations initiated + /// via WebView2 APIs are considered as user initiated. + + @(" propget") + HRESULT get_IsUserInitiated(@("out, retval") BOOL* isUserInitiated); + + /// `TRUE` when the navigation is redirected. + + @(" propget") + HRESULT get_IsRedirected(@("out, retval") BOOL* isRedirected); /// The HTTP request headers for the navigation. - /// Note, you cannot modify the HTTP request headers in a NavigationStarting event. - /+[ propget]+/ - HRESULT get_RequestHeaders(/+[out, retval]+/ ICoreWebView2HttpRequestHeaders * requestHeaders); + /// + /// \> [!NOTE]\n\> You are not able to modify the HTTP request headers in a + /// `NavigationStarting` event. - /// The host may set this flag to cancel the navigation. - /// If set, it will be as if the navigation never happened and the current - /// page's content will be intact. For performance reasons, GET HTTP requests - /// may happen, while the host is responding. This means cookies can be set - /// and used part of a request for the navigation. - /// Cancellation for navigation to about:blank or frame navigation to srcdoc - /// is not supported. Such attempts will be ignored. - /+[ propget]+/ - HRESULT get_Cancel(/+[out, retval]+/ BOOL* cancel); - /// Set the Cancel property. - /+[ propput]+/ + @(" propget") + HRESULT get_RequestHeaders(@("out, retval") ICoreWebView2HttpRequestHeaders * requestHeaders); + + /// The host may set this flag to cancel the navigation. If set, the + /// navigation is not longer present and the content of the current page is + /// intact. For performance reasons, `GET` HTTP requests may happen, while + /// the host is responding. You may set cookies and use part of a request + /// for the navigation. Cancellation for navigation to `about:blank` or + /// frame navigation to `srcdoc` is not supported. Such attempts are + /// ignored. A cancelled navigation will fire a `NavigationCompleted` event + /// with a `WebErrorStatus` of + /// `COREWEBVIEW2_WEB_ERROR_STATUS_OPERATION_CANCELED`. + + @(" propget") + HRESULT get_Cancel(@("out, retval") BOOL* cancel); + + /// Sets the `Cancel` property. + + @(" propput") HRESULT put_Cancel(in BOOL cancel); /// The ID of the navigation. - /+[ propget]+/ - HRESULT get_NavigationId(/+[out, retval]+/ UINT64* navigationId); + + @(" propget") + HRESULT get_NavigationId(@("out, retval") UINT64* navigationId); } -/// The caller implements this interface to receive the NavigationStarting -/// event. +/// The AdditionalAllowedFrameAncestors API that enable developers to provide additional allowed frame ancestors. +const GUID IID_ICoreWebView2NavigationStartingEventArgs2 = ICoreWebView2NavigationStartingEventArgs2.iid; + +interface ICoreWebView2NavigationStartingEventArgs2 : ICoreWebView2NavigationStartingEventArgs +{ + static const GUID iid = { 0x9086BE93,0x91AA,0x472D,[ 0xA7,0xE0,0x57,0x9F,0x2B,0xA0,0x06,0xAD ] }; + + /// Get additional allowed frame ancestors set by the host app. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_AdditionalAllowedFrameAncestors(@("out, retval") LPWSTR* value); + + /// The app may set this property to allow a frame to be embedded by additional ancestors besides what is allowed by + /// http header [X-Frame-Options](https://developer.mozilla.org/docs/Web/HTTP/Headers/X-Frame-Options) + /// and [Content-Security-Policy frame-ancestors directive](https://developer.mozilla.org/docs/Web/HTTP/Headers/Content-Security-Policy/frame-ancestors). + /// If set, a frame ancestor is allowed if it is allowed by the additional allowed frame + /// ancestors or original http header from the site. + /// Whether an ancestor is allowed by the additional allowed frame ancestors is done the same way as if the site provided + /// it as the source list of the Content-Security-Policy frame-ancestors directive. + /// For example, if `https://example.com` and `https://www.example.com` are the origins of the top + /// page and intermediate iframes that embed a nested site-embedding iframe, and you fully trust + /// those origins, you should set this property to `https://example.com https://www.example.com`. + /// This property gives the app the ability to use iframe to embed sites that otherwise + /// could not be embedded in an iframe in trusted app pages. + /// This could potentially subject the embedded sites to [Clickjacking](https://en.wikipedia.org/wiki/Clickjacking) + /// attack from the code running in the embedding web page. Therefore, you should only + /// set this property with origins of fully trusted embedding page and any intermediate iframes. + /// Whenever possible, you should use the list of specific origins of the top and intermediate + /// frames instead of wildcard characters for this property. + /// This API is to provide limited support for app scenarios that used to be supported by + /// `` element in other solutions like JavaScript UWP apps and Electron. + /// You should limit the usage of this property to trusted pages, and specific navigation + /// target url, by checking the `Source` of the WebView2, and `Uri` of the event args. + /// + /// This property is ignored for top level document navigation. + /// + /// \snippet ScriptComponent.cpp AdditionalAllowedFrameAncestors_1 + /// + /// \snippet ScriptComponent.cpp AdditionalAllowedFrameAncestors_2 + @(" propput") + HRESULT put_AdditionalAllowedFrameAncestors(in LPCWSTR value); +} + +/// The NavigationKind API that enables developers to get more information about +/// navigation type. +const GUID IID_ICoreWebView2NavigationStartingEventArgs3 = ICoreWebView2NavigationStartingEventArgs3.iid; + +interface ICoreWebView2NavigationStartingEventArgs3 : ICoreWebView2NavigationStartingEventArgs2 +{ + static const GUID iid = { 0xDDFFE494,0x4942,0x4BD2,[ 0xAB,0x73,0x35,0xB8,0xFF,0x40,0xE1,0x9F ] }; + + /// Get the navigation kind of this navigation. + /// + @(" propget") + HRESULT get_NavigationKind(@("out, retval") COREWEBVIEW2_NAVIGATION_KIND* navigation_kind); +} + +/// Receives `NavigationStarting` events. const GUID IID_ICoreWebView2NavigationStartingEventHandler = ICoreWebView2NavigationStartingEventHandler.iid; interface ICoreWebView2NavigationStartingEventHandler : IUnknown { static const GUID iid = { 0x9adbe429,0xf36d,0x432b,[ 0x9d,0xdc,0xf8,0x88,0x1f,0xbd,0x76,0xe3 ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2NavigationStartingEventArgs args); } -/// Event args for the ContentLoading event. +/// Event args for the `ContentLoading` event. const GUID IID_ICoreWebView2ContentLoadingEventArgs = ICoreWebView2ContentLoadingEventArgs.iid; interface ICoreWebView2ContentLoadingEventArgs : IUnknown { static const GUID iid = { 0x0c8a1275,0x9b6b,0x4901,[ 0x87,0xad,0x70,0xdf,0x25,0xba,0xfa,0x6e ] }; - extern(Windows): - /// True if the loaded content is an error page. - /+[ propget]+/ - HRESULT get_IsErrorPage(/+[out, retval]+/ BOOL* isErrorPage); + + /// `TRUE` if the loaded content is an error page. + + @(" propget") + HRESULT get_IsErrorPage(@("out, retval") BOOL* isErrorPage); /// The ID of the navigation. - /+[ propget]+/ - HRESULT get_NavigationId(/+[out, retval]+/ UINT64* navigationId); + + @(" propget") + HRESULT get_NavigationId(@("out, retval") UINT64* navigationId); } -/// The caller implements this interface to receive the ContentLoading event. +/// Receives `ContentLoading` events. const GUID IID_ICoreWebView2ContentLoadingEventHandler = ICoreWebView2ContentLoadingEventHandler.iid; interface ICoreWebView2ContentLoadingEventHandler : IUnknown { static const GUID iid = { 0x364471e7,0xf2be,0x4910,[ 0xbd,0xba,0xd7,0x20,0x77,0xd5,0x1c,0x4b ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke(/+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2ContentLoadingEventArgs args); } -/// Event args for the SourceChanged event. +/// Event args for the `SourceChanged` event. const GUID IID_ICoreWebView2SourceChangedEventArgs = ICoreWebView2SourceChangedEventArgs.iid; interface ICoreWebView2SourceChangedEventArgs : IUnknown { static const GUID iid = { 0x31e0e545,0x1dba,0x4266,[ 0x89,0x14,0xf6,0x38,0x48,0xa1,0xf7,0xd7 ] }; - extern(Windows): - /// True if the page being navigated to is a new document. - /+[ propget]+/ - HRESULT get_IsNewDocument(/+[out, retval]+/ BOOL* isNewDocument); + + /// `TRUE` if the page being navigated to is a new document. + + @(" propget") + HRESULT get_IsNewDocument(@("out, retval") BOOL* isNewDocument); } -/// The caller implements this interface to receive the SourceChanged event. +/// Receives `SourceChanged` events. const GUID IID_ICoreWebView2SourceChangedEventHandler = ICoreWebView2SourceChangedEventHandler.iid; interface ICoreWebView2SourceChangedEventHandler : IUnknown { static const GUID iid = { 0x3c067f9f,0x5388,0x4772,[ 0x8b,0x48,0x79,0xf7,0xef,0x1a,0xb3,0x7c ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke(/+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2SourceChangedEventArgs args); } -/// The caller implements this interface to receive the HistoryChanged event. +/// Receives `HistoryChanged` events. const GUID IID_ICoreWebView2HistoryChangedEventHandler = ICoreWebView2HistoryChangedEventHandler.iid; interface ICoreWebView2HistoryChangedEventHandler : IUnknown { static const GUID iid = { 0xc79a420c,0xefd9,0x4058,[ 0x92,0x95,0x3e,0x8b,0x4b,0xca,0xb6,0x45 ] }; - extern(Windows): - /// There are no event args and the args parameter will be null. + + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke(/+[in]+/ ICoreWebView2 sender, /+[in]+/ IUnknown args); } -/// Event args for the ScriptDialogOpening event. +/// Event args for the `ScriptDialogOpening` event. const GUID IID_ICoreWebView2ScriptDialogOpeningEventArgs = ICoreWebView2ScriptDialogOpeningEventArgs.iid; interface ICoreWebView2ScriptDialogOpeningEventArgs : IUnknown { static const GUID iid = { 0x7390bb70,0xabe0,0x4843,[ 0x95,0x29,0xf1,0x43,0xb3,0x1b,0x03,0xd6 ] }; - extern(Windows): + /// The URI of the page that requested the dialog box. - /+[ propget]+/ - HRESULT get_Uri(/+[out, retval]+/ LPWSTR* uri); + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). - /// The kind of JavaScript dialog box. Accept, confirm, prompt, or - /// beforeunload. - /+[ propget]+/ - HRESULT get_Kind(/+[out, retval]+/ COREWEBVIEW2_SCRIPT_DIALOG_KIND* kind); + @(" propget") + HRESULT get_Uri(@("out, retval") LPWSTR* uri); - /// The message of the dialog box. From JavaScript this is the first parameter - /// passed to alert, confirm, and prompt and is empty for beforeunload. - /+[ propget]+/ - HRESULT get_Message(/+[out, retval]+/ LPWSTR* message); + /// The kind of JavaScript dialog box. `alert`, `confirm`, `prompt`, or + /// `beforeunload`. + + @(" propget") + HRESULT get_Kind(@("out, retval") COREWEBVIEW2_SCRIPT_DIALOG_KIND* kind); + + /// The message of the dialog box. From JavaScript this is the first + /// parameter passed to `alert`, `confirm`, and `prompt` and is empty for + /// `beforeunload`. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + + @(" propget") + HRESULT get_Message(@("out, retval") LPWSTR* message); + + /// The host may run this to respond with **OK** to `confirm`, `prompt`, and + /// `beforeunload` dialogs. Do not run this method to indicate cancel. + /// From JavaScript, this means that the `confirm` and `beforeunload` function + /// returns `TRUE` if `Accept` is run. And for the prompt function it returns + /// the value of `ResultText` if `Accept` is run and otherwise returns + /// `FALSE`. - /// The host may call this to respond with OK to confirm, prompt, and - /// beforeunload dialogs or not call this method to indicate cancel. From - /// JavaScript, this means that the confirm and beforeunload function returns - /// true if Accept is called. And for the prompt function it returns the value - /// of ResultText if Accept is called and returns false otherwise. HRESULT Accept(); - /// The second parameter passed to the JavaScript prompt dialog. This is the - /// default value to use for the result of the prompt JavaScript function. - /+[ propget]+/ - HRESULT get_DefaultText(/+[out, retval]+/ LPWSTR* defaultText); + /// The second parameter passed to the JavaScript prompt dialog. + /// The result of the prompt JavaScript function uses this value as the + /// default value. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). - /// The return value from the JavaScript prompt function if Accept is called. - /// This is ignored for dialog kinds other than prompt. If Accept is not - /// called this value is ignored and false is returned from prompt. - /+[ propget]+/ - HRESULT get_ResultText(/+[out, retval]+/ LPWSTR* resultText); - /// Set the ResultText property. - /+[ propput]+/ + @(" propget") + HRESULT get_DefaultText(@("out, retval") LPWSTR* defaultText); + + /// The return value from the JavaScript prompt function if `Accept` is run. + /// This value is ignored for dialog kinds other than prompt. If `Accept` + /// is not run, this value is ignored and `FALSE` is returned from prompt. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + + @(" propget") + HRESULT get_ResultText(@("out, retval") LPWSTR* resultText); + + /// Sets the `ResultText` property. + + @(" propput") HRESULT put_ResultText(in LPCWSTR resultText); - /// GetDeferral can be called to return an ICoreWebView2Deferral object. - /// You can use this to complete the event at a later time. - HRESULT GetDeferral(/+[out, retval]+/ ICoreWebView2Deferral * deferral); + /// Returns an `ICoreWebView2Deferral` object. Use this operation to + /// complete the event at a later time. + + HRESULT GetDeferral(@("out, retval") ICoreWebView2Deferral * deferral); } -/// The caller implements this interface to receive the ScriptDialogOpening -/// event. +/// Receives `ScriptDialogOpening` events. const GUID IID_ICoreWebView2ScriptDialogOpeningEventHandler = ICoreWebView2ScriptDialogOpeningEventHandler.iid; interface ICoreWebView2ScriptDialogOpeningEventHandler : IUnknown { static const GUID iid = { 0xef381bf9,0xafa8,0x4e37,[ 0x91,0xc4,0x8a,0xc4,0x85,0x24,0xbd,0xfb ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2ScriptDialogOpeningEventArgs args); } -/// Event args for the NavigationCompleted event. +/// Event args for the `NavigationCompleted` event. const GUID IID_ICoreWebView2NavigationCompletedEventArgs = ICoreWebView2NavigationCompletedEventArgs.iid; interface ICoreWebView2NavigationCompletedEventArgs : IUnknown { static const GUID iid = { 0x30d68b7d,0x20d9,0x4752,[ 0xa9,0xca,0xec,0x84,0x48,0xfb,0xb5,0xc1 ] }; - extern(Windows): - /// True when the navigation is successful. This - /// is false for a navigation that ended up in an error page (failures due to - /// no network, DNS lookup failure, HTTP server responds with 4xx), but could - /// also be false for additional scenarios such as window.stop() called on - /// navigated page. - /+[ propget]+/ - HRESULT get_IsSuccess(/+[out, retval]+/ BOOL* isSuccess); + + /// `TRUE` when the navigation is successful. `FALSE` for a navigation that + /// ended up in an error page (failures due to no network, DNS lookup + /// failure, HTTP server responds with 4xx), but may also be `FALSE` for + /// additional scenarios such as `window.stop()` run on navigated page. + /// Note that WebView2 will report the navigation as 'unsuccessful' if the load + /// for the navigation did not reach the expected completion for any reason. Such + /// reasons include potentially catastrophic issues such network and certificate + /// issues, but can also be the result of intended actions such as the app canceling a navigation or + /// navigating away before the original navigation completed. Applications should not + /// just rely on this flag, but also consider the reported WebErrorStatus to + /// determine whether the failure is indeed catastrophic in their context. + /// WebErrorStatuses that may indicate a non-catastrophic failure include: + /// - COREWEBVIEW2_WEB_ERROR_STATUS_OPERATION_CANCELED + /// - COREWEBVIEW2_WEB_ERROR_STATUS_VALID_AUTHENTICATION_CREDENTIALS_REQUIRED + /// - COREWEBVIEW2_WEB_ERROR_STATUS_VALID_PROXY_AUTHENTICATION_REQUIRED + + @(" propget") + HRESULT get_IsSuccess(@("out, retval") BOOL* isSuccess); /// The error code if the navigation failed. - /+[ propget]+/ - HRESULT get_WebErrorStatus(/+[out, retval]+/ COREWEBVIEW2_WEB_ERROR_STATUS* + + @(" propget") + HRESULT get_WebErrorStatus(@("out, retval") COREWEBVIEW2_WEB_ERROR_STATUS* webErrorStatus); /// The ID of the navigation. - /+[ propget]+/ - HRESULT get_NavigationId(/+[out, retval]+/ UINT64* navigationId); + + @(" propget") + HRESULT get_NavigationId(@("out, retval") UINT64* navigationId); } -/// The caller implements this interface to receive the NavigationCompleted -/// event. +/// This is an interface for the StatusCode property of +/// ICoreWebView2NavigationCompletedEventArgs +const GUID IID_ICoreWebView2NavigationCompletedEventArgs2 = ICoreWebView2NavigationCompletedEventArgs2.iid; + +interface ICoreWebView2NavigationCompletedEventArgs2 : ICoreWebView2NavigationCompletedEventArgs +{ + static const GUID iid = { 0xFDF8B738,0xEE1E,0x4DB2,[ 0xA3,0x29,0x8D,0x7D,0x7B,0x74,0xD7,0x92 ] }; + /// The HTTP status code of the navigation if it involved an HTTP request. + /// For instance, this will usually be 200 if the request was successful, 404 + /// if a page was not found, etc. See + /// https://developer.mozilla.org/docs/Web/HTTP/Status for a list of + /// common status codes. + /// + /// The `HttpStatusCode` property will be 0 in the following cases: + /// * The navigation did not involve an HTTP request. For instance, if it was + /// a navigation to a file:// URL, or if it was a same-document navigation. + /// * The navigation failed before a response was received. For instance, if + /// the hostname was not found, or if there was a network error. + /// + /// In those cases, you can get more information from the `IsSuccess` and + /// `WebErrorStatus` properties. + /// + /// If the navigation receives a successful HTTP response, but the navigated + /// page calls `window.stop()` before it finishes loading, then + /// `HttpStatusCode` may contain a success code like 200, but `IsSuccess` will + /// be FALSE and `WebErrorStatus` will be + /// `COREWEBVIEW2_WEB_ERROR_STATUS_CONNECTION_ABORTED`. + /// + /// Since WebView2 handles HTTP continuations and redirects automatically, it + /// is unlikely for `HttpStatusCode` to ever be in the 1xx or 3xx ranges. + @(" propget") + HRESULT get_HttpStatusCode(@("out, retval") int* http_status_code); +} + +/// Receives `NavigationCompleted` events. const GUID IID_ICoreWebView2NavigationCompletedEventHandler = ICoreWebView2NavigationCompletedEventHandler.iid; interface ICoreWebView2NavigationCompletedEventHandler : IUnknown { static const GUID iid = { 0xd33a35bf,0x1c49,0x4f98,[ 0x93,0xab,0x00,0x6e,0x05,0x33,0xfe,0x1c ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2NavigationCompletedEventArgs args); } -/// Event args for the PermissionRequested event. +/// Event args for the `PermissionRequested` event. const GUID IID_ICoreWebView2PermissionRequestedEventArgs = ICoreWebView2PermissionRequestedEventArgs.iid; interface ICoreWebView2PermissionRequestedEventArgs : IUnknown { static const GUID iid = { 0x973ae2ef,0xff18,0x4894,[ 0x8f,0xb2,0x3c,0x75,0x8f,0x04,0x68,0x10 ] }; - extern(Windows): + /// The origin of the web content that requests the permission. - /+[ propget]+/ - HRESULT get_Uri(/+[out, retval]+/ LPWSTR* uri); + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + + @(" propget") + HRESULT get_Uri(@("out, retval") LPWSTR* uri); /// The type of the permission that is requested. - /+[ propget]+/ - HRESULT get_PermissionKind(/+[out, retval]+/ COREWEBVIEW2_PERMISSION_KIND* permissionKind); - /// True when the permission request was initiated through a user gesture. - /// Note that being initiated through a user gesture doesn't mean that user - /// intended to access the associated resource. - /+[ propget]+/ - HRESULT get_IsUserInitiated(/+[out, retval]+/ BOOL* isUserInitiated); + @(" propget") + HRESULT get_PermissionKind(@("out, retval") COREWEBVIEW2_PERMISSION_KIND* permissionKind); - /// The status of a permission request, i.e. whether the request is granted. - /// Default value is COREWEBVIEW2_PERMISSION_STATE_DEFAULT. - /+[ propget]+/ - HRESULT get_State(/+[out, retval]+/ COREWEBVIEW2_PERMISSION_STATE* state); - /// Set the State property. - /+[ propput]+/ + /// `TRUE` when the permission request was initiated through a user gesture. + /// + /// \> [!NOTE]\n\> Being initiated through a user gesture does not mean that user intended + /// to access the associated resource. + + @(" propget") + HRESULT get_IsUserInitiated(@("out, retval") BOOL* isUserInitiated); + + /// The status of a permission request, (for example is the request is granted). + /// The default value is `COREWEBVIEW2_PERMISSION_STATE_DEFAULT`. + + @(" propget") + HRESULT get_State(@("out, retval") COREWEBVIEW2_PERMISSION_STATE* state); + + /// Sets the `State` property. + + @(" propput") HRESULT put_State(in COREWEBVIEW2_PERMISSION_STATE state); - /// GetDeferral can be called to return an ICoreWebView2Deferral object. - /// Developer can use the deferral object to make the permission decision - /// at a later time. - HRESULT GetDeferral(/+[out, retval]+/ ICoreWebView2Deferral * deferral); + /// Gets an `ICoreWebView2Deferral` object. Use the deferral object to make + /// the permission decision at a later time. The deferral only applies to the + /// current request, and does not prevent the `PermissionRequested` event from + /// getting raised for new requests. However, for some permission kinds the + /// WebView will avoid creating a new request if there is a pending request of + /// the same kind. + + HRESULT GetDeferral(@("out, retval") ICoreWebView2Deferral * deferral); } -/// The caller implements this interface to receive the PermissionRequested -/// event. +/// Receives `PermissionRequested` events. const GUID IID_ICoreWebView2PermissionRequestedEventHandler = ICoreWebView2PermissionRequestedEventHandler.iid; interface ICoreWebView2PermissionRequestedEventHandler : IUnknown { static const GUID iid = { 0x15e1c6a3,0xc72a,0x4df3,[ 0x91,0xd7,0xd0,0x97,0xfb,0xec,0x6b,0xfd ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2PermissionRequestedEventArgs args); } -/// The caller implements this interface to receive the result of the -/// AddScriptToExecuteOnDocumentCreated method. +/// Receives the result of the `AddScriptToExecuteOnDocumentCreated` method. const GUID IID_ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler = ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler.iid; interface ICoreWebView2AddScriptToExecuteOnDocumentCreatedCompletedHandler : IUnknown { static const GUID iid = { 0xb99369f3,0x9b11,0x47b5,[ 0xbc,0x6f,0x8e,0x78,0x95,0xfc,0xea,0x17 ] }; - extern(Windows): - /// Called to provide the implementer with the completion status and result - /// of the corresponding asynchronous method call. + + /// Provide the completion status and result of the corresponding + /// asynchronous method. + HRESULT Invoke(in HRESULT errorCode, in LPCWSTR id); } -/// The caller implements this interface to receive the result of the -/// ExecuteScript method. +/// Receives the result of the `ExecuteScript` method. const GUID IID_ICoreWebView2ExecuteScriptCompletedHandler = ICoreWebView2ExecuteScriptCompletedHandler.iid; interface ICoreWebView2ExecuteScriptCompletedHandler : IUnknown { static const GUID iid = { 0x49511172,0xcc67,0x4bca,[ 0x99,0x23,0x13,0x71,0x12,0xf4,0xc4,0xcc ] }; - extern(Windows): - /// Called to provide the implementer with the completion status and result - /// of the corresponding asynchronous method call. + + /// Provide the implementer with the completion status and result of the + /// corresponding asynchronous method. + HRESULT Invoke(in HRESULT errorCode, in LPCWSTR resultObjectAsJson); } -/// Event args for the WebResourceRequested event. +/// Event args for the `WebResourceRequested` event. const GUID IID_ICoreWebView2WebResourceRequestedEventArgs = ICoreWebView2WebResourceRequestedEventArgs.iid; interface ICoreWebView2WebResourceRequestedEventArgs : IUnknown { static const GUID iid = { 0x453e667f,0x12c7,0x49d4,[ 0xbe,0x6d,0xdd,0xbe,0x79,0x56,0xf5,0x7a ] }; - extern(Windows): - /// The Web resource request. The request object may be missing some headers - /// that are added by network stack later on. - /+[ propget]+/ - HRESULT get_Request(/+[out, retval]+/ ICoreWebView2WebResourceRequest * request); - /// A placeholder for the web resource response object. If this object is set, the - /// web resource request will be completed with this response. - /+[ propget]+/ - HRESULT get_Response(/+[out, retval]+/ ICoreWebView2WebResourceResponse * response); - /// Set the Response property. An empty Web resource response object can be - /// created with CreateWebResourceResponse and then modified to construct the response. - /+[ propput]+/ + /// The Web resource request. The request object may be missing some headers + /// that are added by network stack at a later time. + + @(" propget") + HRESULT get_Request(@("out, retval") ICoreWebView2WebResourceRequest * request); + + /// A placeholder for the web resource response object. If this object is + /// set, the web resource request is completed with the specified response. + + @(" propget") + HRESULT get_Response(@("out, retval") ICoreWebView2WebResourceResponse * response); + + /// Sets the `Response` property. Create an empty web resource response + /// object with `CreateWebResourceResponse` and then modify it to construct + /// the response. + + @(" propput") HRESULT put_Response(/+[in]+/ ICoreWebView2WebResourceResponse response); - /// Obtain an ICoreWebView2Deferral object and put the event into a deferred state. - /// You can use the ICoreWebView2Deferral object to complete the request at a - /// later time. - HRESULT GetDeferral(/+[out, retval]+/ ICoreWebView2Deferral * deferral); + /// Obtain an `ICoreWebView2Deferral` object and put the event into a + /// deferred state. Use the `ICoreWebView2Deferral` object to complete the + /// request at a later time. + + HRESULT GetDeferral(@("out, retval") ICoreWebView2Deferral * deferral); /// The web resource request context. - /+[ propget]+/ - HRESULT get_ResourceContext(/+[out, retval]+/ COREWEBVIEW2_WEB_RESOURCE_CONTEXT* context); + + @(" propget") + HRESULT get_ResourceContext(@("out, retval") COREWEBVIEW2_WEB_RESOURCE_CONTEXT* context); } -/// Fires when a URL request (through network, file etc.) is made in the webview -/// for a Web resource matching resource context filter and URL specified in -/// AddWebResourceRequestedFilter. -/// The host can view and modify the request or provide a response in a similar -/// pattern to HTTP, in which case the request immediately completed. -/// This may not contain any request headers that are added by the network -/// stack, such as Authorization headers. +/// Runs when a URL request (through network, file, and so on) is made in +/// the webview for a Web resource matching resource context filter and URL +/// specified in `AddWebResourceRequestedFilter`. The host views and modifies +/// the request or provide a response in a similar pattern to HTTP, in which +/// case the request immediately completed. This may not contain any request +/// headers that are added by the network stack, such as an `Authorization` +/// header. const GUID IID_ICoreWebView2WebResourceRequestedEventHandler = ICoreWebView2WebResourceRequestedEventHandler.iid; interface ICoreWebView2WebResourceRequestedEventHandler : IUnknown { static const GUID iid = { 0xab00b74c,0x15f1,0x4646,[ 0x80,0xe8,0xe7,0x63,0x41,0xd2,0x5d,0x71 ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2WebResourceRequestedEventArgs args); } -/// The caller implements this method to receive the result of the -/// CapturePreview method. The result is written to the stream provided in -/// the CapturePreview method call. +/// Receives the result of the `CapturePreview` method. The result is written +/// to the stream provided in the `CapturePreview` method. + const GUID IID_ICoreWebView2CapturePreviewCompletedHandler = ICoreWebView2CapturePreviewCompletedHandler.iid; interface ICoreWebView2CapturePreviewCompletedHandler : IUnknown { static const GUID iid = { 0x697e05e9,0x3d8f,0x45fa,[ 0x96,0xf4,0x8f,0xfe,0x1e,0xde,0xda,0xf5 ] }; - extern(Windows): - /// Called to provide the implementer with the completion status - /// of the corresponding asynchronous method call. + + /// Provides the completion status of the corresponding asynchronous method. + HRESULT Invoke(in HRESULT errorCode); } -/// The caller implements this method to receive the GotFocus and LostFocus -/// events. There are no event args for this event. +/// Receives `GotFocus` and `LostFocus` events. + const GUID IID_ICoreWebView2FocusChangedEventHandler = ICoreWebView2FocusChangedEventHandler.iid; interface ICoreWebView2FocusChangedEventHandler : IUnknown { static const GUID iid = { 0x05ea24bd,0x6452,0x4926,[ 0x90,0x14,0x4b,0x82,0xb4,0x98,0x13,0x5d ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. There are no event args and the args - /// parameter will be null. + + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke( /+[in]+/ ICoreWebView2Controller sender, /+[in]+/ IUnknown args); } -/// Event args for the MoveFocusRequested event. +/// Event args for the `MoveFocusRequested` event. + const GUID IID_ICoreWebView2MoveFocusRequestedEventArgs = ICoreWebView2MoveFocusRequestedEventArgs.iid; interface ICoreWebView2MoveFocusRequestedEventArgs : IUnknown { static const GUID iid = { 0x2d6aa13b,0x3839,0x4a15,[ 0x92,0xfc,0xd8,0x8b,0x3c,0x0d,0x9c,0x9d ] }; - extern(Windows): - /// The reason for WebView to fire the MoveFocus Requested event. - /+[ propget]+/ - HRESULT get_Reason(/+[out, retval]+/ COREWEBVIEW2_MOVE_FOCUS_REASON* reason); - /// Indicate whether the event has been handled by the app. - /// If the app has moved the focus to its desired location, it should set - /// Handled property to TRUE. - /// When Handled property is false after the event handler returns, default - /// action will be taken. The default action is to try to find the next tab - /// stop child window in the app and try to move focus to that window. If - /// there is no other such window to move focus to, focus will be cycled - /// within the WebView's web content. - /+[ propget]+/ - HRESULT get_Handled(/+[out, retval]+/ BOOL* value); - /// Set the Handled property. - /+[ propput]+/ + /// The reason for WebView to run the `MoveFocusRequested` event. + + @(" propget") + HRESULT get_Reason(@("out, retval") COREWEBVIEW2_MOVE_FOCUS_REASON* reason); + + /// Indicates whether the event has been handled by the app. If the app has + /// moved the focus to another desired location, it should set the `Handled` + /// property to `TRUE`. When the `Handled` property is `FALSE` after the + /// event handler returns, default action is taken. The default action is to + /// try to find the next tab stop child window in the app and try to move + /// focus to that window. If no other window exists to move focus, focus is + /// cycled within the web content of the WebView. + + @(" propget") + HRESULT get_Handled(@("out, retval") BOOL* value); + + /// Sets the `Handled` property. + + @(" propput") HRESULT put_Handled(in BOOL value); } -/// The caller implements this method to receive the MoveFocusRequested event. +/// Receives `MoveFocusRequested` events. + const GUID IID_ICoreWebView2MoveFocusRequestedEventHandler = ICoreWebView2MoveFocusRequestedEventHandler.iid; interface ICoreWebView2MoveFocusRequestedEventHandler : IUnknown { static const GUID iid = { 0x69035451,0x6dc7,0x4cb8,[ 0x9b,0xce,0xb2,0xbd,0x70,0xad,0x28,0x9f ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2Controller sender, /+[in]+/ ICoreWebView2MoveFocusRequestedEventArgs args); } -/// Event args for the WebMessageReceived event. +/// Event args for the `WebMessageReceived` event. const GUID IID_ICoreWebView2WebMessageReceivedEventArgs = ICoreWebView2WebMessageReceivedEventArgs.iid; interface ICoreWebView2WebMessageReceivedEventArgs : IUnknown { static const GUID iid = { 0x0f99a40c,0xe962,0x4207,[ 0x9e,0x92,0xe3,0xd5,0x42,0xef,0xf8,0x49 ] }; - extern(Windows): + /// The URI of the document that sent this web message. - /+[ propget]+/ - HRESULT get_Source(/+[out, retval]+/ LPWSTR* source); + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + + @(" propget") + HRESULT get_Source(@("out, retval") LPWSTR* source); /// The message posted from the WebView content to the host converted to a - /// JSON string. Use this to communicate via JavaScript objects. + /// JSON string. Run this operation to communicate using JavaScript objects. /// - /// For example the following postMessage calls result in the - /// following WebMessageAsJson values: + /// For example, the following `postMessage` runs result in the following + /// `WebMessageAsJson` values. /// + /// ```json + /// postMessage({'a': 'b'}) L"{\"a\": \"b\"}" + /// postMessage(1.2) L"1.2" + /// postMessage('example') L"\"example\"" /// ``` - /// postMessage({'a': 'b'}) L"{\"a\": \"b\"}" - /// postMessage(1.2) L"1.2" - /// postMessage('example') L"\"example\"" - /// ``` - /+[ propget]+/ - HRESULT get_WebMessageAsJson(/+[out, retval]+/ LPWSTR* webMessageAsJson); + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). - /// If the message posted from the WebView content to the host is a - /// string type, this method will return the value of that string. If the - /// message posted is some other kind of JavaScript type this method will fail - /// with E_INVALIDARG. Use this to communicate via simple strings. + @(" propget") + HRESULT get_WebMessageAsJson(@("out, retval") LPWSTR* webMessageAsJson); + + /// If the message posted from the WebView content to the host is a string + /// type, this method returns the value of that string. If the message + /// posted is some other kind of JavaScript type this method fails with the + /// following error. /// - /// For example the following postMessage calls result in the - /// following WebMessageAsString values: + /// ```text + /// E_INVALIDARG + /// ``` /// + /// Run this operation to communicate using simple strings. + /// + /// For example, the following `postMessage` runs result in the following + /// `WebMessageAsString` values. + /// + /// ```json + /// postMessage({'a': 'b'}) E_INVALIDARG + /// postMessage(1.2) E_INVALIDARG + /// postMessage('example') L"example" /// ``` - /// postMessage({'a': 'b'}) E_INVALIDARG - /// postMessage(1.2) E_INVALIDARG - /// postMessage('example') L"example" - /// ``` - HRESULT TryGetWebMessageAsString(/+[out, retval]+/ LPWSTR* webMessageAsString); + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + + HRESULT TryGetWebMessageAsString(@("out, retval") LPWSTR* webMessageAsString); } -/// The caller implements this interface to receive the WebMessageReceived -/// event. +/// Receives `WebMessageReceived` events. const GUID IID_ICoreWebView2WebMessageReceivedEventHandler = ICoreWebView2WebMessageReceivedEventHandler.iid; interface ICoreWebView2WebMessageReceivedEventHandler : IUnknown { static const GUID iid = { 0x57213f19,0x00e6,0x49fa,[ 0x8e,0x07,0x89,0x8e,0xa0,0x1e,0xcb,0xd2 ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2WebMessageReceivedEventArgs args); } -/// Event args for the DevToolsProtocolEventReceived event. +/// Event args for the `DevToolsProtocolEventReceived` event. const GUID IID_ICoreWebView2DevToolsProtocolEventReceivedEventArgs = ICoreWebView2DevToolsProtocolEventReceivedEventArgs.iid; interface ICoreWebView2DevToolsProtocolEventReceivedEventArgs : IUnknown { static const GUID iid = { 0x653c2959,0xbb3a,0x4377,[ 0x86,0x32,0xb5,0x8a,0xda,0x4e,0x66,0xc4 ] }; - extern(Windows): - /// The parameter object of the corresponding DevToolsProtocol event + + /// The parameter object of the corresponding `DevToolsProtocol` event /// represented as a JSON string. - /+[ propget]+/ - HRESULT get_ParameterObjectAsJson(/+[out, retval]+/ LPWSTR* + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + + @(" propget") + HRESULT get_ParameterObjectAsJson(@("out, retval") LPWSTR* parameterObjectAsJson); } -/// The caller implements this interface to receive -/// DevToolsProtocolEventReceived events from the WebView. +/// This is a continuation of the `ICoreWebView2DevToolsProtocolEventReceivedEventArgs` +/// interface that provides the session ID of the target where the event originates from. +const GUID IID_ICoreWebView2DevToolsProtocolEventReceivedEventArgs2 = ICoreWebView2DevToolsProtocolEventReceivedEventArgs2.iid; + +interface ICoreWebView2DevToolsProtocolEventReceivedEventArgs2 : ICoreWebView2DevToolsProtocolEventReceivedEventArgs +{ + static const GUID iid = { 0x2DC4959D,0x1494,0x4393,[ 0x95,0xBA,0xBE,0xA4,0xCB,0x9E,0xBD,0x1B ] }; + + /// The sessionId of the target where the event originates from. + /// Empty string is returned as sessionId if the event comes from the default + /// session for the top page. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + /// + /// \snippet ScriptComponent.cpp DevToolsProtocolEventReceivedSessionId + @(" propget") + HRESULT get_SessionId(@("out, retval") LPWSTR* sessionId); +} + +/// Receives `DevToolsProtocolEventReceived` events from the WebView. const GUID IID_ICoreWebView2DevToolsProtocolEventReceivedEventHandler = ICoreWebView2DevToolsProtocolEventReceivedEventHandler.iid; interface ICoreWebView2DevToolsProtocolEventReceivedEventHandler : IUnknown { static const GUID iid = { 0xe2fda4be,0x5456,0x406c,[ 0xa2,0x61,0x3d,0x45,0x21,0x38,0x36,0x2c ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2DevToolsProtocolEventReceivedEventArgs args); } -/// The caller implements this interface to receive CallDevToolsProtocolMethod -/// completion results. +/// Receives `CallDevToolsProtocolMethod` completion results. const GUID IID_ICoreWebView2CallDevToolsProtocolMethodCompletedHandler = ICoreWebView2CallDevToolsProtocolMethodCompletedHandler.iid; interface ICoreWebView2CallDevToolsProtocolMethodCompletedHandler : IUnknown { static const GUID iid = { 0x5c4889f0,0x5ef6,0x4c5a,[ 0x95,0x2c,0xd8,0xf1,0xb9,0x2d,0x05,0x74 ] }; - extern(Windows): - /// Called to provide the implementer with the completion status and result - /// of the corresponding asynchronous method call. + + /// Provides the completion status and result of the corresponding + /// asynchronous method. + HRESULT Invoke(in HRESULT errorCode, in LPCWSTR returnObjectAsJson); } -/// The caller implements this interface to receive the CoreWebView2Controller created -/// via CreateCoreWebView2Controller. +/// Receives the `CoreWebView2Controller` created using `CreateCoreWebView2Controller`. + const GUID IID_ICoreWebView2CreateCoreWebView2ControllerCompletedHandler = ICoreWebView2CreateCoreWebView2ControllerCompletedHandler.iid; interface ICoreWebView2CreateCoreWebView2ControllerCompletedHandler : IUnknown { static const GUID iid = { 0x6c4819f3,0xc9b7,0x4260,[ 0x81,0x27,0xc9,0xf5,0xbd,0xe7,0xf6,0x8c ] }; - extern(Windows): - /// Called to provide the implementer with the completion status and result - /// of the corresponding asynchronous method call. + + /// Provides the completion status and result of the corresponding + /// asynchronous method. + HRESULT Invoke(HRESULT errorCode, ICoreWebView2Controller createdController); } -/// Event args for the NewWindowRequested event. The event is fired when content -/// inside webview requested to a open a new window (through window.open() and so on.) +/// The caller implements this interface to receive the CoreWebView2Controller +/// created via CreateCoreWebView2CompositionController. +const GUID IID_ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler = ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler.iid; + +interface ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler : IUnknown +{ + static const GUID iid = { 0x02fab84b,0x1428,0x4fb7,[ 0xad,0x45,0x1b,0x2e,0x64,0x73,0x61,0x84 ] }; + /// Called to provide the implementer with the completion status and result + /// of the corresponding asynchronous method call. + HRESULT Invoke( + HRESULT errorCode, + ICoreWebView2CompositionController webView); +} + +/// Event args for the `NewWindowRequested` event. The event is run when +/// content inside webview requested to a open a new window (through +/// `window.open()` and so on). const GUID IID_ICoreWebView2NewWindowRequestedEventArgs = ICoreWebView2NewWindowRequestedEventArgs.iid; interface ICoreWebView2NewWindowRequestedEventArgs : IUnknown { static const GUID iid = { 0x34acb11c,0xfc37,0x4418,[ 0x91,0x32,0xf9,0xc2,0x1d,0x1e,0xaf,0xb9 ] }; - extern(Windows): - /// The target uri of the NewWindowRequest. - /+[ propget]+/ - HRESULT get_Uri(/+[out, retval]+/ LPWSTR* uri); - /// Sets a WebView as a result of the NewWindowRequest. The target - /// WebView should not be navigated. If the NewWindow is set, its top level - /// window will return as the opened WindowProxy. - /+[ propput]+/ + /// The target uri of the new window requested. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + + @(" propget") + HRESULT get_Uri(@("out, retval") LPWSTR* uri); + + /// Sets a CoreWebView2 as a result of the NewWindowRequested event. Provides + /// a WebView as the target for a `window.open()` from inside the + /// requesting WebView. If this is set, the top-level window of this WebView + /// is returned as the opened + /// [WindowProxy](https://developer.mozilla.org/en-US/docs/glossary/windowproxy) + /// to the opener script. If this is not set, then `Handled` is checked to + /// determine behavior for NewWindowRequested event. + /// CoreWebView2 provided in the `NewWindow` property must be on the same + /// Environment as the opener WebView and should not have been navigated + /// previously. Don't use methods that cause navigation or interact with the + /// DOM on this CoreWebView2 until the target content has loaded. Setting event + /// handlers, changing Settings properties, or other methods are fine to call. + /// Changes to settings should be made before `put_NewWindow` is called to + /// ensure that those settings take effect for the newly setup WebView. Once the + /// NewWindow is set the underlying web contents of this CoreWebView2 will be + /// replaced and navigated as appropriate for the new window. After setting + /// new window it cannot be changed and error will be return otherwise. + /// + /// The methods which should affect the new web contents like + /// AddScriptToExecuteOnDocumentCreated has to be called and completed before setting NewWindow. + /// Other methods which should affect the new web contents like add_WebResourceRequested have to be called after setting NewWindow. + /// It is best not to use RemoveScriptToExecuteOnDocumentCreated before setting NewWindow, otherwise it may not work for later added scripts. + /// + /// The new WebView must have the same profile as the opener WebView. + + @(" propput") HRESULT put_NewWindow(/+[in]+/ ICoreWebView2 newWindow); + /// Gets the new window. - /+[ propget]+/ - HRESULT get_NewWindow(/+[out, retval]+/ ICoreWebView2 * newWindow); - /// Sets whether the NewWindowRequestedEvent is handled by host. If this is false - /// and no NewWindow is set, the WebView will open a popup - /// window and it will be returned as opened WindowProxy. - /// If set to true and no NewWindow is set for a window.open call, the opened - /// WindowProxy will be for an dummy window object and no window will load. - /// Default is false. - /+[ propput]+/ + @(" propget") + HRESULT get_NewWindow(@("out, retval") ICoreWebView2 * newWindow); + + /// Sets whether the `NewWindowRequested` event is handled by host. If this + /// is `FALSE` and no `NewWindow` is set, the WebView opens a popup window + /// and it returns as opened `WindowProxy`. If set to `TRUE` and no + /// `NewWindow` is set for `window.open`, the opened `WindowProxy` is for an + /// testing window object and no window loads. + /// The default value is `FALSE`. + + @(" propput") HRESULT put_Handled(in BOOL handled); - /// Gets whether the NewWindowRequestedEvent is handled by host. - /+[ propget]+/ - HRESULT get_Handled(/+[out, retval]+/ BOOL* handled); - /// IsUserInitiated is true when the new window request was initiated through - /// a user gesture such as clicking an anchor tag with target. The Edge - /// popup blocker is disabled for WebView so the app can use this flag to - /// block non-user initiated popups. - /+[ propget]+/ - HRESULT get_IsUserInitiated(/+[out, retval]+/ BOOL* isUserInitiated); + /// Gets whether the `NewWindowRequested` event is handled by host. - /// Obtain an ICoreWebView2Deferral object and put the event into a deferred state. - /// You can use the ICoreWebView2Deferral object to complete the window open - /// request at a later time. - /// While this event is deferred the opener window will be returned a WindowProxy - /// to an unnavigated window, which will navigate when the deferral is complete. - HRESULT GetDeferral(/+[out, retval]+/ ICoreWebView2Deferral * deferral); + @(" propget") + HRESULT get_Handled(@("out, retval") BOOL* handled); - /// Window features specified by the window.open call. - /// These features can be considered for positioning and sizing of - /// new webview windows. - /+[ propget]+/ - HRESULT get_WindowFeatures(/+[out, retval]+/ ICoreWebView2WindowFeatures * value); + /// `TRUE` when the new window request was initiated through a user gesture. + /// Examples of user initiated requests are: + /// + /// - Selecting an anchor tag with target + /// - Programmatic window open from a script that directly run as a result of + /// user interaction such as via onclick handlers. + /// + /// Non-user initiated requests are programmatic window opens from a script + /// that are not directly triggered by user interaction, such as those that + /// run while loading a new page or via timers. + /// The Microsoft Edge popup blocker is disabled for WebView so the app is + /// able to use this flag to block non-user initiated popups. + + @(" propget") + HRESULT get_IsUserInitiated(@("out, retval") BOOL* isUserInitiated); + + /// Obtain an `ICoreWebView2Deferral` object and put the event into a + /// deferred state. Use the `ICoreWebView2Deferral` object to complete the + /// window open request at a later time. While this event is deferred the + /// opener window returns a `WindowProxy` to an un-navigated window, which + /// navigates when the deferral is complete. + + HRESULT GetDeferral(@("out, retval") ICoreWebView2Deferral * deferral); + + /// Window features specified by the `window.open`. The features should be + /// considered for positioning and sizing of new webview windows. + + @(" propget") + HRESULT get_WindowFeatures(@("out, retval") ICoreWebView2WindowFeatures * value); } -/// Window features for a WebView popup window. These fields match the -/// 'windowFeatures' passed to window.open as specified in -/// https://developer.mozilla.org/en-US/docs/Web/API/Window/open#Window_features -/// There is no requirement for you to respect these values. If your app doesn't -/// have corresponding UI features, for example no toolbar, or if all webviews -/// are opened in tabs and so cannot have distinct size or positions, then your -/// app cannot respect these values. You may want to respect values but perhaps -/// only some can apply to your app's UI. Accordingly, it is fine to respect -/// all, some, or none of these properties as appropriate based on your app. -/// For all numeric properties, if the value when passed to window.open is -/// outside the range of an unsigned 32bit int, the value will be mod of the max -/// of unsigned 32bit integer. If the value cannot be parsed as an integer it -/// will be considered 0. If the value is a floating point value, it will be -/// rounded down to an integer. +/// This is a continuation of the `ICoreWebView2NewWindowRequestedEventArgs` interface. +const GUID IID_ICoreWebView2NewWindowRequestedEventArgs2 = ICoreWebView2NewWindowRequestedEventArgs2.iid; + +interface ICoreWebView2NewWindowRequestedEventArgs2 : ICoreWebView2NewWindowRequestedEventArgs +{ + static const GUID iid = { 0xbbc7baed,0x74c6,0x4c92,[ 0xb6,0x3a,0x7f,0x5a,0xea,0xe0,0x3d,0xe3 ] }; + /// Gets the name of the new window. This window can be created via `window.open(url, windowName)`, + /// where the windowName parameter corresponds to `Name` property. + /// If no windowName is passed to `window.open`, then the `Name` property + /// will be set to an empty string. Additionally, if window is opened through other means, + /// such as `...` or ``, + /// then the `Name` property will be set accordingly. In the case of target=_blank, + /// the `Name` property will be an empty string. + /// Opening a window via ctrl+clicking a link would result in the `Name` property + /// being set to an empty string. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Name(@("out, retval") LPWSTR* value); +} + +/// The window features for a WebView popup window. The fields match the +/// `windowFeatures` passed to `window.open` as specified in +/// [Window features](https://developer.mozilla.org/docs/Web/API/Window/open#Window_features) +/// on MDN. +/// +/// There is no requirement for you to respect the values. If your app does +/// not have corresponding UI features (for example, no toolbar) or if all +/// instance of WebView are opened in tabs and do not have distinct size or +/// positions, then your app does not respect the values. You may want to +/// respect values, but perhaps only some apply to the UI of you app. +/// Accordingly, you may respect all, some, or none of the properties as +/// appropriate for your app. For all numeric properties, if the value that is +/// passed to `window.open` is outside the range of an unsigned 32bit int, the +/// resulting value is the absolute value of the maximum for unsigned 32bit +/// integer. If you are not able to parse the value an integer, it is +/// considered `0`. If the value is a floating point value, it is rounded down +/// to an integer. +/// +/// In runtime versions 98 or later, the values of `ShouldDisplayMenuBar`, +/// `ShouldDisplayStatus`, `ShouldDisplayToolbar`, and `ShouldDisplayScrollBars` +/// will not directly depend on the equivalent fields in the `windowFeatures` +/// string. Instead, they will all be false if the window is expected to be a +/// popup, and true if it is not. const GUID IID_ICoreWebView2WindowFeatures = ICoreWebView2WindowFeatures.iid; interface ICoreWebView2WindowFeatures : IUnknown { static const GUID iid = { 0x5eaf559f,0xb46e,0x4397,[ 0x88,0x60,0xe4,0x22,0xf2,0x87,0xff,0x1e ] }; - extern(Windows): - /// True if the Left and Top properties were specified. False if at least one - /// was not specified. - /+[ propget]+/ - HRESULT get_HasPosition(/+[out, retval]+/ BOOL* value); - /// True if the Width and Height properties were specified. False if at least - /// one was not specified. - /+[ propget]+/ - HRESULT get_HasSize(/+[out, retval]+/ BOOL* value); - /// The left position of the window. This will fail if HasPosition is false. - /+[ propget]+/ - HRESULT get_Left(/+[out, retval]+/ UINT32* value); - /// The top position of the window. This will fail if HasPosition is false. - /+[ propget]+/ - HRESULT get_Top(/+[out, retval]+/ UINT32* value); - /// The height of the window. This will fail if HasSize is false. - /+[ propget]+/ - HRESULT get_Height(/+[out, retval]+/ UINT32* value); - /// The width of the window. This will fail if HasSize is false. - /+[ propget]+/ - HRESULT get_Width(/+[out, retval]+/ UINT32* value); - /// Whether or not to display the menu bar. - /+[ propget]+/ - HRESULT get_ShouldDisplayMenuBar(/+[out, retval]+/ BOOL* value); - /// Whether or not to display a status bar. - /+[ propget]+/ - HRESULT get_ShouldDisplayStatus(/+[out, retval]+/ BOOL* value); - /// Whether or not to display a toolbar. - /+[ propget]+/ - HRESULT get_ShouldDisplayToolbar(/+[out, retval]+/ BOOL* value); - /// Whether or not to display scroll bars. - /+[ propget]+/ - HRESULT get_ShouldDisplayScrollBars(/+[out, retval]+/ BOOL* value); + + /// Specifies left and top values. + + @(" propget") + HRESULT get_HasPosition(@("out, retval") BOOL* value); + + /// Specifies height and width values. + + @(" propget") + HRESULT get_HasSize(@("out, retval") BOOL* value); + + /// Specifies the left position of the window. If `HasPosition` is set to + /// `FALSE`, this field is ignored. + + @(" propget") + HRESULT get_Left(@("out, retval") UINT32* value); + + /// Specifies the top position of the window. If `HasPosition` is set to + /// `FALSE`, this field is ignored. + + @(" propget") + HRESULT get_Top(@("out, retval") UINT32* value); + + /// Specifies the height of the window. Minimum value is `100`. If + /// `HasSize` is set to `FALSE`, this field is ignored. + + @(" propget") + HRESULT get_Height(@("out, retval") UINT32* value); + + /// Specifies the width of the window. Minimum value is `100`. If `HasSize` + /// is set to `FALSE`, this field is ignored. + + @(" propget") + HRESULT get_Width(@("out, retval") UINT32* value); + + /// Indicates that the menu bar is displayed. + + @(" propget") + HRESULT get_ShouldDisplayMenuBar(@("out, retval") BOOL* value); + + /// Indicates that the status bar is displayed. + + @(" propget") + HRESULT get_ShouldDisplayStatus(@("out, retval") BOOL* value); + + /// Indicates that the browser toolbar is displayed. + + @(" propget") + HRESULT get_ShouldDisplayToolbar(@("out, retval") BOOL* value); + + /// Indicates that the scroll bars are displayed. + + @(" propget") + HRESULT get_ShouldDisplayScrollBars(@("out, retval") BOOL* value); } -/// The caller implements this interface to receive NewWindowRequested -/// events. +/// Receives `NewWindowRequested` events. const GUID IID_ICoreWebView2NewWindowRequestedEventHandler = ICoreWebView2NewWindowRequestedEventHandler.iid; interface ICoreWebView2NewWindowRequestedEventHandler : IUnknown { static const GUID iid = { 0xd4c185fe,0xc81c,0x4989,[ 0x97,0xaf,0x2d,0x3f,0xa7,0xab,0x56,0x51 ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2 sender, /+[in]+/ ICoreWebView2NewWindowRequestedEventArgs args); } -/// The caller implements this interface to receive DocumentTitleChanged -/// events. Use the DocumentTitle property to get the modified -/// title. +/// Receives `DocumentTitleChanged` events. Use the `DocumentTitle` property +/// to get the modified title. + const GUID IID_ICoreWebView2DocumentTitleChangedEventHandler = ICoreWebView2DocumentTitleChangedEventHandler.iid; interface ICoreWebView2DocumentTitleChangedEventHandler : IUnknown { static const GUID iid = { 0xf5f2b923,0x953e,0x4042,[ 0x9f,0x95,0xf3,0xa1,0x18,0xe1,0xaf,0xd4 ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. There are no event args and the args - /// parameter will be null. + + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke(/+[in]+/ ICoreWebView2 sender, /+[in]+/ IUnknown args); } -/// Event args for the AcceleratorKeyPressed event. +/// Event args for the `AcceleratorKeyPressed` event. + const GUID IID_ICoreWebView2AcceleratorKeyPressedEventArgs = ICoreWebView2AcceleratorKeyPressedEventArgs.iid; interface ICoreWebView2AcceleratorKeyPressedEventArgs : IUnknown { static const GUID iid = { 0x9f760f8a,0xfb79,0x42be,[ 0x99,0x90,0x7b,0x56,0x90,0x0f,0xa9,0xc7 ] }; - extern(Windows): - /// The key event type that caused the event to be fired. - /+[ propget]+/ - HRESULT get_KeyEventKind(/+[out, retval]+/ COREWEBVIEW2_KEY_EVENT_KIND* keyEventKind); - /// The Win32 virtual key code of the key that was pressed or released. - /// This will be one of the Win32 virtual key constants such as VK_RETURN or - /// an (uppercase) ASCII value such as 'A'. You can check whether Ctrl or Alt - /// are pressed by calling GetKeyState(VK_CONTROL) or GetKeyState(VK_MENU). - /+[ propget]+/ - HRESULT get_VirtualKey(/+[out, retval]+/ UINT* virtualKey); - /// The LPARAM value that accompanied the window message. See the - /// documentation for the WM_KEYDOWN and WM_KEYUP messages. - /+[ propget]+/ - HRESULT get_KeyEventLParam(/+[out, retval]+/ INT* lParam); - /// A structure representing the information passed in the LPARAM of the + + /// The key event type that caused the event to run. + + @(" propget") + HRESULT get_KeyEventKind(@("out, retval") COREWEBVIEW2_KEY_EVENT_KIND* keyEventKind); + + /// The Win32 virtual key code of the key that was pressed or released. It + /// is one of the Win32 virtual key constants such as `VK_RETURN` or an + /// (uppercase) ASCII value such as `A`. Verify whether Ctrl or Alt + /// are pressed by running `GetKeyState(VK_CONTROL)` or + /// `GetKeyState(VK_MENU)`. + + @(" propget") + HRESULT get_VirtualKey(@("out, retval") UINT* virtualKey); + + /// The `LPARAM` value that accompanied the window message. For more + /// information, navigate to [WM_KEYDOWN](/windows/win32/inputdev/wm-keydown) + /// and [WM_KEYUP](/windows/win32/inputdev/wm-keyup). + + @(" propget") + HRESULT get_KeyEventLParam(@("out, retval") INT* lParam); + + /// A structure representing the information passed in the `LPARAM` of the /// window message. - /+[ propget]+/ + + @(" propget") HRESULT get_PhysicalKeyStatus( - /+[out, retval]+/ COREWEBVIEW2_PHYSICAL_KEY_STATUS* physicalKeyStatus); - /// During AcceleratorKeyPressedEvent handler invocation the WebView is blocked - /// waiting for the decision of if the accelerator will be handled by the host - /// or not. If the Handled property is set to TRUE then this will - /// prevent the WebView from performing the default action for this - /// accelerator key. Otherwise the WebView will perform the default action for + @("out, retval") COREWEBVIEW2_PHYSICAL_KEY_STATUS* physicalKeyStatus); + + /// During `AcceleratorKeyPressedEvent` handler invocation the WebView is + /// blocked waiting for the decision of if the accelerator is handled by the + /// host (or not). If the `Handled` property is set to `TRUE` then this + /// prevents the WebView from performing the default action for this + /// accelerator key. Otherwise the WebView performs the default action for /// the accelerator key. - /+[ propget]+/ - HRESULT get_Handled(/+[out, retval]+/ BOOL* handled); - /// Sets the Handled property. - /+[ propput]+/ + + @(" propget") + HRESULT get_Handled(@("out, retval") BOOL* handled); + + /// Sets the `Handled` property. + + @(" propput") HRESULT put_Handled(in BOOL handled); } -/// The caller implements this interface to receive the AcceleratorKeyPressed -/// event. +/// This is This is a continuation of the ICoreWebView2AcceleratorKeyPressedEventArgs interface. +const GUID IID_ICoreWebView2AcceleratorKeyPressedEventArgs2 = ICoreWebView2AcceleratorKeyPressedEventArgs2.iid; + +interface ICoreWebView2AcceleratorKeyPressedEventArgs2 : ICoreWebView2AcceleratorKeyPressedEventArgs +{ + static const GUID iid = { 0x03b2c8c8,0x7799,0x4e34,[ 0xbd,0x66,0xed,0x26,0xaa,0x85,0xf2,0xbf ] }; + /// This property allows developers to enable or disable the browser from handling a specific + /// browser accelerator key such as Ctrl+P or F3, etc. + /// + /// Browser accelerator keys are the keys/key combinations that access features specific to + /// a web browser, including but not limited to: + /// - Ctrl-F and F3 for Find on Page + /// - Ctrl-P for Print + /// - Ctrl-R and F5 for Reload + /// - Ctrl-Plus and Ctrl-Minus for zooming + /// - Ctrl-Shift-C and F12 for DevTools + /// - Special keys for browser functions, such as Back, Forward, and Search + /// + /// This property does not disable accelerator keys related to movement and text editing, + /// such as: + /// - Home, End, Page Up, and Page Down + /// - Ctrl-X, Ctrl-C, Ctrl-V + /// - Ctrl-A for Select All + /// - Ctrl-Z for Undo + /// + /// The `CoreWebView2Settings.AreBrowserAcceleratorKeysEnabled` API is a convenient setting + /// for developers to disable all the browser accelerator keys together, and sets the default + /// value for the `IsBrowserAcceleratorKeyEnabled` property. + /// By default, `CoreWebView2Settings.AreBrowserAcceleratorKeysEnabled` is `TRUE` and + /// `IsBrowserAcceleratorKeyEnabled` is `TRUE`. + /// When developers change `CoreWebView2Settings.AreBrowserAcceleratorKeysEnabled` setting to `FALSE`, + /// this will change default value for `IsBrowserAcceleratorKeyEnabled` to `FALSE`. + /// If developers want specific keys to be handled by the browser after changing the + /// `CoreWebView2Settings.AreBrowserAcceleratorKeysEnabled` setting to `FALSE`, they need to enable + /// these keys by setting `IsBrowserAcceleratorKeyEnabled` to `TRUE`. + /// This API will give the event arg higher priority over the + /// `CoreWebView2Settings.AreBrowserAcceleratorKeysEnabled` setting when we handle the keys. + /// + /// For browser accelerator keys, when an accelerator key is pressed, the propagation and + /// processing order is: + /// 1. A CoreWebView2Controller.AcceleratorKeyPressed event is raised + /// 2. WebView2 browser feature accelerator key handling + /// 3. Web Content Handling: If the key combination isn't reserved for browser actions, + /// the key event propagates to the web content, where JavaScript event listeners can + /// capture and respond to it. + /// + /// `ICoreWebView2AcceleratorKeyPressedEventArgs` has a `Handled` property, that developers + /// can use to mark a key as handled. When the key is marked as handled anywhere along + /// the path, the event propagation stops, and web content will not receive the key. + /// With `IsBrowserAcceleratorKeyEnabled` property, if developers mark + /// `IsBrowserAcceleratorKeyEnabled` as `FALSE`, the browser will skip the WebView2 + /// browser feature accelerator key handling process, but the event propagation + /// continues, and web content will receive the key combination. + /// + /// \snippet ScenarioAcceleratorKeyPressed.cpp IsBrowserAcceleratorKeyEnabled + /// Gets the `IsBrowserAcceleratorKeyEnabled` property. + @(" propget") + HRESULT get_IsBrowserAcceleratorKeyEnabled(@("out, retval") BOOL* value); + + /// Sets the `IsBrowserAcceleratorKeyEnabled` property. + @(" propput") + HRESULT put_IsBrowserAcceleratorKeyEnabled(in BOOL value); +} + +/// Receives `AcceleratorKeyPressed` events. + const GUID IID_ICoreWebView2AcceleratorKeyPressedEventHandler = ICoreWebView2AcceleratorKeyPressedEventHandler.iid; interface ICoreWebView2AcceleratorKeyPressedEventHandler : IUnknown { static const GUID iid = { 0xb29c7e28,0xfa79,0x41a8,[ 0x8e,0x44,0x65,0x81,0x1c,0x76,0xdc,0xb2 ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. + + /// Provides the event args for the corresponding event. + HRESULT Invoke( /+[in]+/ ICoreWebView2Controller sender, /+[in]+/ ICoreWebView2AcceleratorKeyPressedEventArgs args); } -/// The caller implements this interface to receive NewBrowserVersionAvailable events. +/// Receives `NewBrowserVersionAvailable` events. const GUID IID_ICoreWebView2NewBrowserVersionAvailableEventHandler = ICoreWebView2NewBrowserVersionAvailableEventHandler.iid; interface ICoreWebView2NewBrowserVersionAvailableEventHandler : IUnknown { static const GUID iid = { 0xf9a2976e,0xd34e,0x44fc,[ 0xad,0xee,0x81,0xb6,0xb5,0x7c,0xa9,0x14 ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. - HRESULT Invoke(/+[in]+/ ICoreWebView2Environment webviewEnvironment, + + /// Provides the event args for the corresponding event. + + HRESULT Invoke(/+[in]+/ ICoreWebView2Environment sender, /+[in]+/ IUnknown args); } -/// The caller implements this method to receive the -/// ContainsFullScreenElementChanged events. There are no event args for this -/// event. +/// Receives `BrowserProcessExited` events. +const GUID IID_ICoreWebView2BrowserProcessExitedEventHandler = ICoreWebView2BrowserProcessExitedEventHandler.iid; + +interface ICoreWebView2BrowserProcessExitedEventHandler : IUnknown +{ + static const GUID iid = { 0xfa504257,0xa216,0x4911,[ 0xa8,0x60,0xfe,0x88,0x25,0x71,0x28,0x61 ] }; + /// Provides the event args for the corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2Environment sender, + /+[in]+/ ICoreWebView2BrowserProcessExitedEventArgs args); +} + +/// Receives `ContainsFullScreenElementChanged` events. + const GUID IID_ICoreWebView2ContainsFullScreenElementChangedEventHandler = ICoreWebView2ContainsFullScreenElementChangedEventHandler.iid; interface ICoreWebView2ContainsFullScreenElementChangedEventHandler : IUnknown { static const GUID iid = { 0xe45d98b1,0xafef,0x45be,[ 0x8b,0xaf,0x6c,0x77,0x28,0x86,0x7f,0x73 ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. There are no event args and the args - /// parameter will be null. + + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke(/+[in]+/ ICoreWebView2 sender, /+[in]+/ IUnknown args); } -/// The caller implements this interface to receive NewWindowRequested -/// events. +/// Receives `WindowCloseRequested` events. const GUID IID_ICoreWebView2WindowCloseRequestedEventHandler = ICoreWebView2WindowCloseRequestedEventHandler.iid; interface ICoreWebView2WindowCloseRequestedEventHandler : IUnknown { static const GUID iid = { 0x5c19e9e0,0x092f,0x486b,[ 0xaf,0xfa,0xca,0x82,0x31,0x91,0x30,0x39 ] }; - extern(Windows): - /// Called to provide the implementer with the event args for the - /// corresponding event. There are no event args and the args - /// parameter will be null. + + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke(/+[in]+/ ICoreWebView2 sender, /+[in]+/ IUnknown args); } -/// This represents the WebView2 Environment. WebViews created from an -/// environment run on the browser process specified with environment parameters -/// and objects created from an environment should be used in the same environment. -/// Using it in different environments are not guaranteed to be compatible and may fail. +/// Receives `WebResourceResponseReceived` events. +const GUID IID_ICoreWebView2WebResourceResponseReceivedEventHandler = ICoreWebView2WebResourceResponseReceivedEventHandler.iid; + +interface ICoreWebView2WebResourceResponseReceivedEventHandler : IUnknown +{ + static const GUID iid = { 0x7DE9898A,0x24F5,0x40C3,[ 0xA2,0xDE,0xD4,0xF4,0x58,0xE6,0x98,0x28 ] }; + /// Provides the event args for the corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2 sender, + /+[in]+/ ICoreWebView2WebResourceResponseReceivedEventArgs args); +} + +/// Event args for the `BrowserProcessExited` event. +const GUID IID_ICoreWebView2BrowserProcessExitedEventArgs = ICoreWebView2BrowserProcessExitedEventArgs.iid; + +interface ICoreWebView2BrowserProcessExitedEventArgs : IUnknown +{ + static const GUID iid = { 0x1f00663f,0xaf8c,0x4782,[ 0x9c,0xdd,0xdd,0x01,0xc5,0x2e,0x34,0xcb ] }; + /// The kind of browser process exit that has occurred. + @(" propget") + HRESULT get_BrowserProcessExitKind( + @("out, retval") COREWEBVIEW2_BROWSER_PROCESS_EXIT_KIND* browserProcessExitKind); + + /// The process ID of the browser process that has exited. + @(" propget") + HRESULT get_BrowserProcessId(@("out, retval") UINT32* value); +} + +/// Event args for the WebResourceResponseReceived event. +const GUID IID_ICoreWebView2WebResourceResponseReceivedEventArgs = ICoreWebView2WebResourceResponseReceivedEventArgs.iid; + +interface ICoreWebView2WebResourceResponseReceivedEventArgs : IUnknown +{ + static const GUID iid = { 0xD1DB483D,0x6796,0x4B8B,[ 0x80,0xFC,0x13,0x71,0x2B,0xB7,0x16,0xF4 ] }; + /// The request object for the web resource, as committed. This includes + /// headers added by the network stack that were not be included during the + /// associated WebResourceRequested event, such as Authentication headers. + /// Modifications to this object have no effect on how the request is + /// processed as it has already been sent. + @(" propget") + HRESULT get_Request(@("out, retval") ICoreWebView2WebResourceRequest * request); + /// View of the response object received for the web resource. + @(" propget") + HRESULT get_Response(@("out, retval") ICoreWebView2WebResourceResponseView * response); +} + +/// View of the HTTP representation for a web resource response. The properties +/// of this object are not mutable. This response view is used with the +/// WebResourceResponseReceived event. +const GUID IID_ICoreWebView2WebResourceResponseView = ICoreWebView2WebResourceResponseView.iid; + +interface ICoreWebView2WebResourceResponseView : IUnknown +{ + static const GUID iid = { 0x79701053,0x7759,0x4162,[ 0x8F,0x7D,0xF1,0xB3,0xF0,0x84,0x92,0x8D ] }; + /// The HTTP response headers as received. + @(" propget") + HRESULT get_Headers( + @("out, retval") ICoreWebView2HttpResponseHeaders * headers); + /// The HTTP response status code. + @(" propget") + HRESULT get_StatusCode(@("out, retval") int* statusCode); + /// The HTTP response reason phrase. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_ReasonPhrase(@("out, retval") LPWSTR* reasonPhrase); + + /// Get the response content asynchronously. The handler will receive the + /// response content stream. + /// + /// This method returns null if content size is more than 123MB or for navigations that become downloads + /// or if response is downloadable content type (e.g., application/octet-stream). + /// See `add_DownloadStarting` event to handle the response. + /// + /// If this method is being called again before a first call has completed, + /// the handler will be invoked at the same time the handlers from prior calls + /// are invoked. + /// If this method is being called after a first call has completed, the + /// handler will be invoked immediately. + /// \snippet ScenarioWebViewEventMonitor.cpp GetContent + HRESULT GetContent( + /+[in]+/ ICoreWebView2WebResourceResponseViewGetContentCompletedHandler handler); +} + +/// Receives the result of the +/// `ICoreWebView2WebResourceResponseView::GetContent` method. +const GUID IID_ICoreWebView2WebResourceResponseViewGetContentCompletedHandler = ICoreWebView2WebResourceResponseViewGetContentCompletedHandler.iid; + +interface ICoreWebView2WebResourceResponseViewGetContentCompletedHandler : IUnknown +{ + static const GUID iid = { 0x875738E1,0x9FA2,0x40E3,[ 0x8B,0x74,0x2E,0x89,0x72,0xDD,0x6F,0xE7 ] }; + /// Provides the completion status and result of the corresponding + /// asynchronous method call. A failure `errorCode` will be passed if the + /// content failed to load. `E_ABORT` means the response loading was blocked + /// (e.g., by CORS policy); `ERROR_CANCELLED` means the response loading was + /// cancelled. `ERROR_NO_DATA` means the response has no content data, + /// `content` is `null` in this case. Note content (if any) is ignored for + /// redirects, 204 No Content, 205 Reset Content, and HEAD-request responses. + HRESULT Invoke(in HRESULT errorCode, in IStream* content); +} + +/// Event args for the DOMContentLoaded event. +const GUID IID_ICoreWebView2DOMContentLoadedEventArgs = ICoreWebView2DOMContentLoadedEventArgs.iid; + +interface ICoreWebView2DOMContentLoadedEventArgs : IUnknown +{ + static const GUID iid = { 0x16B1E21A,0xC503,0x44F2,[ 0x84,0xC9,0x70,0xAB,0xA5,0x03,0x12,0x83 ] }; + /// The ID of the navigation which corresponds to other navigation ID properties on other navigation events. + @(" propget") + HRESULT get_NavigationId(@("out, retval") UINT64* navigationId); +} + +/// Receives `DOMContentLoaded` events. +const GUID IID_ICoreWebView2DOMContentLoadedEventHandler = ICoreWebView2DOMContentLoadedEventHandler.iid; + +interface ICoreWebView2DOMContentLoadedEventHandler : IUnknown +{ + static const GUID iid = { 0x4BAC7E9C,0x199E,0x49ED,[ 0x87,0xED,0x24,0x93,0x03,0xAC,0xF0,0x19 ] }; + /// Provides the event args for the corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2 sender, + /+[in]+/ ICoreWebView2DOMContentLoadedEventArgs args); +} + +/// Provides a set of properties that are used to manage an +/// ICoreWebView2Cookie. +/// +/// \snippet ScenarioCookieManagement.cpp CookieObject +const GUID IID_ICoreWebView2Cookie = ICoreWebView2Cookie.iid; + +interface ICoreWebView2Cookie : IUnknown +{ + static const GUID iid = { 0xAD26D6BE,0x1486,0x43E6,[ 0xBF,0x87,0xA2,0x03,0x40,0x06,0xCA,0x21 ] }; + /// Cookie name. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Name(@("out, retval") LPWSTR* name); + + /// Cookie value. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Value(@("out, retval") LPWSTR* value); + /// Set the cookie value property. + @(" propput") + HRESULT put_Value(in LPCWSTR value); + + /// The domain for which the cookie is valid. + /// The default is the host that this cookie has been received from. + /// Note that, for instance, ".bing.com", "bing.com", and "www.bing.com" are + /// considered different domains. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Domain(@("out, retval") LPWSTR* domain); + + /// The path for which the cookie is valid. The default is "/", which means + /// this cookie will be sent to all pages on the Domain. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Path(@("out, retval") LPWSTR* path); + + /// The expiration date and time for the cookie as the number of seconds since the UNIX epoch. + /// The default is -1.0, which means cookies are session cookies by default. + @(" propget") + HRESULT get_Expires(@("out, retval") double* expires); + /// Set the Expires property. Cookies are session cookies and will not be + /// persistent if Expires is set to -1.0. NaN, infinity, and any negative + /// value set other than -1.0 is disallowed. + @(" propput") + HRESULT put_Expires(in double expires); + + /// Whether this cookie is http-only. + /// True if a page script or other active content cannot access this + /// cookie. The default is false. + @(" propget") + HRESULT get_IsHttpOnly(@("out, retval") BOOL* isHttpOnly); + /// Set the IsHttpOnly property. + @(" propput") + HRESULT put_IsHttpOnly(in BOOL isHttpOnly); + + /// SameSite status of the cookie which represents the enforcement mode of the cookie. + /// The default is COREWEBVIEW2_COOKIE_SAME_SITE_KIND_LAX. + @(" propget") + HRESULT get_SameSite(@("out, retval") COREWEBVIEW2_COOKIE_SAME_SITE_KIND* sameSite); + /// Set the SameSite property. + @(" propput") + HRESULT put_SameSite(in COREWEBVIEW2_COOKIE_SAME_SITE_KIND sameSite); + + /// The security level of this cookie. True if the client is only to return + /// the cookie in subsequent requests if those requests use HTTPS. + /// The default is false. + /// Note that cookie that requests COREWEBVIEW2_COOKIE_SAME_SITE_KIND_NONE but + /// is not marked Secure will be rejected. + @(" propget") + HRESULT get_IsSecure(@("out, retval") BOOL* isSecure); + /// Set the IsSecure property. + @(" propput") + HRESULT put_IsSecure(in BOOL isSecure); + + /// Whether this is a session cookie. The default is false. + @(" propget") + HRESULT get_IsSession(@("out, retval") BOOL* isSession); +} + +/// Creates, adds or updates, gets, or or view the cookies. The changes would +/// apply to the context of the user profile. That is, other WebViews under the +/// same user profile could be affected. +const GUID IID_ICoreWebView2CookieManager = ICoreWebView2CookieManager.iid; + +interface ICoreWebView2CookieManager : IUnknown +{ + static const GUID iid = { 0x177CD9E7,0xB6F5,0x451A,[ 0x94,0xA0,0x5D,0x7A,0x3A,0x4C,0x41,0x41 ] }; + /// Create a cookie object with a specified name, value, domain, and path. + /// One can set other optional properties after cookie creation. + /// This only creates a cookie object and it is not added to the cookie + /// manager until you call AddOrUpdateCookie. + /// Leading or trailing whitespace(s), empty string, and special characters + /// are not allowed for name. + /// See ICoreWebView2Cookie for more details. + HRESULT CreateCookie( + in LPCWSTR name, + in LPCWSTR value, + in LPCWSTR domain, + in LPCWSTR path, + @("out, retval") ICoreWebView2Cookie * cookie); + + /// Creates a cookie whose params matches those of the specified cookie. + HRESULT CopyCookie( + /+[in]+/ ICoreWebView2Cookie cookieParam, + @("out, retval") ICoreWebView2Cookie * cookie); + + /// Gets a list of cookies matching the specific URI. + /// If uri is empty string or null, all cookies under the same profile are + /// returned. + /// You can modify the cookie objects by calling + /// ICoreWebView2CookieManager::AddOrUpdateCookie, and the changes + /// will be applied to the webview. + /// \snippet ScenarioCookieManagement.cpp GetCookies + HRESULT GetCookies( + in LPCWSTR uri, + /+[in]+/ ICoreWebView2GetCookiesCompletedHandler handler); + + /// Adds or updates a cookie with the given cookie data; may overwrite + /// cookies with matching name, domain, and path if they exist. + /// This method will fail if the domain of the given cookie is not specified. + /// \snippet ScenarioCookieManagement.cpp AddOrUpdateCookie + HRESULT AddOrUpdateCookie(/+[in]+/ ICoreWebView2Cookie cookie); + + /// Deletes a cookie whose name and domain/path pair + /// match those of the specified cookie. + HRESULT DeleteCookie(/+[in]+/ ICoreWebView2Cookie cookie); + + /// Deletes cookies with matching name and uri. + /// Cookie name is required. + /// All cookies with the given name where domain + /// and path match provided URI are deleted. + HRESULT DeleteCookies(in LPCWSTR name, in LPCWSTR uri); + + /// Deletes cookies with matching name and domain/path pair. + /// Cookie name is required. + /// If domain is specified, deletes only cookies with the exact domain. + /// If path is specified, deletes only cookies with the exact path. + HRESULT DeleteCookiesWithDomainAndPath(in LPCWSTR name, in LPCWSTR domain, in LPCWSTR path); + + /// Deletes all cookies under the same profile. + /// This could affect other WebViews under the same user profile. + HRESULT DeleteAllCookies(); +} + +/// A list of cookie objects. See `ICoreWebView2Cookie`. +/// \snippet ScenarioCookieManagement.cpp GetCookies +const GUID IID_ICoreWebView2CookieList = ICoreWebView2CookieList.iid; + +interface ICoreWebView2CookieList : IUnknown +{ + static const GUID iid = { 0xF7F6F714,0x5D2A,0x43C6,[ 0x95,0x03,0x34,0x6E,0xCE,0x02,0xD1,0x86 ] }; + /// The number of cookies contained in the ICoreWebView2CookieList. + @(" propget") + HRESULT get_Count(@("out, retval") UINT* count); + + /// Gets the cookie object at the given index. + HRESULT GetValueAtIndex(in UINT index, + @("out, retval") ICoreWebView2Cookie * cookie); +} + +/// Receives the result of the `GetCookies` method. The result is written to +/// the cookie list provided in the `GetCookies` method call. +const GUID IID_ICoreWebView2GetCookiesCompletedHandler = ICoreWebView2GetCookiesCompletedHandler.iid; + +interface ICoreWebView2GetCookiesCompletedHandler : IUnknown +{ + static const GUID iid = { 0x5A4F5069,0x5C15,0x47C3,[ 0x86,0x46,0xF4,0xDE,0x1C,0x11,0x66,0x70 ] }; + /// Provides the completion status of the corresponding asynchronous method + /// call. + HRESULT Invoke(HRESULT result, ICoreWebView2CookieList cookieList); +} + +/// Provides access to the client certificate metadata. +const GUID IID_ICoreWebView2ClientCertificate = ICoreWebView2ClientCertificate.iid; + +interface ICoreWebView2ClientCertificate : IUnknown +{ + static const GUID iid = { 0xe7188076,0xbcc3,0x11eb,[ 0x85,0x29,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// Subject of the certificate. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Subject(@("out, retval") LPWSTR* value); + /// Name of the certificate authority that issued the certificate. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Issuer(@("out, retval") LPWSTR* value); + /// The valid start date and time for the certificate as the number of seconds since + /// the UNIX epoch. + @(" propget") + HRESULT get_ValidFrom(@("out, retval") double* value); + /// The valid expiration date and time for the certificate as the number of seconds since + /// the UNIX epoch. + @(" propget") + HRESULT get_ValidTo(@("out, retval") double* value); + /// Base64 encoding of DER encoded serial number of the certificate. + /// Read more about DER at [RFC 7468 DER] + /// (https://tools.ietf.org/html/rfc7468#appendix-B). + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_DerEncodedSerialNumber(@("out, retval") LPWSTR* value); + /// Display name for a certificate. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_DisplayName(@("out, retval") LPWSTR* value); + /// PEM encoded data for the certificate. + /// Returns Base64 encoding of DER encoded certificate. + /// Read more about PEM at [RFC 1421 Privacy Enhanced Mail] + /// (https://tools.ietf.org/html/rfc1421). + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + HRESULT ToPemEncoding(@("out, retval") LPWSTR* pemEncodedData); + /// Collection of PEM encoded client certificate issuer chain. + /// In this collection first element is the current certificate followed by + /// intermediate1, intermediate2...intermediateN-1. Root certificate is the + /// last element in collection. + @(" propget") + HRESULT get_PemEncodedIssuerCertificateChain(@("out, retval") + ICoreWebView2StringCollection * value); + /// Kind of a certificate (eg., smart card, pin, other). + @(" propget") + HRESULT get_Kind(@("out, retval") + COREWEBVIEW2_CLIENT_CERTIFICATE_KIND* value); +} + +/// A collection of client certificate object. +const GUID IID_ICoreWebView2ClientCertificateCollection = ICoreWebView2ClientCertificateCollection.iid; + +interface ICoreWebView2ClientCertificateCollection : IUnknown +{ + static const GUID iid = { 0xef5674d2,0xbcc3,0x11eb,[ 0x85,0x29,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// The number of client certificates contained in the + /// ICoreWebView2ClientCertificateCollection. + @(" propget") + HRESULT get_Count(@("out, retval") UINT* value); + /// Gets the certificate object at the given index. + HRESULT GetValueAtIndex(in UINT index, + @("out, retval") ICoreWebView2ClientCertificate * certificate); +} + +/// A collection of strings. +const GUID IID_ICoreWebView2StringCollection = ICoreWebView2StringCollection.iid; + +interface ICoreWebView2StringCollection : IUnknown +{ + static const GUID iid = { 0xf41f3f8a,0xbcc3,0x11eb,[ 0x85,0x29,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// The number of strings contained in ICoreWebView2StringCollection. + @(" propget") + HRESULT get_Count(@("out, retval") UINT* value); + + /// Gets the value at a given index. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + HRESULT GetValueAtIndex(in UINT index, + @("out, retval") LPWSTR* value); +} + +/// An event handler for the `ClientCertificateRequested` event. +const GUID IID_ICoreWebView2ClientCertificateRequestedEventHandler = ICoreWebView2ClientCertificateRequestedEventHandler.iid; + +interface ICoreWebView2ClientCertificateRequestedEventHandler : IUnknown +{ + static const GUID iid = { 0xd7175ba2,0xbcc3,0x11eb,[ 0x85,0x29,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// Provides the event args for the corresponding event. + HRESULT Invoke(/+[in]+/ ICoreWebView2 sender, + /+[in]+/ ICoreWebView2ClientCertificateRequestedEventArgs args); +} + +/// Event args for the `ClientCertificateRequested` event. +const GUID IID_ICoreWebView2ClientCertificateRequestedEventArgs = ICoreWebView2ClientCertificateRequestedEventArgs.iid; + +interface ICoreWebView2ClientCertificateRequestedEventArgs : IUnknown +{ + static const GUID iid = { 0xbc59db28,0xbcc3,0x11eb,[ 0x85,0x29,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// Host name of the server that requested client certificate authentication. + /// Normalization rules applied to the hostname are: + /// * Convert to lowercase characters for ascii characters. + /// * Punycode is used for representing non ascii characters. + /// * Strip square brackets for IPV6 address. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Host(@("out, retval") LPWSTR* value); + + /// Port of the server that requested client certificate authentication. + @(" propget") + HRESULT get_Port(@("out, retval") int* value); + + /// Returns true if the server that issued this request is an http proxy. + /// Returns false if the server is the origin server. + @(" propget") + HRESULT get_IsProxy(@("out, retval") BOOL* value); + + /// Returns the `ICoreWebView2StringCollection`. + /// The collection contains Base64 encoding of DER encoded distinguished names of + /// certificate authorities allowed by the server. + @(" propget") + HRESULT get_AllowedCertificateAuthorities(@("out, retval") + ICoreWebView2StringCollection * value); + + /// Returns the `ICoreWebView2ClientCertificateCollection` when client + /// certificate authentication is requested. The collection contains mutually + /// trusted CA certificates. + @(" propget") + HRESULT get_MutuallyTrustedCertificates(@("out, retval") + ICoreWebView2ClientCertificateCollection * value); + + /// Returns the selected certificate. + @(" propget") + HRESULT get_SelectedCertificate(@("out, retval") + ICoreWebView2ClientCertificate * value); + + /// Sets the certificate to respond to the server. + @(" propput") + HRESULT put_SelectedCertificate( + /+[in]+/ ICoreWebView2ClientCertificate value); + + /// You may set this flag to cancel the certificate selection. If canceled, + /// the request is aborted regardless of the `Handled` property. By default the + /// value is `FALSE`. + @(" propget") + HRESULT get_Cancel(@("out, retval") BOOL* value); + + /// Sets the `Cancel` property. + @(" propput") + HRESULT put_Cancel(in BOOL value); + + /// You may set this flag to `TRUE` to respond to the server with or + /// without a certificate. If this flag is `TRUE` with a `SelectedCertificate` + /// it responds to the server with the selected certificate otherwise respond to the + /// server without a certificate. By default the value of `Handled` and `Cancel` are `FALSE` + /// and display default client certificate selection dialog prompt to allow the user to + /// choose a certificate. The `SelectedCertificate` is ignored unless `Handled` is set `TRUE`. + @(" propget") + HRESULT get_Handled(@("out, retval") BOOL* value); + + /// Sets the `Handled` property. + @(" propput") + HRESULT put_Handled(in BOOL value); + + /// Returns an `ICoreWebView2Deferral` object. Use this operation to + /// complete the event at a later time. + HRESULT GetDeferral(@("out, retval") ICoreWebView2Deferral * deferral); +} + +/// This mostly represents a combined win32 +/// POINTER_INFO/POINTER_TOUCH_INFO/POINTER_PEN_INFO object. It takes fields +/// from all three and excludes some win32 specific data types like HWND and +/// HANDLE. Note, sourceDevice is taken out but we expect the PointerDeviceRect +/// and DisplayRect to cover the existing use cases of sourceDevice. +/// Another big difference is that any of the point or rect locations are +/// expected to be in WebView physical coordinates. That is, coordinates +/// relative to the WebView and no DPI scaling applied. +// +// The PointerId, PointerFlags, ButtonChangeKind, PenFlags, PenMask, TouchFlags, +// and TouchMask are all #defined flags or enums in the +// POINTER_INFO/POINTER_TOUCH_INFO/POINTER_PEN_INFO structure. We define those +// properties here as UINT32 or INT32 and expect the developer to know how to +// populate those values based on the Windows definitions. +const GUID IID_ICoreWebView2PointerInfo = ICoreWebView2PointerInfo.iid; + +interface ICoreWebView2PointerInfo : IUnknown +{ + static const GUID iid = { 0xe6995887,0xd10d,0x4f5d,[ 0x93,0x59,0x4c,0xe4,0x6e,0x4f,0x96,0xb9 ] }; + /// Get the PointerKind of the pointer event. This corresponds to the + /// pointerKind property of the POINTER_INFO struct. The values are defined by + /// the POINTER_INPUT_KIND enum in the Windows SDK (winuser.h). Supports + /// PT_PEN and PT_TOUCH. + @(" propget") + HRESULT get_PointerKind(@("out, retval") DWORD* pointerKind); + /// Set the PointerKind of the pointer event. This corresponds to the + /// pointerKind property of the POINTER_INFO struct. The values are defined by + /// the POINTER_INPUT_KIND enum in the Windows SDK (winuser.h). Supports + /// PT_PEN and PT_TOUCH. + @(" propput") + HRESULT put_PointerKind(in DWORD pointerKind); + + /// Get the PointerId of the pointer event. This corresponds to the pointerId + /// property of the POINTER_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propget") + HRESULT get_PointerId(@("out, retval") UINT32* pointerId); + /// Set the PointerId of the pointer event. This corresponds to the pointerId + /// property of the POINTER_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propput") + HRESULT put_PointerId(in UINT32 pointerId); + + /// Get the FrameID of the pointer event. This corresponds to the frameId + /// property of the POINTER_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propget") + HRESULT get_FrameId(@("out, retval") UINT32* frameId); + /// Set the FrameID of the pointer event. This corresponds to the frameId + /// property of the POINTER_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propput") + HRESULT put_FrameId(in UINT32 frameId); + + /// Get the PointerFlags of the pointer event. This corresponds to the + /// pointerFlags property of the POINTER_INFO struct. The values are defined + /// by the POINTER_FLAGS constants in the Windows SDK (winuser.h). + @(" propget") + HRESULT get_PointerFlags(@("out, retval") UINT32* pointerFlags); + /// Set the PointerFlags of the pointer event. This corresponds to the + /// pointerFlags property of the POINTER_INFO struct. The values are defined + /// by the POINTER_FLAGS constants in the Windows SDK (winuser.h). + @(" propput") + HRESULT put_PointerFlags(in UINT32 pointerFlags); + + /// Get the PointerDeviceRect of the sourceDevice property of the + /// POINTER_INFO struct as defined in the Windows SDK (winuser.h). + @(" propget") + HRESULT get_PointerDeviceRect(@("out, retval") RECT* pointerDeviceRect); + /// Set the PointerDeviceRect of the sourceDevice property of the + /// POINTER_INFO struct as defined in the Windows SDK (winuser.h). + @(" propput") + HRESULT put_PointerDeviceRect(in RECT pointerDeviceRect); + + /// Get the DisplayRect of the sourceDevice property of the POINTER_INFO + /// struct as defined in the Windows SDK (winuser.h). + @(" propget") + HRESULT get_DisplayRect(@("out, retval") RECT* displayRect); + /// Set the DisplayRect of the sourceDevice property of the POINTER_INFO + /// struct as defined in the Windows SDK (winuser.h). + @(" propput") + HRESULT put_DisplayRect(in RECT displayRect); + + /// Get the PixelLocation of the pointer event. This corresponds to the + /// ptPixelLocation property of the POINTER_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propget") + HRESULT get_PixelLocation(@("out, retval") POINT* pixelLocation); + /// Set the PixelLocation of the pointer event. This corresponds to the + /// ptPixelLocation property of the POINTER_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propput") + HRESULT put_PixelLocation(in POINT pixelLocation); + + /// Get the HimetricLocation of the pointer event. This corresponds to the + /// ptHimetricLocation property of the POINTER_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propget") + HRESULT get_HimetricLocation(@("out, retval") POINT* himetricLocation); + /// Set the HimetricLocation of the pointer event. This corresponds to the + /// ptHimetricLocation property of the POINTER_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propput") + HRESULT put_HimetricLocation(in POINT himetricLocation); + + /// Get the PixelLocationRaw of the pointer event. This corresponds to the + /// ptPixelLocationRaw property of the POINTER_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propget") + HRESULT get_PixelLocationRaw(@("out, retval") POINT* pixelLocationRaw); + /// Set the PixelLocationRaw of the pointer event. This corresponds to the + /// ptPixelLocationRaw property of the POINTER_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propput") + HRESULT put_PixelLocationRaw(in POINT pixelLocationRaw); + + /// Get the HimetricLocationRaw of the pointer event. This corresponds to the + /// ptHimetricLocationRaw property of the POINTER_INFO struct as defined in + /// the Windows SDK (winuser.h). + @(" propget") + HRESULT get_HimetricLocationRaw(@("out, retval") POINT* himetricLocationRaw); + /// Set the HimetricLocationRaw of the pointer event. This corresponds to the + /// ptHimetricLocationRaw property of the POINTER_INFO struct as defined in + /// the Windows SDK (winuser.h). + @(" propput") + HRESULT put_HimetricLocationRaw(in POINT himetricLocationRaw); + + /// Get the Time of the pointer event. This corresponds to the dwTime property + /// of the POINTER_INFO struct as defined in the Windows SDK (winuser.h). + @(" propget") + HRESULT get_Time(@("out, retval") DWORD* time); + /// Set the Time of the pointer event. This corresponds to the dwTime property + /// of the POINTER_INFO struct as defined in the Windows SDK (winuser.h). + @(" propput") + HRESULT put_Time(in DWORD time); + + /// Get the HistoryCount of the pointer event. This corresponds to the + /// historyCount property of the POINTER_INFO struct as defined in the Windows + /// SDK (winuser.h). + @(" propget") + HRESULT get_HistoryCount(@("out, retval") UINT32* historyCount); + /// Set the HistoryCount of the pointer event. This corresponds to the + /// historyCount property of the POINTER_INFO struct as defined in the Windows + /// SDK (winuser.h). + @(" propput") + HRESULT put_HistoryCount(in UINT32 historyCount); + + /// Get the InputData of the pointer event. This corresponds to the InputData + /// property of the POINTER_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propget") + HRESULT get_InputData(@("out, retval") INT32* inputData); + /// Set the InputData of the pointer event. This corresponds to the InputData + /// property of the POINTER_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propput") + HRESULT put_InputData(in INT32 inputData); + + /// Get the KeyStates of the pointer event. This corresponds to the + /// dwKeyStates property of the POINTER_INFO struct as defined in the Windows + /// SDK (winuser.h). + @(" propget") + HRESULT get_KeyStates(@("out, retval") DWORD* keyStates); + /// Set the KeyStates of the pointer event. This corresponds to the + /// dwKeyStates property of the POINTER_INFO struct as defined in the Windows + /// SDK (winuser.h). + @(" propput") + HRESULT put_KeyStates(in DWORD keyStates); + + /// Get the PerformanceCount of the pointer event. This corresponds to the + /// PerformanceCount property of the POINTER_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propget") + HRESULT get_PerformanceCount(@("out, retval") UINT64* performanceCount); + /// Set the PerformanceCount of the pointer event. This corresponds to the + /// PerformanceCount property of the POINTER_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propput") + HRESULT put_PerformanceCount(in UINT64 performanceCount); + + /// Get the ButtonChangeKind of the pointer event. This corresponds to the + /// ButtonChangeKind property of the POINTER_INFO struct. The values are + /// defined by the POINTER_BUTTON_CHANGE_KIND enum in the Windows SDK + /// (winuser.h). + @(" propget") + HRESULT get_ButtonChangeKind(@("out, retval") INT32* buttonChangeKind); + /// Set the ButtonChangeKind of the pointer event. This corresponds to the + /// ButtonChangeKind property of the POINTER_INFO struct. The values are + /// defined by the POINTER_BUTTON_CHANGE_KIND enum in the Windows SDK + /// (winuser.h). + @(" propput") + HRESULT put_ButtonChangeKind(in INT32 buttonChangeKind); + + // Pen specific attributes + + /// Get the PenFlags of the pointer event. This corresponds to the penFlags + /// property of the POINTER_PEN_INFO struct. The values are defined by the + /// PEN_FLAGS constants in the Windows SDK (winuser.h). + @(" propget") + HRESULT get_PenFlags(@("out, retval") UINT32* penFLags); + /// Set the PenFlags of the pointer event. This corresponds to the penFlags + /// property of the POINTER_PEN_INFO struct. The values are defined by the + /// PEN_FLAGS constants in the Windows SDK (winuser.h). + @(" propput") + HRESULT put_PenFlags(in UINT32 penFLags); + + /// Get the PenMask of the pointer event. This corresponds to the penMask + /// property of the POINTER_PEN_INFO struct. The values are defined by the + /// PEN_MASK constants in the Windows SDK (winuser.h). + @(" propget") + HRESULT get_PenMask(@("out, retval") UINT32* penMask); + /// Set the PenMask of the pointer event. This corresponds to the penMask + /// property of the POINTER_PEN_INFO struct. The values are defined by the + /// PEN_MASK constants in the Windows SDK (winuser.h). + @(" propput") + HRESULT put_PenMask(in UINT32 penMask); + + /// Get the PenPressure of the pointer event. This corresponds to the pressure + /// property of the POINTER_PEN_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propget") + HRESULT get_PenPressure(@("out, retval") UINT32* penPressure); + /// Set the PenPressure of the pointer event. This corresponds to the pressure + /// property of the POINTER_PEN_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propput") + HRESULT put_PenPressure(in UINT32 penPressure); + + /// Get the PenRotation of the pointer event. This corresponds to the rotation + /// property of the POINTER_PEN_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propget") + HRESULT get_PenRotation(@("out, retval") UINT32* penRotation); + /// Set the PenRotation of the pointer event. This corresponds to the rotation + /// property of the POINTER_PEN_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propput") + HRESULT put_PenRotation(in UINT32 penRotation); + + /// Get the PenTiltX of the pointer event. This corresponds to the tiltX + /// property of the POINTER_PEN_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propget") + HRESULT get_PenTiltX(@("out, retval") INT32* penTiltX); + /// Set the PenTiltX of the pointer event. This corresponds to the tiltX + /// property of the POINTER_PEN_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propput") + HRESULT put_PenTiltX(in INT32 penTiltX); + + /// Get the PenTiltY of the pointer event. This corresponds to the tiltY + /// property of the POINTER_PEN_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propget") + HRESULT get_PenTiltY(@("out, retval") INT32* penTiltY); + /// Set the PenTiltY of the pointer event. This corresponds to the tiltY + /// property of the POINTER_PEN_INFO struct as defined in the Windows SDK + /// (winuser.h). + @(" propput") + HRESULT put_PenTiltY(in INT32 penTiltY); + + // Touch specific attributes + + /// Get the TouchFlags of the pointer event. This corresponds to the + /// touchFlags property of the POINTER_TOUCH_INFO struct. The values are + /// defined by the TOUCH_FLAGS constants in the Windows SDK (winuser.h). + @(" propget") + HRESULT get_TouchFlags(@("out, retval") UINT32* touchFlags); + /// Set the TouchFlags of the pointer event. This corresponds to the + /// touchFlags property of the POINTER_TOUCH_INFO struct. The values are + /// defined by the TOUCH_FLAGS constants in the Windows SDK (winuser.h). + @(" propput") + HRESULT put_TouchFlags(in UINT32 touchFlags); + + /// Get the TouchMask of the pointer event. This corresponds to the + /// touchMask property of the POINTER_TOUCH_INFO struct. The values are + /// defined by the TOUCH_MASK constants in the Windows SDK (winuser.h). + @(" propget") + HRESULT get_TouchMask(@("out, retval") UINT32* touchMask); + /// Set the TouchMask of the pointer event. This corresponds to the + /// touchMask property of the POINTER_TOUCH_INFO struct. The values are + /// defined by the TOUCH_MASK constants in the Windows SDK (winuser.h). + @(" propput") + HRESULT put_TouchMask(in UINT32 touchMask); + + /// Get the TouchContact of the pointer event. This corresponds to the + /// rcContact property of the POINTER_TOUCH_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propget") + HRESULT get_TouchContact(@("out, retval") RECT* touchContact); + /// Set the TouchContact of the pointer event. This corresponds to the + /// rcContact property of the POINTER_TOUCH_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propput") + HRESULT put_TouchContact(in RECT touchContact); + + /// Get the TouchContactRaw of the pointer event. This corresponds to the + /// rcContactRaw property of the POINTER_TOUCH_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propget") + HRESULT get_TouchContactRaw(@("out, retval") RECT* touchContactRaw); + /// Set the TouchContactRaw of the pointer event. This corresponds to the + /// rcContactRaw property of the POINTER_TOUCH_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propput") + HRESULT put_TouchContactRaw(in RECT touchContactRaw); + + /// Get the TouchOrientation of the pointer event. This corresponds to the + /// orientation property of the POINTER_TOUCH_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propget") + HRESULT get_TouchOrientation(@("out, retval") UINT32* touchOrientation); + /// Set the TouchOrientation of the pointer event. This corresponds to the + /// orientation property of the POINTER_TOUCH_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propput") + HRESULT put_TouchOrientation(in UINT32 touchOrientation); + + /// Get the TouchPressure of the pointer event. This corresponds to the + /// pressure property of the POINTER_TOUCH_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propget") + HRESULT get_TouchPressure(@("out, retval") UINT32* touchPressure); + /// Set the TouchPressure of the pointer event. This corresponds to the + /// pressure property of the POINTER_TOUCH_INFO struct as defined in the + /// Windows SDK (winuser.h). + @(" propput") + HRESULT put_TouchPressure(in UINT32 touchPressure); +} + +/// The caller implements this interface to receive CursorChanged events. Use +/// the Cursor property to get the new cursor. +const GUID IID_ICoreWebView2CursorChangedEventHandler = ICoreWebView2CursorChangedEventHandler.iid; + +interface ICoreWebView2CursorChangedEventHandler : IUnknown +{ + static const GUID iid = { 0x9da43ccc,0x26e1,0x4dad,[ 0xb5,0x6c,0xd8,0x96,0x1c,0x94,0xc5,0x71 ] }; + /// Called to provide the implementer with the event args for the + /// corresponding event. There are no event args and the args + /// parameter will be null. + HRESULT Invoke(/+[in]+/ ICoreWebView2CompositionController sender, /+[in]+/ IUnknown args); +} + +/// Receives `RasterizationScaleChanged` events. Use the `RasterizationScale` +/// property to get the modified scale. + +const GUID IID_ICoreWebView2RasterizationScaleChangedEventHandler = ICoreWebView2RasterizationScaleChangedEventHandler.iid; + +interface ICoreWebView2RasterizationScaleChangedEventHandler : IUnknown +{ + static const GUID iid = { 0x9c98c8b1,0xac53,0x427e,[ 0xa3,0x45,0x30,0x49,0xb5,0x52,0x4b,0xbe ] }; + /// Called to provide the implementer with the event args for the + /// corresponding event. There are no event args and the args + /// parameter will be null. + HRESULT Invoke( + /+[in]+/ ICoreWebView2Controller sender, + /+[in]+/ IUnknown args); +} + +/// Represents the WebView2 Environment. WebViews created from an environment +/// run on the browser process specified with environment parameters and +/// objects created from an environment should be used in the same +/// environment. Using it in different environments are not guaranteed to be +/// compatible and may fail. + const GUID IID_ICoreWebView2Environment = ICoreWebView2Environment.iid; interface ICoreWebView2Environment : IUnknown { static const GUID iid = { 0xb96d755e,0x0319,0x4e92,[ 0xa2,0x96,0x23,0x43,0x6f,0x46,0xa1,0xfc ] }; - extern(Windows): + /// Asynchronously create a new WebView. /// - /// parentWindow is the HWND in which the WebView should be displayed and - /// from which receive input. The WebView will add a child window to the - /// provided window during WebView creation. Z-order and other things impacted - /// by sibling window order will be affected accordingly. + /// `parentWindow` is the `HWND` in which the WebView should be displayed and + /// from which receive input. The WebView adds a child window to the + /// provided window before this function returns. Z-order and other things + /// impacted by sibling window order are affected accordingly. If you want to + /// move the WebView to a different parent after it has been created, you must + /// call put_ParentWindow to update tooltip positions, accessibility trees, + /// and such. + /// + /// HWND_MESSAGE is a valid parameter for `parentWindow` for an invisible + /// WebView for Windows 8 and above. In this case the window will never + /// become visible. You are not able to reparent the window after you have + /// created the WebView. This is not supported in Windows 7 or below. + /// Passing this parameter in Windows 7 or below will return + /// ERROR_INVALID_WINDOW_HANDLE in the controller callback. + /// + /// It is recommended that the app set Application User Model ID for the + /// process or the app window. If none is set, during WebView creation a + /// generated Application User Model ID is set to root window of + /// `parentWindow`. + /// + /// \snippet AppWindow.cpp CreateCoreWebView2Controller + /// + /// It is recommended that the app handles restart manager messages, to + /// gracefully restart it in the case when the app is using the WebView2 + /// Runtime from a certain installation and that installation is being + /// uninstalled. For example, if a user installs a version of the WebView2 + /// Runtime and opts to use another version of the WebView2 Runtime for + /// testing the app, and then uninstalls the 1st version of the WebView2 + /// Runtime without closing the app, the app restarts to allow + /// un-installation to succeed. + /// + /// \snippet AppWindow.cpp RestartManager + /// + /// The app should retry `CreateCoreWebView2Controller` upon failure, unless the + /// error code is `HRESULT_FROM_WIN32(ERROR_INVALID_STATE)`. + /// When the app retries `CreateCoreWebView2Controller` upon failure, it is + /// recommended that the app restarts from creating a new WebView2 + /// Environment. If a WebView2 Runtime update happens, the version + /// associated with a WebView2 Environment may have been removed and causing + /// the object to no longer work. Creating a new WebView2 Environment works + /// since it uses the latest version. + /// + /// WebView creation fails with `HRESULT_FROM_WIN32(ERROR_INVALID_STATE)` if a + /// running instance using the same user data folder exists, and the Environment + /// objects have different `EnvironmentOptions`. For example, if a WebView was + /// created with one language, an attempt to create a WebView with a different + /// language using the same user data folder will fail. + /// + /// The creation will fail with `E_ABORT` if `parentWindow` is destroyed + /// before the creation is finished. If this is caused by a call to + /// `DestroyWindow`, the creation completed handler will be invoked before + /// `DestroyWindow` returns, so you can use this to cancel creation and clean + /// up resources synchronously when quitting a thread. + /// + /// In rare cases the creation can fail with `E_UNEXPECTED` if runtime does not have + /// permissions to the user data folder. + + HRESULT CreateCoreWebView2Controller( + HWND parentWindow, + ICoreWebView2CreateCoreWebView2ControllerCompletedHandler handler); + + /// Create a new web resource response object. The `headers` parameter is + /// the raw response header string delimited by newline. It is also possible + /// to create this object with null headers string and then use the + /// `ICoreWebView2HttpResponseHeaders` to construct the headers line by line. + /// For more information about other parameters, navigate to + /// [ICoreWebView2WebResourceResponse](/microsoft-edge/webview2/reference/win32/icorewebview2webresourceresponse). + /// + /// \snippet SettingsComponent.cpp WebResourceRequested0 + /// \snippet SettingsComponent.cpp WebResourceRequested1 + HRESULT CreateWebResourceResponse( + in IStream* content, + in int statusCode, + in LPCWSTR reasonPhrase, + in LPCWSTR headers, + @("out, retval") ICoreWebView2WebResourceResponse * response); + + /// The browser version info of the current `ICoreWebView2Environment`, + /// including channel name if it is not the WebView2 Runtime. It matches the + /// format of the `GetAvailableCoreWebView2BrowserVersionString` API. + /// Channel names are `beta`, `dev`, and `canary`. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + /// + /// \snippet AppWindow.cpp GetBrowserVersionString + @(" propget") + HRESULT get_BrowserVersionString(@("out, retval") LPWSTR* versionInfo); + + /// Add an event handler for the `NewBrowserVersionAvailable` event. + /// `NewBrowserVersionAvailable` runs when a newer version of the WebView2 + /// Runtime is installed and available using WebView2. To use the newer + /// version of the browser you must create a new environment and WebView. + /// The event only runs for new version from the same WebView2 Runtime from + /// which the code is running. When not running with installed WebView2 + /// Runtime, no event is run. + /// + /// Because a user data folder is only able to be used by one browser + /// process at a time, if you want to use the same user data folder in the + /// WebView using the new version of the browser, you must close the + /// environment and instance of WebView that are using the older version of + /// the browser first. Or simply prompt the user to restart the app. + /// + /// \snippet AppWindow.cpp NewBrowserVersionAvailable + HRESULT add_NewBrowserVersionAvailable( + /+[in]+/ ICoreWebView2NewBrowserVersionAvailableEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_NewBrowserVersionAvailable`. + HRESULT remove_NewBrowserVersionAvailable( + in EventRegistrationToken token); +} + +/// A continuation of the ICoreWebView2Environment interface. +const GUID IID_ICoreWebView2Environment2 = ICoreWebView2Environment2.iid; + +interface ICoreWebView2Environment2 : ICoreWebView2Environment +{ + static const GUID iid = { 0x41F3632B,0x5EF4,0x404F,[ 0xAD,0x82,0x2D,0x60,0x6C,0x5A,0x9A,0x21 ] }; + /// Create a new web resource request object. + /// URI parameter must be absolute URI. + /// The headers string is the raw request header string delimited by CRLF + /// (optional in last header). + /// It's also possible to create this object with null headers string + /// and then use the ICoreWebView2HttpRequestHeaders to construct the headers + /// line by line. + /// For information on other parameters see ICoreWebView2WebResourceRequest. + /// + /// \snippet ScenarioNavigateWithWebResourceRequest.cpp NavigateWithWebResourceRequest + HRESULT CreateWebResourceRequest(in LPCWSTR uri, + in LPCWSTR method, + in IStream* postData, + in LPCWSTR headers, + @("out, retval") ICoreWebView2WebResourceRequest * request); +} + +/// A continuation of the ICoreWebView2Environment2 interface. +const GUID IID_ICoreWebView2Environment3 = ICoreWebView2Environment3.iid; + +interface ICoreWebView2Environment3 : ICoreWebView2Environment2 +{ + static const GUID iid = { 0x80a22ae3,0xbe7c,0x4ce2,[ 0xaf,0xe1,0x5a,0x50,0x05,0x6c,0xde,0xeb ] }; + /// Asynchronously create a new WebView for use with visual hosting. + /// + /// parentWindow is the HWND in which the app will connect the visual tree of + /// the WebView. This will be the HWND that the app will receive pointer/ + /// mouse input meant for the WebView (and will need to use SendMouseInput/ + /// SendPointerInput to forward). If the app moves the WebView visual tree to + /// underneath a different window, then it needs to call put_ParentWindow to + /// update the new parent HWND of the visual tree. + /// + /// HWND_MESSAGE is not a valid parameter for `parentWindow` for visual hosting. + /// The underlying implementation of supporting HWND_MESSAGE would break + /// accessibility for visual hosting. This is supported in windowed + /// WebViews - see CreateCoreWebView2Controller. + /// + /// Use put_RootVisualTarget on the created CoreWebView2CompositionController to + /// provide a visual to host the browser's visual tree. /// /// It is recommended that the application set Application User Model ID for /// the process or the application window. If none is set, during WebView @@ -25052,332 +29672,3115 @@ interface ICoreWebView2Environment : IUnknown /// /// It is recommended that the application handles restart manager messages /// so that it can be restarted gracefully in the case when the app is using - /// Edge for WebView from a certain installation and that installation is being - /// uninstalled. For example, if a user installs Edge from Dev channel and - /// opts to use Edge from that channel for testing the app, and then uninstalls - /// Edge from that channel without closing the app, the app will be restarted - /// to allow uninstallation of the dev channel to succeed. + /// Edge for WebView from a certain installation and that installation is + /// being uninstalled. For example, if a user installs Edge from Dev channel + /// and opts to use Edge from that channel for testing the app, and then + /// uninstalls Edge from that channel without closing the app, the app will + /// be restarted to allow uninstallation of the dev channel to succeed. /// \snippet AppWindow.cpp RestartManager /// - /// When the application retries CreateCoreWebView2Controller upon failure, it is - /// recommended that the application restarts from creating a new WebView2 - /// Environment. If an Edge update happens, the version associated with a WebView2 - /// Environment could have been removed and causing the object to no longer work. - /// Creating a new WebView2 Environment will work as it uses the latest version. + /// The app should retry `CreateCoreWebView2CompositionController` upon failure, + /// unless the error code is `HRESULT_FROM_WIN32(ERROR_INVALID_STATE)`. + /// When the app retries `CreateCoreWebView2CompositionController` + /// upon failure, it is recommended that the app restarts from creating a new + /// WebView2 Environment. If a WebView2 Runtime update happens, the version + /// associated with a WebView2 Environment may have been removed and causing + /// the object to no longer work. Creating a new WebView2 Environment works + /// since it uses the latest version. /// - /// WebView creation will fail if there is already a running instance using the same - /// user data folder, and the Environment objects have different EnvironmentOptions. - /// For example, if there is already a WebView created with one language, trying to - /// create a WebView with a different language using the same user data folder will - /// fail. - HRESULT CreateCoreWebView2Controller( - HWND parentWindow, - ICoreWebView2CreateCoreWebView2ControllerCompletedHandler handler); + /// WebView creation fails with `HRESULT_FROM_WIN32(ERROR_INVALID_STATE)` if a + /// running instance using the same user data folder exists, and the Environment + /// objects have different `EnvironmentOptions`. For example, if a WebView was + /// created with one language, an attempt to create a WebView with a different + /// language using the same user data folder will fail. + /// + /// The creation will fail with `E_ABORT` if `parentWindow` is destroyed + /// before the creation is finished. If this is caused by a call to + /// `DestroyWindow`, the creation completed handler will be invoked before + /// `DestroyWindow` returns, so you can use this to cancel creation and clean + /// up resources synchronously when quitting a thread. + /// + /// In rare cases the creation can fail with `E_UNEXPECTED` if runtime does not have + /// permissions to the user data folder. + /// + /// CreateCoreWebView2CompositionController is supported in the following versions of Windows: + /// + /// - Windows 11 + /// - Windows 10 + /// - Windows Server 2019 + /// - Windows Server 2016 + /// + HRESULT CreateCoreWebView2CompositionController( + HWND parentWindow, + ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler handler); - /// Create a new web resource response object. The headers is the - /// raw response header string delimited by newline. It's also possible to - /// create this object with null headers string and then use the - /// ICoreWebView2HttpResponseHeaders to construct the headers line by line. - /// For information on other parameters see ICoreWebView2WebResourceResponse. - /// - /// \snippet SettingsComponent.cpp WebResourceRequested - HRESULT CreateWebResourceResponse( - in IStream* content, - in int statusCode, - in LPCWSTR reasonPhrase, - in LPCWSTR headers, - /+[out, retval]+/ ICoreWebView2WebResourceResponse * response); - - /// The browser version info of the current ICoreWebView2Environment, - /// including channel name if it is not the stable channel. - /// This matches the format of the - /// GetAvailableCoreWebView2BrowserVersionString API. - /// Channel names are 'beta', 'dev', and 'canary'. - /// - /// \snippet AppWindow.cpp GetBrowserVersionString - /+[ propget]+/ - HRESULT get_BrowserVersionString(/+[out, retval]+/ LPWSTR* versionInfo); - - /// Add an event handler for the NewBrowserVersionAvailable event. - /// NewBrowserVersionAvailable fires when a newer version of the - /// Edge browser is installed and available for use via WebView2. - /// To use the newer version of the browser you must create a new - /// environment and WebView. - /// This event will only be fired for new version from the same Edge channel - /// that the code is running from. When not running with installed Edge, - /// no event will be fired. - /// - /// Because a user data folder can only be used by one browser process at - /// a time, if you want to use the same user data folder in the WebViews - /// using the new version of the browser, - /// you must close the environment and WebViews that are using the older - /// version of the browser first. Or simply prompt the user to restart the - /// app. - /// - /// \snippet AppWindow.cpp NewBrowserVersionAvailable - /// - HRESULT add_NewBrowserVersionAvailable( - /+[in]+/ ICoreWebView2NewBrowserVersionAvailableEventHandler eventHandler, - /+[out]+/ EventRegistrationToken* token); - - /// Remove an event handler previously added with add_NewBrowserVersionAvailable. - HRESULT remove_NewBrowserVersionAvailable( - in EventRegistrationToken token); + /// Create an empty ICoreWebView2PointerInfo. The returned + /// ICoreWebView2PointerInfo needs to be populated with all of the relevant + /// info before calling SendPointerInput. + HRESULT CreateCoreWebView2PointerInfo( + @("out, retval") ICoreWebView2PointerInfo * pointerInfo); } -/// Options used to create WebView2 Environment. +/// A continuation of the ICoreWebView2Environment3 interface. +const GUID IID_ICoreWebView2Environment4 = ICoreWebView2Environment4.iid; + +interface ICoreWebView2Environment4 : ICoreWebView2Environment3 +{ + static const GUID iid = { 0x20944379,0x6dcf,0x41d6,[ 0xa0,0xa0,0xab,0xc0,0xfc,0x50,0xde,0x0d ] }; + /// Returns the Automation Provider for the WebView that matches the provided + /// window. Host apps are expected to implement + /// IRawElementProviderHwndOverride. When GetOverrideProviderForHwnd is + /// called, the app can pass the HWND to GetAutomationProviderForWindow to + /// find the matching WebView Automation Provider. + HRESULT GetAutomationProviderForWindow(in HWND hwnd, + @("out, retval") IUnknown * provider); +} + +/// A continuation of the `ICoreWebView2Environment4` interface that supports +/// the `BrowserProcessExited` event. +const GUID IID_ICoreWebView2Environment5 = ICoreWebView2Environment5.iid; + +interface ICoreWebView2Environment5 : ICoreWebView2Environment4 +{ + static const GUID iid = { 0x319e423d,0xe0d7,0x4b8d,[ 0x92,0x54,0xae,0x94,0x75,0xde,0x9b,0x17 ] }; + /// Add an event handler for the `BrowserProcessExited` event. + /// The `BrowserProcessExited` event is raised when the collection of WebView2 + /// Runtime processes for the browser process of this environment terminate + /// due to browser process failure or normal shutdown (for example, when all + /// associated WebViews are closed), after all resources have been released + /// (including the user data folder). To learn about what these processes are, + /// go to [Process model](/microsoft-edge/webview2/concepts/process-model). + /// + /// A handler added with this method is called until removed with + /// `remove_BrowserProcessExited`, even if a new browser process is bound to + /// this environment after earlier `BrowserProcessExited` events are raised. + /// + /// Multiple app processes can share a browser process by creating their webviews + /// from a `ICoreWebView2Environment` with the same user data folder. When the entire + /// collection of WebView2Runtime processes for the browser process exit, all + /// associated `ICoreWebView2Environment` objects receive the `BrowserProcessExited` + /// event. Multiple processes sharing the same browser process need to coordinate + /// their use of the shared user data folder to avoid race conditions and + /// unnecessary waits. For example, one process should not clear the user data + /// folder at the same time that another process recovers from a crash by recreating + /// its WebView controls; one process should not block waiting for the event if + /// other app processes are using the same browser process (the browser process will + /// not exit until those other processes have closed their webviews too). + /// + /// Note this is an event from the `ICoreWebView2Environment3` interface, not + /// the `ICoreWebView2` one. The difference between `BrowserProcessExited` and + /// `ICoreWebView2`'s `ProcessFailed` is that `BrowserProcessExited` is + /// raised for any **browser process** exit (expected or unexpected, after all + /// associated processes have exited too), while `ProcessFailed` is raised for + /// **unexpected** process exits of any kind (browser, render, GPU, and all + /// other types), or for main frame **render process** unresponsiveness. To + /// learn more about the WebView2 Process Model, go to + /// [Process model](/microsoft-edge/webview2/concepts/process-model). + /// + /// In the case the browser process crashes, both `BrowserProcessExited` and + /// `ProcessFailed` events are raised, but the order is not guaranteed. These + /// events are intended for different scenarios. It is up to the app to + /// coordinate the handlers so they do not try to perform reliability recovery + /// while also trying to move to a new WebView2 Runtime version or remove the + /// user data folder. + /// + /// \snippet AppWindow.cpp Close + HRESULT add_BrowserProcessExited( + /+[in]+/ ICoreWebView2BrowserProcessExitedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_BrowserProcessExited`. + HRESULT remove_BrowserProcessExited(in EventRegistrationToken token); +} + +/// This interface is an extension of the ICoreWebView2Environment that supports +/// creating print settings for printing to PDF. +const GUID IID_ICoreWebView2Environment6 = ICoreWebView2Environment6.iid; + +interface ICoreWebView2Environment6 : ICoreWebView2Environment5 +{ + static const GUID iid = { 0xe59ee362,0xacbd,0x4857,[ 0x9a,0x8e,0xd3,0x64,0x4d,0x94,0x59,0xa9 ] }; + /// Creates the `ICoreWebView2PrintSettings` used by the `PrintToPdf` + /// method. + HRESULT CreatePrintSettings( + @("out, retval") ICoreWebView2PrintSettings * printSettings); +} + +/// This interface is an extension of the ICoreWebView2Environment. An object +/// implementing the ICoreWebView2Environment7 interface will also +/// implement ICoreWebView2Environment. +const GUID IID_ICoreWebView2Environment7 = ICoreWebView2Environment7.iid; + +interface ICoreWebView2Environment7 : ICoreWebView2Environment6 +{ + static const GUID iid = { 0x43C22296,0x3BBD,0x43A4,[ 0x9C,0x00,0x5C,0x0D,0xF6,0xDD,0x29,0xA2 ] }; + /// Returns the user data folder that all CoreWebView2's created from this + /// environment are using. + /// This could be either the value passed in by the developer when creating + /// the environment object or the calculated one for default handling. It + /// will always be an absolute path. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + /// + /// \snippet AppWindow.cpp GetUserDataFolder + @(" propget") + HRESULT get_UserDataFolder(@(" out, retval ") LPWSTR * value); +} + +/// A continuation of the `ICoreWebView2Environment7` interface that supports +/// the `ProcessInfosChanged` event. +const GUID IID_ICoreWebView2Environment8 = ICoreWebView2Environment8.iid; + +interface ICoreWebView2Environment8 : ICoreWebView2Environment7 +{ + static const GUID iid = { 0xD6EB91DD,0xC3D2,0x45E5,[ 0xBD,0x29,0x6D,0xC2,0xBC,0x4D,0xE9,0xCF ] }; + /// Adds an event handler for the `ProcessInfosChanged` event. + /// + /// \snippet ProcessComponent.cpp ProcessInfosChanged + /// \snippet ProcessComponent.cpp ProcessInfosChanged1 + HRESULT add_ProcessInfosChanged( + /+[in]+/ ICoreWebView2ProcessInfosChangedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_ProcessInfosChanged`. + HRESULT remove_ProcessInfosChanged( + in EventRegistrationToken token); + + /// Returns the `ICoreWebView2ProcessInfoCollection` + /// Provide a list of all process using same user data folder except for crashpad process. + HRESULT GetProcessInfos(@("out, retval")ICoreWebView2ProcessInfoCollection * value); +} + +/// Provides a set of properties for a process in the `ICoreWebView2Environment`. +const GUID IID_ICoreWebView2ProcessInfo = ICoreWebView2ProcessInfo.iid; + +interface ICoreWebView2ProcessInfo : IUnknown +{ + static const GUID iid = { 0x84FA7612,0x3F3D,0x4FBF,[ 0x88,0x9D,0xFA,0xD0,0x00,0x49,0x2D,0x72 ] }; + + /// The process id of the process. + @(" propget") + HRESULT get_ProcessId(@("out, retval") INT32* value); + + /// The kind of the process. + @(" propget") + HRESULT get_Kind(@("out, retval") COREWEBVIEW2_PROCESS_KIND* kind); +} + +/// A continuation of the ICoreWebView2Environment interface for +/// creating CoreWebView2 ContextMenuItem objects. +const GUID IID_ICoreWebView2Environment9 = ICoreWebView2Environment9.iid; + +interface ICoreWebView2Environment9 : ICoreWebView2Environment8 +{ + static const GUID iid = { 0xf06f41bf,0x4b5a,0x49d8,[ 0xb9,0xf6,0xfa,0x16,0xcd,0x29,0xf2,0x74 ] }; + /// Create a custom `ContextMenuItem` object to insert into the WebView context menu. + /// CoreWebView2 will rewind the icon stream before decoding. + /// There is a limit of 1000 active custom context menu items at a given time. + /// Attempting to create more before deleting existing ones will fail with + /// ERROR_NOT_ENOUGH_QUOTA. + /// It is recommended to reuse ContextMenuItems across ContextMenuRequested events + /// for performance. + /// The returned ContextMenuItem object's `IsEnabled` property will default to `TRUE` + /// and `IsChecked` property will default to `FALSE`. A `CommandId` will be assigned + /// to the ContextMenuItem object that's unique across active custom context menu items, + /// but command ID values of deleted ContextMenuItems can be reassigned. + HRESULT CreateContextMenuItem( + in LPCWSTR label, + in IStream* iconStream, + in COREWEBVIEW2_CONTEXT_MENU_ITEM_KIND kind, + @("out, retval") ICoreWebView2ContextMenuItem * item); +} + +/// This interface is used to create `ICoreWebView2ControllerOptions` object, which +/// can be passed as a parameter in `CreateCoreWebView2ControllerWithOptions` and +/// `CreateCoreWebView2CompositionControllerWithOptions` function for multiple profiles support. +/// The profile will be created on disk or opened when calling `CreateCoreWebView2ControllerWithOptions` or +/// `CreateCoreWebView2CompositionControllerWithOptions` no matter InPrivate mode is enabled or not, and +/// it will be released in memory when the corresponding controller is closed but still remain on disk. +/// If you create a WebView2Controller with {ProfileName="name", InPrivate=false} and then later create another +/// one with {ProfileName="name", InPrivate=true}, these two controllers using the same profile would be allowed to +/// run at the same time. +/// As WebView2 is built on top of Edge browser, it follows Edge's behavior pattern. To create an InPrivate WebView, +/// we gets an off-the-record profile (an InPrivate profile) from a regular profile, then create the WebView with the +/// off-the-record profile. +/// +/// \snippet AppWindow.cpp CreateControllerWithOptions +const GUID IID_ICoreWebView2Environment10 = ICoreWebView2Environment10.iid; + +interface ICoreWebView2Environment10 : ICoreWebView2Environment9 +{ + static const GUID iid = { 0xee0eb9df,0x6f12,0x46ce,[ 0xb5,0x3f,0x3f,0x47,0xb9,0xc9,0x28,0xe0 ] }; + /// Create a new ICoreWebView2ControllerOptions to be passed as a parameter of + /// CreateCoreWebView2ControllerWithOptions and CreateCoreWebView2CompositionControllerWithOptions. + /// The 'options' is settable and in it the default value for profile name is the empty string, + /// and the default value for IsInPrivateModeEnabled is false. + /// Also the profile name can be reused. + HRESULT CreateCoreWebView2ControllerOptions( + @("out, retval") ICoreWebView2ControllerOptions * options); + + /// Create a new WebView with options. + HRESULT CreateCoreWebView2ControllerWithOptions( + in HWND parentWindow, + /+[in]+/ ICoreWebView2ControllerOptions options, + /+[in]+/ ICoreWebView2CreateCoreWebView2ControllerCompletedHandler handler); + + /// Create a new WebView in visual hosting mode with options. + HRESULT CreateCoreWebView2CompositionControllerWithOptions( + in HWND parentWindow, + /+[in]+/ ICoreWebView2ControllerOptions options, + /+[in]+/ ICoreWebView2CreateCoreWebView2CompositionControllerCompletedHandler handler); +} + +/// A list containing process id and corresponding process type. +const GUID IID_ICoreWebView2ProcessInfoCollection = ICoreWebView2ProcessInfoCollection.iid; + +interface ICoreWebView2ProcessInfoCollection : IUnknown +{ + static const GUID iid = { 0x402B99CD,0xA0CC,0x4FA5,[ 0xB7,0xA5,0x51,0xD8,0x6A,0x1D,0x23,0x39 ] }; + /// The number of process contained in the ICoreWebView2ProcessInfoCollection. + @(" propget") + HRESULT get_Count(@("out, retval") UINT* count); + + /// Gets the `ICoreWebView2ProcessInfo` located in the `ICoreWebView2ProcessInfoCollection` + /// at the given index. + HRESULT GetValueAtIndex(in UINT32 index, + @("out, retval") ICoreWebView2ProcessInfo * processInfo); +} + +/// An event handler for the `ProcessInfosChanged` event. +const GUID IID_ICoreWebView2ProcessInfosChangedEventHandler = ICoreWebView2ProcessInfosChangedEventHandler.iid; + +interface ICoreWebView2ProcessInfosChangedEventHandler : IUnknown +{ + static const GUID iid = { 0xF4AF0C39,0x44B9,0x40E9,[ 0x8B,0x11,0x04,0x84,0xCF,0xB9,0xE0,0xA1 ] }; + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke(/+[in]+/ ICoreWebView2Environment sender, /+[in]+/ IUnknown args); +} + +/// Options used to create WebView2 Environment. A default implementation is +/// provided in `WebView2EnvironmentOptions.h`. /// /// \snippet AppWindow.cpp CreateCoreWebView2EnvironmentWithOptions -/// + const GUID IID_ICoreWebView2EnvironmentOptions = ICoreWebView2EnvironmentOptions.iid; interface ICoreWebView2EnvironmentOptions : IUnknown { static const GUID iid = { 0x2fde08a8,0x1e9a,0x4766,[ 0x8c,0x05,0x95,0xa9,0xce,0xb9,0xd1,0xc5 ] }; - extern(Windows): - /// AdditionalBrowserArguments can be specified to change the behavior of the - /// WebView. These will be passed to the browser process as part of - /// the command line. See - /// [Run Chromium with Flags](https://aka.ms/RunChromiumWithFlags) - /// for more information about command line switches to browser - /// process. If the app is launched with a command line switch - /// `--edge-webview-switches=xxx` the value of that switch (xxx in - /// the above example) will also be appended to the browser - /// process command line. Certain switches like `--user-data-dir` are - /// internal and important to WebView. Those switches will be - /// ignored even if specified. If the same switches are specified - /// multiple times, the last one wins. There is no attempt to - /// merge the different values of the same switch, except for disabled - /// and enabled features. The features specified by `--enable-features` - /// and `--disable-features` will be merged with simple logic: the features - /// will be the union of the specified features and built-in features, and if - /// a feature is disabled, it will be removed from the enabled features list. - /// App process's command line `--edge-webview-switches` value are processed - /// after the additionalBrowserArguments parameter is processed. Certain - /// features are disabled internally and can't be enabled. - /// If parsing failed for the specified switches, they will be - /// ignored. Default is to run browser process with no extra flags. - /+[ propget]+/ - HRESULT get_AdditionalBrowserArguments(/+[out, retval]+/ LPWSTR* value); - /// Set the AdditionalBrowserArguments property. - /+[ propput]+/ + + /// Changes the behavior of the WebView. The arguments are passed to the + /// browser process as part of the command. For more information about + /// using command-line switches with Chromium browser processes, navigate to + /// [Run Chromium with Flags](https://www.chromium.org/developers/how-tos/run-chromium-with-flags). + /// The value appended to a switch is appended to the browser process, for + /// example, in `--edge-webview-switches=xxx` the value is `xxx`. If you + /// specify a switch that is important to WebView functionality, it is + /// ignored, for example, `--user-data-dir`. Specific features are disabled + /// internally and blocked from being enabled. If a switch is specified + /// multiple times, only the last instance is used. + /// + /// \> [!NOTE]\n\> A merge of the different values of the same switch is not attempted, + /// except for disabled and enabled features. The features specified by + /// `--enable-features` and `--disable-features` are merged with simple + /// logic.\n\> * The features is the union of the specified features + /// and built-in features. If a feature is disabled, it is removed from the + /// enabled features list. + /// + /// If you specify command-line switches and use the + /// `additionalBrowserArguments` parameter, the `--edge-webview-switches` + /// value takes precedence and is processed last. If a switch fails to + /// parse, the switch is ignored. The default state for the operation is + /// to run the browser process with no extra flags. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_AdditionalBrowserArguments(@("out, retval") LPWSTR* value); + + /// Sets the `AdditionalBrowserArguments` property. + /// + /// Please note that calling this API twice will replace the previous value + /// rather than appending to it. If there are multiple switches, there + /// should be a space in between them. The one exception is if multiple + /// features are being enabled/disabled for a single switch, in which + /// case the features should be comma-seperated. + /// Ex. "--disable-features=feature1,feature2 --some-other-switch --do-something" + @(" propput") HRESULT put_AdditionalBrowserArguments(in LPCWSTR value); - /// The default language that WebView will run with. It applies to browser UIs - /// like context menu and dialogs. It also applies to the accept-languages - /// HTTP header that WebView sends to web sites. - /// It is in the format of `language[-country]` where `language` is the 2 letter - /// code from ISO 639 and `country` is the 2 letter code from ISO 3166. - /+[ propget]+/ - HRESULT get_Language(/+[out, retval]+/ LPWSTR* value); - /// Set the Language property. - /+[ propput]+/ + /// The default display language for WebView. It applies to browser UI such as + /// context menu and dialogs. It also applies to the `accept-languages` HTTP + /// header that WebView sends to websites. The intended locale value is in the + /// format of BCP 47 Language Tags. More information can be found from + /// [IETF BCP47](https://www.ietf.org/rfc/bcp/bcp47.html). + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Language(@("out, retval") LPWSTR* value); + + /// Sets the `Language` property. + @(" propput") HRESULT put_Language(in LPCWSTR value); - /// The version of the Edge WebView2 Runtime binaries required to be - /// compatible with the calling application. This defaults to the Edge - /// WebView2 Runtime version - /// that corresponds with the version of the SDK the application is using. - /// The format of this value is the same as the format of the - /// BrowserVersionString property and other BrowserVersion values. - /// Only the version part of the BrowserVersion value is respected. The - /// channel suffix, if it exists, is ignored. - /// The version of the Edge WebView2 Runtime binaries actually used may be - /// different from the specified TargetCompatibleBrowserVersion. They are only - /// guaranteed to be compatible. You can check the actual version on the - /// BrowserVersionString property on the ICoreWebView2Environment. - /+[ propget]+/ - HRESULT get_TargetCompatibleBrowserVersion(/+[out, retval]+/ LPWSTR* value); - /// Set the TargetCompatibleBrowserVersion property. - /+[ propput]+/ + /// Specifies the version of the WebView2 Runtime binaries required to be + /// compatible with your app. This defaults to the WebView2 Runtime version + /// that corresponds with the version of the SDK the app is using. The + /// format of this value is the same as the format of the + /// `BrowserVersionString` property and other `BrowserVersion` values. Only + /// the version part of the `BrowserVersion` value is respected. The channel + /// suffix, if it exists, is ignored. The version of the WebView2 Runtime + /// binaries actually used may be different from the specified + /// `TargetCompatibleBrowserVersion`. The binaries are only guaranteed to be + /// compatible. Verify the actual version on the `BrowserVersionString` + /// property on the `ICoreWebView2Environment`. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_TargetCompatibleBrowserVersion(@("out, retval") LPWSTR* value); + + /// Sets the `TargetCompatibleBrowserVersion` property. + @(" propput") HRESULT put_TargetCompatibleBrowserVersion(in LPCWSTR value); - /// The AllowSingleSignOnUsingOSPrimaryAccount property is used to enable - /// single sign on with Azure Active Directory (AAD) resources inside WebView - /// using the logged in Windows account and single sign on with web sites using - /// Microsoft account associated with the login in Windows account. - /// Default is disabled. - /// Universal Windows Platform apps must also declare enterpriseCloudSSO - /// [restricted capability](https://docs.microsoft.com/windows/uwp/packaging/app-capability-declarations#restricted-capabilities) - /// for the single sign on to work. - /+[ propget]+/ - HRESULT get_AllowSingleSignOnUsingOSPrimaryAccount(/+[out, retval]+/ BOOL* allow); - /// Set the AllowSingleSignOnUsingOSPrimaryAccount property. - /+[ propput]+/ + /// The `AllowSingleSignOnUsingOSPrimaryAccount` property is used to enable + /// single sign on with Azure Active Directory (AAD) and personal Microsoft + /// Account (MSA) resources inside WebView. All AAD accounts, connected to + /// Windows and shared for all apps, are supported. For MSA, SSO is only enabled + /// for the account associated for Windows account login, if any. + /// Default is disabled. Universal Windows Platform apps must also declare + /// `enterpriseCloudSSO` + /// [Restricted capabilities](/windows/uwp/packaging/app-capability-declarations\#restricted-capabilities) + /// for the single sign on (SSO) to work. + @(" propget") + HRESULT get_AllowSingleSignOnUsingOSPrimaryAccount(@("out, retval") BOOL* allow); + + /// Sets the `AllowSingleSignOnUsingOSPrimaryAccount` property. + @(" propput") HRESULT put_AllowSingleSignOnUsingOSPrimaryAccount(in BOOL allow); } -/// The caller implements this interface to receive the WebView2Environment created -/// via CreateCoreWebView2Environment. +/// Additional options used to create WebView2 Environment. A default implementation is +/// provided in `WebView2EnvironmentOptions.h`. +/// +/// \snippet AppWindow.cpp CreateCoreWebView2EnvironmentWithOptions + +// Note: ICoreWebView2EnvironmentOptions* interfaces derive from IUnknown to make moving +// the API from experimental to public smoothier. These interfaces are mostly internal to +// WebView's own code. Normal apps just use the objects we provided and never interact +// with the interfaces. Advanced apps might implement their own options object. In that +// case, it is also easier for them to implement the interface if it is derived from IUnknown. +const GUID IID_ICoreWebView2EnvironmentOptions2 = ICoreWebView2EnvironmentOptions2.iid; + +interface ICoreWebView2EnvironmentOptions2 : IUnknown +{ + static const GUID iid = { 0xFF85C98A,0x1BA7,0x4A6B,[ 0x90,0xC8,0x2B,0x75,0x2C,0x89,0xE9,0xE2 ] }; + + /// Whether other processes can create WebView2 from WebView2Environment created with the + /// same user data folder and therefore sharing the same WebView browser process instance. + /// Default is FALSE. + @(" propget") + HRESULT get_ExclusiveUserDataFolderAccess(@("out, retval") BOOL* value); + + /// Sets the `ExclusiveUserDataFolderAccess` property. + /// The `ExclusiveUserDataFolderAccess` property specifies that the WebView environment + /// obtains exclusive access to the user data folder. + /// If the user data folder is already being used by another WebView environment with a + /// different value for `ExclusiveUserDataFolderAccess` property, the creation of a WebView2Controller + /// using the environment object will fail with `HRESULT_FROM_WIN32(ERROR_INVALID_STATE)`. + /// When set as TRUE, no other WebView can be created from other processes using WebView2Environment + /// objects with the same UserDataFolder. This prevents other processes from creating WebViews + /// which share the same browser process instance, since sharing is performed among + /// WebViews that have the same UserDataFolder. When another process tries to create a + /// WebView2Controller from an WebView2Environment object created with the same user data folder, + /// it will fail with `HRESULT_FROM_WIN32(ERROR_INVALID_STATE)`. + @(" propput") + HRESULT put_ExclusiveUserDataFolderAccess(in BOOL value); +} + +/// Additional options used to create WebView2 Environment to manage crash +/// reporting. +const GUID IID_ICoreWebView2EnvironmentOptions3 = ICoreWebView2EnvironmentOptions3.iid; + +interface ICoreWebView2EnvironmentOptions3 : IUnknown +{ + static const GUID iid = { 0x4A5C436E,0xA9E3,0x4A2E,[ 0x89,0xC3,0x91,0x0D,0x35,0x13,0xF5,0xCC ] }; + /// When `IsCustomCrashReportingEnabled` is set to `TRUE`, Windows won't send crash data to Microsoft endpoint. + /// `IsCustomCrashReportingEnabled` is default to be `FALSE`, in this case, WebView will respect OS consent. + @(" propget") + HRESULT get_IsCustomCrashReportingEnabled(@("out, retval") BOOL* value); + + /// Sets the `IsCustomCrashReportingEnabled` property. + @(" propput") + HRESULT put_IsCustomCrashReportingEnabled(in BOOL value); +} + +/// Additional options used to create WebView2 Environment that manages custom scheme registration. +const GUID IID_ICoreWebView2EnvironmentOptions4 = ICoreWebView2EnvironmentOptions4.iid; + +interface ICoreWebView2EnvironmentOptions4 : IUnknown +{ + static const GUID iid = { 0xac52d13f,0x0d38,0x475a,[ 0x9d,0xca,0x87,0x65,0x80,0xd6,0x79,0x3e ] }; + /// Array of custom scheme registrations. The returned + /// ICoreWebView2CustomSchemeRegistration pointers must be released, and the + /// array itself must be deallocated with CoTaskMemFree. + HRESULT GetCustomSchemeRegistrations( + @("out") UINT32* count, + @("out") ICoreWebView2CustomSchemeRegistration ** schemeRegistrations); + /// Set the array of custom scheme registrations to be used. + /// \snippet AppWindow.cpp CoreWebView2CustomSchemeRegistration + HRESULT SetCustomSchemeRegistrations( + in UINT32 count, + /+[in]+/ ICoreWebView2CustomSchemeRegistration * schemeRegistrations); +} + +/// Additional options used to create WebView2 Environment to manage tracking +/// prevention. +const GUID IID_ICoreWebView2EnvironmentOptions5 = ICoreWebView2EnvironmentOptions5.iid; + +interface ICoreWebView2EnvironmentOptions5 : IUnknown +{ + static const GUID iid = { 0x0AE35D64,0xC47F,0x4464,[ 0x81,0x4E,0x25,0x9C,0x34,0x5D,0x15,0x01 ] }; + /// The `EnableTrackingPrevention` property is used to enable/disable tracking prevention + /// feature in WebView2. This property enable/disable tracking prevention for all the + /// WebView2's created in the same environment. By default this feature is enabled to block + /// potentially harmful trackers and trackers from sites that aren't visited before and set to + /// `COREWEBVIEW2_TRACKING_PREVENTION_LEVEL_BALANCED` or whatever value was last changed/persisted + /// on the profile. + /// + /// You can set this property to false to disable the tracking prevention feature if the app only + /// renders content in the WebView2 that is known to be safe. Disabling this feature when creating + /// environment also improves runtime performance by skipping related code. + /// + /// You shouldn't disable this property if WebView2 is being used as a "full browser" with arbitrary + /// navigation and should protect end user privacy. + /// + /// There is `ICoreWebView2Profile3::PreferredTrackingPreventionLevel` property to control levels of + /// tracking prevention of the WebView2's associated with a same profile. However, you can also disable + /// tracking prevention later using `ICoreWebView2Profile3::PreferredTrackingPreventionLevel` property and + /// `COREWEBVIEW2_TRACKING_PREVENTION_LEVEL_NONE` value but that doesn't improves runtime performance. + /// + /// See `ICoreWebView2Profile3::PreferredTrackingPreventionLevel` for more details. + /// + /// Tracking prevention protects users from online tracking by restricting the ability of trackers to + /// access browser-based storage as well as the network. See [Tracking prevention](/microsoft-edge/web-platform/tracking-prevention). + @(" propget") + HRESULT get_EnableTrackingPrevention(@("out, retval") BOOL* value); + /// Sets the `EnableTrackingPrevention` property. + @(" propput") + HRESULT put_EnableTrackingPrevention(in BOOL value); +} + +/// Additional options used to create WebView2 Environment to manage browser extensions. +const GUID IID_ICoreWebView2EnvironmentOptions6 = ICoreWebView2EnvironmentOptions6.iid; + +interface ICoreWebView2EnvironmentOptions6 : IUnknown +{ + static const GUID iid = { 0x57D29CC3,0xC84F,0x42A0,[ 0xB0,0xE2,0xEF,0xFB,0xD5,0xE1,0x79,0xDE ] }; + /// When `AreBrowserExtensionsEnabled` is set to `TRUE`, new extensions can be added to user + /// profile and used. `AreBrowserExtensionsEnabled` is default to be `FALSE`, in this case, + /// new extensions can't be installed, and already installed extension won't be + /// available to use in user profile. + /// If connecting to an already running environment with a different value for `AreBrowserExtensionsEnabled` + /// property, it will fail with `HRESULT_FROM_WIN32(ERROR_INVALID_STATE)`. + /// See `ICoreWebView2BrowserExtension` for Extensions API details. + @(" propget") + HRESULT get_AreBrowserExtensionsEnabled(@("out, retval") BOOL* value); + /// Sets the `AreBrowserExtensionsEnabled` property. + @(" propput") + HRESULT put_AreBrowserExtensionsEnabled(in BOOL value); +} + +/// A continuation of the ICoreWebView2Environment interface for +/// getting the crash dump folder path. +const GUID IID_ICoreWebView2Environment11 = ICoreWebView2Environment11.iid; + +interface ICoreWebView2Environment11 : ICoreWebView2Environment10 +{ + static const GUID iid = { 0xF0913DC6,0xA0EC,0x42EF,[ 0x98,0x05,0x91,0xDF,0xF3,0xA2,0x96,0x6A ] }; + /// `FailureReportFolderPath` returns the path of the folder where minidump files are written. + /// Whenever a WebView2 process crashes, a crash dump file will be created in the crash dump folder. + /// The crash dump format is minidump files. Please see + /// [Minidump Files documentation](/windows/win32/debug/minidump-files) for detailed information. + /// Normally when a single child process fails, a minidump will be generated and written to disk, + /// then the `ProcessFailed` event is raised. But for unexpected crashes, a minidump file might not be generated + /// at all, despite whether `ProcessFailed` event is raised. If there are multiple + /// process failures at once, multiple minidump files could be generated. Thus `FailureReportFolderPath` + /// could contain old minidump files that are not associated with a specific `ProcessFailed` event. + /// \snippet AppWindow.cpp GetFailureReportFolder + @(" propget") + HRESULT get_FailureReportFolderPath(@("out, retval") LPWSTR* value); +} + +/// A continuation of the ICoreWebView2Environment interface for creating shared buffer object. +const GUID IID_ICoreWebView2Environment12 = ICoreWebView2Environment12.iid; + +interface ICoreWebView2Environment12 : ICoreWebView2Environment11 +{ + static const GUID iid = { 0xF503DB9B,0x739F,0x48DD,[ 0xB1,0x51,0xFD,0xFC,0xF2,0x53,0xF5,0x4E ] }; + /// Create a shared memory based buffer with the specified size in bytes. + /// The buffer can be shared with web contents in WebView by calling + /// `PostSharedBufferToScript` on `CoreWebView2` or `CoreWebView2Frame` object. + /// Once shared, the same content of the buffer will be accessible from both + /// the app process and script in WebView. Modification to the content will be visible + /// to all parties that have access to the buffer. + /// The shared buffer is presented to the script as ArrayBuffer. All JavaScript APIs + /// that work for ArrayBuffer including Atomics APIs can be used on it. + /// There is currently a limitation that only size less than 2GB is supported. + HRESULT CreateSharedBuffer( + in UINT64 size, + @("out, retval") ICoreWebView2SharedBuffer * shared_buffer); +} + +/// Receives the `WebView2Environment` created using +/// `CreateCoreWebView2Environment`. const GUID IID_ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler = ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler.iid; interface ICoreWebView2CreateCoreWebView2EnvironmentCompletedHandler : IUnknown { static const GUID iid = { 0x4e8a3389,0xc9d8,0x4bd2,[ 0xb6,0xb5,0x12,0x4f,0xee,0x6c,0xc1,0x4d ] }; - extern(Windows): - /// Called to provide the implementer with the completion status and result - /// of the corresponding asynchronous method call. + + /// Provides the completion status and result of the corresponding + /// asynchronous method. + HRESULT Invoke(HRESULT errorCode, ICoreWebView2Environment createdEnvironment); } /// A Receiver is created for a particular DevTools Protocol event and allows -/// you to subscribe and unsubscribe from that event. -/// Obtained from the WebView object via GetDevToolsProtocolEventReceiver. +/// you to subscribe and unsubscribe from that event. Obtained from the +/// WebView object using `GetDevToolsProtocolEventReceiver`. const GUID IID_ICoreWebView2DevToolsProtocolEventReceiver = ICoreWebView2DevToolsProtocolEventReceiver.iid; interface ICoreWebView2DevToolsProtocolEventReceiver : IUnknown { static const GUID iid = { 0xb32ca51a,0x8371,0x45e9,[ 0x93,0x17,0xaf,0x02,0x1d,0x08,0x03,0x67 ] }; - extern(Windows): - /// Subscribe to a DevToolsProtocol event. - /// The handler's Invoke method will be called whenever the corresponding - /// DevToolsProtocol event fires. Invoke will be called with - /// an event args object containing the DevTools Protocol event's parameter - /// object as a JSON string. + + /// Subscribe to a `DevToolsProtocol` event. The `Invoke` method of the + /// `handler` runs whenever the corresponding `DevToolsProtocol` event runs. + /// `Invoke` runs with an event args object containing the parameter object + /// of the DevTools Protocol event as a JSON string. /// /// \snippet ScriptComponent.cpp DevToolsProtocolEventReceived + HRESULT add_DevToolsProtocolEventReceived( /+[in]+/ ICoreWebView2DevToolsProtocolEventReceivedEventHandler handler, - /+[out]+/ EventRegistrationToken* token); + @("out") EventRegistrationToken* token); + /// Remove an event handler previously added with - /// add_DevToolsProtocolEventReceived. + /// `add_DevToolsProtocolEventReceived`. + HRESULT remove_DevToolsProtocolEventReceived( in EventRegistrationToken token); } -/// DLL export to create a WebView2 environment with a custom version of Edge, -/// user data directory and/or additional options. +/// A continuation of the ICoreWebView2Environment interface for getting process +/// with associated information. +const GUID IID_ICoreWebView2Environment13 = ICoreWebView2Environment13.iid; + +interface ICoreWebView2Environment13 : ICoreWebView2Environment12 +{ + static const GUID iid = { 0xaf641f58,0x72b2,0x11ee,[ 0xb9,0x62,0x02,0x42,0xac,0x12,0x00,0x02 ] }; + /// Gets a snapshot collection of `ProcessExtendedInfo`s corresponding to all + /// currently running processes associated with this `CoreWebView2Environment` + /// excludes crashpad process. + /// This provides the same list of `ProcessInfo`s as what's provided in + /// `GetProcessInfos`, but additionally provides a list of associated `FrameInfo`s + /// which are actively running (showing or hiding UI elements) in the renderer + /// process. See `AssociatedFrameInfos` for more information. + /// + /// \snippet ProcessComponent.cpp GetProcessExtendedInfos + HRESULT GetProcessExtendedInfos(/+[in]+/ ICoreWebView2GetProcessExtendedInfosCompletedHandler handler); +} + +/// Receives the result of the `GetProcessExtendedInfos` method. +/// The result is written to the collection of `ProcessExtendedInfo`s provided +/// in the `GetProcessExtendedInfos` method call. +const GUID IID_ICoreWebView2GetProcessExtendedInfosCompletedHandler = ICoreWebView2GetProcessExtendedInfosCompletedHandler.iid; + +interface ICoreWebView2GetProcessExtendedInfosCompletedHandler : IUnknown +{ + static const GUID iid = { 0xf45e55aa,0x3bc2,0x11ee,[ 0xbe,0x56,0x02,0x42,0xac,0x12,0x00,0x02 ] }; + /// Provides the process extended info list for the `GetProcessExtendedInfos`. + HRESULT Invoke(in HRESULT errorCode, /+[in]+/ ICoreWebView2ProcessExtendedInfoCollection value); +} + +/// Provides process with associated extended information in the `ICoreWebView2Environment`. +const GUID IID_ICoreWebView2ProcessExtendedInfo = ICoreWebView2ProcessExtendedInfo.iid; + +interface ICoreWebView2ProcessExtendedInfo : IUnknown +{ + static const GUID iid = { 0xaf4c4c2e,0x45db,0x11ee,[ 0xbe,0x56,0x02,0x42,0xac,0x12,0x00,0x02 ] }; + /// The process info of the current process. + @(" propget") + HRESULT get_ProcessInfo( + @("out, retval") ICoreWebView2ProcessInfo * processInfo); + + /// The collection of associated `FrameInfo`s which are actively running + /// (showing or hiding UI elements) in this renderer process. `AssociatedFrameInfos` + /// will only be populated when this `CoreWebView2ProcessExtendedInfo` + /// corresponds to a renderer process. Non-renderer processes will always + /// have an empty `AssociatedFrameInfos`. The `AssociatedFrameInfos` may + /// also be empty for renderer processes that have no active frames. + /// + /// \snippet ProcessComponent.cpp AssociatedFrameInfos + @(" propget") + HRESULT get_AssociatedFrameInfos( + @("out, retval") ICoreWebView2FrameInfoCollection * frames); +} + +/// A list containing processInfo and associated extended information. +const GUID IID_ICoreWebView2ProcessExtendedInfoCollection = ICoreWebView2ProcessExtendedInfoCollection.iid; + +interface ICoreWebView2ProcessExtendedInfoCollection : IUnknown +{ + static const GUID iid = { 0x32efa696,0x407a,0x11ee,[ 0xbe,0x56,0x02,0x42,0xac,0x12,0x00,0x02 ] }; + /// The number of process contained in the `ICoreWebView2ProcessExtendedInfoCollection`. + @(" propget") + HRESULT get_Count(@("out, retval") UINT* count); + + /// Gets the `ICoreWebView2ProcessExtendedInfo` located in the + /// `ICoreWebView2ProcessExtendedInfoCollection` at the given index. + HRESULT GetValueAtIndex(in UINT32 index, + @("out, retval") ICoreWebView2ProcessExtendedInfo * processInfo); +} + +/// ICoreWebView2Frame provides direct access to the iframes information. +/// You can get an ICoreWebView2Frame by handling the ICoreWebView2_4::add_FrameCreated event. +const GUID IID_ICoreWebView2Frame = ICoreWebView2Frame.iid; + +interface ICoreWebView2Frame : IUnknown +{ + static const GUID iid = { 0xf1131a5e,0x9ba9,0x11eb,[ 0xa8,0xb3,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// The name of the iframe from the iframe html tag declaring it. + /// You can access this property even if the iframe is destroyed. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Name(@(" out, retval ") LPWSTR * name); + /// Raised when the iframe changes its window.name property. + HRESULT add_NameChanged( + /+[in]+/ ICoreWebView2FrameNameChangedEventHandler eventHandler, + @("out") EventRegistrationToken * token); + /// Remove an event handler previously added with add_NameChanged. + HRESULT remove_NameChanged(in EventRegistrationToken token); + + /// Add the provided host object to script running in the iframe with the + /// specified name for the list of the specified origins. The host object + /// will be accessible for this iframe only if the iframe's origin during + /// access matches one of the origins which are passed. The provided origins + /// will be normalized before comparing to the origin of the document. + /// So the scheme name is made lower case, the host will be punycode decoded + /// as appropriate, default port values will be removed, and so on. + /// This means the origin's host may be punycode encoded or not and will match + /// regardless. If list contains malformed origin the call will fail. + /// The method can be called multiple times in a row without calling + /// RemoveHostObjectFromScript for the same object name. It will replace + /// the previous object with the new object and new list of origins. + /// List of origins will be treated as following: + /// 1. empty list - call will succeed and object will be added for the iframe + /// but it will not be exposed to any origin; + /// 2. list with origins - during access to host object from iframe the + /// origin will be checked that it belongs to this list; + /// 3. list with "*" element - host object will be available for iframe for + /// all origins. We suggest not to use this feature without understanding + /// security implications of giving access to host object from from iframes + /// with unknown origins. + /// 4. list with "file://" element - host object will be available for iframes + /// loaded via file protocol. + /// Calling this method fails if it is called after the iframe is destroyed. + /// \snippet ScenarioAddHostObject.cpp AddHostObjectToScriptWithOrigins + /// For more information about host objects navigate to + /// ICoreWebView2::AddHostObjectToScript. + HRESULT AddHostObjectToScriptWithOrigins( + in LPCWSTR name, + in VARIANT * object, + in UINT32 originsCount, + @(" size_is (originsCount)") in LPCWSTR * origins); + /// Remove the host object specified by the name so that it is no longer + /// accessible from JavaScript code in the iframe. While new access + /// attempts are denied, if the object is already obtained by JavaScript code + /// in the iframe, the JavaScript code continues to have access to that + /// object. Calling this method for a name that is already removed or was + /// never added fails. If the iframe is destroyed this method will return fail + /// also. + HRESULT RemoveHostObjectFromScript(in LPCWSTR name); + + /// The Destroyed event is raised when the iframe corresponding + /// to this CoreWebView2Frame object is removed or the document + /// containing that iframe is destroyed. + HRESULT add_Destroyed( + /+[in]+/ ICoreWebView2FrameDestroyedEventHandler eventHandler, + @("out") EventRegistrationToken * token); + /// Remove an event handler previously added with add_Destroyed. + HRESULT remove_Destroyed(in EventRegistrationToken token); + /// Check whether a frame is destroyed. Returns true during + /// the Destroyed event. + HRESULT IsDestroyed(@(" out, retval ") BOOL * destroyed); +} + +/// A continuation of the ICoreWebView2Frame interface with navigation events, +/// executing script and posting web messages. +const GUID IID_ICoreWebView2Frame2 = ICoreWebView2Frame2.iid; + +interface ICoreWebView2Frame2 : ICoreWebView2Frame +{ + static const GUID iid = { 0x7a6a5834,0xd185,0x4dbf,[ 0xb6,0x3f,0x4a,0x9b,0xc4,0x31,0x07,0xd4 ] }; + /// Add an event handler for the `NavigationStarting` event. + /// A frame navigation will raise a `NavigationStarting` event and + /// a `CoreWebView2.FrameNavigationStarting` event. All of the + /// `FrameNavigationStarting` event handlers for the current frame will be + /// run before the `NavigationStarting` event handlers. All of the event handlers + /// share a common `NavigationStartingEventArgs` object. Whichever event handler is + /// last to change the `NavigationStartingEventArgs.Cancel` property will + /// decide if the frame navigation will be cancelled. Redirects raise this + /// event as well, and the navigation id is the same as the original one. + /// + /// Navigations will be blocked until all `NavigationStarting` and + /// `CoreWebView2.FrameNavigationStarting` event handlers return. + HRESULT add_NavigationStarting( + /+[in]+/ ICoreWebView2FrameNavigationStartingEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_NavigationStarting`. + HRESULT remove_NavigationStarting( + in EventRegistrationToken token); + + /// Add an event handler for the `ContentLoading` event. `ContentLoading` + /// triggers before any content is loaded, including scripts added with + /// `AddScriptToExecuteOnDocumentCreated`. `ContentLoading` does not trigger + /// if a same page navigation occurs (such as through `fragment` + /// navigations or `history.pushState` navigations). This operation + /// follows the `NavigationStarting` and precedes `NavigationCompleted` events. + HRESULT add_ContentLoading( + /+[in]+/ ICoreWebView2FrameContentLoadingEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_ContentLoading`. + HRESULT remove_ContentLoading( + in EventRegistrationToken token); + + /// Add an event handler for the `NavigationCompleted` event. + /// `NavigationCompleted` runs when the CoreWebView2Frame has completely + /// loaded (concurrently when `body.onload` runs) or loading stopped with error. + HRESULT add_NavigationCompleted( + /+[in]+/ ICoreWebView2FrameNavigationCompletedEventHandler + eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_NavigationCompleted`. + HRESULT remove_NavigationCompleted( + in EventRegistrationToken token); + + /// Add an event handler for the DOMContentLoaded event. + /// DOMContentLoaded is raised when the iframe html document has been parsed. + /// This aligns with the document's DOMContentLoaded event in html. + HRESULT add_DOMContentLoaded( + /+[in]+/ ICoreWebView2FrameDOMContentLoadedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + /// Remove an event handler previously added with add_DOMContentLoaded. + HRESULT remove_DOMContentLoaded( + in EventRegistrationToken token); + + /// Run JavaScript code from the javascript parameter in the current frame. + /// The result of evaluating the provided JavaScript is passed to the completion handler. + /// The result value is a JSON encoded string. If the result is undefined, + /// contains a reference cycle, or otherwise is not able to be encoded into + /// JSON, then the result is considered to be null, which is encoded + /// in JSON as the string "null". + /// + /// \> [!NOTE]\n\> A function that has no explicit return value returns undefined. If the + /// script that was run throws an unhandled exception, then the result is + /// also "null". This method is applied asynchronously. If the method is + /// run before `ContentLoading`, the script will not be executed + /// and the string "null" will be returned. + /// This operation executes the script even if `ICoreWebView2Settings::IsScriptEnabled` is + /// set to `FALSE`. + /// + /// \snippet ScenarioDOMContentLoaded.cpp ExecuteScriptFrame + HRESULT ExecuteScript( + in LPCWSTR javaScript, + /+[in]+/ ICoreWebView2ExecuteScriptCompletedHandler handler); + + /// Posts the specified webMessage to the frame. + /// The frame receives the message by subscribing to the `message` event of + /// the `window.chrome.webview` of the frame document. + /// + /// ```cpp + /// window.chrome.webview.addEventListener('message', handler) + /// window.chrome.webview.removeEventListener('message', handler) + /// ``` + /// + /// The event args is an instances of `MessageEvent`. The + /// `ICoreWebView2Settings::IsWebMessageEnabled` setting must be `TRUE` or + /// the message will not be sent. The `data` property of the event + /// args is the `webMessage` string parameter parsed as a JSON string into a + /// JavaScript object. The `source` property of the event args is a reference + /// to the `window.chrome.webview` object. For information about sending + /// messages from the HTML document in the WebView to the host, navigate to + /// [add_WebMessageReceived](/microsoft-edge/webview2/reference/win32/icorewebview2#add_webmessagereceived). + /// The message is delivered asynchronously. If a navigation occurs before the + /// message is posted to the page, the message is discarded. + HRESULT PostWebMessageAsJson(in LPCWSTR webMessageAsJson); + + /// Posts a message that is a simple string rather than a JSON string + /// representation of a JavaScript object. This behaves in exactly the same + /// manner as `PostWebMessageAsJson`, but the `data` property of the event + /// args of the `window.chrome.webview` message is a string with the same + /// value as `webMessageAsString`. Use this instead of + /// `PostWebMessageAsJson` if you want to communicate using simple strings + /// rather than JSON objects. + HRESULT PostWebMessageAsString(in LPCWSTR webMessageAsString); + + /// Add an event handler for the `WebMessageReceived` event. + /// `WebMessageReceived` runs when the + /// `ICoreWebView2Settings::IsWebMessageEnabled` setting is set and the + /// frame document runs `window.chrome.webview.postMessage`. + /// The `postMessage` function is `void postMessage(object)` + /// where object is any object supported by JSON conversion. + /// + /// \snippet assets\ScenarioWebMessage.html chromeWebView + /// + /// When the frame calls `postMessage`, the object parameter is converted to a + /// JSON string and is posted asynchronously to the host process. This will + /// result in the handlers `Invoke` method being called with the JSON string + /// as its parameter. + /// + /// \snippet ScenarioWebMessage.cpp WebMessageReceivedIFrame + HRESULT add_WebMessageReceived( + /+[in]+/ ICoreWebView2FrameWebMessageReceivedEventHandler + handler, + @("out") EventRegistrationToken * token); + + /// Remove an event handler previously added with `add_WebMessageReceived`. + HRESULT remove_WebMessageReceived(in EventRegistrationToken token); +} + +/// Receives `FrameCreated` event. +const GUID IID_ICoreWebView2FrameCreatedEventHandler = ICoreWebView2FrameCreatedEventHandler.iid; + +interface ICoreWebView2FrameCreatedEventHandler : IUnknown +{ + static const GUID iid = { 0x38059770,0x9baa,0x11eb,[ 0xa8,0xb3,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// Provides the result for the iframe created event. + HRESULT Invoke(/+[in]+/ ICoreWebView2 sender, + /+[in]+/ ICoreWebView2FrameCreatedEventArgs args); +} + +/// Receives `FrameNameChanged` event. +const GUID IID_ICoreWebView2FrameNameChangedEventHandler = ICoreWebView2FrameNameChangedEventHandler.iid; + +interface ICoreWebView2FrameNameChangedEventHandler : IUnknown +{ + static const GUID iid = { 0x435c7dc8,0x9baa,0x11eb,[ 0xa8,0xb3,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// Provides the result for the iframe name changed event. + /// No event args exist and the `args` parameter is set to `null`. + HRESULT Invoke(/+[in]+/ ICoreWebView2Frame sender, /+[in]+/ IUnknown args); +} + +/// Receives `NavigationStarting` events for iframe. +const GUID IID_ICoreWebView2FrameNavigationStartingEventHandler = ICoreWebView2FrameNavigationStartingEventHandler.iid; + +interface ICoreWebView2FrameNavigationStartingEventHandler : IUnknown +{ + static const GUID iid = { 0xe79908bf,0x2d5d,0x4968,[ 0x83,0xdb,0x26,0x3f,0xea,0x2c,0x1d,0xa3 ] }; + /// Provides the event args for the corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2Frame sender, + /+[in]+/ ICoreWebView2NavigationStartingEventArgs args); +} + +/// Receives `ContentLoading` events for iframe. +const GUID IID_ICoreWebView2FrameContentLoadingEventHandler = ICoreWebView2FrameContentLoadingEventHandler.iid; + +interface ICoreWebView2FrameContentLoadingEventHandler : IUnknown +{ + static const GUID iid = { 0x0d6156f2,0xd332,0x49a7,[ 0x9e,0x03,0x7d,0x8f,0x2f,0xee,0xee,0x54 ] }; + /// Provides the event args for the corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2Frame sender, + /+[in]+/ ICoreWebView2ContentLoadingEventArgs args); +} + +/// Receives `NavigationCompleted` events for iframe. +const GUID IID_ICoreWebView2FrameNavigationCompletedEventHandler = ICoreWebView2FrameNavigationCompletedEventHandler.iid; + +interface ICoreWebView2FrameNavigationCompletedEventHandler : IUnknown +{ + static const GUID iid = { 0x609302ad,0x0e36,0x4f9a,[ 0xa2,0x10,0x6a,0x45,0x27,0x28,0x42,0xa9 ] }; + /// Provides the event args for the corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2Frame sender, + /+[in]+/ ICoreWebView2NavigationCompletedEventArgs args); +} + +/// Receives `DOMContentLoaded` events for iframe. +const GUID IID_ICoreWebView2FrameDOMContentLoadedEventHandler = ICoreWebView2FrameDOMContentLoadedEventHandler.iid; + +interface ICoreWebView2FrameDOMContentLoadedEventHandler : IUnknown +{ + static const GUID iid = { 0x38d9520d,0x340f,0x4d1e,[ 0xa7,0x75,0x43,0xfc,0xe9,0x75,0x36,0x83 ] }; + /// Provides the event args for the corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2Frame sender, + /+[in]+/ ICoreWebView2DOMContentLoadedEventArgs args); +} + +/// Receives `WebMessageReceived` events for iframe. +const GUID IID_ICoreWebView2FrameWebMessageReceivedEventHandler = ICoreWebView2FrameWebMessageReceivedEventHandler.iid; + +interface ICoreWebView2FrameWebMessageReceivedEventHandler : IUnknown +{ + static const GUID iid = { 0xe371e005,0x6d1d,0x4517,[ 0x93,0x4b,0xa8,0xf1,0x62,0x9c,0x62,0xa5 ] }; + /// Provides the event args for the corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2Frame sender, + /+[in]+/ ICoreWebView2WebMessageReceivedEventArgs args); +} + +/// Event args for the `FrameCreated` events. +const GUID IID_ICoreWebView2FrameCreatedEventArgs = ICoreWebView2FrameCreatedEventArgs.iid; + +interface ICoreWebView2FrameCreatedEventArgs : IUnknown +{ + static const GUID iid = { 0x4d6e7b5e,0x9baa,0x11eb,[ 0xa8,0xb3,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// The frame which was created. + @(" propget") + HRESULT get_Frame(@(" out, retval ") ICoreWebView2Frame *frame); +} + +/// Receives `FrameDestroyed` event. +const GUID IID_ICoreWebView2FrameDestroyedEventHandler = ICoreWebView2FrameDestroyedEventHandler.iid; + +interface ICoreWebView2FrameDestroyedEventHandler : IUnknown +{ + static const GUID iid = { 0x59dd7b4c,0x9baa,0x11eb,[ 0xa8,0xb3,0x02,0x42,0xac,0x13,0x00,0x03 ] }; + /// Provides the result for the iframe destroyed event. + /// No event args exist and the `args` parameter is set to `null`. + HRESULT Invoke(/+[in]+/ ICoreWebView2Frame sender, /+[in]+/ IUnknown args); +} + +/// Add an event handler for the `DownloadStarting` event. +const GUID IID_ICoreWebView2DownloadStartingEventHandler = ICoreWebView2DownloadStartingEventHandler.iid; + +interface ICoreWebView2DownloadStartingEventHandler : IUnknown +{ + static const GUID iid = { 0xefedc989,0xc396,0x41ca,[ 0x83,0xf7,0x07,0xf8,0x45,0xa5,0x57,0x24 ] }; + /// Provides the event args for the corresponding event. + HRESULT Invoke( + /+[in]+/ ICoreWebView2 sender, + /+[in]+/ ICoreWebView2DownloadStartingEventArgs args); +} + +/// Event args for the `DownloadStarting` event. +const GUID IID_ICoreWebView2DownloadStartingEventArgs = ICoreWebView2DownloadStartingEventArgs.iid; + +interface ICoreWebView2DownloadStartingEventArgs : IUnknown +{ + static const GUID iid = { 0xe99bbe21,0x43e9,0x4544,[ 0xa7,0x32,0x28,0x27,0x64,0xea,0xfa,0x60 ] }; + /// Returns the `ICoreWebView2DownloadOperation` for the download that + /// has started. + @(" propget") + HRESULT get_DownloadOperation( + @("out, retval") ICoreWebView2DownloadOperation * downloadOperation); + + /// The host may set this flag to cancel the download. If canceled, the + /// download save dialog is not displayed regardless of the + /// `Handled` property. + @(" propget") + HRESULT get_Cancel(@("out, retval") BOOL* cancel); + + /// Sets the `Cancel` property. + @(" propput") + HRESULT put_Cancel(in BOOL cancel); + + /// The path to the file. If setting the path, the host should ensure that it + /// is an absolute path, including the file name, and that the path does not + /// point to an existing file. If the path points to an existing file, the + /// file will be overwritten. If the directory does not exist, it is created. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_ResultFilePath(@("out, retval") LPWSTR* resultFilePath); + + /// Sets the `ResultFilePath` property. + @(" propput") + HRESULT put_ResultFilePath(in LPCWSTR resultFilePath); + + /// The host may set this flag to `TRUE` to hide the default download dialog + /// for this download. The download will progress as normal if it is not + /// canceled, there will just be no default UI shown. By default the value is + /// `FALSE` and the default download dialog is shown. + @(" propget") + HRESULT get_Handled(@("out, retval") BOOL* handled); + + /// Sets the `Handled` property. + @(" propput") + HRESULT put_Handled(in BOOL handled); + + /// Returns an `ICoreWebView2Deferral` object. Use this operation to + /// complete the event at a later time. + HRESULT GetDeferral(@("out, retval") ICoreWebView2Deferral * deferral); +} + +/// Implements the interface to receive `BytesReceivedChanged` event. Use the +/// `ICoreWebView2DownloadOperation.BytesReceived` property to get the received +/// bytes count. +const GUID IID_ICoreWebView2BytesReceivedChangedEventHandler = ICoreWebView2BytesReceivedChangedEventHandler.iid; + +interface ICoreWebView2BytesReceivedChangedEventHandler : IUnknown +{ + static const GUID iid = { 0x828e8ab6,0xd94c,0x4264,[ 0x9c,0xef,0x52,0x17,0x17,0x0d,0x62,0x51 ] }; + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke( + /+[in]+/ ICoreWebView2DownloadOperation sender, /+[in]+/ IUnknown args); +} + +/// Implements the interface to receive `EstimatedEndTimeChanged` event. Use the +/// `ICoreWebView2DownloadOperation.EstimatedEndTime` property to get the new +/// estimated end time. +const GUID IID_ICoreWebView2EstimatedEndTimeChangedEventHandler = ICoreWebView2EstimatedEndTimeChangedEventHandler.iid; + +interface ICoreWebView2EstimatedEndTimeChangedEventHandler : IUnknown +{ + static const GUID iid = { 0x28f0d425,0x93fe,0x4e63,[ 0x9f,0x8d,0x2a,0xee,0xc6,0xd3,0xba,0x1e ] }; + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke( + /+[in]+/ ICoreWebView2DownloadOperation sender, /+[in]+/ IUnknown args); +} + +/// Implements the interface to receive `StateChanged` event. Use the +/// `ICoreWebView2DownloadOperation.State` property to get the current state, +/// which can be in progress, interrupted, or completed. Use the +/// `ICoreWebView2DownloadOperation.InterruptReason` property to get the +/// interrupt reason if the download is interrupted. +const GUID IID_ICoreWebView2StateChangedEventHandler = ICoreWebView2StateChangedEventHandler.iid; + +interface ICoreWebView2StateChangedEventHandler : IUnknown +{ + static const GUID iid = { 0x81336594,0x7ede,0x4ba9,[ 0xbf,0x71,0xac,0xf0,0xa9,0x5b,0x58,0xdd ] }; + /// Provides the event args for the corresponding event. No event args exist + /// and the `args` parameter is set to `null`. + HRESULT Invoke( + /+[in]+/ ICoreWebView2DownloadOperation sender, /+[in]+/ IUnknown args); +} + +/// Represents a download operation. Gives access to the download's metadata +/// and supports a user canceling, pausing, or resuming the download. +const GUID IID_ICoreWebView2DownloadOperation = ICoreWebView2DownloadOperation.iid; + +interface ICoreWebView2DownloadOperation : IUnknown +{ + static const GUID iid = { 0x3d6b6cf2,0xafe1,0x44c7,[ 0xa9,0x95,0xc6,0x51,0x17,0x71,0x43,0x36 ] }; + /// Add an event handler for the `BytesReceivedChanged` event. + /// + /// \snippet ScenarioCustomDownloadExperience.cpp BytesReceivedChanged + HRESULT add_BytesReceivedChanged( + /+[in]+/ ICoreWebView2BytesReceivedChangedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_BytesReceivedChanged`. + HRESULT remove_BytesReceivedChanged( + in EventRegistrationToken token); + + /// Add an event handler for the `EstimatedEndTimeChanged` event. + HRESULT add_EstimatedEndTimeChanged( + /+[in]+/ ICoreWebView2EstimatedEndTimeChangedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_EstimatedEndTimeChanged`. + HRESULT remove_EstimatedEndTimeChanged( + in EventRegistrationToken token); + + /// Add an event handler for the `StateChanged` event. + /// + /// \snippet ScenarioCustomDownloadExperience.cpp StateChanged + HRESULT add_StateChanged( + /+[in]+/ ICoreWebView2StateChangedEventHandler eventHandler, + @("out") EventRegistrationToken* token); + + /// Remove an event handler previously added with `add_StateChanged`. + HRESULT remove_StateChanged( + in EventRegistrationToken token); + + /// The URI of the download. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_Uri(@("out, retval") LPWSTR* uri); + + /// The Content-Disposition header value from the download's HTTP response. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_ContentDisposition(@("out, retval") LPWSTR* contentDisposition); + + /// MIME type of the downloaded content. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_MimeType(@("out, retval") LPWSTR* mimeType); + + /// The expected size of the download in total number of bytes based on the + /// HTTP Content-Length header. Returns -1 if the size is unknown. + @(" propget") + HRESULT get_TotalBytesToReceive(@("out, retval") INT64* totalBytesToReceive); + + /// The number of bytes that have been written to the download file. + @(" propget") + HRESULT get_BytesReceived(@("out, retval") INT64* bytesReceived); + + /// The estimated end time in [ISO 8601 Date and Time Format](https://www.iso.org/iso-8601-date-and-time-format.html). + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_EstimatedEndTime(@("out, retval") LPWSTR* estimatedEndTime); + + /// The absolute path to the download file, including file name. Host can change + /// this from `ICoreWebView2DownloadStartingEventArgs`. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_ResultFilePath(@("out, retval") LPWSTR* resultFilePath); + + /// The state of the download. A download can be in progress, interrupted, or + /// completed. See `COREWEBVIEW2_DOWNLOAD_STATE` for descriptions of states. + @(" propget") + HRESULT get_State(@("out, retval") COREWEBVIEW2_DOWNLOAD_STATE* downloadState); + + /// The reason why connection with file host was broken. + @(" propget") + HRESULT get_InterruptReason( + @("out, retval") COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON* interruptReason); + + /// Cancels the download. If canceled, the default download dialog shows + /// that the download was canceled. Host should set the `Cancel` property from + /// `ICoreWebView2SDownloadStartingEventArgs` if the download should be + /// canceled without displaying the default download dialog. + HRESULT Cancel(); + + /// Pauses the download. If paused, the default download dialog shows that the + /// download is paused. No effect if download is already paused. Pausing a + /// download changes the state to `COREWEBVIEW2_DOWNLOAD_STATE_INTERRUPTED` + /// with `InterruptReason` set to `COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_USER_PAUSED`. + HRESULT Pause(); + + /// Resumes a paused download. May also resume a download that was interrupted + /// for another reason, if `CanResume` returns true. Resuming a download changes + /// the state from `COREWEBVIEW2_DOWNLOAD_STATE_INTERRUPTED` to + /// `COREWEBVIEW2_DOWNLOAD_STATE_IN_PROGRESS`. + HRESULT Resume(); + + /// Returns true if an interrupted download can be resumed. Downloads with + /// the following interrupt reasons may automatically resume without you + /// calling any methods: + /// `COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_SERVER_NO_RANGE`, + /// `COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_HASH_MISMATCH`, + /// `COREWEBVIEW2_DOWNLOAD_INTERRUPT_REASON_FILE_TOO_SHORT`. + /// In these cases download progress may be restarted with `BytesReceived` + /// reset to 0. + @(" propget") + HRESULT get_CanResume(@("out, retval") BOOL* canResume); +} + +/// A continuation of the `ICoreWebView2ProcessFailedEventArgs` interface. +const GUID IID_ICoreWebView2ProcessFailedEventArgs2 = ICoreWebView2ProcessFailedEventArgs2.iid; + +interface ICoreWebView2ProcessFailedEventArgs2 : ICoreWebView2ProcessFailedEventArgs +{ + static const GUID iid = { 0x4dab9422,0x46fa,0x4c3e,[ 0xa5,0xd2,0x41,0xd2,0x07,0x1d,0x36,0x80 ] }; + + /// The reason for the process failure. Some of the reasons are only + /// applicable to specific values of + /// `ICoreWebView2ProcessFailedEventArgs::ProcessFailedKind`, and the + /// following `ProcessFailedKind` values always return the indicated reason + /// value: + /// + /// ProcessFailedKind | Reason + /// ---|--- + /// COREWEBVIEW2_PROCESS_FAILED_KIND_BROWSER_PROCESS_EXITED | COREWEBVIEW2_PROCESS_FAILED_REASON_UNEXPECTED + /// COREWEBVIEW2_PROCESS_FAILED_KIND_RENDER_PROCESS_UNRESPONSIVE | COREWEBVIEW2_PROCESS_FAILED_REASON_UNRESPONSIVE + /// + /// For other `ProcessFailedKind` values, the reason may be any of the reason + /// values. To learn about what these values mean, see + /// `COREWEBVIEW2_PROCESS_FAILED_REASON`. + @(" propget") + HRESULT get_Reason( + @("out, retval") COREWEBVIEW2_PROCESS_FAILED_REASON* reason); + + /// The exit code of the failing process, for telemetry purposes. The exit + /// code is always `STILL_ACTIVE` (`259`) when `ProcessFailedKind` is + /// `COREWEBVIEW2_PROCESS_FAILED_KIND_RENDER_PROCESS_UNRESPONSIVE`. + @(" propget") + HRESULT get_ExitCode( + @("out, retval") int* exitCode); + + /// Description of the process assigned by the WebView2 Runtime. This is a + /// technical English term appropriate for logging or development purposes, + /// and not localized for the end user. It applies to utility processes (for + /// example, "Audio Service", "Video Capture") and plugin processes (for + /// example, "Flash"). The returned `processDescription` is empty if the + /// WebView2 Runtime did not assign a description to the process. + /// + /// The caller must free the returned string with `CoTaskMemFree`. See + /// [API Conventions](/microsoft-edge/webview2/concepts/win32-api-conventions#strings). + @(" propget") + HRESULT get_ProcessDescription( + @("out, retval") LPWSTR* processDescription); + + /// The collection of `FrameInfo`s for frames in the `ICoreWebView2` that were + /// being rendered by the failed process. The content in these frames is + /// replaced with an error page. + /// This is only available when `ProcessFailedKind` is + /// `COREWEBVIEW2_PROCESS_FAILED_KIND_FRAME_RENDER_PROCESS_EXITED`; + /// `frames` is `null` for all other process failure kinds, including the case + /// in which the failed process was the renderer for the main frame and + /// subframes within it, for which the failure kind is + /// `COREWEBVIEW2_PROCESS_FAILED_KIND_RENDER_PROCESS_EXITED`. + @(" propget") + HRESULT get_FrameInfosForFailedProcess( + @("out, retval") ICoreWebView2FrameInfoCollection * frames); +} + +/// Collection of `FrameInfo`s (name and source). Used to list the affected +/// frames' info when a frame-only render process failure occurs in the +/// `ICoreWebView2`. +const GUID IID_ICoreWebView2FrameInfoCollection = ICoreWebView2FrameInfoCollection.iid; + +interface ICoreWebView2FrameInfoCollection : IUnknown +{ + static const GUID iid = { 0x8f834154,0xd38e,0x4d90,[ 0xaf,0xfb,0x68,0x00,0xa7,0x27,0x28,0x39 ] }; + + /// Gets an iterator over the collection of `FrameInfo`s. + + HRESULT GetIterator( + @("out, retval") ICoreWebView2FrameInfoCollectionIterator * iterator); +} + +/// Iterator for a collection of `FrameInfo`s. For more info, see +/// `ICoreWebView2ProcessFailedEventArgs2` and +/// `ICoreWebView2FrameInfoCollection`. +const GUID IID_ICoreWebView2FrameInfoCollectionIterator = ICoreWebView2FrameInfoCollectionIterator.iid; + +interface ICoreWebView2FrameInfoCollectionIterator : IUnknown +{ + static const GUID iid = { 0x1bf89e2d,0x1b2b,0x4629,[ 0xb2,0x8f,0x05,0x09,0x9b,0x41,0xbb,0x03 ] }; + + /// `TRUE` when the iterator has not run out of `FrameInfo`s. If the + /// collection over which the iterator is iterating is empty or if the + /// iterator has gone past the end of the collection, then this is `FALSE`. + + @(" propget") + HRESULT get_HasCurrent(@("out, retval") BOOL* hasCurrent); + + /// Get the current `ICoreWebView2FrameInfo` of the iterator. + /// Returns `HRESULT_FROM_WIN32(ERROR_INVALID_INDEX)` if HasCurrent is + /// `FALSE`. + + HRESULT GetCurrent(@("out, retval") ICoreWebView2FrameInfo * frameInfo); + + /// Move the iterator to the next `FrameInfo` in the collection. + + HRESULT MoveNext(@("out, retval") BOOL* hasNext); +} + +/// Provides a set of properties for a frame in the `ICoreWebView2`. +const GUID IID_ICoreWebView2FrameInfo = ICoreWebView2FrameInfo.iid; + +interface ICoreWebView2FrameInfo : IUnknown +{ + static const GUID iid = { 0xda86b8a1,0xbdf3,0x4f11,[ 0x99,0x55,0x52,0x8c,0xef,0xa5,0x97,0x27 ] }; + + /// The name attribute of the frame, as in `