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.
|
|
|
|
|
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.ViewModels;
|
2020-04-08 01:19:14 +08:00
|
|
|
|
using Windows.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);
|
|
|
|
|
|
|
|
|
|
/// <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-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-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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <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>
|
|
|
|
|
public 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>
|
|
|
|
|
public 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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetElevationStatus(bool isElevated)
|
|
|
|
|
{
|
|
|
|
|
IsElevated = isElevated;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-14 17:36:27 +08:00
|
|
|
|
public void SetIsUserAnAdmin(bool isAdmin)
|
|
|
|
|
{
|
|
|
|
|
IsUserAnAdmin = isAdmin;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-06 01:02:31 +08:00
|
|
|
|
public void Refresh()
|
|
|
|
|
{
|
|
|
|
|
shellFrame.Navigate(typeof(GeneralPage));
|
|
|
|
|
}
|
2020-03-12 01:43:32 +08:00
|
|
|
|
}
|
2020-04-08 01:19:14 +08:00
|
|
|
|
}
|