mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-03 09:27:59 +08:00
073caffef4
* Unify exe/dll naming - PowerToys.Runner Align naming with other exes - PowerToys Runner -> PowerToys.Runner * Unify exe/dll naming - Microsoft.PowerToys.Common.UI Project name - Microsoft.PowerToys.Common.UI -> Common.UI dll name - Microsoft.PowerToys.Common.UI.dll -> PowerToys.Common.UI.dll * Unify exe/dll naming - Settings Project names - Microsoft.PowerToys.Settings* -> Settings* Dll names - Microsoft.PowerToys.Settings*.dll -> PowerToys.Settings*.dll * Revert file autoformat * [Docs] Update paths to settings projects/files * Fix tests - Update path
89 lines
2.8 KiB
C#
89 lines
2.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.Diagnostics.CodeAnalysis;
|
|
using interop;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
|
{
|
|
public delegate void KeyEvent(int key);
|
|
|
|
public delegate bool IsActive();
|
|
|
|
public delegate bool FilterAccessibleKeyboardEvents(int key, UIntPtr extraInfo);
|
|
|
|
public class HotkeySettingsControlHook : IDisposable
|
|
{
|
|
private const int WmKeyDown = 0x100;
|
|
private const int WmKeyUp = 0x101;
|
|
private const int WmSysKeyDown = 0x0104;
|
|
private const int WmSysKeyUp = 0x0105;
|
|
|
|
[SuppressMessage("Usage", "CA2213:Disposable fields should be disposed", Justification = "This class conforms to the IDisposable pattern, and the Dispose and C++ destructor does get called when debugging. Looks like a false positive from FxCop.")]
|
|
private KeyboardHook _hook;
|
|
private KeyEvent _keyDown;
|
|
private KeyEvent _keyUp;
|
|
private IsActive _isActive;
|
|
private bool disposedValue;
|
|
|
|
private FilterAccessibleKeyboardEvents _filterKeyboardEvent;
|
|
|
|
public HotkeySettingsControlHook(KeyEvent keyDown, KeyEvent keyUp, IsActive isActive, FilterAccessibleKeyboardEvents filterAccessibleKeyboardEvents)
|
|
{
|
|
_keyDown = keyDown;
|
|
_keyUp = keyUp;
|
|
_isActive = isActive;
|
|
_filterKeyboardEvent = filterAccessibleKeyboardEvents;
|
|
_hook = new KeyboardHook(HotkeySettingsHookCallback, IsActive, FilterKeyboardEvents);
|
|
_hook.Start();
|
|
}
|
|
|
|
private bool IsActive()
|
|
{
|
|
return _isActive();
|
|
}
|
|
|
|
private void HotkeySettingsHookCallback(KeyboardEvent ev)
|
|
{
|
|
switch (ev.message)
|
|
{
|
|
case WmKeyDown:
|
|
case WmSysKeyDown:
|
|
_keyDown(ev.key);
|
|
break;
|
|
case WmKeyUp:
|
|
case WmSysKeyUp:
|
|
_keyUp(ev.key);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private bool FilterKeyboardEvents(KeyboardEvent ev)
|
|
{
|
|
return _filterKeyboardEvent(ev.key, (UIntPtr)ev.dwExtraInfo);
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (!disposedValue)
|
|
{
|
|
if (disposing)
|
|
{
|
|
// Dispose the KeyboardHook object to terminate the hook threads
|
|
_hook.Dispose();
|
|
}
|
|
|
|
disposedValue = true;
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(disposing: true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
}
|
|
}
|