mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
* Added option to toggle the system tray icon At the moment, this hides the icon making the settings window inaccessible without first modifying the general `settings.json` file. * Use IPC messages to manage the tray icon settings * Fix launching second window binds to active settings process * Added context menu option to hide tray icon * Added Exit PT button to settings ui NavigationView.PaneFooter * Moved DllImports to NativeMethods.cs * Sentence case titles * Fix whitespace * Re-add exit icon to NavView * Re-added toggle switch to new UI * Fix build * Fix build after merge main * Fix the string to display * add shut down buttons * finish polish * fix string * Styling tweaks to titlebar and settingscards * fix comment * fix unit test * fix ut --------- Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> Co-authored-by: vanzue <vanzue@outlook.com> Co-authored-by: Kayla Cinnamon <cinnamon@microsoft.com> Co-authored-by: Niels Laute <niels.laute@live.nl>
190 lines
6.8 KiB
C#
190 lines
6.8 KiB
C#
// 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 System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
using ManagedCommon;
|
|
using Microsoft.PowerToys.Settings.UI.Flyout;
|
|
using Microsoft.PowerToys.Settings.UI.Helpers;
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
|
using Microsoft.PowerToys.Settings.UI.ViewModels;
|
|
using Microsoft.UI.Xaml;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Views
|
|
{
|
|
/// <summary>
|
|
/// General Settings Page.
|
|
/// </summary>
|
|
public sealed partial class GeneralPage : Page, IRefreshablePage
|
|
{
|
|
private static DateTime OkToHideBackupAndRestoreMessageTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets view model.
|
|
/// </summary>
|
|
public GeneralViewModel ViewModel { get; set; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="GeneralPage"/> class.
|
|
/// General Settings page constructor.
|
|
/// </summary>
|
|
public GeneralPage()
|
|
{
|
|
InitializeComponent();
|
|
|
|
// Load string resources
|
|
var loader = Helpers.ResourceLoaderInstance.ResourceLoader;
|
|
var settingsUtils = new SettingsUtils();
|
|
|
|
Action stateUpdatingAction = () =>
|
|
{
|
|
this.DispatcherQueue.TryEnqueue(() =>
|
|
{
|
|
ViewModel.RefreshUpdatingState();
|
|
});
|
|
};
|
|
|
|
Action hideBackupAndRestoreMessageArea = () =>
|
|
{
|
|
this.DispatcherQueue.TryEnqueue(async () =>
|
|
{
|
|
const int messageShowTimeIs = 10000;
|
|
|
|
// in order to keep the message for about 5 seconds after the last call
|
|
// and not need any lock/thread-synch, use an OK-To-Hide time, and wait just a little longer than that.
|
|
OkToHideBackupAndRestoreMessageTime = DateTime.UtcNow.AddMilliseconds(messageShowTimeIs - 16);
|
|
await System.Threading.Tasks.Task.Delay(messageShowTimeIs);
|
|
if (DateTime.UtcNow > OkToHideBackupAndRestoreMessageTime)
|
|
{
|
|
ViewModel.HideBackupAndRestoreMessageArea();
|
|
}
|
|
});
|
|
};
|
|
|
|
var doRefreshBackupRestoreStatus = new Action<int>(RefreshBackupRestoreStatus);
|
|
|
|
ViewModel = new GeneralViewModel(
|
|
SettingsRepository<GeneralSettings>.GetInstance(settingsUtils),
|
|
loader.GetString("GeneralSettings_RunningAsAdminText"),
|
|
loader.GetString("GeneralSettings_RunningAsUserText"),
|
|
ShellPage.IsElevated,
|
|
ShellPage.IsUserAnAdmin,
|
|
ShellPage.SendDefaultIPCMessage,
|
|
ShellPage.SendRestartAdminIPCMessage,
|
|
ShellPage.SendCheckForUpdatesIPCMessage,
|
|
string.Empty,
|
|
stateUpdatingAction,
|
|
hideBackupAndRestoreMessageArea,
|
|
doRefreshBackupRestoreStatus,
|
|
PickSingleFolderDialog,
|
|
loader);
|
|
|
|
DataContext = ViewModel;
|
|
|
|
ViewModel.InitializeReportBugLink();
|
|
|
|
doRefreshBackupRestoreStatus(100);
|
|
}
|
|
|
|
private void OpenColorsSettings_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
try
|
|
{
|
|
Helpers.StartProcessHelper.Start(Helpers.StartProcessHelper.ColorsSettings);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Logger.LogError("Error while trying to open the system color settings", ex);
|
|
}
|
|
}
|
|
|
|
private void OpenDiagnosticsAndFeedbackSettings_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
try
|
|
{
|
|
Helpers.StartProcessHelper.Start(Helpers.StartProcessHelper.DiagnosticsAndFeedback);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Logger.LogError("Error while trying to open the system Diagnostics & Feedback settings", ex);
|
|
}
|
|
}
|
|
|
|
private void RefreshBackupRestoreStatus(int delayMs = 0)
|
|
{
|
|
Task.Run(() =>
|
|
{
|
|
if (delayMs > 0)
|
|
{
|
|
Thread.Sleep(delayMs);
|
|
}
|
|
|
|
var settingsBackupAndRestoreUtils = SettingsBackupAndRestoreUtils.Instance;
|
|
var results = settingsBackupAndRestoreUtils.DryRunBackup();
|
|
this.DispatcherQueue.TryEnqueue(() =>
|
|
{
|
|
ViewModel.NotifyAllBackupAndRestoreProperties();
|
|
});
|
|
});
|
|
}
|
|
|
|
private void UpdateBackupAndRestoreStatusText(Microsoft.UI.Xaml.Documents.Hyperlink sender, Microsoft.UI.Xaml.Documents.HyperlinkClickEventArgs args)
|
|
{
|
|
RefreshBackupRestoreStatus();
|
|
}
|
|
|
|
private async Task<string> PickSingleFolderDialog()
|
|
{
|
|
// This function was changed to use the shell32 API to open folder dialog
|
|
// as the old one (PickSingleFolderAsync) can't work when the process is elevated
|
|
// TODO: go back PickSingleFolderAsync when it's fixed
|
|
var hwnd = WinRT.Interop.WindowNative.GetWindowHandle(App.GetSettingsWindow());
|
|
string r = await Task.FromResult<string>(ShellGetFolder.GetFolderDialog(hwnd));
|
|
return r;
|
|
}
|
|
|
|
private void Click_LanguageRestart(object sender, RoutedEventArgs e)
|
|
{
|
|
ViewModel.Restart();
|
|
}
|
|
|
|
private void Click_ViewDiagnosticDataViewerRestart(object sender, RoutedEventArgs e)
|
|
{
|
|
ViewModel.Restart();
|
|
}
|
|
|
|
public void RefreshEnabledState()
|
|
{
|
|
ViewModel.RefreshSettingsOnExternalChange();
|
|
}
|
|
|
|
private async void ViewDiagnosticData_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
await Task.Run(ViewModel.ViewDiagnosticData);
|
|
}
|
|
|
|
private void ExitPTItem_Tapped(object sender, RoutedEventArgs e)
|
|
{
|
|
const string ptTrayIconWindowClass = "PToyTrayIconWindow"; // Defined in runner/tray_icon.h
|
|
const nuint ID_EXIT_MENU_COMMAND = 40001; // Generated resource from runner/runner.base.rc
|
|
|
|
// Exit the XAML application
|
|
Application.Current.Exit();
|
|
|
|
// Invoke the exit command from the tray icon
|
|
IntPtr hWnd = NativeMethods.FindWindow(ptTrayIconWindowClass, ptTrayIconWindowClass);
|
|
NativeMethods.SendMessage(hWnd, NativeMethods.WM_COMMAND, ID_EXIT_MENU_COMMAND, 0);
|
|
}
|
|
|
|
private void BugReportToolClicked(object sender, RoutedEventArgs e)
|
|
{
|
|
var launchPage = new LaunchPage();
|
|
launchPage.ReportBugBtn_Click(sender, e);
|
|
}
|
|
}
|
|
}
|