// 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. #pragma once #include "stdafx.h" #include #include #include #include "AppWindow.h" #include "ComponentBase.h" #include "CustomStatusBar.h" // Some utility functions wil::unique_bstr GetDomainOfUri(PWSTR uri); // This component handles commands from the Settings menu. It also handles the // NavigationStarting, FrameNavigationStarting, WebResourceRequested, ScriptDialogOpening, // and PermissionRequested events. class SettingsComponent : public ComponentBase { public: SettingsComponent( AppWindow* appWindow, ICoreWebView2Environment* environment, SettingsComponent* old = nullptr); bool HandleWindowMessage( HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, LRESULT* result) override; void AddMenuItems( HMENU hPopupMenu, wil::com_ptr items); void ChangeBlockedSites(); bool ShouldBlockUri(PWSTR uri); bool ShouldBlockScriptForUri(PWSTR uri); void SetBlockImages(bool blockImages); void SetReplaceImages(bool replaceImages); void ChangeUserAgent(); void SetUserAgent(const std::wstring& userAgent); void EnableCustomClientCertificateSelection(); void ToggleCustomServerCertificateSupport(); void SetCustomDataPartitionId(); void SetTrackingPreventionLevel(COREWEBVIEW2_TRACKING_PREVENTION_LEVEL value); ~SettingsComponent() override; private: HRESULT OnPermissionRequested( ICoreWebView2* sender, ICoreWebView2PermissionRequestedEventArgs* args); AppWindow* m_appWindow = nullptr; wil::com_ptr m_webView; wil::com_ptr m_webView2_5; wil::com_ptr m_webView2_11; wil::com_ptr m_webView2_12; wil::com_ptr m_webView2_13; wil::com_ptr m_webView2_14; wil::com_ptr m_webView2_15; wil::com_ptr m_webView2_18; wil::com_ptr m_settings; wil::com_ptr m_settings2; wil::com_ptr m_settings3; wil::com_ptr m_settings4; wil::com_ptr m_settings5; wil::com_ptr m_settings6; wil::com_ptr m_settings7; wil::com_ptr m_settings8; wil::com_ptr m_controller; wil::com_ptr m_controller3; wil::com_ptr m_webViewEnvironment; wil::com_ptr m_displayPageUrlContextSubMenuItem; bool m_blockImages = false; bool m_replaceImages = false; bool m_changeUserAgent = false; bool m_isScriptEnabled = true; bool m_blockedSitesSet = false; bool m_raiseClientCertificate = false; BOOL m_allowCustomMenus = false; std::map, bool> m_cached_permissions; std::vector m_blockedSites; std::wstring m_overridingUserAgent; ULONG_PTR gdiplusToken_; bool m_faviconChanged = false; wil::unique_hicon m_favicon; CustomStatusBar m_statusBar; bool m_customStatusBar = false; bool m_raiseServerCertificateError = false; bool m_launchingExternalUriScheme = false; EventRegistrationToken m_navigationStartingToken = {}; EventRegistrationToken m_frameNavigationStartingToken = {}; EventRegistrationToken m_webResourceRequestedTokenForImageBlocking = {}; EventRegistrationToken m_webResourceRequestedTokenForImageReplacing = {}; EventRegistrationToken m_webResourceRequestedTokenForUserAgent = {}; EventRegistrationToken m_scriptDialogOpeningToken = {}; EventRegistrationToken m_permissionRequestedToken = {}; EventRegistrationToken m_ClientCertificateRequestedToken = {}; EventRegistrationToken m_contextMenuRequestedToken = {}; EventRegistrationToken m_faviconChangedToken = {}; EventRegistrationToken m_statusBarTextChangedToken = {}; EventRegistrationToken m_ServerCertificateErrorToken = {}; EventRegistrationToken m_launchingExternalUriSchemeToken = {}; };