-
Notifications
You must be signed in to change notification settings - Fork 493
/
Copy pathAppWindow.cpp
2870 lines (2645 loc) · 103 KB
/
AppWindow.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// 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.
#include "stdafx.h"
#include "AppWindow.h"
#include <DispatcherQueue.h>
#include <ShObjIdl_core.h>
#include <Shellapi.h>
#include <ShlObj_core.h>
#include <functional>
#include <iostream>
#include <regex>
#include <sstream>
#include <string>
#include <vector>
#include <winrt/windows.system.h>
#include "App.h"
#include "AppStartPage.h"
#include "AudioComponent.h"
#include "CheckFailure.h"
#include "ControlComponent.h"
#include "DpiUtil.h"
#include "FileComponent.h"
#include "ProcessComponent.h"
#include "Resource.h"
#include "ScenarioAcceleratorKeyPressed.h"
#include "ScenarioAddHostObject.h"
#include "ScenarioAuthentication.h"
#include "ScenarioClientCertificateRequested.h"
#include "ScenarioCookieManagement.h"
#include "ScenarioCustomDownloadExperience.h"
#include "ScenarioCustomScheme.h"
#include "ScenarioCustomSchemeNavigate.h"
#include "ScenarioDefaultBackgroundColor.h"
#include "ScenarioDOMContentLoaded.h"
#include "ScenarioDragDrop.h"
#include "ScenarioDragDropOverride.h"
#include "ScenarioExtensionsManagement.h"
#include "ScenarioFileSystemHandleShare.h"
#include "ScenarioFileTypePolicy.h"
#include "ScenarioIFrameDevicePermission.h"
#include "ScenarioNavigateWithWebResourceRequest.h"
#include "ScenarioNonClientRegionSupport.h"
#include "ScenarioNotificationReceived.h"
#include "ScenarioPermissionManagement.h"
#include "ScenarioSaveAs.h"
#include "ScenarioScreenCapture.h"
#include "ScenarioSharedBuffer.h"
#include "ScenarioSharedWorkerWRR.h"
#include "ScenarioThrottlingControl.h"
#include "ScenarioVirtualHostMappingForPopUpWindow.h"
#include "ScenarioVirtualHostMappingForSW.h"
#include "ScenarioWebMessage.h"
#include "ScenarioWebViewEventMonitor.h"
#include "ScriptComponent.h"
#include "SettingsComponent.h"
#include "TextInputDialog.h"
#include "ViewComponent.h"
using namespace Microsoft::WRL;
static constexpr size_t s_maxLoadString = 100;
static constexpr UINT s_runAsyncWindowMessage = WM_APP;
static thread_local size_t s_appInstances = 0;
// The minimum height and width for Window Features.
// See https://developer.mozilla.org/docs/Web/API/Window/open#Size
static constexpr int s_minNewWindowSize = 100;
// Run Download and Install in another thread so we don't block the UI thread
DWORD WINAPI DownloadAndInstallWV2RT(_In_ LPVOID lpParameter)
{
AppWindow* appWindow = (AppWindow*)lpParameter;
int returnCode = 2; // Download failed
// Use fwlink to download WebView2 Bootstrapper at runtime and invoke installation
// Broken/Invalid Https Certificate will fail to download
// Use of the download link below is governed by the below terms. You may acquire the link
// for your use at https://developer.microsoft.com/microsoft-edge/webview2/. Microsoft owns
// all legal right, title, and interest in and to the WebView2 Runtime Bootstrapper
// ("Software") and related documentation, including any intellectual property in the
// Software. You must acquire all code, including any code obtained from a Microsoft URL,
// under a separate license directly from Microsoft, including a Microsoft download site
// (e.g., https://developer.microsoft.com/microsoft-edge/webview2/).
HRESULT hr = URLDownloadToFile(
NULL, L"https://go.microsoft.com/fwlink/p/?LinkId=2124703",
L".\\MicrosoftEdgeWebview2Setup.exe", 0, 0);
if (hr == S_OK)
{
// Either Package the WebView2 Bootstrapper with your app or download it using fwlink
// Then invoke install at Runtime.
SHELLEXECUTEINFO shExInfo = {0};
shExInfo.cbSize = sizeof(shExInfo);
shExInfo.fMask = SEE_MASK_NOASYNC;
shExInfo.hwnd = 0;
shExInfo.lpVerb = L"runas";
shExInfo.lpFile = L"MicrosoftEdgeWebview2Setup.exe";
shExInfo.lpParameters = L" /silent /install";
shExInfo.lpDirectory = 0;
shExInfo.nShow = 0;
shExInfo.hInstApp = 0;
if (ShellExecuteEx(&shExInfo))
{
returnCode = 0; // Install successful
}
else
{
returnCode = 1; // Install failed
}
}
appWindow->InstallComplete(returnCode);
appWindow->Release();
return returnCode;
}
static INT_PTR CALLBACK DlgProcStatic(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
auto app = (AppWindow*)GetWindowLongPtr(hDlg, GWLP_USERDATA);
switch (message)
{
case WM_INITDIALOG:
{
app = (AppWindow*)lParam;
SetWindowLongPtr(hDlg, GWLP_USERDATA, (LONG_PTR)app);
SetDlgItemText(hDlg, IDC_EDIT_PROFILE, app->GetWebViewOption().profile.c_str());
SetDlgItemText(
hDlg, IDC_EDIT_DOWNLOAD_PATH, app->GetWebViewOption().downloadPath.c_str());
SetDlgItemText(hDlg, IDC_EDIT_LOCALE, app->GetWebViewOption().scriptLocale.c_str());
CheckDlgButton(hDlg, IDC_CHECK_INPRIVATE, app->GetWebViewOption().isInPrivate);
return (INT_PTR)TRUE;
}
case WM_COMMAND:
{
if (LOWORD(wParam) == IDOK)
{
int length = GetWindowTextLength(GetDlgItem(hDlg, IDC_EDIT_PROFILE));
wchar_t text[MAX_PATH] = {};
GetDlgItemText(hDlg, IDC_EDIT_PROFILE, text, length + 1);
bool inPrivate = IsDlgButtonChecked(hDlg, IDC_CHECK_INPRIVATE);
int downloadPathLength =
GetWindowTextLength(GetDlgItem(hDlg, IDC_EDIT_DOWNLOAD_PATH));
wchar_t downloadPath[MAX_PATH] = {};
GetDlgItemText(hDlg, IDC_EDIT_DOWNLOAD_PATH, downloadPath, downloadPathLength + 1);
int scriptLocaleLength = GetWindowTextLength(GetDlgItem(hDlg, IDC_EDIT_LOCALE));
wchar_t scriptLocale[MAX_PATH] = {};
GetDlgItemText(hDlg, IDC_EDIT_LOCALE, scriptLocale, scriptLocaleLength + 1);
bool useOsRegion = IsDlgButtonChecked(hDlg, IDC_CHECK_USE_OS_REGION);
WebViewCreateOption opt(
std::wstring(std::move(text)), inPrivate, std::wstring(std::move(downloadPath)),
std::wstring(std::move(scriptLocale)),
WebViewCreateEntry::EVER_FROM_CREATE_WITH_OPTION_MENU, useOsRegion);
// create app window
new AppWindow(app->GetCreationModeId(), opt);
}
if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
{
EndDialog(hDlg, LOWORD(wParam));
return (INT_PTR)TRUE;
}
break;
}
case WM_NCDESTROY:
SetWindowLongPtr(hDlg, GWLP_USERDATA, NULL);
return (INT_PTR)TRUE;
}
return (INT_PTR)FALSE;
}
void WebViewCreateOption::PopupDialog(AppWindow* app)
{
DialogBoxParam(
g_hInstance, MAKEINTRESOURCE(IDD_WEBVIEW2_OPTION), app->GetMainWindow(), DlgProcStatic,
(LPARAM)app);
}
// Creates a new window which is a copy of the entire app, but on the same thread.
AppWindow::AppWindow(
UINT creationModeId, const WebViewCreateOption& opt, const std::wstring& initialUri,
const std::wstring& userDataFolderParam, bool isMainWindow,
std::function<void()> webviewCreatedCallback, bool customWindowRect, RECT windowRect,
bool shouldHaveToolbar, bool isPopup)
: m_creationModeId(creationModeId), m_webviewOption(opt), m_initialUri(initialUri),
m_onWebViewFirstInitialized(webviewCreatedCallback), m_isPopupWindow(isPopup)
{
// Initialize COM as STA.
CHECK_FAILURE(OleInitialize(NULL));
++s_appInstances;
WCHAR szTitle[s_maxLoadString]; // The title bar text
LoadStringW(g_hInstance, IDS_APP_TITLE, szTitle, s_maxLoadString);
m_appTitle = szTitle;
DWORD windowStyle = WS_OVERLAPPEDWINDOW | WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
if (userDataFolderParam.length() > 0)
{
m_userDataFolder = userDataFolderParam;
}
if (customWindowRect)
{
m_mainWindow = CreateWindowExW(
WS_EX_CONTROLPARENT, GetWindowClass(), szTitle, windowStyle, windowRect.left,
windowRect.top, windowRect.right - windowRect.left,
windowRect.bottom - windowRect.top, nullptr, nullptr, g_hInstance, nullptr);
}
else
{
m_mainWindow = CreateWindowExW(
WS_EX_CONTROLPARENT, GetWindowClass(), szTitle, windowStyle, CW_USEDEFAULT, 0,
CW_USEDEFAULT, 0, nullptr, nullptr, g_hInstance, nullptr);
}
m_appBackgroundImageHandle = (HBITMAP)LoadImage(
g_hInstance, MAKEINTRESOURCE(IDI_WEBVIEW2_BACKGROUND), IMAGE_BITMAP, 0, 0,
LR_DEFAULTCOLOR);
GetObject(m_appBackgroundImageHandle, sizeof(m_appBackgroundImage), &m_appBackgroundImage);
m_memHdc = CreateCompatibleDC(GetDC(m_mainWindow));
SelectObject(m_memHdc, m_appBackgroundImageHandle);
SetWindowLongPtr(m_mainWindow, GWLP_USERDATA, (LONG_PTR)this);
//! [TextScaleChanged1]
if (winrt::try_get_activation_factory<winrt::Windows::UI::ViewManagement::UISettings>())
{
m_uiSettings = winrt::Windows::UI::ViewManagement::UISettings();
m_uiSettings.TextScaleFactorChanged({this, &AppWindow::OnTextScaleChanged});
}
//! [TextScaleChanged1]
if (shouldHaveToolbar)
{
m_toolbar.Initialize(this);
}
UpdateCreationModeMenu();
ShowWindow(m_mainWindow, g_nCmdShow);
UpdateWindow(m_mainWindow);
// If no WebView2 Runtime installed, create new thread to do install/download.
// Otherwise just initialize webview.
wil::unique_cotaskmem_string version_info;
HRESULT hr = GetAvailableCoreWebView2BrowserVersionString(nullptr, &version_info);
if (hr == S_OK && version_info != nullptr)
{
RunAsync([this] { InitializeWebView(); });
}
else
{
if (isMainWindow)
{
AddRef();
CreateThread(0, 0, DownloadAndInstallWV2RT, (void*)this, 0, 0);
}
else
{
MessageBox(
m_mainWindow, L"WebView Runtime not installed",
L"WebView Runtime Installation status", MB_OK);
}
}
}
AppWindow::~AppWindow()
{
DeleteObject(m_appBackgroundImageHandle);
DeleteDC(m_memHdc);
}
// Register the Win32 window class for the app window.
PCWSTR AppWindow::GetWindowClass()
{
// Only do this once
static PCWSTR windowClass = []
{
static WCHAR windowClass[s_maxLoadString];
LoadStringW(g_hInstance, IDC_WEBVIEW2APISAMPLE, windowClass, s_maxLoadString);
WNDCLASSEXW wcex;
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = WndProcStatic;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = g_hInstance;
wcex.hIcon = LoadIcon(g_hInstance, MAKEINTRESOURCE(IDI_WEBVIEW2APISAMPLE));
wcex.hCursor = LoadCursor(nullptr, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wcex.lpszMenuName = MAKEINTRESOURCEW(IDC_WEBVIEW2APISAMPLE);
wcex.lpszClassName = windowClass;
wcex.hIconSm = LoadIcon(g_hInstance, MAKEINTRESOURCE(IDI_WEBVIEW2APISAMPLE));
RegisterClassExW(&wcex);
return windowClass;
}();
return windowClass;
}
LRESULT CALLBACK AppWindow::WndProcStatic(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
if (auto app = (AppWindow*)GetWindowLongPtr(hWnd, GWLP_USERDATA))
{
LRESULT result = 0;
if (app->HandleWindowMessage(hWnd, message, wParam, lParam, &result))
{
return result;
}
}
return DefWindowProc(hWnd, message, wParam, lParam);
}
// Handle Win32 window messages sent to the main window
bool AppWindow::HandleWindowMessage(
HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, LRESULT* result)
{
// Give all components a chance to handle the message first.
for (auto& component : m_components)
{
if (component->HandleWindowMessage(hWnd, message, wParam, lParam, result))
{
return true;
}
}
switch (message)
{
case WM_SIZE:
{
// Don't resize the app or webview when the app is minimized
// let WM_SYSCOMMAND to handle it
if (lParam != 0)
{
ResizeEverything();
return true;
}
}
break;
//! [DPIChanged]
case WM_DPICHANGED:
{
m_toolbar.UpdateDpiAndTextScale();
if (auto view = GetComponent<ViewComponent>())
{
view->UpdateDpiAndTextScale();
}
RECT* const newWindowSize = reinterpret_cast<RECT*>(lParam);
SetWindowPos(
hWnd, nullptr, newWindowSize->left, newWindowSize->top,
newWindowSize->right - newWindowSize->left,
newWindowSize->bottom - newWindowSize->top, SWP_NOZORDER | SWP_NOACTIVATE);
return true;
}
break;
//! [DPIChanged]
case WM_PAINT:
{
PAINTSTRUCT ps;
HDC hdc;
BeginPaint(hWnd, &ps);
hdc = GetDC(hWnd);
StretchBlt(
hdc, m_appBackgroundImageRect.left, m_appBackgroundImageRect.top,
m_appBackgroundImageRect.right, m_appBackgroundImageRect.bottom, m_memHdc, 0, 0,
m_appBackgroundImage.bmWidth, m_appBackgroundImage.bmHeight, SRCCOPY);
EndPaint(hWnd, &ps);
return true;
}
break;
case s_runAsyncWindowMessage:
{
auto* task = reinterpret_cast<std::function<void()>*>(wParam);
(*task)();
delete task;
return true;
}
break;
case WM_CLOSE:
{
CloseAppWindow();
return true;
}
break;
case WM_NCDESTROY:
{
int retValue = 0;
SetWindowLongPtr(hWnd, GWLP_USERDATA, NULL);
NotifyClosed();
if (--s_appInstances == 0)
{
PostQuitMessage(retValue);
}
Release();
}
break;
//! [RestartManager]
case WM_QUERYENDSESSION:
{
// yes, we can shut down
// Register how we might be restarted
RegisterApplicationRestart(L"--restore", RESTART_NO_CRASH | RESTART_NO_HANG);
*result = TRUE;
return true;
}
break;
case WM_ENDSESSION:
{
if (wParam == TRUE)
{
// save app state and exit.
PostQuitMessage(0);
return true;
}
}
break;
//! [RestartManager]
case WM_KEYDOWN:
case WM_SYSKEYDOWN:
{
// If bit 30 is set, it means the WM_KEYDOWN message is autorepeated.
// We want to ignore it in that case.
if (!(lParam & (1 << 30)))
{
if (auto action = GetAcceleratorKeyFunction((UINT)wParam))
{
action();
return true;
}
}
}
break;
case WM_COMMAND:
{
return ExecuteWebViewCommands(wParam, lParam) || ExecuteAppCommands(wParam, lParam);
}
break;
}
return false;
}
// Handle commands related to the WebView.
// This will do nothing if the WebView is not initialized.
bool AppWindow::ExecuteWebViewCommands(WPARAM wParam, LPARAM lParam)
{
if (!m_webView)
return false;
switch (LOWORD(wParam))
{
case IDM_GET_BROWSER_VERSION_AFTER_CREATION:
{
//! [GetBrowserVersionString]
wil::unique_cotaskmem_string version_info;
m_webViewEnvironment->get_BrowserVersionString(&version_info);
MessageBox(
m_mainWindow, version_info.get(), L"Browser Version Info After WebView Creation",
MB_OK);
//! [GetBrowserVersionString]
return true;
}
case IDM_GET_USER_DATA_FOLDER:
{
//! [GetUserDataFolder]
auto environment7 = m_webViewEnvironment.try_query<ICoreWebView2Environment7>();
CHECK_FEATURE_RETURN(environment7);
wil::unique_cotaskmem_string userDataFolder;
environment7->get_UserDataFolder(&userDataFolder);
MessageBox(m_mainWindow, userDataFolder.get(), L"User Data Folder", MB_OK);
//! [GetUserDataFolder]
return true;
}
case IDM_GET_FAILURE_REPORT_FOLDER:
{
//! [GetFailureReportFolder]
auto environment11 = m_webViewEnvironment.try_query<ICoreWebView2Environment11>();
CHECK_FEATURE_RETURN(environment11);
wil::unique_cotaskmem_string failureReportFolder;
environment11->get_FailureReportFolderPath(&failureReportFolder);
MessageBox(m_mainWindow, failureReportFolder.get(), L"Failure Report Folder", MB_OK);
//! [GetFailureReportFolder]
return true;
}
case IDM_CLOSE_WEBVIEW:
{
CloseWebView();
return true;
}
case IDM_CLOSE_WEBVIEW_CLEANUP:
{
CloseWebView(true);
return true;
}
case IDM_SCENARIO_POST_WEB_MESSAGE:
{
NewComponent<ScenarioWebMessage>(this);
return true;
}
case IDM_SCENARIO_ADD_HOST_OBJECT:
{
NewComponent<ScenarioAddHostObject>(this);
return true;
}
case IDM_SCENARIO_WEB_VIEW_EVENT_MONITOR:
{
NewComponent<ScenarioWebViewEventMonitor>(this);
return true;
}
case IDM_SCENARIO_JAVA_SCRIPT:
{
WCHAR c_scriptPath[] = L"ScenarioJavaScriptDebugIndex.html";
std::wstring m_scriptUri = GetLocalUri(c_scriptPath, false);
CHECK_FAILURE(m_webView->Navigate(m_scriptUri.c_str()));
return true;
}
case IDM_SCENARIO_TYPE_SCRIPT:
{
WCHAR c_scriptPath[] = L"ScenarioTypeScriptDebugIndex.html";
std::wstring m_scriptUri = GetLocalUri(c_scriptPath, false);
CHECK_FAILURE(m_webView->Navigate(m_scriptUri.c_str()));
return true;
}
case IDM_SCENARIO_JAVA_SCRIPT_VIRTUAL:
{
WCHAR c_scriptPath[] = L"ScenarioJavaScriptDebugIndex.html";
std::wstring m_scriptUri = GetLocalUri(c_scriptPath, true);
CHECK_FAILURE(m_webView->Navigate(m_scriptUri.c_str()));
return true;
}
case IDM_SCENARIO_TYPE_SCRIPT_VIRTUAL:
{
WCHAR c_scriptPath[] = L"ScenarioTypeScriptDebugIndex.html";
std::wstring m_scriptUri = GetLocalUri(c_scriptPath, true);
CHECK_FAILURE(m_webView->Navigate(m_scriptUri.c_str()));
return true;
}
case IDM_SCENARIO_AUTHENTICATION:
{
NewComponent<ScenarioAuthentication>(this);
return true;
}
case IDM_SCENARIO_COOKIE_MANAGEMENT:
{
NewComponent<ScenarioCookieManagement>(this);
return true;
}
case IDM_SCENARIO_COOKIE_MANAGEMENT_PROFILE:
{
NewComponent<ScenarioCookieManagement>(this, true);
MessageBox(
m_mainWindow, L"Got CookieManager from Profile instead of ICoreWebView2.",
L"CookieManagement", MB_OK);
return true;
}
case IDM_SCENARIO_EXTENSIONS_MANAGEMENT_INSTALL_DEFAULT:
{
NewComponent<ScenarioExtensionsManagement>(this, false);
return true;
}
case IDM_SCENARIO_EXTENSIONS_MANAGEMENT_OFFLOAD_DEFAULT:
{
NewComponent<ScenarioExtensionsManagement>(this, true);
return true;
}
case IDM_SCENARIO_CUSTOM_SCHEME:
{
NewComponent<ScenarioCustomScheme>(this);
return true;
}
case IDM_SCENARIO_CUSTOM_SCHEME_NAVIGATE:
{
NewComponent<ScenarioCustomSchemeNavigate>(this);
return true;
}
case IDM_SCENARIO_SHARED_WORKER:
{
NewComponent<ScenarioSharedWorkerWRR>(this);
return true;
}
case IDM_SCENARIO_SHARED_BUFFER:
{
NewComponent<ScenarioSharedBuffer>(this);
return true;
}
case IDM_SCENARIO_DOM_CONTENT_LOADED:
{
NewComponent<ScenarioDOMContentLoaded>(this);
return true;
}
case IDM_SCENARIO_NAVIGATEWITHWEBRESOURCEREQUEST:
{
NewComponent<ScenarioNavigateWithWebResourceRequest>(this);
return true;
}
case IDM_SCENARIO_NOTIFICATION:
{
NewComponent<ScenarioNotificationReceived>(this);
return true;
}
case IDM_SCENARIO_TESTING_FOCUS:
{
WCHAR testingFocusPath[] = L"ScenarioTestingFocus.html";
std::wstring testingFocusUri = GetLocalUri(testingFocusPath, false);
CHECK_FAILURE(m_webView->Navigate(testingFocusUri.c_str()));
return true;
}
case IDM_SCENARIO_USE_DEFERRED_DOWNLOAD:
{
NewComponent<ScenarioCustomDownloadExperience>(this);
return true;
}
case IDM_SCENARIO_USE_DEFERRED_CUSTOM_CLIENT_CERTIFICATE_DIALOG:
{
NewComponent<ScenarioClientCertificateRequested>(this);
return true;
}
case IDM_SCENARIO_VIRTUAL_HOST_MAPPING:
{
NewComponent<ScenarioVirtualHostMappingForSW>(this);
return true;
}
case IDM_SCENARIO_VIRTUAL_HOST_MAPPING_POP_UP_WINDOW:
{
NewComponent<ScenarioVirtualHostMappingForPopUpWindow>(this);
return true;
}
case IDM_SCENARIO_IFRAME_DEVICE_PERMISSION:
{
NewComponent<ScenarioIFrameDevicePermission>(this);
return true;
}
case IDM_SCENARIO_BROWSER_PRINT_PREVIEW:
{
return ShowPrintUI(COREWEBVIEW2_PRINT_DIALOG_KIND_BROWSER);
}
case IDM_SCENARIO_SYSTEM_PRINT:
{
return ShowPrintUI(COREWEBVIEW2_PRINT_DIALOG_KIND_SYSTEM);
}
case IDM_SCENARIO_PRINT_TO_DEFAULT_PRINTER:
{
return PrintToDefaultPrinter();
}
case IDM_SCENARIO_PRINT_TO_PRINTER:
{
return PrintToPrinter();
}
case IDM_SCENARIO_PRINT_TO_PDF_STREAM:
{
return PrintToPdfStream();
}
case IDM_SCENARIO_NON_CLIENT_REGION_SUPPORT:
{
NewComponent<ScenarioNonClientRegionSupport>(this);
return true;
}
case IDM_SCENARIO_ACCELERATOR_KEY_PRESSED:
{
NewComponent<ScenarioAcceleratorKeyPressed>(this);
return true;
}
case IDM_SCENARIO_THROTTLING_CONTROL:
{
NewComponent<ScenarioThrottlingControl>(this);
return true;
}
case IDM_SCENARIO_SCREEN_CAPTURE:
{
NewComponent<ScenarioScreenCapture>(this);
return true;
}
case IDM_SCENARIO_FILE_TYPE_POLICY:
{
NewComponent<ScenarioFileTypePolicy>(this);
return true;
}
case IDM_START_FIND:
{
std::wstring searchTerm = L"webview"; // Replace with the actual term
return Start(searchTerm);
}
case IDM_STOP_FIND:
{
return StopFind();
}
case IDM_GET_MATCHES:
{
return GetMatchCount();
}
case IDM_GET_ACTIVE_MATCH_INDEX:
{
return GetActiveMatchIndex();
}
case IDC_FIND_TERM:
{
return FindTerm();
}
case IDC_IS_CASE_SENSITIVE:
{
return IsCaseSensitive();
}
case IDC_SHOULD_MATCH_WHOLE_WORD:
{
return ShouldMatchWord();
}
case IDC_SHOULD_HIGHLIGHT_ALL_MATCHES:
{
return ShouldHighlightAllMatches();
}
case IDC_SUPPRESS_DEFAULT_FIND_DIALOG:
{
return SuppressDefaultFindDialog();
}
}
return false;
}
// Handle commands not related to the WebView, which will work even if the WebView
// is not currently initialized.
bool AppWindow::ExecuteAppCommands(WPARAM wParam, LPARAM lParam)
{
switch (LOWORD(wParam))
{
case IDM_ABOUT:
DialogBox(g_hInstance, MAKEINTRESOURCE(IDD_ABOUTBOX), m_mainWindow, About);
return true;
case IDM_GET_BROWSER_VERSION_BEFORE_CREATION:
{
wil::unique_cotaskmem_string version_info;
GetAvailableCoreWebView2BrowserVersionString(
nullptr,
&version_info);
MessageBox(
m_mainWindow, version_info.get(), L"Browser Version Info Before WebView Creation",
MB_OK);
return true;
}
case IDM_UPDATE_RUNTIME:
{
if (!m_webViewEnvironment)
{
MessageBox(
m_mainWindow, L"Need WebView2 environment object to update WebView2 Runtime",
nullptr, MB_OK);
return true;
}
//! [UpdateRuntime]
auto experimentalEnvironment3 =
m_webViewEnvironment.try_query<ICoreWebView2ExperimentalEnvironment3>();
CHECK_FEATURE_RETURN(experimentalEnvironment3);
HRESULT hr = experimentalEnvironment3->UpdateRuntime(
Callback<ICoreWebView2ExperimentalUpdateRuntimeCompletedHandler>(
[this](HRESULT errorCode, ICoreWebView2ExperimentalUpdateRuntimeResult* result)
-> HRESULT
{
HRESULT updateError = E_FAIL;
COREWEBVIEW2_UPDATE_RUNTIME_STATUS status =
COREWEBVIEW2_UPDATE_RUNTIME_STATUS_FAILED;
if ((errorCode == S_OK) && result)
{
CHECK_FAILURE(result->get_Status(&status));
CHECK_FAILURE(result->get_ExtendedError(&updateError));
}
std::wstringstream formattedMessage;
formattedMessage << "UpdateRuntime result (0x" << std::hex << errorCode
<< "), status(" << status << "), extendedError("
<< updateError << ")";
AsyncMessageBox(std::move(formattedMessage.str()), L"UpdateRuntimeResult");
return S_OK;
})
.Get());
if (FAILED(hr))
ShowFailure(hr, L"Call to UpdateRuntime failed");
//! [UpdateRuntime]
return true;
}
case IDM_EXIT:
CloseAppWindow();
return true;
case IDM_CREATION_MODE_WINDOWED:
case IDM_CREATION_MODE_HOST_INPUT_PROCESSING:
case IDM_CREATION_MODE_VISUAL_DCOMP:
case IDM_CREATION_MODE_TARGET_DCOMP:
case IDM_CREATION_MODE_VISUAL_WINCOMP:
m_creationModeId = LOWORD(wParam);
UpdateCreationModeMenu();
return true;
case IDM_REINIT:
InitializeWebView();
return true;
case IDM_NEW_WINDOW:
new AppWindow(m_creationModeId, GetWebViewOption());
return true;
case IDM_NEW_THREAD:
CreateNewThread(this);
return true;
case IDM_SET_LANGUAGE:
ChangeLanguage();
return true;
case IDM_TOGGLE_AAD_SSO:
ToggleAADSSO();
return true;
case IDM_CREATE_WITH_OPTION:
m_webviewOption.PopupDialog(this);
return true;
case IDM_TOGGLE_TOPMOST_WINDOW:
{
bool isCurrentlyTopMost =
(GetWindowLong(m_mainWindow, GWL_EXSTYLE) & WS_EX_TOPMOST) != 0;
SetWindowPos(
m_mainWindow, isCurrentlyTopMost ? HWND_NOTOPMOST : HWND_TOPMOST, 0, 0, 0, 0,
SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE);
return true;
}
case IDM_TOGGLE_EXCLUSIVE_USER_DATA_FOLDER_ACCESS:
ToggleExclusiveUserDataFolderAccess();
return true;
case IDM_TOGGLE_CUSTOM_CRASH_REPORTING:
ToggleCustomCrashReporting();
return true;
case IDM_TOGGLE_TRACKING_PREVENTION:
ToggleTrackingPrevention();
return true;
case IDM_SCENARIO_CLEAR_BROWSING_DATA_COOKIES:
{
return ClearBrowsingData(COREWEBVIEW2_BROWSING_DATA_KINDS_COOKIES);
}
case IDM_SCENARIO_CLEAR_BROWSING_DATA_ALL_DOM_STORAGE:
{
return ClearBrowsingData(COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_DOM_STORAGE);
}
case IDM_SCENARIO_CLEAR_BROWSING_DATA_ALL_SITE:
{
return ClearBrowsingData(COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_SITE);
}
case IDM_SCENARIO_CLEAR_BROWSING_DATA_DISK_CACHE:
{
return ClearBrowsingData(COREWEBVIEW2_BROWSING_DATA_KINDS_DISK_CACHE);
}
case IDM_SCENARIO_CLEAR_BROWSING_DATA_DOWNLOAD_HISTORY:
{
return ClearBrowsingData(COREWEBVIEW2_BROWSING_DATA_KINDS_DOWNLOAD_HISTORY);
}
case IDM_SCENARIO_CLEAR_BROWSING_DATA_AUTOFILL:
{
return ClearBrowsingData((
COREWEBVIEW2_BROWSING_DATA_KINDS)(COREWEBVIEW2_BROWSING_DATA_KINDS_GENERAL_AUTOFILL |
COREWEBVIEW2_BROWSING_DATA_KINDS_PASSWORD_AUTOSAVE));
}
case IDM_SCENARIO_CLEAR_BROWSING_DATA_BROWSING_HISTORY:
{
return ClearBrowsingData(COREWEBVIEW2_BROWSING_DATA_KINDS_BROWSING_HISTORY);
}
case IDM_SCENARIO_CLEAR_BROWSING_DATA_ALL_PROFILE:
{
return ClearBrowsingData(COREWEBVIEW2_BROWSING_DATA_KINDS_ALL_PROFILE);
}
case IDM_SCENARIO_CLEAR_CUSTOM_DATA_PARTITION:
{
return ClearCustomDataPartition();
}
}
return false;
}
//! [ClearBrowsingData]
bool AppWindow::ClearBrowsingData(COREWEBVIEW2_BROWSING_DATA_KINDS dataKinds)
{
auto webView2_13 = m_webView.try_query<ICoreWebView2_13>();
CHECK_FEATURE_RETURN(webView2_13);
wil::com_ptr<ICoreWebView2Profile> webView2Profile;
CHECK_FAILURE(webView2_13->get_Profile(&webView2Profile));
CHECK_FEATURE_RETURN(webView2Profile);
auto webView2Profile2 = webView2Profile.try_query<ICoreWebView2Profile2>();
CHECK_FEATURE_RETURN(webView2Profile2);
// Clear the browsing data from the last hour.
double endTime = (double)std::time(nullptr);
double startTime = endTime - 3600.0;
CHECK_FAILURE(webView2Profile2->ClearBrowsingDataInTimeRange(
dataKinds, startTime, endTime,
Callback<ICoreWebView2ClearBrowsingDataCompletedHandler>(
[this](HRESULT error) -> HRESULT
{
AsyncMessageBox(L"Completed", L"Clear Browsing Data");
return S_OK;
})
.Get()));
return true;
}
//! [ClearBrowsingData]
//! [ClearCustomDataPartition]
bool AppWindow::ClearCustomDataPartition()
{
auto webView2_13 = m_webView.try_query<ICoreWebView2_13>();
CHECK_FEATURE_RETURN(webView2_13);
wil::com_ptr<ICoreWebView2Profile> webView2Profile;
CHECK_FAILURE(webView2_13->get_Profile(&webView2Profile));
CHECK_FEATURE_RETURN(webView2Profile);
auto webView2Profile7 = webView2Profile.try_query<ICoreWebView2ExperimentalProfile7>();
CHECK_FEATURE_RETURN(webView2Profile7);
std::wstring partitionToClearData;
wil::com_ptr<ICoreWebView2Experimental20> webViewStaging20;
webViewStaging20 = m_webView.try_query<ICoreWebView2Experimental20>();
wil::unique_cotaskmem_string partitionId;
CHECK_FAILURE(webViewStaging20->get_CustomDataPartitionId(&partitionId));
if (!partitionId.get() || !*partitionId.get())
{
TextInputDialog dialog(
GetMainWindow(), L"Custom Data Partition Id", L"Custom Data Partition Id:",
L"Enter custom data partition id");
if (dialog.confirmed)
{
partitionToClearData = dialog.input.c_str();
}
}
else
{
// Use partition id from the WebView.
partitionToClearData = partitionId.get();
}
if (!partitionToClearData.empty())
{
CHECK_FAILURE(webView2Profile7->ClearCustomDataPartition(
partitionToClearData.c_str(),
Callback<ICoreWebView2ExperimentalClearCustomDataPartitionCompletedHandler>(
[this](HRESULT result) -> HRESULT
{
if (SUCCEEDED(result))
{
AsyncMessageBox(L"Completed", L"Clear Custom Data Partition");
}
else
{
std::wstringstream message;
message << L"Failed: " << std::to_wstring(result) << L"(0x" << std::hex
<< result << L")" << std::endl;
AsyncMessageBox(message.str(), L"Clear Custom Data Partition");
}
return S_OK;
})
.Get()));
}
return true;
}
//! [ClearCustomDataPartition]
// Prompt the user for a new language string
void AppWindow::ChangeLanguage()
{
TextInputDialog dialog(
GetMainWindow(), L"Language", L"Language:",
L"Enter a language to use for WebView, or leave blank to restore default.",
m_language.empty() ? L"zh-cn" : m_language.c_str());
if (dialog.confirmed)
{
m_language = (dialog.input);
}
}
// Toggle AAD SSO enabled
void AppWindow::ToggleAADSSO()
{
m_AADSSOEnabled = !m_AADSSOEnabled;
MessageBox(
nullptr,
m_AADSSOEnabled ? L"AAD single sign on will be enabled for new WebView "
L"created after all webviews are closed."
: L"AAD single sign on will be disabled for new WebView"
L" created after all webviews are closed.",
L"AAD SSO change", MB_OK);
}
void AppWindow::ToggleExclusiveUserDataFolderAccess()
{
m_ExclusiveUserDataFolderAccess = !m_ExclusiveUserDataFolderAccess;
MessageBox(
nullptr,
m_ExclusiveUserDataFolderAccess
? L"Will request exclusive access to user data folder "
L"for new WebView created after all webviews are closed."
: L"Will not request exclusive access to user data folder "
L"for new WebView created after all webviews are closed.",
L"Exclusive User Data Folder Access change", MB_OK);
}
void AppWindow::ToggleCustomCrashReporting()
{
m_CustomCrashReportingEnabled = !m_CustomCrashReportingEnabled;
MessageBox(