summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-02-23 22:03:01 +0000
committerGitHub <noreply@github.com>2020-02-23 14:03:01 -0800
commitf76f9c7d2abd1901be45431c5b2ea435c8c472b2 (patch)
tree03e0c74e011316e9df7f07cfbe7951aa1b01f517
parent530c9976382a321d65c0339e0465932bd28f8cb9 (diff)
Add mouse support to SEND_STRING (#8223)0.7.166
* Add mouse support to SEND_STRING * add short forms
-rw-r--r--quantum/send_string_keycodes.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/quantum/send_string_keycodes.h b/quantum/send_string_keycodes.h
index fc6467a741..b4a50f84d3 100644
--- a/quantum/send_string_keycodes.h
+++ b/quantum/send_string_keycodes.h
@@ -137,6 +137,24 @@
#define X_BRMU X_PAUSE
#define X_BRMD X_SCROLLLOCK
+/* Mouse Keys */
+#define X_MS_U X_MS_UP
+#define X_MS_D X_MS_DOWN
+#define X_MS_L X_MS_LEFT
+#define X_MS_R X_MS_RIGHT
+#define X_BTN1 X_MS_BTN1
+#define X_BTN2 X_MS_BTN2
+#define X_BTN3 X_MS_BTN3
+#define X_BTN4 X_MS_BTN4
+#define X_BTN5 X_MS_BTN5
+#define X_WH_U X_MS_WH_UP
+#define X_WH_D X_MS_WH_DOWN
+#define X_WH_L X_MS_WH_LEFT
+#define X_WH_R X_MS_WH_RIGHT
+#define X_ACL0 X_MS_ACCEL0
+#define X_ACL1 X_MS_ACCEL1
+#define X_ACL2 X_MS_ACCEL2
+
/* Keyboard/Keypad Page (0x07) */
#define X_A 04
#define X_B 05
@@ -341,6 +359,24 @@
#define X_BRIGHTNESS_UP bd
#define X_BRIGHTNESS_DOWN be
+/* Mouse Buttons (unallocated range in HID spec) */
+#define X_MS_UP f0
+#define X_MS_DOWN f1
+#define X_MS_LEFT f2
+#define X_MS_RIGHT f3
+#define X_MS_BTN1 f4
+#define X_MS_BTN2 f5
+#define X_MS_BTN3 f6
+#define X_MS_BTN4 f7
+#define X_MS_BTN5 f8
+#define X_MS_WH_UP f9
+#define X_MS_WH_DOWN fa
+#define X_MS_WH_LEFT fb
+#define X_MS_WH_RIGHT fc
+#define X_MS_ACCEL0 fd
+#define X_MS_ACCEL1 fe
+#define X_MS_ACCEL2 ff
+
// Send string macros
#define STRINGIZE(z) #z
#define ADD_SLASH_X(y) STRINGIZE(\x##y)