Skip to content

Commit 3d18366

Browse files
Sample update for 1.0.2950-prerelease (#259)
* Updates for Win32, WPF, WinForms, UWP and WinUI3 sample apps from 132.0.2950.0 * Updated package version for Win32, WPF and WinForms sample apps to 1.0.2950-prerelease --------- Co-authored-by: WebView2 Github Bot <webview2github@microsoft.com>
1 parent 1709010 commit 3d18366

14 files changed

+434
-293
lines changed

SampleApps/WebView2APISample/AppWindow.cpp

+14-15
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
#include "ScenarioDragDrop.h"
4040
#include "ScenarioExtensionsManagement.h"
4141
#include "ScenarioFileSystemHandleShare.h"
42+
#include "ScenarioFileTypePolicy.h"
4243
#include "ScenarioIFrameDevicePermission.h"
4344
#include "ScenarioNavigateWithWebResourceRequest.h"
4445
#include "ScenarioNonClientRegionSupport.h"
@@ -49,7 +50,6 @@
4950
#include "ScenarioSharedBuffer.h"
5051
#include "ScenarioSharedWorkerWRR.h"
5152
#include "ScenarioThrottlingControl.h"
52-
#include "ScenarioFileTypePolicy.h"
5353
#include "ScenarioVirtualHostMappingForPopUpWindow.h"
5454
#include "ScenarioVirtualHostMappingForSW.h"
5555
#include "ScenarioWebMessage.h"
@@ -201,7 +201,7 @@ AppWindow::AppWindow(
201201
WCHAR szTitle[s_maxLoadString]; // The title bar text
202202
LoadStringW(g_hInstance, IDS_APP_TITLE, szTitle, s_maxLoadString);
203203
m_appTitle = szTitle;
204-
204+
DWORD windowStyle = WS_OVERLAPPEDWINDOW;
205205
if (userDataFolderParam.length() > 0)
206206
{
207207
m_userDataFolder = userDataFolderParam;
@@ -210,15 +210,15 @@ AppWindow::AppWindow(
210210
if (customWindowRect)
211211
{
212212
m_mainWindow = CreateWindowExW(
213-
WS_EX_CONTROLPARENT, GetWindowClass(), szTitle, WS_OVERLAPPEDWINDOW,
214-
windowRect.left, windowRect.top, windowRect.right - windowRect.left,
213+
WS_EX_CONTROLPARENT, GetWindowClass(), szTitle, windowStyle, windowRect.left,
214+
windowRect.top, windowRect.right - windowRect.left,
215215
windowRect.bottom - windowRect.top, nullptr, nullptr, g_hInstance, nullptr);
216216
}
217217
else
218218
{
219219
m_mainWindow = CreateWindowExW(
220-
WS_EX_CONTROLPARENT, GetWindowClass(), szTitle, WS_OVERLAPPEDWINDOW, CW_USEDEFAULT,
221-
0, CW_USEDEFAULT, 0, nullptr, nullptr, g_hInstance, nullptr);
220+
WS_EX_CONTROLPARENT, GetWindowClass(), szTitle, windowStyle, CW_USEDEFAULT, 0,
221+
CW_USEDEFAULT, 0, nullptr, nullptr, g_hInstance, nullptr);
222222
}
223223

224224
m_appBackgroundImageHandle = (HBITMAP)LoadImage(
@@ -1429,11 +1429,11 @@ HRESULT AppWindow::OnCreateEnvironmentCompleted(
14291429
m_webViewEnvironment = environment;
14301430

14311431
if (m_webviewOption.entry == WebViewCreateEntry::EVER_FROM_CREATE_WITH_OPTION_MENU ||
1432-
m_creationModeId == IDM_CREATION_MODE_HOST_INPUT_PROCESSING)
1432+
m_creationModeId == IDM_CREATION_MODE_HOST_INPUT_PROCESSING
1433+
)
14331434
{
14341435
return CreateControllerWithOptions();
14351436
}
1436-
14371437
auto webViewEnvironment3 = m_webViewEnvironment.try_query<ICoreWebView2Environment3>();
14381438

14391439
if (webViewEnvironment3 && (m_dcompDevice || m_wincompCompositor))
@@ -1625,7 +1625,6 @@ HRESULT AppWindow::OnCreateCoreWebView2ControllerCompleted(
16251625
m_creationModeId == IDM_CREATION_MODE_TARGET_DCOMP);
16261626
NewComponent<AudioComponent>(this);
16271627
NewComponent<ControlComponent>(this, &m_toolbar);
1628-
16291628
m_webView3 = coreWebView2.try_query<ICoreWebView2_3>();
16301629
if (m_webView3)
16311630
{
@@ -1969,13 +1968,13 @@ void AppWindow::RegisterEventHandlers()
19691968
RunAsync(
19701969
[this]()
19711970
{
1972-
std::wstring message =
1973-
L"We detected there is a critical update for WebView2 runtime.";
1971+
std::wstring message = L"We detected there is a critical "
1972+
L"update for WebView2 runtime.";
19741973
if (m_webView)
19751974
{
19761975
message += L"Do you want to restart the app? \n\n";
1977-
message +=
1978-
L"Click No if you only want to re-create the webviews. \n";
1976+
message += L"Click No if you only want to re-create the "
1977+
L"webviews. \n";
19791978
message += L"Click Cancel for no action. \n";
19801979
}
19811980
int response = MessageBox(
@@ -2036,11 +2035,11 @@ void AppWindow::ResizeEverything()
20362035
RECT availableBounds = {0};
20372036
GetClientRect(m_mainWindow, &availableBounds);
20382037

2039-
if (!m_containsFullscreenElement)
2038+
if (!m_containsFullscreenElement
2039+
)
20402040
{
20412041
availableBounds = m_toolbar.Resize(availableBounds);
20422042
}
2043-
20442043
if (auto view = GetComponent<ViewComponent>())
20452044
{
20462045
view->SetBounds(availableBounds);

SampleApps/WebView2APISample/AppWindow.h

+6-11
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ struct WebViewCreateOption
4343
}
4444
WebViewCreateOption(
4545
const std::wstring& profile_, bool inPrivate, const std::wstring& downloadPath,
46-
const std::wstring& scriptLocale_, WebViewCreateEntry entry_, bool useOSRegion_)
46+
const std::wstring& scriptLocale_, WebViewCreateEntry entry_, bool useOSRegion_
47+
)
4748
: profile(profile_), isInPrivate(inPrivate), downloadPath(downloadPath),
4849
scriptLocale(scriptLocale_), entry(entry_), useOSRegion(useOSRegion_)
4950
{
5051
}
51-
5252
WebViewCreateOption(const WebViewCreateOption& opt)
5353
{
5454
profile = opt.profile;
@@ -87,15 +87,10 @@ class AppWindow
8787
{
8888
public:
8989
AppWindow(
90-
UINT creationModeId,
91-
const WebViewCreateOption& opt,
92-
const std::wstring& initialUri = L"",
93-
const std::wstring& userDataFolderParam = L"",
94-
bool isMainWindow = false,
95-
std::function<void()> webviewCreatedCallback = nullptr,
96-
bool customWindowRect = false,
97-
RECT windowRect = {0},
98-
bool shouldHaveToolbar = true,
90+
UINT creationModeId, const WebViewCreateOption& opt,
91+
const std::wstring& initialUri = L"", const std::wstring& userDataFolderParam = L"",
92+
bool isMainWindow = false, std::function<void()> webviewCreatedCallback = nullptr,
93+
bool customWindowRect = false, RECT windowRect = {0}, bool shouldHaveToolbar = true,
9994
bool isPopup = false);
10095

10196
~AppWindow();

SampleApps/WebView2APISample/ScenarioAddHostObject.cpp

+98-89
Original file line numberDiff line numberDiff line change
@@ -32,48 +32,50 @@ ScenarioAddHostObject::ScenarioAddHostObject(AppWindow* appWindow)
3232

3333
m_hostObject = Microsoft::WRL::Make<HostObjectSample>(
3434
[appWindow = m_appWindow](std::function<void(void)> callback)
35-
{
36-
appWindow->RunAsync(callback);
37-
});
35+
{ appWindow->RunAsync(callback); });
3836

3937
CHECK_FAILURE(m_webView->add_NavigationStarting(
4038
Microsoft::WRL::Callback<ICoreWebView2NavigationStartingEventHandler>(
41-
[this, sampleUri](ICoreWebView2* sender, ICoreWebView2NavigationStartingEventArgs* args) -> HRESULT
42-
{
43-
wil::unique_cotaskmem_string navigationTargetUri;
44-
CHECK_FAILURE(args->get_Uri(&navigationTargetUri));
45-
std::wstring uriTarget(navigationTargetUri.get());
46-
47-
if (AreFileUrisEqual(sampleUri, uriTarget))
48-
{
49-
//! [AddHostObjectToScript]
50-
VARIANT remoteObjectAsVariant = {};
51-
m_hostObject.query_to<IDispatch>(&remoteObjectAsVariant.pdispVal);
52-
remoteObjectAsVariant.vt = VT_DISPATCH;
53-
54-
// We can call AddHostObjectToScript multiple times in a row without
55-
// calling RemoveHostObject first. This will replace the previous object
56-
// with the new object. In our case this is the same object and everything
57-
// is fine.
58-
CHECK_FAILURE(
59-
m_webView->AddHostObjectToScript(L"sample", &remoteObjectAsVariant));
60-
remoteObjectAsVariant.pdispVal->Release();
61-
//! [AddHostObjectToScript]
62-
}
63-
else
64-
{
65-
// We can call RemoveHostObject multiple times in a row without
66-
// calling AddHostObjectToScript first. This will produce an error
67-
// result so we ignore the failure.
68-
m_webView->RemoveHostObjectFromScript(L"sample");
69-
70-
// When we navigate elsewhere we're off of the sample
71-
// scenario page and so should remove the scenario.
72-
m_appWindow->DeleteComponent(this);
73-
}
74-
75-
return S_OK;
76-
}).Get(), &m_navigationStartingToken));
39+
[this, sampleUri](
40+
ICoreWebView2* sender,
41+
ICoreWebView2NavigationStartingEventArgs* args) -> HRESULT
42+
{
43+
wil::unique_cotaskmem_string navigationTargetUri;
44+
CHECK_FAILURE(args->get_Uri(&navigationTargetUri));
45+
std::wstring uriTarget(navigationTargetUri.get());
46+
47+
if (AreFileUrisEqual(sampleUri, uriTarget))
48+
{
49+
//! [AddHostObjectToScript]
50+
VARIANT remoteObjectAsVariant = {};
51+
m_hostObject.query_to<IDispatch>(&remoteObjectAsVariant.pdispVal);
52+
remoteObjectAsVariant.vt = VT_DISPATCH;
53+
54+
// We can call AddHostObjectToScript multiple times in a row without
55+
// calling RemoveHostObject first. This will replace the previous object
56+
// with the new object. In our case this is the same object and everything
57+
// is fine.
58+
CHECK_FAILURE(
59+
m_webView->AddHostObjectToScript(L"sample", &remoteObjectAsVariant));
60+
remoteObjectAsVariant.pdispVal->Release();
61+
//! [AddHostObjectToScript]
62+
}
63+
else
64+
{
65+
// We can call RemoveHostObject multiple times in a row without
66+
// calling AddHostObjectToScript first. This will produce an error
67+
// result so we ignore the failure.
68+
m_webView->RemoveHostObjectFromScript(L"sample");
69+
70+
// When we navigate elsewhere we're off of the sample
71+
// scenario page and so should remove the scenario.
72+
m_appWindow->DeleteComponent(this);
73+
}
74+
75+
return S_OK;
76+
})
77+
.Get(),
78+
&m_navigationStartingToken));
7779

7880
wil::com_ptr<ICoreWebView2_4> webview2_4 = m_webView.try_query<ICoreWebView2_4>();
7981
if (webview2_4)
@@ -83,63 +85,70 @@ ScenarioAddHostObject::ScenarioAddHostObject(AppWindow* appWindow)
8385
CHECK_FAILURE(webview2_4->add_FrameCreated(
8486
Callback<ICoreWebView2FrameCreatedEventHandler>(
8587
[this](
86-
ICoreWebView2* sender,
87-
ICoreWebView2FrameCreatedEventArgs* args) -> HRESULT
88-
{
89-
wil::com_ptr<ICoreWebView2Frame> webviewFrame;
90-
CHECK_FAILURE(args->get_Frame(&webviewFrame));
91-
92-
wil::unique_cotaskmem_string name;
93-
CHECK_FAILURE(webviewFrame->get_Name(&name));
94-
if (std::wcscmp(name.get(), L"iframe_name") == 0)
95-
{
96-
//! [AddHostObjectToScriptWithOrigins]
97-
wil::unique_variant remoteObjectAsVariant;
98-
// It will throw if m_hostObject fails the QI, but because it is our object
99-
// it should always succeed.
100-
m_hostObject.query_to<IDispatch>(&remoteObjectAsVariant.pdispVal);
101-
remoteObjectAsVariant.vt = VT_DISPATCH;
102-
103-
// Create list of origins which will be checked.
104-
// iframe will have access to host object only if its origin belongs
105-
// to this list.
106-
LPCWSTR origin = L"https://appassets.example/";
107-
108-
CHECK_FAILURE(webviewFrame->AddHostObjectToScriptWithOrigins(
109-
L"sample", &remoteObjectAsVariant, 1, &origin));
110-
//! [AddHostObjectToScriptWithOrigins]
111-
}
112-
113-
// Subscribe to frame name changed event
114-
webviewFrame->add_NameChanged(
115-
Callback<ICoreWebView2FrameNameChangedEventHandler>(
116-
[this](ICoreWebView2Frame* sender, IUnknown* args) -> HRESULT {
117-
wil::unique_cotaskmem_string newName;
118-
CHECK_FAILURE(sender->get_Name(&newName));
119-
// Handle name changed event
120-
return S_OK;
121-
}).Get(), NULL);
122-
123-
// Subscribe to frame destroyed event
124-
webviewFrame->add_Destroyed(
125-
Callback<ICoreWebView2FrameDestroyedEventHandler>(
126-
[this](ICoreWebView2Frame* sender, IUnknown* args) -> HRESULT {
127-
/*Cleanup on frame destruction*/
128-
return S_OK;
129-
})
130-
.Get(),
131-
NULL);
132-
return S_OK;
133-
}).Get(), &m_frameCreatedToken));
88+
ICoreWebView2* sender, ICoreWebView2FrameCreatedEventArgs* args) -> HRESULT
89+
{
90+
wil::com_ptr<ICoreWebView2Frame> webviewFrame;
91+
CHECK_FAILURE(args->get_Frame(&webviewFrame));
92+
93+
wil::unique_cotaskmem_string name;
94+
CHECK_FAILURE(webviewFrame->get_Name(&name));
95+
if (std::wcscmp(name.get(), L"iframe_name") == 0)
96+
{
97+
//! [AddHostObjectToScriptWithOrigins]
98+
wil::unique_variant remoteObjectAsVariant;
99+
// It will throw if m_hostObject fails the QI, but because it is our
100+
// object it should always succeed.
101+
m_hostObject.query_to<IDispatch>(&remoteObjectAsVariant.pdispVal);
102+
remoteObjectAsVariant.vt = VT_DISPATCH;
103+
104+
// Create list of origins which will be checked.
105+
// iframe will have access to host object only if its origin belongs
106+
// to this list.
107+
LPCWSTR origin = L"https://appassets.example/";
108+
109+
CHECK_FAILURE(webviewFrame->AddHostObjectToScriptWithOrigins(
110+
L"sample", &remoteObjectAsVariant, 1, &origin));
111+
//! [AddHostObjectToScriptWithOrigins]
112+
}
113+
114+
// Subscribe to frame name changed event
115+
webviewFrame->add_NameChanged(
116+
Callback<ICoreWebView2FrameNameChangedEventHandler>(
117+
[this](ICoreWebView2Frame* sender, IUnknown* args) -> HRESULT
118+
{
119+
wil::unique_cotaskmem_string newName;
120+
CHECK_FAILURE(sender->get_Name(&newName));
121+
// Handle name changed event
122+
return S_OK;
123+
})
124+
.Get(),
125+
NULL);
126+
127+
// Subscribe to frame destroyed event
128+
webviewFrame->add_Destroyed(
129+
Callback<ICoreWebView2FrameDestroyedEventHandler>(
130+
[this](ICoreWebView2Frame* sender, IUnknown* args) -> HRESULT
131+
{
132+
/*Cleanup on frame destruction*/
133+
return S_OK;
134+
})
135+
.Get(),
136+
NULL);
137+
return S_OK;
138+
})
139+
.Get(),
140+
&m_frameCreatedToken));
134141
}
135-
136142
CHECK_FAILURE(m_webView->Navigate(sampleUri.c_str()));
137143
}
138-
139144
ScenarioAddHostObject::~ScenarioAddHostObject()
140145
{
141146
m_webView->RemoveHostObjectFromScript(L"sample");
142147
m_webView->remove_NavigationStarting(m_navigationStartingToken);
148+
if (m_navigationCompletedToken.value)
149+
{
150+
m_webView->remove_NavigationCompleted(m_navigationCompletedToken);
151+
}
143152
wil::com_ptr<ICoreWebView2_4> webview2_4 = m_webView.try_query<ICoreWebView2_4>();
144153
if (webview2_4)
145154
{

SampleApps/WebView2APISample/ScenarioAddHostObject.h

+1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@ class ScenarioAddHostObject : public ComponentBase
2424
wil::com_ptr<HostObjectSample> m_hostObject;
2525

2626
EventRegistrationToken m_navigationStartingToken = {};
27+
EventRegistrationToken m_navigationCompletedToken = {};
2728
EventRegistrationToken m_frameCreatedToken = {};
2829
};

SampleApps/WebView2APISample/Toolbar.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,15 @@ void Toolbar::SetItemEnabled(Item item, bool enabled)
5656
EnableWindow(m_items[item], enabled);
5757
}
5858

