2020-04-08 15:19:00 +08:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
2021-03-03 01:56:37 +08:00
|
|
|
|
using System;
|
2020-09-04 16:56:52 +08:00
|
|
|
|
using System.Collections.Generic;
|
2021-01-05 23:01:42 +08:00
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2021-03-03 01:56:37 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Services;
|
2020-04-08 15:19:00 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.ViewModels;
|
2020-09-04 16:56:52 +08:00
|
|
|
|
using Windows.Data.Json;
|
2021-08-24 01:48:52 +08:00
|
|
|
|
using Windows.UI.Xaml;
|
2021-08-10 22:03:04 +08:00
|
|
|
|
using Windows.UI.Xaml.Automation.Peers;
|
2020-04-08 01:19:14 +08:00
|
|
|
|
using Windows.UI.Xaml.Controls;
|
2021-08-24 01:48:52 +08:00
|
|
|
|
using WinUI = Microsoft.UI.Xaml.Controls;
|
2020-03-12 01:43:32 +08:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Views
|
|
|
|
|
{
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Root page.
|
|
|
|
|
/// </summary>
|
2020-03-12 01:43:32 +08:00
|
|
|
|
public sealed partial class ShellPage : UserControl
|
|
|
|
|
{
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// <summary>
|
2020-05-26 23:02:36 +08:00
|
|
|
|
/// Declaration for the ipc callback function.
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="msg">message.</param>
|
|
|
|
|
public delegate void IPCMessageCallback(string msg);
|
|
|
|
|
|
2021-03-03 01:56:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Declaration for the opening oobe window callback function.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public delegate void OobeOpeningCallback();
|
|
|
|
|
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// <summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
/// Gets or sets a shell handler to be used to update contents of the shell dynamically from page within the frame.
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// </summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public static ShellPage ShellHandler { get; set; }
|
2020-03-12 01:43:32 +08:00
|
|
|
|
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// <summary>
|
2020-05-06 01:02:31 +08:00
|
|
|
|
/// Gets or sets iPC default callback function.
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// </summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public static IPCMessageCallback DefaultSndMSGCallback { get; set; }
|
2020-03-25 10:55:02 +08:00
|
|
|
|
|
2020-05-06 01:02:31 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets iPC callback function for restart as admin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static IPCMessageCallback SndRestartAsAdminMsgCallback { get; set; }
|
|
|
|
|
|
2020-06-23 20:53:02 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets iPC callback function for checking updates.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static IPCMessageCallback CheckForUpdatesMsgCallback { get; set; }
|
|
|
|
|
|
2021-03-03 01:56:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets callback function for opening oobe window
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static OobeOpeningCallback OpenOobeWindowCallback { get; set; }
|
|
|
|
|
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// <summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
/// Gets view model.
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// </summary>
|
2020-04-08 01:19:14 +08:00
|
|
|
|
public ShellViewModel ViewModel { get; } = new ShellViewModel();
|
2020-03-25 10:55:02 +08:00
|
|
|
|
|
2020-09-04 16:56:52 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a collection of functions that handle IPC responses.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public List<System.Action<JsonObject>> IPCResponseHandleList { get; } = new List<System.Action<JsonObject>>();
|
|
|
|
|
|
2020-05-06 01:02:31 +08:00
|
|
|
|
public static bool IsElevated { get; set; }
|
|
|
|
|
|
2020-05-14 17:36:27 +08:00
|
|
|
|
public static bool IsUserAnAdmin { get; set; }
|
|
|
|
|
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ShellPage"/> class.
|
|
|
|
|
/// Shell page constructor.
|
|
|
|
|
/// </summary>
|
2020-03-12 01:43:32 +08:00
|
|
|
|
public ShellPage()
|
|
|
|
|
{
|
2020-04-11 06:22:07 +08:00
|
|
|
|
InitializeComponent();
|
2020-03-25 10:55:02 +08:00
|
|
|
|
|
2020-04-11 06:22:07 +08:00
|
|
|
|
DataContext = ViewModel;
|
2020-03-30 17:02:25 +08:00
|
|
|
|
ShellHandler = this;
|
2020-04-11 06:22:07 +08:00
|
|
|
|
ViewModel.Initialize(shellFrame, navigationView, KeyboardAccelerators);
|
|
|
|
|
shellFrame.Navigate(typeof(GeneralPage));
|
2020-03-25 10:55:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-08-14 06:02:05 +08:00
|
|
|
|
public static int SendDefaultIPCMessage(string msg)
|
|
|
|
|
{
|
2021-06-05 01:13:56 +08:00
|
|
|
|
DefaultSndMSGCallback?.Invoke(msg);
|
2020-08-14 06:02:05 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static int SendCheckForUpdatesIPCMessage(string msg)
|
|
|
|
|
{
|
2021-06-05 01:13:56 +08:00
|
|
|
|
CheckForUpdatesMsgCallback?.Invoke(msg);
|
|
|
|
|
|
2020-08-14 06:02:05 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static int SendRestartAdminIPCMessage(string msg)
|
|
|
|
|
{
|
2021-06-05 01:13:56 +08:00
|
|
|
|
SndRestartAsAdminMsgCallback?.Invoke(msg);
|
2020-08-14 06:02:05 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// <summary>
|
2020-05-06 01:02:31 +08:00
|
|
|
|
/// Set Default IPC Message callback function.
|
2020-03-25 10:55:02 +08:00
|
|
|
|
/// </summary>
|
2020-05-27 23:06:17 +08:00
|
|
|
|
/// <param name="implementation">delegate function implementation.</param>
|
2020-10-30 05:24:16 +08:00
|
|
|
|
public static void SetDefaultSndMessageCallback(IPCMessageCallback implementation)
|
2020-03-25 10:55:02 +08:00
|
|
|
|
{
|
2020-05-27 23:06:17 +08:00
|
|
|
|
DefaultSndMSGCallback = implementation;
|
2020-03-25 10:55:02 +08:00
|
|
|
|
}
|
2020-05-06 01:02:31 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Set restart as admin IPC callback function.
|
|
|
|
|
/// </summary>
|
2020-05-27 23:06:17 +08:00
|
|
|
|
/// <param name="implementation">delegate function implementation.</param>
|
2020-10-30 05:24:16 +08:00
|
|
|
|
public static void SetRestartAdminSndMessageCallback(IPCMessageCallback implementation)
|
2020-05-06 01:02:31 +08:00
|
|
|
|
{
|
2020-05-27 23:06:17 +08:00
|
|
|
|
SndRestartAsAdminMsgCallback = implementation;
|
2020-05-06 01:02:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-23 20:53:02 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Set check for updates IPC callback function.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="implementation">delegate function implementation.</param>
|
2020-10-30 05:24:16 +08:00
|
|
|
|
public static void SetCheckForUpdatesMessageCallback(IPCMessageCallback implementation)
|
2020-06-23 20:53:02 +08:00
|
|
|
|
{
|
|
|
|
|
CheckForUpdatesMsgCallback = implementation;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-03 01:56:37 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Set oobe opening callback function
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="implementation">delegate function implementation.</param>
|
|
|
|
|
public static void SetOpenOobeCallback(OobeOpeningCallback implementation)
|
|
|
|
|
{
|
|
|
|
|
OpenOobeWindowCallback = implementation;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-30 05:24:16 +08:00
|
|
|
|
public static void SetElevationStatus(bool isElevated)
|
2020-05-06 01:02:31 +08:00
|
|
|
|
{
|
|
|
|
|
IsElevated = isElevated;
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-30 05:24:16 +08:00
|
|
|
|
public static void SetIsUserAnAdmin(bool isAdmin)
|
2020-05-14 17:36:27 +08:00
|
|
|
|
{
|
|
|
|
|
IsUserAnAdmin = isAdmin;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-03 01:56:37 +08:00
|
|
|
|
public static void Navigate(Type type)
|
|
|
|
|
{
|
|
|
|
|
NavigationService.Navigate(type);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 01:02:31 +08:00
|
|
|
|
public void Refresh()
|
|
|
|
|
{
|
|
|
|
|
shellFrame.Navigate(typeof(GeneralPage));
|
|
|
|
|
}
|
2021-01-05 23:01:42 +08:00
|
|
|
|
|
2021-08-24 01:48:52 +08:00
|
|
|
|
private void OobeButton_Click(object sender, RoutedEventArgs e)
|
2021-01-05 23:01:42 +08:00
|
|
|
|
{
|
2021-08-24 01:48:52 +08:00
|
|
|
|
OpenOobeWindowCallback();
|
2021-01-05 23:01:42 +08:00
|
|
|
|
}
|
2021-08-10 22:03:04 +08:00
|
|
|
|
|
|
|
|
|
private bool navigationViewInitialStateProcessed; // avoid announcing initial state of the navigation pane.
|
|
|
|
|
|
|
|
|
|
[SuppressMessage("Usage", "CA1801:Review unused parameters", Justification = "Params are required for event handler signature requirements.")]
|
|
|
|
|
#pragma warning disable CA1822 // Mark members as static
|
|
|
|
|
private void NavigationView_PaneOpened(Microsoft.UI.Xaml.Controls.NavigationView sender, object args)
|
|
|
|
|
{
|
|
|
|
|
if (!navigationViewInitialStateProcessed)
|
|
|
|
|
{
|
|
|
|
|
navigationViewInitialStateProcessed = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var peer = FrameworkElementAutomationPeer.FromElement(sender);
|
|
|
|
|
if (peer == null)
|
|
|
|
|
{
|
|
|
|
|
peer = FrameworkElementAutomationPeer.CreatePeerForElement(sender);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (AutomationPeer.ListenerExists(AutomationEvents.MenuOpened))
|
|
|
|
|
{
|
|
|
|
|
var loader = Windows.ApplicationModel.Resources.ResourceLoader.GetForCurrentView();
|
|
|
|
|
peer.RaiseNotificationEvent(
|
|
|
|
|
AutomationNotificationKind.ActionCompleted,
|
|
|
|
|
AutomationNotificationProcessing.ImportantMostRecent,
|
|
|
|
|
loader.GetString("Shell_NavigationMenu_Announce_Open"),
|
|
|
|
|
"navigationMenuPaneOpened");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[SuppressMessage("Usage", "CA1801:Review unused parameters", Justification = "Params are required for event handler signature requirements.")]
|
|
|
|
|
private void NavigationView_PaneClosed(Microsoft.UI.Xaml.Controls.NavigationView sender, object args)
|
|
|
|
|
{
|
|
|
|
|
if (!navigationViewInitialStateProcessed)
|
|
|
|
|
{
|
|
|
|
|
navigationViewInitialStateProcessed = true;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var peer = FrameworkElementAutomationPeer.FromElement(sender);
|
|
|
|
|
if (peer == null)
|
|
|
|
|
{
|
|
|
|
|
peer = FrameworkElementAutomationPeer.CreatePeerForElement(sender);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (AutomationPeer.ListenerExists(AutomationEvents.MenuClosed))
|
|
|
|
|
{
|
|
|
|
|
var loader = Windows.ApplicationModel.Resources.ResourceLoader.GetForCurrentView();
|
|
|
|
|
peer.RaiseNotificationEvent(
|
|
|
|
|
AutomationNotificationKind.ActionCompleted,
|
|
|
|
|
AutomationNotificationProcessing.ImportantMostRecent,
|
|
|
|
|
loader.GetString("Shell_NavigationMenu_Announce_Collapse"),
|
|
|
|
|
"navigationMenuPaneClosed");
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-24 01:48:52 +08:00
|
|
|
|
|
|
|
|
|
private void OOBEItem_Tapped(object sender, Windows.UI.Xaml.Input.TappedRoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
OpenOobeWindowCallback();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async void FeedbackItem_Tapped(object sender, Windows.UI.Xaml.Input.TappedRoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
await Windows.System.Launcher.LaunchUriAsync(new Uri("https://aka.ms/powerToysGiveFeedback"));
|
|
|
|
|
}
|
2020-03-12 01:43:32 +08:00
|
|
|
|
}
|
2020-04-08 01:19:14 +08:00
|
|
|
|
}
|