mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
* [PT Run] Refactoring: combined all NativeMethods.cs files for plugins into Wox.Plugin/Common/Win32/ * Fixed spell check * [PT Run] Changed NativeMethods.Helpers to Win32Helpers (seperate class) to not conflict with Microsoft.PowerToys.Settings.UI.Library.Helpers * [PT Run] Renamed Constants.cs to ConstantsAndStructs.cs and moved all of them from NativeMethods.cs * [PT Run] Merged ConstantsAndStructs.cs into NativeMethods.cs and renamed Constants to Win32Constants to avoid conflicting * [PT Run] Added missing summaries + fixed missed refactored method * [PT Run] Use using directive instead of alias + updated method call for .Net 6 * [PT Run] Fixed missed using alias + spell check
285 lines
12 KiB
C#
285 lines
12 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.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Interop;
|
|
using ManagedCommon;
|
|
using Microsoft.PowerToys.Run.Plugin.System.Properties;
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
|
using Wox.Infrastructure;
|
|
using Wox.Plugin;
|
|
using Wox.Plugin.Common.Win32;
|
|
|
|
namespace Microsoft.PowerToys.Run.Plugin.System
|
|
{
|
|
public class Main : IPlugin, IPluginI18n, ISettingProvider
|
|
{
|
|
private PluginInitContext _context;
|
|
private const string ConfirmSystemCommands = nameof(ConfirmSystemCommands);
|
|
private const string LocalizeSystemCommands = nameof(LocalizeSystemCommands);
|
|
|
|
internal const int EWXLOGOFF = 0x00000000;
|
|
internal const int EWXSHUTDOWN = 0x00000001;
|
|
internal const int EWXREBOOT = 0x00000002;
|
|
internal const int EWXFORCE = 0x00000004;
|
|
internal const int EWXPOWEROFF = 0x00000008;
|
|
internal const int EWXFORCEIFHUNG = 0x00000010;
|
|
|
|
public string IconTheme { get; set; }
|
|
|
|
public bool IsBootedInUefiMode { get; set; }
|
|
|
|
public string Name => Resources.Microsoft_plugin_sys_plugin_name;
|
|
|
|
public string Description => Resources.Microsoft_plugin_sys_plugin_description;
|
|
|
|
private bool _confirmSystemCommands;
|
|
private bool _localizeSystemCommands;
|
|
|
|
public IEnumerable<PluginAdditionalOption> AdditionalOptions => new List<PluginAdditionalOption>()
|
|
{
|
|
new PluginAdditionalOption()
|
|
{
|
|
Key = ConfirmSystemCommands,
|
|
DisplayLabel = Resources.confirm_system_commands,
|
|
Value = false,
|
|
},
|
|
new PluginAdditionalOption()
|
|
{
|
|
Key = LocalizeSystemCommands,
|
|
DisplayLabel = Resources.Use_localized_system_commands,
|
|
Value = true,
|
|
},
|
|
};
|
|
|
|
public void Init(PluginInitContext context)
|
|
{
|
|
_context = context;
|
|
_context.API.ThemeChanged += OnThemeChanged;
|
|
UpdateIconTheme(_context.API.GetCurrentTheme());
|
|
IsBootedInUefiMode = Win32Helpers.GetSystemFirmwareType() == FirmwareType.Uefi;
|
|
|
|
// Log info if the system hasn't boot in uefi mode.
|
|
// (Because this is only going into the log we can ignore the fact that normally UEFI and BIOS are written upper case. No need to convert the enumeration value to upper case.)
|
|
if (!IsBootedInUefiMode)
|
|
{
|
|
Wox.Plugin.Logger.Log.Info($"The UEFI command will not show to the user. The system has not booted in UEFI mode or the system does not have an UEFI firmware! (Detected type: {Win32Helpers.GetSystemFirmwareType()})", typeof(Main));
|
|
}
|
|
}
|
|
|
|
public List<Result> Query(Query query)
|
|
{
|
|
if (query == null)
|
|
{
|
|
throw new ArgumentNullException(paramName: nameof(query));
|
|
}
|
|
|
|
var commands = Commands();
|
|
var results = new List<Result>();
|
|
|
|
foreach (var c in commands)
|
|
{
|
|
var titleMatch = StringMatcher.FuzzySearch(query.Search, c.Title);
|
|
if (titleMatch.Score > 0)
|
|
{
|
|
c.Score = titleMatch.Score;
|
|
c.TitleHighlightData = titleMatch.MatchData;
|
|
results.Add(c);
|
|
}
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
private List<Result> Commands()
|
|
{
|
|
CultureInfo culture = CultureInfo.CurrentUICulture;
|
|
|
|
if (!_localizeSystemCommands)
|
|
{
|
|
culture = new CultureInfo("en-US");
|
|
}
|
|
|
|
var results = new List<Result>();
|
|
results.AddRange(new[]
|
|
{
|
|
new Result
|
|
{
|
|
Title = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_shutdown_computer), culture),
|
|
SubTitle = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_shutdown_computer_description), culture),
|
|
IcoPath = $"Images\\shutdown.{IconTheme}.png",
|
|
Action = c =>
|
|
{
|
|
return ExecuteCommand(Resources.Microsoft_plugin_sys_shutdown_computer_confirmation, () => Helper.OpenInShell("shutdown", "/s /hybrid /t 0"));
|
|
},
|
|
},
|
|
new Result
|
|
{
|
|
Title = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_restart_computer), culture),
|
|
SubTitle = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_restart_computer_description), culture),
|
|
IcoPath = $"Images\\restart.{IconTheme}.png",
|
|
Action = c =>
|
|
{
|
|
return ExecuteCommand(Resources.Microsoft_plugin_sys_restart_computer_confirmation, () => Helper.OpenInShell("shutdown", "/r /t 0"));
|
|
},
|
|
},
|
|
new Result
|
|
{
|
|
Title = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_sign_out), culture),
|
|
SubTitle = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_sign_out_description), culture),
|
|
IcoPath = $"Images\\logoff.{IconTheme}.png",
|
|
Action = c =>
|
|
{
|
|
return ExecuteCommand(Resources.Microsoft_plugin_sys_sign_out_confirmation, () => NativeMethods.ExitWindowsEx(EWXLOGOFF, 0));
|
|
},
|
|
},
|
|
new Result
|
|
{
|
|
Title = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_lock), culture),
|
|
SubTitle = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_lock_description), culture),
|
|
IcoPath = $"Images\\lock.{IconTheme}.png",
|
|
Action = c =>
|
|
{
|
|
return ExecuteCommand(Resources.Microsoft_plugin_sys_lock_confirmation, () => NativeMethods.LockWorkStation());
|
|
},
|
|
},
|
|
new Result
|
|
{
|
|
Title = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_sleep), culture),
|
|
SubTitle = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_sleep_description), culture),
|
|
IcoPath = $"Images\\sleep.{IconTheme}.png",
|
|
Action = c =>
|
|
{
|
|
return ExecuteCommand(Resources.Microsoft_plugin_sys_sleep_confirmation, () => NativeMethods.SetSuspendState(false, true, true));
|
|
},
|
|
},
|
|
new Result
|
|
{
|
|
Title = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_hibernate), culture),
|
|
SubTitle = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_hibernate_description), culture),
|
|
IcoPath = $"Images\\sleep.{IconTheme}.png", // Icon change needed
|
|
Action = c =>
|
|
{
|
|
return ExecuteCommand(Resources.Microsoft_plugin_sys_hibernate_confirmation, () => NativeMethods.SetSuspendState(true, true, true));
|
|
},
|
|
},
|
|
new Result
|
|
{
|
|
Title = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_emptyrecyclebin), culture),
|
|
SubTitle = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_emptyrecyclebin_description), culture),
|
|
IcoPath = $"Images\\recyclebin.{IconTheme}.png",
|
|
Action = c =>
|
|
{
|
|
// http://www.pinvoke.net/default.aspx/shell32/SHEmptyRecycleBin.html
|
|
// FYI, couldn't find documentation for this but if the recycle bin is already empty, it will return -2147418113 (0x8000FFFF (E_UNEXPECTED))
|
|
// 0 for nothing
|
|
var result = NativeMethods.SHEmptyRecycleBin(new WindowInteropHelper(Application.Current.MainWindow).Handle, 0);
|
|
if (result != (uint)HRESULT.S_OK && result != 0x8000FFFF)
|
|
{
|
|
var name = "Plugin: " + Resources.Microsoft_plugin_sys_plugin_name;
|
|
var message = $"Error emptying recycle bin, error code: {result}\n" +
|
|
"please refer to https://msdn.microsoft.com/en-us/library/windows/desktop/aa378137";
|
|
_context.API.ShowMsg(name, message);
|
|
}
|
|
|
|
return true;
|
|
},
|
|
},
|
|
});
|
|
|
|
// UEFI command/result. It is only available on systems booted in UEFI mode.
|
|
if (IsBootedInUefiMode)
|
|
{
|
|
results.Add(new Result
|
|
{
|
|
Title = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_uefi), culture),
|
|
SubTitle = Resources.ResourceManager.GetString(nameof(Resources.Microsoft_plugin_sys_uefi_description), culture),
|
|
IcoPath = $"Images\\firmwareSettings.{IconTheme}.png",
|
|
Action = c =>
|
|
{
|
|
return ExecuteCommand(Resources.Microsoft_plugin_sys_uefi_confirmation, () => Helper.OpenInShell("shutdown", "/r /fw /t 0", null, true));
|
|
},
|
|
});
|
|
}
|
|
|
|
return results;
|
|
}
|
|
|
|
private void UpdateIconTheme(Theme theme)
|
|
{
|
|
if (theme == Theme.Light || theme == Theme.HighContrastWhite)
|
|
{
|
|
IconTheme = "light";
|
|
}
|
|
else
|
|
{
|
|
IconTheme = "dark";
|
|
}
|
|
}
|
|
|
|
private void OnThemeChanged(Theme currentTheme, Theme newTheme)
|
|
{
|
|
UpdateIconTheme(newTheme);
|
|
}
|
|
|
|
public string GetTranslatedPluginDescription()
|
|
{
|
|
return Resources.Microsoft_plugin_sys_plugin_description;
|
|
}
|
|
|
|
public string GetTranslatedPluginTitle()
|
|
{
|
|
return Resources.Microsoft_plugin_sys_plugin_name;
|
|
}
|
|
|
|
private bool ExecuteCommand(string confirmationMessage, Action command)
|
|
{
|
|
if (_confirmSystemCommands)
|
|
{
|
|
MessageBoxResult messageBoxResult = MessageBox.Show(
|
|
confirmationMessage,
|
|
Resources.Microsoft_plugin_sys_confirmation,
|
|
MessageBoxButton.YesNo,
|
|
MessageBoxImage.Warning);
|
|
|
|
if (messageBoxResult == MessageBoxResult.No)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
command();
|
|
return true;
|
|
}
|
|
|
|
public Control CreateSettingPanel()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void UpdateSettings(PowerLauncherPluginSettings settings)
|
|
{
|
|
var confirmSystemCommands = false;
|
|
var localizeSystemCommands = true;
|
|
|
|
if (settings != null && settings.AdditionalOptions != null)
|
|
{
|
|
var optionConfirm = settings.AdditionalOptions.FirstOrDefault(x => x.Key == ConfirmSystemCommands);
|
|
confirmSystemCommands = optionConfirm?.Value ?? false;
|
|
|
|
var optionLocalize = settings.AdditionalOptions.FirstOrDefault(x => x.Key == LocalizeSystemCommands);
|
|
localizeSystemCommands = optionLocalize?.Value ?? true;
|
|
}
|
|
|
|
_confirmSystemCommands = confirmSystemCommands;
|
|
_localizeSystemCommands = localizeSystemCommands;
|
|
}
|
|
}
|
|
}
|