-
Notifications
You must be signed in to change notification settings - Fork 14
/
HotkeyR.ahk
578 lines (386 loc) · 11.5 KB
/
HotkeyR.ahk
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
#SingleInstance, Force
#NoTrayIcon
#include <Optimize>
#include <SerDes>
#include <RunAsAdmin>
#include <_HtmlWindow>
#include <_ShellRunEx>
#include <_GetWindowList>
#include <_GetWindowIcon>
RunAsAdmin()
; Thread, interrupt, 0 ; IMPORTANT: Make all threads always-interruptible
Suspend On ; Disable all hotkeys by default
SetWorkingDir %A_ScriptDir%
SetCapsLockState, AlwaysOff
BEEP_FILE = %A_ScriptDir%\Resources\Beep.wav
APP_NAME = HotkeyR
TEMP_FOLDER = %A_Temp%\HotkeyR
FileCreateDir % TEMP_FOLDER
FileDelete %TEMP_FOLDER%\*.ico
; msgbox % TEMP_FOLDER
g_lastActivatedHwnd := {}
g_hotkeyProgramMap := {}
g_keyList := "a b c d e f g h i j k l m n o p q r s t u v w x y z 0 1 2 3 4 5 6 7 8 9 f1 f2 f3 f4 f5 f6 f7 f8 f9 f10 f11 f12 space"
g_iconCache := {}
loadConfig()
; If the script is run with 1 parameter
if 0 = 1
{
path = %1%
InputBox, htk, Please input a hotkey:
if ErrorLevel <> 0
return
}
onNewHotkeyTriggered()
{
global INI_FILE
htk := "#" SubStr(A_ThisHotkey, StrLen(A_ThisHotkey), 1)
WinGet, exePath, ProcessPath, A
MsgBox, 4, , Set %htk% = %exePath% ?
IfMsgBox Yes
{
IniWrite, %exePath%, %INI_FILE%, Hotkey, %htk%
Run % A_ScriptFullPath
}
}
for i, v in g_config
{
keyList := v.hotkey
StringLower, keyList, keyList
keyList := StrSplit(keyList, "+")
key =
htkInfo := {index: i, modifiers: []}
for i, v in keyList {
if (v = "shift" || v = "ctrl" || v = "alt") {
htkInfo.modifiers.Push(v)
} else {
key := v
}
}
g_hotkeyProgramMap[key] := htkInfo
}
; Setup hotkeys
Loop, Parse, g_keyList, %A_Tab%%A_Space%
{
keyName := A_LoopField
StringLower, keyName, keyName
Hotkey, *$%keyName%, onKeyPressed
}
onKeyPressed()
{
global g_lastActivatedHwnd
global g_winList
global g_hotkeyProgramMap
global g_lastKeyPressed
; Get current pressed key name
keyName := A_ThisHotkey
StringReplace, keyName, keyName, $
StringReplace, keyName, keyName, *
StringReplace, keyName, keyName, ~
if not GetKeyState("CapsLock", "P") ; Get physical state
{
SendEvent {Blind}{%keyName%}
return
}
htkInfo := g_hotkeyProgramMap[keyName]
if (htkInfo) {
; Check modifiers
matchModifiers := True
for i, v in htkInfo.modifiers {
matchModifiers := matchModifiers && GetKeyState(v)
}
if (matchModifiers) {
Run(htkInfo.index)
return
}
}
g_lastKeyPressed := keyName
lastActivatedHwnd := g_lastActivatedHwnd[keyName]
; Skip current window
WinGet, curHwnd, ID, A ; Get hwnd of active window
if (lastActivatedHwnd
and WinExist("ahk_id " lastActivatedHwnd)
and lastActivatedHwnd <> curHwnd)
{
activateWnd(lastActivatedHwnd)
}
else
{
; Find index of last activated window
i := 0
if (lastActivatedHwnd)
{
for j, v in g_winList
{
if (lastActivatedHwnd = v.hwnd)
{
i := j
break
}
}
}
; Activate next window for current hotkey
loop % g_winList.Length()
{
; Go to next window
i := Mod(i, g_winList.Length()) + 1
v := g_winList[i]
; ToolTip % i
if ( SubStr(v.processName, 1, 1) = keyName
and WinExist("ahk_id " v.hwnd) )
{
activateWnd(v.hwnd)
g_lastActivatedHwnd[keyName] := v.hwnd
break
}
}
}
}
; Play beep sound
SoundPlay %BEEP_FILE%
return
~LButton & WheelUp::
Suspend, Permit
SoundSet +10
SoundPlay %BEEP_FILE%
return
~LButton & WheelDown::
Suspend, Permit
SoundSet -10
SoundPlay %BEEP_FILE%
return
#F4::
Suspend, Permit
WinGet, pid, PID, A
Process, Close, %pid%
SoundPlay %BEEP_FILE%
return
Run(index)
{
global BEEP_FILE
global g_config
; Activate by window title
winTitle := g_config[index].winTitle
if (winTitle and activateWindowByTitle(winTitle))
return
; Activate by image name
exePath := g_config[index].exePath
SplitPath, exePath, fileName, workingDir, , , drive
if activateWindowByTitle("ahk_exe " fileName)
return
; Absolute working dir
if RegExMatch(workingDir, "^\\?[^\/:*?""<>|\r\n%]+\\?$")
workingDir = %A_ScriptDir%\%workingDir%
ShellRunEx(exePath, workingDir)
SoundPlay %BEEP_FILE%
}
activateWindowByTitle(winTitle)
{
reason =
WinGet, hwnds, List, %winTitle%
loop % hwnds
{
hwnd := hwnds%A_Index%
winGet, style, Style, ahk_id %hwnd%
; Skip unimportant window
if (style & WS_DISABLED)
continue
; Skip window with no title
winGetTitle, winTitle, ahk_id %hwnd%
if (!winTitle)
continue
; Skip active window
if (WinActive("ahk_id " hwnd))
{
reason := "ACTIVATED"
continue
}
winActivate ahk_id %hwnd%
; winMaximize ahk_id %hwnd%
return "SUCCESS"
}
return reason
}
getCfgFileName()
{
SplitPath, A_ScriptName, , , , configFile
configFile := A_ScriptDir . "\" . configFile . ".json"
return configFile
}
saveConfig()
{
global g_config
configFile := getCfgFileName()
SerDes(g_config, configFile, "`t")
}
loadConfig()
{
global g_config
configFile := getCfgFileName()
FileRead, json, %configFile%
g_config := SerDes(json)
}
toggleTop(hwnd)
{
global g_webBrowser
w := g_webBrowser.document.parentWindow
WinGet, ExStyle, ExStyle, ahk_id %hwnd%
if (ExStyle & 0x8) { ; 0x8 is WS_EX_TOPMOST
WinSet, AlwaysOnTop, Off, ahk_id %hwnd%
w.jQuery("#tr_" hwnd " .topmost-btn").removeClass("red lighten-2").addClass("grey lighten-3")
} else {
WinSet, AlwaysOnTop, On, ahk_id %hwnd%
w.jQuery("#tr_" hwnd " .topmost-btn").removeClass("grey lighten-3").addClass("red lighten-2")
}
}
activateWnd(hwnd)
{
WinActivate, ahk_id %hwnd%
updateUI(hwnd)
}
onWindowSelected(hwnd)
{
global g_lastKeyPressed
g_lastKeyPressed =
activateWnd(hwnd)
}
updateUI(hwnd) {
global g_webBrowser
global g_lastKeyPressed
global g_winList
; Remove active window class name from previous active window
trList := g_webBrowser.document.getElementsByTagName("tr")
Loop, % trList.length {
trList[A_Index-1].className := ""
}
if (g_lastKeyPressed) {
; Highlight specified key
for i, v in g_winList
{
; If the window starts with keyName
if (SubStr(v.processName, 1, 1) = g_lastKeyPressed) {
g_webBrowser.document.getElementById("tr_" v.hwnd).className := "highlight-orange"
}
}
}
g_webBrowser.document.getElementById("tr_" hwnd).className := "activeWindow"
}
$*CapsLock::
Suspend, Permit ; Mark the current subroutine as being exempt from suspension
{
; HACK: sometimes caps lock has been turned on
SetCapsLockState, AlwaysOff
if ( not hw_isReady() ) {
KeyWait, CapsLock
return
}
Critical
g_winList := getWindowList()
Suspend, Off ; Enable all hotkeys
Critical Off
g_lastKeyPressed =
updateTbody()
sleep 10
; hw_height := g_webBrowser.document.body.offsetHeight
; if (hw_height > 600) {
; hw_height := 600
; }
; hw_height := 600
hw_show()
SetTimer, onTimer, 500
; Extract Icons
for i, v in g_winList
{
if (GetKeyState("CapsLock", "P") = 0)
break
if g_iconCache.HasKey(v.hwnd)
continue
iconFile := "icon_" v.hwnd ".ico"
SaveWindowIcon( v.hwnd, TEMP_FOLDER "\" iconFile )
g_webBrowser.document.getElementById("icon_" v.hwnd).src := TEMP_FOLDER "\" iconFile
g_iconCache[v.hwnd] := TEMP_FOLDER "\" iconFile
}
; TODO: remove nonexistent icon cache
KeyWait CapsLock
Suspend, On
SetTimer, onTimer, Off
hw_hide()
}
return
WheelUp::scrollPage(1)
WheelDown::scrollPage(-1)
; XXX
; https://gist.github.com/be5invis/6571037
scrollPage(delta)
{
global GuiHwnd
ControlGet, hwndTopControl, Hwnd,,, ahk_id %GuiHwnd%
WHEEL_DELTA := (120 << 16) * delta
WinGetPos, x, y, width, height, ahk_id %GuiHwnd%
mX := x + width / 2
mY := y + height / 2
PostMessage, 0x20A, WHEEL_DELTA, (mY << 16) | mX,,% "ahk_id " hwndTopControl
}
exitApp()
{
ExitApp
}
aboutApp()
{
SetTimer, onTimer, Off
text =
( LTrim
HotkeyR
version 1.0
The MIT License
Copyright (c) 2017 Ross Ning
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
)
MsgBox, 4096, About, % text
}
updateTbody() {
global GuiHwnd
global g_winList
global g_iconCache
global g_webBrowser
global TEMP_FOLDER
; Update web page
tbody =
for i, v in g_winList {
if (v.hwnd = GuiHwnd) {
continue
}
key := SubStr(v.processName, 1, 1)
StringUpper, key, key
hwnd := v.hwnd
; msgbox % hwnd
processName := v.processName
title := v.title
toggleTopColor := v.onTop ? "red lighten-2" : "grey lighten-3"
if g_iconCache.HasKey(hwnd)
iconSrc = %TEMP_FOLDER%\icon_%hwnd%.ico
else
iconSrc = images/loading-spinner-grey.gif
activeWindow := v.isActive ? "activeWindow" : ""
row =
(
<tr id="tr_%hwnd%" onclick="AHK('onWindowSelected', '%hwnd%')" class="%activeWindow%">
<td><img class="icon" id="icon_%hwnd%" src="%iconSrc%"></td>
<td><span class="key">%key%</span></td>
<td>%processName%</td>
<td class="winTitle">%title%</td>
<td><a class="topmost-btn btn-flat %toggleTopColor%" onclick="AHK('toggleTop', '%hwnd%')"><i class="material-icons">vertical_align_top</i></a></td>
</tr>
)
tbody .= row
}
g_webBrowser.document.getElementById("tbody").innerHTML := tbody
}
onTimer() {
global GuiHwnd
; Reset AlwaysOnTop to keep HotkeyR front most
WinSet, AlwaysOnTop, On, ahk_id %GuiHwnd%
}