summaryrefslogtreecommitdiff
path: root/windows/neo-vars/src/source/varsfunctions.ahk
diff options
context:
space:
mode:
authormösi <mösi@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-11-19 13:08:16 +0000
committermösi <mösi@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-11-19 13:08:16 +0000
commit37392f30fe099e1d98a4e80005a1fa7aef465c5b (patch)
tree31778048be06c5debf5ec62a74dc49c1fed94caa /windows/neo-vars/src/source/varsfunctions.ahk
parent6c102b7c550812d1aa1fbb6b6d75d2e8caf9c9f0 (diff)
downloadneo-layout-37392f30fe099e1d98a4e80005a1fa7aef465c5b.tar.gz
neo-layout-37392f30fe099e1d98a4e80005a1fa7aef465c5b.tar.bz2
neo-layout-37392f30fe099e1d98a4e80005a1fa7aef465c5b.zip
• Es wird jetzt davon ausgegangen, dass Bildschirmtastatur und Icons eingebunden werden. Entsprechende Konfigurationskonstanten wurden entfernt.
• Alle Funktionstasten werden jetzt gehookt (und stehen damit dem Einhandmodus und möglichen Compose-Sequenzen zur Verfügung) • Mod4+F1 wird jetzt auch über die normalen KeyHooks abgewickelt • git-svn-id: https://svn.neo-layout.org@1223 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'windows/neo-vars/src/source/varsfunctions.ahk')
-rw-r--r--windows/neo-vars/src/source/varsfunctions.ahk17
1 files changed, 17 insertions, 0 deletions
diff --git a/windows/neo-vars/src/source/varsfunctions.ahk b/windows/neo-vars/src/source/varsfunctions.ahk
index 4fe1195..e0fded9 100644
--- a/windows/neo-vars/src/source/varsfunctions.ahk
+++ b/windows/neo-vars/src/source/varsfunctions.ahk
@@ -268,6 +268,13 @@ CharProc(subroutine) {
}
} else if (subroutine == "_EH1") {
; Einhand-NEO aktivieren
+ ; Funktionstasten
+ TKEH_F7 := "F6" ; F7 -> F6
+ TKEH_F8 := "F5" ; F8 -> F5
+ TKEH_F9 := "F4" ; F9 -> F4
+ TKEH_F10 := "F3" ; F10 -> F3
+ TKEH_F11 := "F2" ; F11 -> F2
+ TKEH_F12 := "F1" ; F12 -> F1
; Reihe 1
TKEH_VK37SC008 := "VK36SC007" ; 7 -> 6
TKEH_VK38SC009 := "VK35SC006" ; 8 -> 5
@@ -300,6 +307,13 @@ CharProc(subroutine) {
ED("EHSpace",0,"U0020","U0020","U0020","SN__0","U00A0","U202F")
} else if (subroutine == "_EH0") {
; Einhand-NEO deaktivieren
+ ; Funktionstasten
+ TKEH_F7 := "" ; F7
+ TKEH_F8 := "" ; F8
+ TKEH_F9 := "" ; F9
+ TKEH_F10 := "" ; F10
+ TKEH_F11 := "" ; F11
+ TKEH_F12 := "" ; F12
; Reihe 1
TKEH_VK37SC008 := "" ; 7
TKEH_VK38SC009 := "" ; 8
@@ -402,6 +416,9 @@ CharProc(subroutine) {
; Mod2Lock Toggle
ToggleMod2Lock()
EbeneAktualisieren()
+ } else if (subroutine == "BSTt") {
+ ; Bildschirmtastatur Ein/Aus
+ BSTToggle()
}
}