mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
* Init EnvironmentVariables UI project * Models TitleBar MainPage init Icon * User and system variables * Profiles init * XAML cleanup * Missing ItemTemplate * EditDialog * ModuleInterface * Signing and processes lists * Installer * spellcheck * Fix ARM64 build and consolidate packages * spellcheck2 * Fix installer * Single instance. C# telemetry. Wait on PT pid * ElevationHelper * Add profile wip * Init EnvironmentVariables UI project * Models TitleBar MainPage init Icon * User and system variables * Profiles init * XAML cleanup * Missing ItemTemplate * EditDialog * ModuleInterface * Signing and processes lists * Installer * spellcheck * Fix ARM64 build and consolidate packages * spellcheck2 * Fix installer * Single instance. C# telemetry. Wait on PT pid * ElevationHelper * Add profile wip * show run as administrator in title (#28516) * Environment Variables added to Run plugin (#28466) * UI tweaks * Remove style * Add profile - init working * Applied variables * Read/Write profiles * Fixes * Add separator and fix loading profiles * Only allow to edit System vars if running elevated * Add tmp progress ring to show applying changes progress Ignore not needed json fields * Remove variable and profile logic * Do not read data async Update System and User variables on change * Add isCorrectlyApplied() * Sort variables in Applied variables * WIP WndProc * spellcheck * Revert "WIP WndProc" This reverts commit0c0b6c67de. * WHY CRASH??? * UI tweaks * WIP modified state warning * Add cancel button in dialogs * Add buttons validations * Set variables - fire and forget notify * Revert "Revert "WIP WndProc"" This reverts commit1b2306eeb7. * Listen to WM_SETTINGSCHANGED Add Infobar reload button * spellcheck * spellcheck again * Fix build * InfoBar runAsAdmin visibility * Fix comment * Confirm dialog when deleting variable Fix add variable button when creating profile * Edit profile * Sort variables on Load * Select existing variables on edit * Add default variable * Fix adding existing vars to profile * update notice.md * Handle PATH properly * Add tooltips and fix dialogs text wrapping * Fix applied values for duplicates Fix add/eddit variable txt box validation * Add horizontal scroll bar for applied values * Fix duplicate variables handling Fix user variable handling and preview * spellcheck * Try fix spellcheck * Revert "spellcheck" This reverts commitee76231974. * Revert "Try fix spellcheck" This reverts commitdc8f04afb9. * Fix path and duplicates conflict * Fix PATH handling Fix unapply on delete active variable Fix ordering in applied variables * Show variables as lists and add drag-to-reorder feature * Only show specific variables as list Update list in edit dialog on editing the value * spellcheck * Update GPO policy * Add Edit and Remove variable buttons Remove context menu * Remove drag&drop when editing list variable and add buttons to move up/down * Fix Edit profile dialog title * Fix backup and restore variables when editing variable from applied profile * Apply var to system WIP * Tweaks * Simplify edit variable logic * Minor fixes * Spellcheck * Update src/modules/EnvironmentVariables/EnvironmentVariables/app.manifest Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> * spellcheck 2 * Remove unneeded string * Add more telemetry * Do not allow adding existing variables with the same name into the profile * Adding icon * Fix the crash when opening existing variables dialog * Update Settings and OOBE screenshots * Fix crash when malformed profiles.json and jsonignore not needed properties * Fix selecting duplicates in existing variables dialog * Add user variable name limit (<255 chars) Check if profile is applicable on apply Show message if profile is not applicable * XamlStyling * Better Flyout positioning Add Cancel button to the flyout * Fix UI glitches by using ItemsControl (no virtualization) * Fix spellcheck * Fix XAML style * Add horizontal scrollbar to applied variables * Revert to ItemsRepeater * Fix UI glitches by adding a decent minimum cache * Fixing UI bugs * Fix spellcheck * Fix crash while trying to edit a User variable when there's no Parent profile * Fix issue overwriting backup var when you edit var on applied profile * Fix nuking of variables when adding to applied profile * Fix profile not being saved when deleting a variable * Fix ValuesList empty crash, issues and no serialization * fix spellcheck * Allow in-line edit of list variables * Fix xaml style * Fix add profile variable cancel button logic * Fix add profile variable cancel button logic - clean the list * Bump VerticalCacheLength to 10 as in some cases UI glitch on expanding System variables was still present * Fix profile Add variable button enable/disable logic * Remove unneeded using * Add to Dashboard --------- Co-authored-by: Niels Laute <niels.laute@live.nl> Co-authored-by: Davide Giacometti <davide.giacometti@outlook.it> Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
296 lines
13 KiB
C#
296 lines
13 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 ManagedCommon;
|
|
using Microsoft.PowerLauncher.Telemetry;
|
|
using Microsoft.PowerToys.Settings.UI.Helpers;
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
|
using Microsoft.PowerToys.Settings.UI.Views;
|
|
using Microsoft.PowerToys.Telemetry;
|
|
using Microsoft.UI;
|
|
using Microsoft.UI.Windowing;
|
|
using Microsoft.UI.Xaml;
|
|
using Windows.Data.Json;
|
|
using WinUIEx;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI
|
|
{
|
|
/// <summary>
|
|
/// An empty window that can be used on its own or navigated to within a Frame.
|
|
/// </summary>
|
|
public sealed partial class MainWindow : WindowEx
|
|
{
|
|
public MainWindow(bool isDark, bool createHidden = false)
|
|
{
|
|
var bootTime = new System.Diagnostics.Stopwatch();
|
|
bootTime.Start();
|
|
|
|
ShellPage.SetElevationStatus(App.IsElevated);
|
|
ShellPage.SetIsUserAnAdmin(App.IsUserAnAdmin);
|
|
|
|
// Set window icon
|
|
var hWnd = WinRT.Interop.WindowNative.GetWindowHandle(this);
|
|
WindowId windowId = Win32Interop.GetWindowIdFromWindow(hWnd);
|
|
AppWindow appWindow = AppWindow.GetFromWindowId(windowId);
|
|
appWindow.SetIcon("Assets\\Settings\\icon.ico");
|
|
|
|
// Passed by parameter, as it needs to be evaluated ASAP, otherwise there is a white flash
|
|
if (isDark)
|
|
{
|
|
ThemeHelpers.SetImmersiveDarkMode(hWnd, isDark);
|
|
}
|
|
|
|
var placement = Utils.DeserializePlacementOrDefault(hWnd);
|
|
if (createHidden)
|
|
{
|
|
placement.ShowCmd = NativeMethods.SW_HIDE;
|
|
}
|
|
|
|
NativeMethods.SetWindowPlacement(hWnd, ref placement);
|
|
|
|
var loader = ResourceLoaderInstance.ResourceLoader;
|
|
Title = App.IsElevated ? loader.GetString("SettingsWindow_AdminTitle") : loader.GetString("SettingsWindow_Title");
|
|
|
|
// send IPC Message
|
|
ShellPage.SetDefaultSndMessageCallback(msg =>
|
|
{
|
|
// IPC Manager is null when launching runner directly
|
|
App.GetTwoWayIPCManager()?.Send(msg);
|
|
});
|
|
|
|
// send IPC Message
|
|
ShellPage.SetRestartAdminSndMessageCallback(msg =>
|
|
{
|
|
App.GetTwoWayIPCManager()?.Send(msg);
|
|
Environment.Exit(0); // close application
|
|
});
|
|
|
|
// send IPC Message
|
|
ShellPage.SetCheckForUpdatesMessageCallback(msg =>
|
|
{
|
|
App.GetTwoWayIPCManager()?.Send(msg);
|
|
});
|
|
|
|
// open main window
|
|
ShellPage.SetOpenMainWindowCallback(type =>
|
|
{
|
|
DispatcherQueue.TryEnqueue(Microsoft.UI.Dispatching.DispatcherQueuePriority.Normal, () =>
|
|
App.OpenSettingsWindow(type));
|
|
});
|
|
|
|
// open main window
|
|
ShellPage.SetUpdatingGeneralSettingsCallback((string module, bool isEnabled) =>
|
|
{
|
|
SettingsRepository<GeneralSettings> repository = SettingsRepository<GeneralSettings>.GetInstance(new SettingsUtils());
|
|
GeneralSettings generalSettingsConfig = repository.SettingsConfig;
|
|
bool needToUpdate = false;
|
|
switch (module)
|
|
{
|
|
case "AlwaysOnTop":
|
|
needToUpdate = generalSettingsConfig.Enabled.AlwaysOnTop != isEnabled;
|
|
generalSettingsConfig.Enabled.AlwaysOnTop = isEnabled; break;
|
|
case "Awake":
|
|
needToUpdate = generalSettingsConfig.Enabled.Awake != isEnabled;
|
|
generalSettingsConfig.Enabled.Awake = isEnabled; break;
|
|
case "ColorPicker":
|
|
needToUpdate = generalSettingsConfig.Enabled.ColorPicker != isEnabled;
|
|
generalSettingsConfig.Enabled.ColorPicker = isEnabled; break;
|
|
case "CropAndLock":
|
|
needToUpdate = generalSettingsConfig.Enabled.CropAndLock != isEnabled;
|
|
generalSettingsConfig.Enabled.CropAndLock = isEnabled; break;
|
|
case "EnvironmentVariables":
|
|
needToUpdate = generalSettingsConfig.Enabled.EnvironmentVariables != isEnabled;
|
|
generalSettingsConfig.Enabled.EnvironmentVariables = isEnabled; break;
|
|
case "FancyZones":
|
|
needToUpdate = generalSettingsConfig.Enabled.FancyZones != isEnabled;
|
|
generalSettingsConfig.Enabled.FancyZones = isEnabled; break;
|
|
case "FileLocksmith":
|
|
needToUpdate = generalSettingsConfig.Enabled.FileLocksmith != isEnabled;
|
|
generalSettingsConfig.Enabled.FileLocksmith = isEnabled; break;
|
|
case "FindMyMouse":
|
|
needToUpdate = generalSettingsConfig.Enabled.FindMyMouse != isEnabled;
|
|
generalSettingsConfig.Enabled.FindMyMouse = isEnabled; break;
|
|
case "Hosts":
|
|
needToUpdate = generalSettingsConfig.Enabled.Hosts != isEnabled;
|
|
generalSettingsConfig.Enabled.Hosts = isEnabled; break;
|
|
case "ImageResizer":
|
|
needToUpdate = generalSettingsConfig.Enabled.ImageResizer != isEnabled;
|
|
generalSettingsConfig.Enabled.ImageResizer = isEnabled; break;
|
|
case "KeyboardManager":
|
|
needToUpdate = generalSettingsConfig.Enabled.KeyboardManager != isEnabled;
|
|
generalSettingsConfig.Enabled.KeyboardManager = isEnabled; break;
|
|
case "MouseHighlighter":
|
|
needToUpdate = generalSettingsConfig.Enabled.MouseHighlighter != isEnabled;
|
|
generalSettingsConfig.Enabled.MouseHighlighter = isEnabled; break;
|
|
case "MouseJump":
|
|
needToUpdate = generalSettingsConfig.Enabled.MouseJump != isEnabled;
|
|
generalSettingsConfig.Enabled.MouseJump = isEnabled; break;
|
|
case "MousePointerCrosshairs":
|
|
needToUpdate = generalSettingsConfig.Enabled.MousePointerCrosshairs != isEnabled;
|
|
generalSettingsConfig.Enabled.MousePointerCrosshairs = isEnabled; break;
|
|
case "MouseWithoutBorders":
|
|
needToUpdate = generalSettingsConfig.Enabled.MouseWithoutBorders != isEnabled;
|
|
generalSettingsConfig.Enabled.MouseWithoutBorders = isEnabled; break;
|
|
case "PastePlain":
|
|
needToUpdate = generalSettingsConfig.Enabled.PastePlain != isEnabled;
|
|
generalSettingsConfig.Enabled.PastePlain = isEnabled; break;
|
|
case "Peek":
|
|
needToUpdate = generalSettingsConfig.Enabled.Peek != isEnabled;
|
|
generalSettingsConfig.Enabled.Peek = isEnabled; break;
|
|
case "PowerRename":
|
|
needToUpdate = generalSettingsConfig.Enabled.PowerRename != isEnabled;
|
|
generalSettingsConfig.Enabled.PowerRename = isEnabled; break;
|
|
case "PowerLauncher":
|
|
needToUpdate = generalSettingsConfig.Enabled.PowerLauncher != isEnabled;
|
|
generalSettingsConfig.Enabled.PowerLauncher = isEnabled; break;
|
|
case "PowerAccent":
|
|
needToUpdate = generalSettingsConfig.Enabled.PowerAccent != isEnabled;
|
|
generalSettingsConfig.Enabled.PowerAccent = isEnabled; break;
|
|
case "RegistryPreview":
|
|
needToUpdate = generalSettingsConfig.Enabled.RegistryPreview != isEnabled;
|
|
generalSettingsConfig.Enabled.RegistryPreview = isEnabled; break;
|
|
case "MeasureTool":
|
|
needToUpdate = generalSettingsConfig.Enabled.MeasureTool != isEnabled;
|
|
generalSettingsConfig.Enabled.MeasureTool = isEnabled; break;
|
|
case "ShortcutGuide":
|
|
needToUpdate = generalSettingsConfig.Enabled.ShortcutGuide != isEnabled;
|
|
generalSettingsConfig.Enabled.ShortcutGuide = isEnabled; break;
|
|
case "PowerOCR":
|
|
needToUpdate = generalSettingsConfig.Enabled.PowerOCR != isEnabled;
|
|
generalSettingsConfig.Enabled.PowerOCR = isEnabled; break;
|
|
case "VideoConference":
|
|
needToUpdate = generalSettingsConfig.Enabled.VideoConference != isEnabled;
|
|
generalSettingsConfig.Enabled.VideoConference = isEnabled; break;
|
|
}
|
|
|
|
if (needToUpdate)
|
|
{
|
|
var outgoing = new OutGoingGeneralSettings(generalSettingsConfig);
|
|
this.DispatcherQueue.TryEnqueue(Microsoft.UI.Dispatching.DispatcherQueuePriority.Normal, () =>
|
|
{
|
|
ShellPage.SendDefaultIPCMessage(outgoing.ToString());
|
|
ShellPage.ShellHandler?.SignalGeneralDataUpdate();
|
|
});
|
|
}
|
|
|
|
return needToUpdate;
|
|
});
|
|
|
|
// open oobe
|
|
ShellPage.SetOpenOobeCallback(() =>
|
|
{
|
|
if (App.GetOobeWindow() == null)
|
|
{
|
|
App.SetOobeWindow(new OobeWindow(Microsoft.PowerToys.Settings.UI.OOBE.Enums.PowerToysModules.Overview, App.IsDarkTheme()));
|
|
}
|
|
|
|
App.GetOobeWindow().Activate();
|
|
});
|
|
|
|
// open flyout
|
|
ShellPage.SetOpenFlyoutCallback((POINT? p) =>
|
|
{
|
|
this.DispatcherQueue.TryEnqueue(Microsoft.UI.Dispatching.DispatcherQueuePriority.Normal, () =>
|
|
{
|
|
if (App.GetFlyoutWindow() == null)
|
|
{
|
|
App.SetFlyoutWindow(new FlyoutWindow(p));
|
|
}
|
|
|
|
FlyoutWindow flyout = App.GetFlyoutWindow();
|
|
flyout.FlyoutAppearPosition = p;
|
|
flyout.Activate();
|
|
|
|
// https://github.com/microsoft/microsoft-ui-xaml/issues/7595 - Activate doesn't bring window to the foreground
|
|
// Need to call SetForegroundWindow to actually gain focus.
|
|
Utils.BecomeForegroundWindow(flyout.GetWindowHandle());
|
|
});
|
|
});
|
|
|
|
// disable flyout hiding
|
|
ShellPage.SetDisableFlyoutHidingCallback(() =>
|
|
{
|
|
this.DispatcherQueue.TryEnqueue(Microsoft.UI.Dispatching.DispatcherQueuePriority.Normal, () =>
|
|
{
|
|
if (App.GetFlyoutWindow() == null)
|
|
{
|
|
App.SetFlyoutWindow(new FlyoutWindow(null));
|
|
}
|
|
|
|
App.GetFlyoutWindow().ViewModel.DisableHiding();
|
|
});
|
|
});
|
|
|
|
this.InitializeComponent();
|
|
|
|
SetTheme(isDark);
|
|
|
|
// receive IPC Message
|
|
App.IPCMessageReceivedCallback = (string msg) =>
|
|
{
|
|
if (ShellPage.ShellHandler.IPCResponseHandleList != null)
|
|
{
|
|
var success = JsonObject.TryParse(msg, out JsonObject json);
|
|
if (success)
|
|
{
|
|
foreach (Action<JsonObject> handle in ShellPage.ShellHandler.IPCResponseHandleList)
|
|
{
|
|
handle(json);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
Logger.LogError("Failed to parse JSON from IPC message.");
|
|
}
|
|
}
|
|
};
|
|
|
|
bootTime.Stop();
|
|
|
|
PowerToysTelemetry.Log.WriteEvent(new SettingsBootEvent() { BootTimeMs = bootTime.ElapsedMilliseconds });
|
|
}
|
|
|
|
public void NavigateToSection(System.Type type)
|
|
{
|
|
ShellPage.Navigate(type);
|
|
}
|
|
|
|
public void CloseHiddenWindow()
|
|
{
|
|
var hWnd = WinRT.Interop.WindowNative.GetWindowHandle(this);
|
|
if (!NativeMethods.IsWindowVisible(hWnd))
|
|
{
|
|
Close();
|
|
}
|
|
}
|
|
|
|
private void Window_Closed(object sender, WindowEventArgs args)
|
|
{
|
|
var hWnd = WinRT.Interop.WindowNative.GetWindowHandle(this);
|
|
Utils.SerializePlacement(hWnd);
|
|
|
|
if (App.GetOobeWindow() == null)
|
|
{
|
|
App.ClearSettingsWindow();
|
|
}
|
|
else
|
|
{
|
|
args.Handled = true;
|
|
NativeMethods.ShowWindow(hWnd, NativeMethods.SW_HIDE);
|
|
}
|
|
}
|
|
|
|
internal void EnsurePageIsSelected()
|
|
{
|
|
ShellPage.EnsurePageIsSelected();
|
|
}
|
|
|
|
private void SetTheme(bool isDark)
|
|
{
|
|
shellPage.RequestedTheme = isDark ? ElementTheme.Dark : ElementTheme.Light;
|
|
}
|
|
}
|
|
}
|