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
|
;*********************
; Anfangsbedingungen *
;*********************
name=Neo 2.0 (Erweiterung für nativen Treiber)
enable=Aktiviere %name%
disable=Deaktiviere %name%
#usehook on
#LTrim
; *** Benutze Bilder wennsie im aktuellen Verzeichnis vorhanden sind ***
if (FileExist("ebene1.png")&&FileExist("ebene2.png")&&FileExist("ebene3.png")&&FileExist("ebene4.png")&&FileExist("ebene5.png")&&FileExist("ebene6.png"))
zeigeBildschirmTastatur = 1
if (FileExist("neo_enabled.ico")&&FileExist("neo_disabled.ico"))
iconBenutzen=1
;*************************
; Menü des Systray-Icons *
;*************************
if (iconBenutzen)
menu,tray,icon,neo_enabled.ico,,1
menu,tray,nostandard
menu,tray,add,AHK öffnen,open
menu,helpmenu,add,Info,about
menu,helpmenu,add
menu,helpmenu,add,http://autohotkey.com/,autohotkey
menu,helpmenu,add,http://www.neo-layout.org/,neo
menu,tray,add,Hilfe,:helpmenu
menu,tray,add
menu,tray,add,%disable%,togglesuspend
menu,tray,add
menu,tray,add,Skript Bearbeiten,edit
menu,tray,add,Neu Laden,reload
menu,tray,add
menu,tray,add,Nicht im Systray anzeigen,hide
menu,tray,add,%name% beenden,exitprogram
menu,tray,default,%disable%
menu,tray,tip,%name%
;******************
; Initialisierung *
;******************
isShiftRPressed := 0
isShiftLPressed := 0
isShiftPressed := 0
isMod2Locked := 0
isMod3RPressed := 0
isMod3LPressed := 0
isMod3Pressed := 0
isMod4RPressed := 0
isMod4LPressed := 0
isMod4Pressed := 0
isMod4Locked := 0
isMod4Active := 0
;***********************
; Fehlende Funktionen *
;***********************
; *** benötigte Modifier werden gehookt ***
~*SC136::
if (isShiftLPressed and !isShiftRPressed)
ToggleMod2Lock()
isShiftRPressed := 1
isShiftPressed := 1
return
~*SC136 up::
isShiftRPressed := 0
isShiftPressed := isShiftLPressed
return
~*SC02A::
if (isShiftRPressed and !isShiftLPressed)
ToggleMod2Lock()
isShiftLPressed := 1
isShiftPressed := 1
return
~*SC02A up::
isShiftLPressed := 0
isShiftPressed := isShiftRPressed
return
~*SC02B::
isMod3RPressed := 1
isMod3Pressed := 1
return
~*SC02B up::
isMod3RPressed := 0
isMod3Pressed := isMod3LPressed
return
~*SC03A::
isMod3LPressed := 1
isMod3Pressed := 1
return
~*SC03A up::
isMod3LPressed := 0
isMod3Pressed := isMod3RPressed
return
~*SC138::
if (isMod4LPressed and !isMod4RPressed)
ToggleMod4Lock()
isMod4RPressed := 1
isMod4Pressed := 1
doMod4()
return
~*SC138 up::
isMod4RPressed := 0
isMod4Pressed := isMod4LPressed
doMod4()
return
~*SC056::
if (isMod4RPressed and !isMod4LPressed)
ToggleMod4Lock()
isMod4LPressed := 1
isMod4Pressed := 1
doMod4()
return
~*SC056 up::
isMod4LPressed := 0
isMod4Pressed := isMod4RPressed
doMod4()
return
; *** Welcher Modifier ist aktiv und CapsLock und Mod4Lock ***
ToggleMod2Lock() {
global
if (isMod2Locked)
{
isMod2Locked := 0
SetCapslockState off
}
else
{
isMod2Locked := 1
SetCapslockState on
}
}
ToggleMod4Lock() {
global
if (isMod4Locked)
{
isMod4Locked := 0
send {vk15}
}
else
{
isMod4Locked := 1
send {vk15}
}
}
doMod4() {
global
if (isMod4Locked)
{
if (isMod4Pressed)
isMod4Active := 0
else
isMod4Active := 1
}
else
{
if (isMod4Pressed)
isMod4Active := 1
else
isMod4Active := 0
}
}
; *** Funktionstasten ***
~*x::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{PGUP}
return
~*v::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{BACKSPACE}
return
~*l::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{UP}
return
~*c::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{DEL}
return
~*w::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{PGDN}
return
~*u::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{HOME}
return
~*i::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{LEFT}
return
~*a::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{DOWN}
return
~*e::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{RIGHT}
return
~*o::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{END}
return
~*ü::
if (isMod4Active and !isMod3Pressed)
Send {esc}
return
~*ö::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{TAB}
return
~*ä::
if (isMod4Active and !isMod3Pressed)
Send {Blind}{INS}
return
~*p::
if (isMod4Active and !isMod3Pressed)
Send {ENTER}
return
~*z::
if (isMod4Active and !isMod3Pressed)
Send ^z
return
;*****************
; Menüfunktionen *
;*****************
togglesuspend:
if A_IsSuspended {
menu,tray,rename,%enable%,%disable%
menu,tray,tip,%name%
if (iconBenutzen)
menu,tray,icon,neo_enabled.ico,,1
suspend,off ; Schaltet Suspend aus
} else {
menu,tray,rename,%disable%, %enable%
menu,tray,tip,%name% : Deaktiviert
if (iconBenutzen)
menu,tray,icon,neo_disabled.ico,,1
suspend,on ; Schaltet Suspend ein
} return
about:
msgbox, 64, NEO 2.0 – Ergonomische Tastaturbelegung,
(
%name%
`nDas Neo-Layout ist ein alternatives deutsches Tastaturlayout
Näheres finden Sie unter http://neo-layout.org/.
`nDieses Skript erweitert den nativen Tastaturtreiber um
einige fehlende Funktionen.
)
return
neo:
run http://neo-layout.org/
return
autohotkey:
run http://autohotkey.com/
return
open:
ListLines ; shows the Autohotkey window
return
edit:
edit
return
reload:
Reload
return
hide:
menu, tray, noicon
return
exitprogram:
exitapp
return
;*********************
; BildschirmTastatur *
;*********************
guiErstellt = 0
alwaysOnTop = 1
*F1::
if (isMod4Pressed&&zeigeBildschirmTastatur)
goto Switch1
else send {blind}{F1}
return
*F2::
if (isMod4Pressed&&zeigeBildschirmTastatur)
goto Switch2
else send {blind}{F2}
return
*F3::
if (isMod4Pressed&&zeigeBildschirmTastatur)
goto Switch3
else send {blind}{F3}
return
*F4::
if (isMod4Pressed&&zeigeBildschirmTastatur)
goto Switch4
else send {blind}{F4}
return
*F5::
if (isMod4Pressed&&zeigeBildschirmTastatur)
goto Switch5
else send {blind}{F5}
return
*F6::
if (isMod4Pressed&&zeigeBildschirmTastatur)
goto Switch6
else send {blind}{F6}
return
*F7::
if (isMod4Pressed&&zeigeBildschirmTastatur)
goto Show
else send {blind}{F7}
return
*F8::
if (isMod4Pressed&&zeigeBildschirmTastatur)
goto ToggleAlwaysOnTop
else send {blind}{F8}
return
Switch1:
tImage := "ebene1.png"
goto Switch
Return
Switch2:
tImage := "ebene2.png"
goto Switch
Return
Switch3:
tImage := "ebene3.png"
goto Switch
Return
Switch4:
tImage := "ebene4.png"
goto Switch
Return
Switch5:
tImage := "ebene5.png"
goto Switch
Return
Switch6:
tImage := "ebene6.png"
goto Switch
Return
Switch:
if guiErstellt {
if (Image = tImage)
goto Close
else {
Image := tImage
SetTimer, Refresh
}
} else {
Image := tImage
goto Show
}
Return
Show:
if guiErstellt {
goto Close
} else {
if (Image = "") {
Image := "ebene1.png"
}
yPosition := A_ScreenHeight -270
Gui,Color,FFFFFF
Gui,Add,Button,xm+5 gSwitch1,F1
Gui,Add,Button,xm+5 gSwitch2,F2
Gui,Add,Button,xm+5 gSwitch3,F3
Gui,Add,Button,xm+5 gSwitch4,F4
Gui,Add,Button,xm+5 gSwitch5,F5
Gui,Add,Button,xm+5 gSwitch6,F6
Gui,Add,Button,xm+5 gShow,F7
Gui,Add,Text,x+5,An /
Gui,Add,Text,y+3,Aus
Gui,Add,Button,x+10 y+-30 gShow,F8
Gui,Add,Text,x+5,OnTop
Gui,Add,Picture,AltSubmit ys w729 h199 vPicture,%Image%
Gui,+AlwaysOnTop
Gui,Show,y%yposition% Autosize
guiErstellt = 1
}
Return
Close:
guiErstellt = 0
Gui,Destroy
Return
Refresh:
If (Image != OldImage) {
GuiControl,,Picture,%Image%
OldImage := Image
}
Return
ToggleAlwaysOnTop:
if alwaysOnTop {
Gui, -AlwaysOnTop
alwaysOnTop = 0
} else {
Gui, +AlwaysOnTop
alwaysOnTop = 1
}
Return
|