2019-11-10 12:28:29 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Runtime.InteropServices;
|
2019-11-29 21:27:24 +01:00
|
|
|
|
using System.Windows.Forms;
|
2019-11-10 12:28:29 +01:00
|
|
|
|
|
2019-12-22 16:58:16 +01:00
|
|
|
|
namespace CC_Functions.W32.Hooks
|
2019-11-10 12:28:29 +01:00
|
|
|
|
{
|
|
|
|
|
public sealed class KeyboardHook : IDisposable
|
|
|
|
|
{
|
2019-12-22 16:58:16 +01:00
|
|
|
|
public delegate void KeyPress(KeyboardHookEventArgs args);
|
2019-11-10 12:28:29 +01:00
|
|
|
|
|
|
|
|
|
private const int WH_KEYBOARD_LL = 13;
|
|
|
|
|
private const int WM_KEYDOWN = 0x0100;
|
2019-11-29 21:27:24 +01:00
|
|
|
|
|
2019-12-22 16:58:16 +01:00
|
|
|
|
private static readonly List<KeyboardHook> Instances = new List<KeyboardHook>();
|
|
|
|
|
private static readonly LowLevelKeyboardProc Proc = HookCallback;
|
2019-12-22 00:29:53 +01:00
|
|
|
|
private static IntPtr _hookID = IntPtr.Zero;
|
2019-11-10 12:28:29 +01:00
|
|
|
|
|
|
|
|
|
public KeyboardHook()
|
|
|
|
|
{
|
2019-12-22 16:58:16 +01:00
|
|
|
|
if (Instances.Count == 0)
|
|
|
|
|
_hookID = SetHook(Proc);
|
|
|
|
|
Instances.Add(this);
|
2019-11-10 12:28:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-22 00:29:53 +01:00
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
2019-12-22 16:58:16 +01:00
|
|
|
|
Instances.Remove(this);
|
|
|
|
|
if (Instances.Count == 0)
|
2019-12-22 00:29:53 +01:00
|
|
|
|
UnhookWindowsHookEx(_hookID);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-22 16:58:16 +01:00
|
|
|
|
public event KeyPress OnKeyPress;
|
2019-12-22 00:29:53 +01:00
|
|
|
|
|
2019-11-10 12:28:29 +01:00
|
|
|
|
private IntPtr SetHook(LowLevelKeyboardProc proc)
|
|
|
|
|
{
|
2019-12-22 16:58:16 +01:00
|
|
|
|
using (Process curProcess = Process.GetCurrentProcess())
|
|
|
|
|
using (ProcessModule curModule = curProcess.MainModule)
|
2019-11-10 12:28:29 +01:00
|
|
|
|
{
|
|
|
|
|
return SetWindowsHookEx(WH_KEYBOARD_LL, proc, GetModuleHandle(curModule.ModuleName), 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static IntPtr HookCallback(int nCode, IntPtr wParam, IntPtr lParam)
|
|
|
|
|
{
|
2019-12-22 00:29:53 +01:00
|
|
|
|
if (nCode >= 0 && wParam == (IntPtr) WM_KEYDOWN)
|
2019-11-10 12:28:29 +01:00
|
|
|
|
{
|
2019-12-22 16:58:16 +01:00
|
|
|
|
int vkCode = Marshal.ReadInt32(lParam);
|
|
|
|
|
for (int i = 0; i < Instances.Count; i++)
|
|
|
|
|
Instances[i].OnKeyPress?.Invoke(new KeyboardHookEventArgs((Keys) vkCode));
|
2019-11-10 12:28:29 +01:00
|
|
|
|
}
|
2019-12-22 00:29:53 +01:00
|
|
|
|
|
2019-11-10 12:28:29 +01:00
|
|
|
|
return CallNextHookEx(_hookID, nCode, wParam, lParam);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
|
2019-12-22 00:29:53 +01:00
|
|
|
|
private static extern IntPtr SetWindowsHookEx(int idHook, LowLevelKeyboardProc lpfn, IntPtr hMod,
|
|
|
|
|
uint dwThreadId);
|
2019-11-10 12:28:29 +01:00
|
|
|
|
|
|
|
|
|
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
|
|
|
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
|
|
|
private static extern bool UnhookWindowsHookEx(IntPtr hhk);
|
|
|
|
|
|
|
|
|
|
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
|
|
|
|
|
private static extern IntPtr CallNextHookEx(IntPtr hhk, int nCode, IntPtr wParam, IntPtr lParam);
|
|
|
|
|
|
|
|
|
|
[DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
|
|
|
|
|
private static extern IntPtr GetModuleHandle(string lpModuleName);
|
2019-12-22 00:29:53 +01:00
|
|
|
|
|
|
|
|
|
private delegate IntPtr LowLevelKeyboardProc(int nCode, IntPtr wParam, IntPtr lParam);
|
2019-11-10 12:28:29 +01:00
|
|
|
|
}
|
2019-11-29 21:27:24 +01:00
|
|
|
|
}
|