Modularisierung weiter vorangetrieben
git-svn-id: https://svn.neo-layout.org@1093 b9310e46-f624-0410-8ea1-cfbb3a30dc96
This commit is contained in:
parent
e34a314d9a
commit
891e56d24c
5 changed files with 29 additions and 27 deletions
|
@ -40,7 +40,7 @@ echo removing old version(s) of NEO AHK Exe file
|
|||
del %srcdir%\neo20-r*.exe 2> nul
|
||||
|
||||
echo Compiling the new Driver using Autohotkey
|
||||
"%Ahk2Exe%" /in "neo20-vars.ahk" /out "%fn%.exe" /icon "%srcdir%\neo.ico"
|
||||
"%Ahk2Exe%" /in "neo20-all.ahk" /out "%fn%.exe" /icon "%srcdir%\neo.ico"
|
||||
|
||||
echo Driver Update complete! You can now close this log-window.
|
||||
pause
|
|
@ -118,3 +118,5 @@ EDN(pos1,pos2,caps,e1,e2,e3,e4,e5,e6) {
|
|||
ED1(pos,e1) {
|
||||
ED(pos,0,e1,e1,e1,e1,e1,e1)
|
||||
}
|
||||
|
||||
Comp := ""
|
||||
|
|
24
windows/neo-vars/neo20-all.ahk
Normal file
24
windows/neo-vars/neo20-all.ahk
Normal file
|
@ -0,0 +1,24 @@
|
|||
; Revision Information
|
||||
#Include %a_scriptdir%\_subwcrev.ahk
|
||||
|
||||
; die Compose-Definitionen
|
||||
#Include %a_scriptdir%\en_us.ahk
|
||||
#Include %a_scriptdir%\neocomp.ahk
|
||||
#Include %a_scriptdir%\neovarscomp.ahk
|
||||
|
||||
; Hier liegt die Tastaturbelegung
|
||||
#Include %a_scriptdir%\keydefinitions.ahk
|
||||
|
||||
; Shortcuts, um die Zeichen wieder sauber zur Applikation bringen zu können
|
||||
#Include %a_scriptdir%\shortcuts.ahk
|
||||
|
||||
; Good-old AHK-Skripts, enthalten die ersten Key-Hooks für Mod-Tasten
|
||||
; Achtung: Hinter dem ersten Keyboard-Hook werden keine globalen Variablen
|
||||
; mehr gesetzt!
|
||||
#Include %a_scriptdir%\recycle.ahk
|
||||
|
||||
; Normale Keyboard-Hooks
|
||||
#Include %a_scriptdir%\keyhooks.ahk
|
||||
|
||||
; Das Herz von neo20.ahk: die Tasten- und Zeichen-Behandlungsroutinen
|
||||
#Include %a_scriptdir%\varsfunctions.ahk
|
|
@ -3,6 +3,8 @@
|
|||
*******************
|
||||
*/
|
||||
|
||||
#MaxThreadsPerHotKey 4
|
||||
|
||||
EbeneAktualisieren()
|
||||
SetBatchLines -1
|
||||
SetCapsLockState Off
|
||||
|
|
|
@ -1,29 +1,3 @@
|
|||
#MaxThreadsPerHotKey 4
|
||||
|
||||
; Revision Information
|
||||
#Include %a_scriptdir%\_subwcrev.ahk
|
||||
|
||||
; die Compose-Definitionen
|
||||
#Include %a_scriptdir%\en_us.ahk
|
||||
#Include %a_scriptdir%\neocomp.ahk
|
||||
#Include %a_scriptdir%\neovarscomp.ahk
|
||||
|
||||
Comp := ""
|
||||
|
||||
; Hier liegt die Tastaturbelegung
|
||||
#Include %a_scriptdir%\keydefinitions.ahk
|
||||
|
||||
; Shortcuts, um die Zeichen wieder sauber zur Applikation bringen zu können
|
||||
#Include %a_scriptdir%\shortcuts.ahk
|
||||
|
||||
; Good-old AHK-Skripts, enthalten die ersten Key-Hooks für Mod-Tasten
|
||||
; Achtung: Hinter dem ersten Keyboard-Hook werden keine globalen Variablen
|
||||
; mehr gesetzt!
|
||||
#Include %a_scriptdir%\recycle.ahk
|
||||
|
||||
; Normale Keyboard-Hooks
|
||||
#Include %a_scriptdir%\keyhooks.ahk
|
||||
|
||||
AllStar(This_HotKey) {
|
||||
global
|
||||
PhysKey := This_HotKey
|
Loading…
Add table
Reference in a new issue