-
Notifications
You must be signed in to change notification settings - Fork 20
/
KeyboardHook.cs
224 lines (187 loc) · 6.43 KB
/
KeyboardHook.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Collections.Specialized;
public sealed class KeyboardHook : IDisposable
{
// Registers a hot key with Windows.
[DllImport("user32.dll")]
private static extern bool RegisterHotKey(IntPtr hWnd, int id, uint fsModifiers, uint vk);
// Unregisters the hot key with Windows.
[DllImport("user32.dll")]
private static extern bool UnregisterHotKey(IntPtr hWnd, int id);
/// <summary>
/// Represents the window that is used internally to get the messages.
/// </summary>
private class Window : NativeWindow, IDisposable
{
private static int WM_HOTKEY = 0x0312;
public Window()
{
// create the handle for the window.
this.CreateHandle(new CreateParams());
}
/// <summary>
/// Overridden to get the notifications.
/// </summary>
/// <param name="m"></param>
protected override void WndProc(ref Message m)
{
base.WndProc(ref m);
// check if we got a hot key pressed.
if (m.Msg == WM_HOTKEY)
{
// get the keys.
Keys key = (Keys)(((int)m.LParam >> 16) & 0xFFFF);
ModifierKeys modifier = (ModifierKeys)((int)m.LParam & 0xFFFF);
// invoke the event to notify the parent.
if (KeyPressed != null)
KeyPressed(this, new KeyPressedEventArgs(modifier, key));
}
}
public event EventHandler<KeyPressedEventArgs> KeyPressed;
#region IDisposable Members
public void Dispose()
{
this.DestroyHandle();
}
#endregion
}
private Window _window = new Window();
public int _currentId;
public KeyboardHook()
{
// register the event of the inner native window.
_window.KeyPressed += delegate(object sender, KeyPressedEventArgs args)
{
if (KeyPressed != null)
KeyPressed(this, args);
};
}
/// <summary>
/// Registers a hot key in the system.
/// </summary>
/// <param name="modifier">The modifiers that are associated with the hot key.</param>
/// <param name="key">The key itself that is associated with the hot key.</param>
public void RegisterHotKey(ModifierKeys modifier, Keys key)
{
//MessageBox.Show("Modifier: " + modifier.ToString() + "Key: "+ key.ToString());
// increment the counter.
_currentId = _currentId + 1;
// register the hot key.
if (!RegisterHotKey(_window.Handle, _currentId, (uint)modifier, (uint)key))
throw new InvalidOperationException("Unable to register the hotkey " + modifier.ToString() + " "+ key.ToString() + ". Please choose a different one (or find the key or program that has registered it already).");
}
/// <summary>
/// A hot key has been pressed.
/// </summary>
public event EventHandler<KeyPressedEventArgs> KeyPressed;
#region IDisposable Members
public void Dispose()
{
// unregister all the registered hot keys.
for (int i = _currentId; i > 0; i--)
{
UnregisterHotKey(_window.Handle, i);
}
// dispose the inner native window.
_window.Dispose();
}
#endregion
public void unregisterAllHotkeys()
{
// unregister all the registered hot keys.
for (int i = _currentId; i > 0; i--)
{
UnregisterHotKey(_window.Handle, i);
}
}
/// <summary>
/// Calculates the Win32 Modifiers total for a Keys enum
/// </summary>
/// <param name="k">An instance of the Keys enumaration</param>
/// <returns>The Win32 Modifiers total as required by RegisterHotKey</returns>
public ModifierKeys Win32ModifiersFromKeys(Keys k)
{
byte total = 0;
const byte ModAlt = 1, ModControl = 2, ModShift = 4, ModWin = 8;
if (((int)k & (int)Keys.Shift) == (int)Keys.Shift)
total += ModShift;
if (((int)k & (int)Keys.Control) == (int)Keys.Control)
total += ModControl;
if (((int)k & (int)Keys.Alt) == (int)Keys.Alt)
total += ModAlt;
if (((int)k & (int)Keys.LWin) == (int)Keys.LWin)
total += ModWin;
return (ModifierKeys)total;
}
public Keys getModifierKey(Keys k)
{
Keys modKey = 0;
if (((int)k & (int)Keys.Shift) == (int)Keys.Shift)
modKey += (int)Keys.Shift;
if (((int)k & (int)Keys.Control) == (int)Keys.Control)
modKey += (int)Keys.Control;
if (((int)k & (int)Keys.Alt) == (int)Keys.Alt)
modKey += (int)Keys.Alt;
if (((int)k & (int)Keys.LWin) == (int)Keys.LWin)
modKey += (int)Keys.LWin;
return modKey;
}
public Keys keyToModifierKey(ModifierKeys k)
{
Keys modKey = 0;
if (((int)k & (int)ModifierKeys.Shift) == (int)ModifierKeys.Shift)
modKey += (int)Keys.Shift;
if (((int)k & (int)ModifierKeys.Control) == (int)ModifierKeys.Control)
modKey += (int)Keys.Control;
if (((int)k & (int)ModifierKeys.Alt) == (int)ModifierKeys.Alt)
modKey += (int)Keys.Alt;
if (((int)k & (int)ModifierKeys.Win) == (int)ModifierKeys.Win)
modKey += (int)Keys.LWin;
return modKey;
}
/// <summary>
/// Returns a Key value for the key without a modifier (if the Keys for Ctrl + Shift + A is passed in, the Keys for A will be returned)
/// </summary>
/// <param name="k">An instance of the Keys enumaration</param>
/// <returns>The character code of the key</returns>
public Keys getKeyWithoutModifier(Keys k)
{
Keys keyWithout = k & Keys.KeyCode;
return keyWithout;
}
}
/// <summary>
/// Event Args for the event that is fired after the hot key has been pressed.
/// </summary>
public class KeyPressedEventArgs : EventArgs
{
private ModifierKeys _modifier;
private Keys _key;
internal KeyPressedEventArgs(ModifierKeys modifier, Keys key)
{
_modifier = modifier;
_key = key;
}
public ModifierKeys Modifier
{
get { return _modifier; }
}
public Keys Key
{
get { return _key; }
}
}
/// <summary>
/// The enumeration of possible modifiers.
/// </summary>
[Flags]
public enum ModifierKeys : uint
{
None = 0,
Alt = 1,
Control = 2,
Shift = 4,
Win = 8
}