SystemTrayMenu/Helpers/GlobalHotkeys.cs

335 lines
12 KiB
C#
Raw Normal View History

2023-05-26 10:34:31 +12:00
// <copyright file="GlobalHotkeys.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
//
// Copyright (c) 2023-2023 Peter Kirmeier
namespace SystemTrayMenu.Helpers
{
using System;
using System.Collections.Generic;
2023-05-26 10:34:31 +12:00
using System.Text;
using System.Windows;
2023-05-26 10:34:31 +12:00
using System.Windows.Input;
using System.Windows.Interop;
2023-05-26 10:34:31 +12:00
using SystemTrayMenu.DllImports;
using SystemTrayMenu.Utilities;
internal static class GlobalHotkeys
{
private static readonly HwndSourceHook Hook = new (WndProc);
private static readonly Window Window = new();
private static readonly HwndSource HWnd;
private static readonly List<HotkeyRegistration> Registrations = new();
private static readonly object CriticalSectionLock = new();
static GlobalHotkeys()
{
HWnd = HwndSource.FromHwnd(new WindowInteropHelper(Window).EnsureHandle());
HWnd.AddHook(Hook);
}
2023-05-26 10:34:31 +12:00
/// <summary>
/// Registers a global hotkey.
/// Function is thread safe.
2023-05-26 10:34:31 +12:00
/// Throws an InvalidOperationException on error.
/// The caller needs to call UnregisterHotkey to free up ressources.
/// </summary>
/// <param name="modifiers">Hotkey modifiers.</param>
/// <param name="key">Hotkey major key.</param>
/// <returns>Handle of this registration.</returns>
internal static HotkeyRegistrationHandle Register(ModifierKeys modifiers, Key key)
2023-05-26 10:34:31 +12:00
{
int virtualKeyCode = KeyInterop.VirtualKeyFromKey(key);
int id = 0;
lock (CriticalSectionLock)
2023-05-26 10:34:31 +12:00
{
foreach (var reg in Registrations)
{
if (id < reg.Id)
{
id = reg.Id;
}
}
if (!NativeMethods.User32RegisterHotKey(HWnd.Handle, id, (uint)modifiers, (uint)virtualKeyCode))
{
string errorHint = NativeMethods.GetLastErrorHint();
throw new InvalidOperationException(Translator.GetText("Could not register the hot key.") + " (" + errorHint + ")");
}
2023-05-26 10:34:31 +12:00
}
HotkeyRegistration regHandle = new()
{
Id = id,
Modifiers = modifiers,
Key = key,
};
Registrations.Add(regHandle);
return regHandle;
2023-05-26 10:34:31 +12:00
}
/// <summary>
/// Registers a global hotkey.
/// Function is thread safe.
2023-05-26 10:34:31 +12:00
/// Throws an InvalidOperationException on error.
/// The caller needs to call UnregisterHotkey to free up ressources.
/// </summary>
/// <param name="hotKeyString">Hotkey string representation.</param>
/// <returns>Handle of this registration.</returns>
internal static HotkeyRegistrationHandle Register(string hotKeyString)
2023-05-26 10:34:31 +12:00
{
var (modifiers, key) = ParseKeysAndModifiersFromString(hotKeyString);
return Register(modifiers, key);
2023-05-26 10:34:31 +12:00
}
/// <summary>
/// Unregisters a global hotkey in a thread safe manner.
/// Function is thread safe.
2023-05-26 10:34:31 +12:00
/// </summary>
/// <param name="regHandle">Handle of the registration.</param>
/// <returns>true: Success or false: Failure.</returns>
internal static bool Unregister(HotkeyRegistrationHandle? regHandle)
2023-05-26 10:34:31 +12:00
{
if (regHandle == null || regHandle is not HotkeyRegistration reg || Registrations.Contains(reg))
2023-05-26 10:34:31 +12:00
{
return true;
2023-05-26 10:34:31 +12:00
}
lock (CriticalSectionLock)
{
if (!NativeMethods.User32UnregisterHotKey(HWnd.Handle, reg.Id))
{
return false;
}
2023-05-26 10:34:31 +12:00
Registrations.Remove(reg);
}
2023-05-26 10:34:31 +12:00
return true;
}
2023-05-26 10:34:31 +12:00
internal static ModifierKeys ModifierKeysFromString(string modifiersString)
{
ModifierKeys modifiers = ModifierKeys.None;
string upper = modifiersString.ToUpperInvariant();
if (upper.Contains("ALT+", StringComparison.InvariantCulture))
{
modifiers |= ModifierKeys.Alt;
}
if (upper.Contains("CTRL+", StringComparison.InvariantCulture) ||
upper.Contains("STRG+", StringComparison.InvariantCulture))
{
modifiers |= ModifierKeys.Control;
}
if (upper.Contains("SHIFT+", StringComparison.InvariantCulture))
{
modifiers |= ModifierKeys.Shift;
}
// LWin and RWin keys will implicitly set Windows key modifier
if (upper.Contains("WIN+", StringComparison.InvariantCulture) ||
upper.EndsWith("LWIN", StringComparison.InvariantCulture) ||
upper.EndsWith("RWIN", StringComparison.InvariantCulture))
{
modifiers |= ModifierKeys.Windows;
}
return modifiers;
}
internal static Key KeyFromString(string keyString)
{
Key key = Key.None;
if (!string.IsNullOrEmpty(keyString))
{
if (keyString.LastIndexOf('+') > 0)
{
keyString = keyString.Remove(0, keyString.LastIndexOf('+') + 1).Trim();
}
keyString = keyString.
Replace("PgDn", "PageDown", StringComparison.InvariantCulture).
Replace("PgUp", "PageUp", StringComparison.InvariantCulture);
if (!Enum.TryParse(keyString, true, out key))
{
Log.Warn($"{keyString} cannot be parsed", new());
}
}
return key;
}
internal static string HotkeyToLocalizedString(ModifierKeys modifiers, Key key)
{
StringBuilder hotkeyString = new();
if ((modifiers & ModifierKeys.Alt) != 0)
{
hotkeyString.Append(GetKeyName(Key.LeftAlt)).Append(" + ");
}
if ((modifiers & ModifierKeys.Control) != 0)
{
hotkeyString.Append(GetKeyName(Key.LeftCtrl)).Append(" + ");
}
if ((modifiers & ModifierKeys.Shift) != 0)
{
hotkeyString.Append(GetKeyName(Key.LeftShift)).Append(" + ");
}
if ((modifiers & ModifierKeys.Windows) != 0)
{
hotkeyString.Append("Win").Append(" + ");
}
return hotkeyString.ToString() + GetKeyName(key);
}
private static string GetKeyName(Key key)
2023-05-26 10:34:31 +12:00
{
const uint MAPVK_VK_TO_VSC = 0;
const uint KF_EXTENDED = 0x100;
const uint SCANCODE_SIMULATED = 0x200;
const uint scanCodeNumPad = 0x37;
const uint scanCodePause = 0x45;
2023-05-26 10:34:31 +12:00
StringBuilder keyName = new(100);
2023-05-26 10:34:31 +12:00
string keyString = string.Empty;
switch (key)
2023-05-26 10:34:31 +12:00
{
case Key.Multiply:
if (NativeMethods.User32GetKeyNameText(scanCodeNumPad << 16, keyName, keyName.Capacity) > 0)
2023-05-26 10:34:31 +12:00
{
keyString = keyName.ToString().Replace("*", string.Empty, StringComparison.InvariantCulture).Trim().ToLowerInvariant();
if (keyString.Contains('('))
{
return "* " + keyString;
}
keyString = keyString[..1].ToUpperInvariant() + keyString[1..].ToLowerInvariant();
}
return keyString + " *";
case Key.Divide:
if (NativeMethods.User32GetKeyNameText(scanCodeNumPad << 16, keyName, keyName.Capacity) > 0)
2023-05-26 10:34:31 +12:00
{
keyString = keyName.ToString().Replace("*", string.Empty, StringComparison.InvariantCulture).Trim().ToLowerInvariant();
if (keyString.Contains('('))
{
return "/ " + keyString;
}
keyString = keyString[..1].ToUpperInvariant() + keyString[1..].ToLowerInvariant();
}
return keyString + " /";
}
// Converting Windows Input Key Enums into Virtual-Key Codes into Scan Codes into Text
// - Windows Input Key Enums: https://learn.microsoft.com/en-us/dotnet/api/system.windows.input.key?view=windowsdesktop-7.0
// - Virtual-Key Codes: https://learn.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
// - Scan Codes: https://learn.microsoft.com/en-us/windows/win32/inputdev/about-keyboard-input#scan-codes
uint virtualKeyCode = (uint)KeyInterop.VirtualKeyFromKey(key);
uint scanCode = NativeMethods.User32MapVirtualKey(virtualKeyCode, MAPVK_VK_TO_VSC);
2023-05-26 10:34:31 +12:00
// Handle names of some special keys
switch (key)
2023-05-26 10:34:31 +12:00
{
case Key.Left:
case Key.Up:
case Key.Right:
case Key.Down: // arrow keys
case Key.Prior:
case Key.Next: // page up and page down
case Key.End:
case Key.Home:
case Key.Insert:
case Key.Delete:
case Key.NumLock:
scanCode |= KF_EXTENDED; // set extended bit (simulate origin from enhanced 101/102-key keyboard)
2023-05-26 10:34:31 +12:00
break;
case Key.PrintScreen:
scanCode = KF_EXTENDED | scanCodeNumPad;
2023-05-26 10:34:31 +12:00
break;
case Key.Pause:
scanCode = scanCodePause;
2023-05-26 10:34:31 +12:00
break;
}
scanCode |= SCANCODE_SIMULATED;
if (NativeMethods.User32GetKeyNameText(scanCode << 16, keyName, keyName.Capacity) != 0)
2023-05-26 10:34:31 +12:00
{
string visibleName = keyName.ToString();
if (visibleName.Length > 1)
{
visibleName = visibleName[..1] + visibleName[1..].ToLowerInvariant();
}
return visibleName;
}
else
{
return key.ToString();
2023-05-26 10:34:31 +12:00
}
}
private static (ModifierKeys, Key) ParseKeysAndModifiersFromString(string hotKeyString) => (ModifierKeysFromString(hotKeyString), KeyFromString(hotKeyString));
private static IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
{
const int WmHotkey = 0x0312;
// check if we got a hot key pressed.
if (msg == WmHotkey)
{
ModifierKeys modifiers = (ModifierKeys)((int)lParam & 0xFFFF);
int virtualKeyCode = ((int)lParam >> 16) & 0xFFFF;
Key key = KeyInterop.KeyFromVirtualKey(virtualKeyCode);
HotkeyRegistration? reg = null;
lock (CriticalSectionLock)
{
foreach (var regHandle in Registrations)
{
if (modifiers == regHandle.Modifiers && key == regHandle.Key)
{
reg = regHandle;
break;
}
}
}
reg?.OnKeyPressed();
}
handled = false;
return IntPtr.Zero;
}
internal abstract class HotkeyRegistrationHandle
{
internal event Action<HotkeyRegistrationHandle>? KeyPressed;
protected void RiseKeyPressed() => KeyPressed?.Invoke(this);
}
private class HotkeyRegistration : HotkeyRegistrationHandle
{
internal int Id { get; init; }
internal ModifierKeys Modifiers { get; set; }
internal Key Key { get; set; }
internal void OnKeyPressed() => RiseKeyPressed();
}
2023-05-26 10:34:31 +12:00
}
}