-
Notifications
You must be signed in to change notification settings - Fork 22
/
globalkeyhook.pas
344 lines (283 loc) · 8.16 KB
/
globalkeyhook.pas
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
unit GlobalKeyHook;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LCLType,
{$IfDef Windows}
Windows,
{$EndIf}
{$IfDef Linux}
Codebot.Input.HotKeys,
{$EndIf}
uUtilsMore, fgl, LazLoggerBase;
type
EGlobalKeyHookException = class(Exception);
EGlobalKeyHookRegistrationFailedException = class(EGlobalKeyHookException);
TKeysMap = specialize TFPGMap<string, THotKey>;
{$IfDef Linux}
THotKeyEvent = procedure(const AId: String) of object;
{$EndIf}
{ TGlobalKeyHook }
TGlobalKeyHook = class
private
KeysMap: TKeysMap;
{$IfDef Windows}
WndHandle: HWND;
UniqueIdentifier: String;
{$EndIf}
{$IfDef Linux}
HKCapture: THotkeyCapture;
Callback: THotKeyEvent;
{$EndIf}
procedure UnregisterAllKeys;
{$IfDef Windows}
procedure RegisterKey(AHotKeyId: Integer; const AHotKey: THotKey); overload;
procedure UnregisterKey(AHotKeyId: Integer); overload;
function GetFullStringId(AStringId: string): String;
function GetShortStringId(AFullStrId: String): String;
{$EndIf}
{$IfDef Linux}
procedure OnHotKeyEvent(Sender: TObject; Key: Word; Shift: TShiftState);
function FindId(const AHotKey: THotKey): String;
{$EndIf}
public
constructor Create({$IfDef Windows}AWndHandle: HWND;const AUniqueIdentifier: string{$EndIf}
{$IfDef Linux}ACallback: THotKeyEvent {= Nil}{$EndIf});
destructor Destroy; override;
procedure RegisterKey(const AStringId: String; const AHotKey: THotKey);{$IfDef Windows} overload;{$EndIf}
procedure UnregisterKey(const AStringId: String);{$IfDef Windows} overload;{$EndIf}
function FindHotKey(const AStringId: String): THotKey;
{$IfDef Windows}
function IdToStrId(AnId: Integer): String;
{$EndIf}
end;
implementation
uses {LCLType,} StrUtils;
{ TGlobalKeyHook }
{$IfDef Windows}
procedure TGlobalKeyHook.RegisterKey(AHotKeyId: Integer; const AHotKey: THotKey
);
var
Modifiers: UINT = 0;
begin
if AHotKeyId = 0 then
raise EGlobalKeyHookException.Create('AHotKeyId must not be zero');
if ssAlt in AHotKey.ShiftState then
Modifiers := Modifiers + MOD_ALT;
if ssShift in AHotKey.ShiftState then
Modifiers := Modifiers + MOD_SHIFT;
if ssCtrl in AHotKey.ShiftState then
Modifiers := Modifiers + MOD_CONTROL;
// Delete previous hotkey with current ID (if exists)
UnregisterKey(AHotKeyId);
if not RegisterHotKey(WndHandle, AHotkeyId, Modifiers, AHotKey.Key) then
raise EGlobalKeyHookRegistrationFailedException.CreateFmt(
'Failed to register hot key %s (error code %d)',
[AHotKey.ToString, GetLastError]);
end;
procedure TGlobalKeyHook.UnregisterKey(AHotKeyId: Integer);
begin
//if AHotKeyId = 0 then
// raise EGlobalKeyHookException.Create('AHotKeyId must not be zero');
{if not} UnregisterHotKey(WndHandle, AHotKeyId) {then} ;
// ToDo: check result
end;
{$EndIf}
procedure TGlobalKeyHook.UnregisterAllKeys;
var
I: Integer;
begin
for I := KeysMap.Count - 1 downto 0 do
begin
UnregisterKey(KeysMap.Keys[I]);
end;
end;
{$IfDef Linux}
procedure TGlobalKeyHook.OnHotKeyEvent(Sender: TObject; Key: Word;
Shift: TShiftState);
var
HotKey: THotKey;
Id: String;
begin
HotKey.Key := Key;
HotKey.ShiftState := Shift;
Id := FindId(HotKey);
DebugLn('Hot key %s event recieved (id=%s)', [HotKey.ToString, Id]);
if Assigned(Callback) then
Callback(Id);
end;
function TGlobalKeyHook.FindId(const AHotKey: THotKey): String;
var
Idx: Integer;
begin
Result := '';
Idx := KeysMap.IndexOfData(AHotKey);
if Idx <> -1 then
Result := KeysMap.Keys[Idx];
end;
{$EndIf}
{$IfDef Windows}
function TGlobalKeyHook.GetFullStringId(AStringId: string): String;
begin
Result := UniqueIdentifier + '_' + AStringId;
end;
function TGlobalKeyHook.GetShortStringId(AFullStrId: String): String;
begin
Result := AFullStrId;
if StartsStr(UniqueIdentifier + '_', Result) then
Delete(Result, 1, Length(UniqueIdentifier + '_'));
{else raise ...}
end;
{$EndIf}
constructor TGlobalKeyHook.Create(
{$IfDef Windows}
AWndHandle: HWND;
const AUniqueIdentifier: string
{$EndIf}
{$IfDef Linux}
ACallback: THotKeyEvent
{$EndIf}
);
begin
{$IfDef Windows}
WndHandle := AWndHandle;
UniqueIdentifier := AUniqueIdentifier;
{$EndIf}
KeysMap := TKeysMap.Create;
{$IfDef Linux}
Callback := ACallback;
HKCapture := HotkeyCapture();
{$EndIf}
end;
destructor TGlobalKeyHook.Destroy;
begin
UnregisterAllKeys;
KeysMap.Free;
(*{$IfDef Linux}
//HKCapture.Free;
//FreeAndNil(HKCapture);
{$EndIf}*)
inherited Destroy;
end;
procedure TGlobalKeyHook.RegisterKey(const AStringId: String;
const AHotKey: THotKey);
var
{$IfDef Windows}
FullStrId: String;
Id: Integer;
{$EndIf}
{$IfDef Linux}
Res: Boolean;
ErrMsg: String;
{$EndIf}
begin
if AHotKey.IsEmpty then
begin // No key set
UnregisterKey(AStringId);
Exit;
end;
DebugLn('Start to register hotkey %s for %s',
[AHotKey.ToString, AStringId]);
try
{$IfDef Windows}
// Find atom id
FullStrId := GetFullStringId(AStringId);
if KeysMap.IndexOf(AStringId) = -1 then
Id := GlobalAddAtom(PChar(FullStrId))
else
begin
if KeysMap.KeyData[AStringId] = AHotKey then
begin
DebugLn('Hotkey %s for %s not changed', [AHotKey.ToString, AStringId]);
Exit;
end;
Id := GlobalFindAtom(PChar(FullStrId));
end;
RegisterKey(Id, AHotKey);
{$EndIf}
{$IfDef Linux}
if (KeysMap.IndexOf(AStringId) <> -1) and (KeysMap.KeyData[AStringId] = AHotKey) then
begin
DebugLn('Hotkey %s for %s not changed', [AHotKey.ToString, AStringId]);
Exit;
end;
Res := HKCapture.RegisterNotify(AHotKey.Key, AHotKey.ShiftState, @OnHotKeyEvent);
if not Res then
begin
ErrMsg := Format('Failed to register hotkey %s for %s', [AHotKey.ToString, AStringId]);
raise EGlobalKeyHookRegistrationFailedException.Create(ErrMsg);
end;
{$EndIf}
except
on E: Exception do
begin
DebugLn({E.ToString} E.Message);
raise;
end
end;
KeysMap.AddOrSetData(AStringId, AHotKey);
{$IfDef Windows}
DebugLn('Hot key %s for %s registered with id=%d',
[AHotKey.ToString, AStringId, id]);
{$EndIf}
{$IfDef Linux}
DebugLn('Hot key %s for %s registered',
[AHotKey.ToString, AStringId]);
{$EndIf}
DebugLn('Total registered hot keys: %d', [KeysMap.Count]);
end;
procedure TGlobalKeyHook.UnregisterKey(const AStringId: String);
var
{$IfDef Windows}
FullStrId: String;
Id: Integer;
{$EndIf}
{$IfDef Linux}
HotKey: THotKey;
{$EndIf}
begin
DebugLn('Start to unregister hotkey for %s', [AStringId]);
if KeysMap.IndexOf(AStringId) = -1 then
begin // Not registered yet
DebugLn('Warning: Hotkey for %s not found', [AStringId]);
Exit;
end;
{$IfDef Windows}
FullStrId := GetFullStringId(AStringId);
Id := GlobalFindAtom(PChar(FullStrId));
UnregisterKey(Id);
{$EndIf}
{$IfDef Linux}
HotKey := KeysMap.KeyData[AStringId];
HKCapture.UnregisterNotify(HotKey.Key, HotKey.ShiftState);
{$EndIf}
KeysMap.Remove(AStringId);
{$IfDef Windows}
DebugLn('Hot key for %s with id=%d unregistered', [AStringId, id]);
{$EndIf}
{$IfDef Linux}
DebugLn('Hot key for %s unregistered', [AStringId]);
{$EndIf}
DebugLn('Total registered hot keys: %d', [KeysMap.Count]);
end;
function TGlobalKeyHook.FindHotKey(const AStringId: String): THotKey;
begin
// Returns VK_UNKNOWN if hot key not found
KeysMap.TryGetData(AStringId, Result);
end;
{$IfDef Windows}
function TGlobalKeyHook.IdToStrId(AnId: Integer): String;
const
MaxLength = 255;
var
Buffer: array[0..MaxLength-1] of char;
Len: UINT;
begin
Len := GlobalGetAtomName(AnId, Buffer, MaxLength);
if (Len = 0) then
raise EGlobalKeyHookException.CreateFmt('Not found string id for id=%d', [AnId]);
Result := Buffer;
Result := GetShortStringId(Result);
end;
{$EndIf}
end.