-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcapslock++.ahk
361 lines (316 loc) · 6.28 KB
/
capslock++.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
;#InstallKeybdHook
;---------
SetCapsLockState, AlwaysOff
Process Priority,,High
SetWinDelay, 0
SetKeyDelay, 0
SendMode, Input
CoordMode, Caret
CoordMode, ToolTip
CoordMode, Mouse
global Hyper, Flag, HyperAlt,HyperWin
Menu, Tray, Icon, hyper.ico, , 1
Menu, Tray, NoStandard
Menu, Tray, add, Capslock++, OpenGithub
Menu, Tray, add
Menu, Tray, add, Open Directory, OpenScriptDir
Menu, Tray, Default, Open Directory
Menu, Tray, add, Edit Settings, EditSettings
Menu, Tray, add, Edit SwitchSettings, EditSwitchSettings
Menu, Tray, add, Reset All Settings, ResetSettings
Menu, Tray, add, Reload, HyperReload
Menu, Tray, add
Menu, Tray, add, Disable On Full Screen, ToggleDisableOnFullScreen
Menu, Tray, add, Run As Admin, RunAsAdmin
Menu, MsgLevel, add, Debug, SetMsgLevel
Menu, MsgLevel, add, Normal, SetMsgLevel
Menu, MsgLevel, add, WarnOnly, SetMsgLevel
Menu, MsgLevel, add, Disable, SetMsgLevel
Menu, MsgLevel, add
Menu, MsgLevel, add, Disable On Full Screen, SetMsgLevel
Menu, Tray, add
Menu, Tray, add, Message Level, :MsgLevel
Menu, defaultmenu, Standard
Menu, Tray, add
Menu, Tray, add, AutoHotkey, :defaultmenu
SetTimer, TrayMenuRefresh, 250
#Include lib/Settings.ahk
return
OpenGithub:
run https://github.com/matrix1001/capslock-plus-plus
return
OpenScriptDir:
run %A_ScriptDir%
return
EditSettings:
run HyperSettings.ini
return
EditSwitchSettings:
run HyperSwitchSettings.ini
return
ResetSettings:
msgbox 0x124, Capslock++, Are you sure to reset all settings?
IfMsgBox, Yes
{
FileDelete, HyperSettings.ini
FileDelete, HyperSwitchSettings.ini
HyperReload()
}
return
ToggleDisableOnFullScreen:
HyperSettings.Basic.DisableOnFullScreen := (HyperSettings.Basic.DisableOnFullScreen = 0) ? 1:0
return
RunAsAdmin:
if not A_IsAdmin ;running by administrator
{
Run *RunAs "%A_ScriptFullPath%"
ExitApp
}
return
SetMsgLevel:
if StrEq(A_ThisMenuItem, "Disable")
{
HyperSettings.Notify.MsgLevel := 3
}
if StrEq(A_ThisMenuItem, "WarnOnly")
{
HyperSettings.Notify.MsgLevel := 2
}
if StrEq(A_ThisMenuItem, "Normal")
{
HyperSettings.Notify.MsgLevel := 1
}
if StrEq(A_ThisMenuItem, "Debug")
{
HyperSettings.Notify.MsgLevel := 0
}
if StrEq(A_ThisMenuItem, "Disable On Full Screen")
{
HyperSettings.Notify.DisableOnFullScreen := (HyperSettings.Notify.DisableOnFullScreen = 0) ? 1:0
}
return
TrayMenuRefresh()
{
; tray tip
stat := GetStatus()
if (A_IsSuspended = 1)
content := "Capslock++`nSuspended`n"
else if (HyperSettings.RunTime.ScriptChange + HyperSettings.RunTime.SettingChange = 0)
content := "Capslock++`nRunning`n"
else
content := "Capslock++`nRunning (Reload needed)`n"
for key, val in stat
{
content .= Format("{:-20}: {:-}`n", key, val)
}
content := SubStr(content, 1, -1)
Menu, Tray, Tip, %content%
; message level
Menu, MsgLevel, UnCheck, Disable
Menu, MsgLevel, UnCheck, WarnOnly
Menu, MsgLevel, UnCheck, Normal
Menu, MsgLevel, UnCheck, Debug
Menu, MsgLevel, UnCheck, Disable On Full Screen
Menu, Tray, UnCheck, Disable On Full Screen
Menu, Tray, UnCheck, Run As Admin
if (HyperSettings.Notify.MsgLevel = 0)
Menu, MsgLevel, Check, Debug
if (HyperSettings.Notify.MsgLevel = 1)
Menu, MsgLevel, Check, Normal
if (HyperSettings.Notify.MsgLevel = 2)
Menu, MsgLevel, Check, WarnOnly
if (HyperSettings.Notify.MsgLevel = 3)
Menu, MsgLevel, Check, Disable
if (HyperSettings.Notify.DisableOnFullScreen = 1)
Menu, MsgLevel, Check, Disable On Full Screen
if (HyperSettings.Basic.DisableOnFullScreen = 1)
Menu, Tray, Check, Disable On Full Screen
if (A_IsAdmin = 1)
Menu, Tray, Check, Run As Admin
}
GetStatus()
{
stat := {"StartTime":HyperSettings.RunTime.StartTime}
if (HyperSettings.RunTime.DoubleClickTrans = 1)
stat["DoubleClickTrans"] := "enable"
else
stat["DoubleClickTrans"] := "disable"
stat["MessageLevel"] := HyperSettings.Notify.MsgLevel
return stat
}
;-----------CapsLock key setting----------
!Esc::
Suspend, Permit
if %A_IsSuspended%
{
Suspend
SetCapsLockState, AlwaysOff
InfoMsg("Enable the script")
Menu, Tray, Icon, hyper.ico, , 1
}
else
{
InfoMsg("Suspend the script")
SetCapsLockState, Off
Menu, Tray, Icon, hyper-suspend.ico, , 1
Suspend
}
return
Capslock::
if (HyperSettings.Basic.DisableOnFullScreen = 1 && IsWindowFullScreen("A") && not IsDesktop("A"))
Hyper := 0
else
{
name := GetWindowName("A")
if (name in HyperSettings.Ignore && HyperSettings.Ignore[name])
Hyper := 0
else
Hyper := 1
}
Flag := 0
HyperAlt := 0
HyperWin := 0
KeyWait, Capslock
Hyper := 0
if (Flag = 0)
{
Send {Esc}
}
Return
;------------Key to func-------
#If Hyper = 1
lalt::
HyperAlt := 1
return
lwin::
HyperWin := 1
return
a::
b::
c::
d::
e::
f::
g::
h::
i::
j::
k::
l::
n::
m::
o::
p::
q::
r::
s::
t::
u::
v::
w::
x::
y::
z::
1::
2::
3::
4::
5::
6::
7::
8::
9::
0::
esc::
f1::
f2::
f3::
f4::
f5::
f6::
f7::
f8::
f9::
f10::
f11::
f12::
backspace::
space::
tab::
enter::
`::
-::
=::
[::
]::
\::
`;::
'::
,::
.::
/::
rwin::
lshift::
rshift::
lctrl::
rctrl::
ralt::
left::
right::
up::
down::
wheelup::
wheeldown::
Critical ; use this to make thread uninterruptable
key := A_ThisHotkey
; SPEC_KEYS := "``-=[]\;',./"
SPEC_KEY_TO_NAME := {"``":"backquote","-":"minus","=":"equal","[":"lbracket","]":"rbracket"
,"\":"backslash",";":"semicolon","'":"quote",",":"comma",".":"dot","/":"slash"}
if SPEC_KEY_TO_NAME.haskey(key)
{
keyname := SPEC_KEY_TO_NAME[key]
}
else
{
keyname := key
}
if (HyperAlt = 1)
{
keyname := "alt_" . keyname
}
else if (HyperWin = 1)
{
keyname := "win_" . keyname
}
keyname := "hyper_" . keyname
func_name := HyperSettings.Keymap[keyname]
try
{
DebugMsg(Format("Key:{}`nFunc:{}", keyname, func_name))
RunThreadedFunc(func_name)
}
catch e
{
ErrorMsg(e, Format("Key:{}`nFunc:{}", keyname, func_name))
}
Flag := 1
Return
#If
;---------other key util
~*LButton::
c := HotKeyCounter(200)
if c=2
{
keyname := "hyper_" . "double_click"
func_name := HyperSettings.Keymap[keyname]
DebugMsg(Format("Key:{}`nFunc:{}", keyname, func_name))
RunThreadedFunc(func_name)
}
return
!z::
; content := GetSelText()
; if (content = "")
; msgbox empty
; else
; msgbox % content
return