neo-layout/windows/neo-vars/src/langstastatur.ahk

67 lines
1.7 KiB
AutoHotkey
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

; -*- encoding: utf-8 -*-
IniRead,LangSTastatur,%ini%,Global,LangSTastatur,0
If (LangSTastatur)
CharProc__LnS1()
CP3F11 := "P__LnSt"
CharProc__LnSt() {
global
; Nur aktivieren, wenn kein Qwertz aktiv ist
;if (isQwertz) {
; TrayTip,Lang-S-Tastatur,Die Lang-S-Belegungsvariante kann nicht im QWERTZ-Modus aktiviert werden.,10,1
; Return
;}
;Lang-s-Tastatur: Toggle
LangSTastatur := !(LangSTastatur)
if (LangSTastatur) {
CharProc__LnS1()
if (zeigeModusBox)
TrayTip,Lang-S-Tastatur,Die Lang-S-Belegungsvariante wurde aktiviert. Zum Deaktivieren`, Mod3+F11 drücken.,10,1
} else {
CharProc__LnS0()
if (zeigeModusBox)
TrayTip,Lang-S-Tastatur,Lang-S-Belegungsvariante wurde deaktiviert.,10,1
}
}
CharProc__LnS1() {
global
; Lange-s-Tastatur aktivieren
spos := InStr(layoutstring, "s")
eszettpos := InStr(layoutstring, "ß")
; ſ, s und ß zyklisch vertauschen auf den drei Positionen
scpos := LOSP%spos%
pos := vksc%scpos%
SetKeyPos("CP1" . pos, util_char2UCode("ſ"))
scpos := LOSP%eszettpos%
pos := vksc%scpos%
SetKeyPos("CP1" . pos, util_char2UCode("s"))
pos := vksc01A
SetKeyPos("CP3" . pos, util_char2UCode("ß"))
}
CharProc__LnS0() {
global
; Lange-s-Tastatur deaktivieren
spos := InStr(layoutstring, "s")
eszettpos := InStr(layoutstring, "ß")
; ſ, s und ß wieder auf die Originalpositionen setzen
scpos := LOSP%spos%
pos := vksc%scpos%
SetKeyPos("CP1" . pos, util_char2UCode("s"))
scpos := LOSP%eszettpos%
pos := vksc%scpos%
SetKeyPos("CP1" . pos, util_char2UCode("ß"))
pos := vksc01A
SetKeyPos("CP3" . pos, util_char2UCode("ſ"))
}