summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorstmayer <stmayer@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-06-14 20:31:51 +0000
committerstmayer <stmayer@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2008-06-14 20:31:51 +0000
commit22a40cd432399afeb3d41b7af2a61471624b728f (patch)
treea5fb9d0656605da441783867752537ea13ee8c4f
parent1ae6fb0f9562cca1849d1ca20688655c360988ae (diff)
ahk: Mod3-Lock, Neo-Icon im Systray moeglich (siehe readme)
git-svn-id: https://svn.neo-layout.org@528 b9310e46-f624-0410-8ea1-cfbb3a30dc96
-rw-r--r--windows/autohotkey/README.txt6
-rw-r--r--windows/autohotkey/neo.icobin0 -> 4286 bytes
-rw-r--r--windows/autohotkey/neo20-all-in-one.ahk90
-rw-r--r--windows/autohotkey/neo20-all-in-one.exebin223422 -> 227184 bytes
-rw-r--r--windows/autohotkey/neo_disabled.icobin0 -> 4286 bytes
5 files changed, 80 insertions, 16 deletions
diff --git a/windows/autohotkey/README.txt b/windows/autohotkey/README.txt
index 6742353..e8e9176 100644
--- a/windows/autohotkey/README.txt
+++ b/windows/autohotkey/README.txt
@@ -28,6 +28,12 @@ das Skript vorübergehend deaktivieren (Suspend) oder komplett beenden kann.
Wenn das Öffnen nicht direkt funktioniert: Öffnen mit -> Autohotkey.exe
auswählen -> Immer mit diesem Programm öffnen.
+=== Icon ===
+Will man ein spezielles Neo-Icon in der Taskleiste, kann man einfach die beiden
+Dateien neo.ico und neo_disabled.ico in den Ordner kopieren, in dem sich die
+neo20-all-in-one.ahk befindet. Danach im ahk-Skript bei den globalen Schaltern
+den Schalter für das Icon auf 1 setzen und das Skript (neu) starten.
+
=== Automatischer Start ===
Bei Bedarf kann man sich eine Verknüpfung mit neo20-all-in-one.ahk in den
Autostart-Ordner legen, dann hat man die Belegung direkt bei der Anmeldung.
diff --git a/windows/autohotkey/neo.ico b/windows/autohotkey/neo.ico
new file mode 100644
index 0000000..c3ca547
--- /dev/null
+++ b/windows/autohotkey/neo.ico
Binary files differ
diff --git a/windows/autohotkey/neo20-all-in-one.ahk b/windows/autohotkey/neo20-all-in-one.ahk
index 610a8c5..9a810ed 100644
--- a/windows/autohotkey/neo20-all-in-one.ahk
+++ b/windows/autohotkey/neo20-all-in-one.ahk
@@ -14,8 +14,15 @@
Ideen: - Symbol ändern (Neo-Logo abwarten)
- bei Ebene 4 rechte Hand (Numpad) z.B. Numpad5 statt 5 senden
- CHANGEHISTORY:
- Aktuelle Reversion (von Matthias Berg):
+ CHANGEHISTORY:
+ Aktuelle Revision (von Matthias Berg):
+ - Neo-Icon
+ - Neo-Prozess jetzt automatisch auf hoher Prioritaet
+ (siehe globale Schalter)
+ - Mod3-Lock (nur wenn rechtes Mod3 zuerst gedrückt wird, andere Lösung führte zum Caps-Bug)
+ - Mod4-Lock (nur wenn das linke Mod4 zuerst gedrückt wird, andere Lösung fühte zum AltGr-Bug)
+ - Ein paar falsche Zeichen korrigiert
+ Revision 527 (von Matthias Berg):
- AltGr Problem hoffentlich behoben
- Umschalt+Mod4 Bug behoben
Revision 526 (von Matthias Berg):
@@ -56,6 +63,9 @@
; Sollen Ebenen 1-4 ignoriert werden? (kann z.B. vom dll Treiber übernommen werden) Ja = 1, Nein = 0
nurEbenenFuenfUndSechs = 0
+iconBenutzen = 0
+
+Process, Priority,, High
; aus Noras script kopiert:
#usehook on
@@ -103,6 +113,8 @@ if inputlocale <> 00000407
; Menü des Systray-Icons
; ----------------------
+if (iconBenutzen)
+ menu, tray, icon, neo.ico,,1
menu, tray, nostandard
menu, tray, add, Öffnen, open
menu, helpmenu, add, About, about
@@ -139,7 +151,7 @@ PriorDeadKey := ""
; CapsLock durch Umschalt+Umschalt
-*CapsLock::return ; Nichts machen beim Capslock release event (weil es Mod3 ist)
+;*CapsLock::return ; Nichts machen beim Capslock release event (weil es Mod3 ist)
*#::return ; Nichts machen beim # release event (weil es Mod3 ist)
@@ -200,6 +212,46 @@ return
*/
+ ; Mod3-Lock durch Mod3+Mod3
+IsMod3Locked := 0
+# & *Capslock::
+ if (GetKeyState("#","P"))
+ {
+ if (IsMod3Locked)
+ {
+ MsgBox Mod3-Feststellung aufgebehoben
+ IsMod3Locked = 0
+ }
+ else
+ {
+ MsgBox Mod3 festgestellt: Um Mod3 wieder zu lösen drücke beide Mod3 Tasten gleichzeitig
+ IsMod3Locked = 1
+ }
+ }
+ else
+ {
+ MsgBox nothing
+ return
+ }
+return
+
+;Capslock::MsgBox hallo
+*Capslock:: return
+/*
+Capslock & *#::
+ if (IsMod3Locked)
+ {
+ MsgBox Mod3-Feststellung aufgebehoben
+ IsMod3Locked = 0
+ }
+ else
+ {
+ MsgBox Mod3 festgestellt: Um Mod3 wieder zu lösen drücke beide Mod3 Tasten gleichzeitig
+ IsMod3Locked = 1
+ }
+return
+*/
+
/*
; Wird nicht mehr gebraucht weil jetzt auf b (bzw. *n::)
; KP_Decimal durch Mod4+Mod4
@@ -1517,6 +1569,8 @@ return
send \
else if Ebene = 4
Send {blind}{Home}
+ else if Ebene = 5
+ { } ; leer
else if Ebene = 6
SendUnicodeChar(0x222E) ; contour integral
PriorDeadKey := "" CompKey := ""
@@ -1592,7 +1646,7 @@ return
Sendinput {Blind}{Left}
CompKey := ""
}
- else if Ebene = 5
+ else if Ebene = 5
{
SendUnicodeChar(0x03B9) ; iota
CompKey := ""
@@ -1843,7 +1897,7 @@ return
}
else if Ebene = 5
{
- SendUnicodeChar(0x03C9) ; omega
+ SendUnicodeChar(0x03BF) ; omicron
CompKey := ""
}
else if Ebene = 6
@@ -2351,7 +2405,7 @@ return
}
else if Ebene = 3
send ``{space} ; untot
- else if Ebene = 5
+ else if Ebene = 4
{} ; leer
else if Ebene = 5
SendUnicodeChar(0x03B6) ;zeta
@@ -2545,7 +2599,7 @@ return
else if Ebene = 3
send `;
else if Ebene = 4
- {} ; leer ... Send .
+ Send . ; eigentlich laut Referenz { } ; leer
else if Ebene = 5
SendUnicodeChar(0x03D1) ; vartheta
else if Ebene = 6
@@ -3555,7 +3609,14 @@ IsShiftPressed()
IsMod3Pressed()
{
- return ( GetKeyState("CapsLock","P") or GetKeyState("#","P") )
+ global
+ if (IsMod3Locked)
+ {
+ return (not ( GetKeyState("CapsLock","P") or GetKeyState("#","P") ))
+ }
+ else {
+ return ( GetKeyState("CapsLock","P") or GetKeyState("#","P") )
+ }
}
IsMod4Pressed()
@@ -3563,14 +3624,7 @@ IsMod4Pressed()
global
if (IsMod4Locked)
{
- if (IsShiftPressed())
- {
- return ( GetKeyState("<","P") or GetKeyState("SC138","P") )
- }
- else
- {
return (not ( GetKeyState("<","P") or GetKeyState("SC138","P") ))
- }
}
else {
return ( GetKeyState("<","P") or GetKeyState("SC138","P") )
@@ -3671,12 +3725,16 @@ togglesuspend:
{
menu, tray, rename, %enable%, %disable%
menu, tray, tip, %name%
+ if (iconBenutzen)
+ menu, tray, icon, neo.ico,,1
suspend , off ; Schaltet Suspend aus -> NEO
}
else
{
menu, tray, rename, %disable%, %enable%
- menu, tray, tip, %name% : Deaktiviert
+ menu, tray, tip, %name% : Deaktiviert
+ if (iconBenutzen)
+ menu, tray, icon, neo_disabled.ico,,1
suspend , on ; Schaltet Suspend ein -> QWERTZ
}
diff --git a/windows/autohotkey/neo20-all-in-one.exe b/windows/autohotkey/neo20-all-in-one.exe
index 6adab61..362ff1d 100644
--- a/windows/autohotkey/neo20-all-in-one.exe
+++ b/windows/autohotkey/neo20-all-in-one.exe
Binary files differ
diff --git a/windows/autohotkey/neo_disabled.ico b/windows/autohotkey/neo_disabled.ico
new file mode 100644
index 0000000..7d424ba
--- /dev/null
+++ b/windows/autohotkey/neo_disabled.ico
Binary files differ