59+
void Toolbar::Hide()
60+
{
61+
DisableAllItems();
62+
for (HWND hwnd : m_items)
63+
{
64+
ShowWindow(hwnd, SW_HIDE);
65+
}
66+
}
67+
5968
void Toolbar::DisableAllItems()
6069
{
6170
for (HWND hwnd : m_items)

SampleApps/WebView2APISample/Toolbar.h

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class Toolbar
3535
void UpdateDpiAndTextScale();
3636
void SelectAll();
3737
void SelectAddressBar();
38+
void Hide();
3839

3940
private:
4041
int GetItemLogicalWidth(Item item, int clientLogicalWidth) const;

SampleApps/WebView2APISample/WebView2APISample.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -486,13 +486,13 @@
486486
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
487487
<ImportGroup Label="ExtensionTargets">
488488
<Import Project="..\packages\Microsoft.Windows.ImplementationLibrary.1.0.220201.1\build\native\Microsoft.Windows.ImplementationLibrary.targets" Condition="Exists('..\packages\Microsoft.Windows.ImplementationLibrary.1.0.220201.1\build\native\Microsoft.Windows.ImplementationLibrary.targets')" />
489-
<Import Project="..\packages\Microsoft.Web.WebView2.1.0.2895-prerelease\build\native\Microsoft.Web.WebView2.targets" Condition="Exists('..\packages\Microsoft.Web.WebView2.1.0.2895-prerelease\build\native\Microsoft.Web.WebView2.targets')" />
489+
<Import Project="..\packages\Microsoft.Web.WebView2.1.0.2950-prerelease\build\native\Microsoft.Web.WebView2.targets" Condition="Exists('..\packages\Microsoft.Web.WebView2.1.0.2950-prerelease\build\native\Microsoft.Web.WebView2.targets')" />
490490
</ImportGroup>
491491
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
492492
<PropertyGroup>
493493
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
494494
</PropertyGroup>
495495
<Error Condition="!Exists('..\packages\Microsoft.Windows.ImplementationLibrary.1.0.220201.1\build\native\Microsoft.Windows.ImplementationLibrary.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Windows.ImplementationLibrary.1.0.220201.1\build\native\Microsoft.Windows.ImplementationLibrary.targets'))" />
496-
<Error Condition="!Exists('..\packages\Microsoft.Web.WebView2.1.0.2895-prerelease\build\native\Microsoft.Web.WebView2.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Web.WebView2.1.0.2895-prerelease\build\native\Microsoft.Web.WebView2.targets'))" />
496+
<Error Condition="!Exists('..\packages\Microsoft.Web.WebView2.1.0.2950-prerelease\build\native\Microsoft.Web.WebView2.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Web.WebView2.1.0.2950-prerelease\build\native\Microsoft.Web.WebView2.targets'))" />
497497
</Target>
498498
</Project>

0 commit comments

Comments
 (0)