feat(hid): Add C_AC_DESKTOP_SHOW_ALL_APPLICATIONS
* support for C_AC_DESKTOP_SHOW_ALL_APPLICATIONS Co-authored-by: Shreyas Kale <shreyaskale@Shreyass-MacBook-Pro.local>
This commit is contained in:
parent
b21ddcf79a
commit
391f80f069
3 changed files with 28 additions and 2 deletions
|
@ -1404,6 +1404,10 @@
|
|||
#define C_AC_DESKTOP_SHOW_ALL_WINDOWS \
|
||||
(ZMK_HID_USAGE(HID_USAGE_CONSUMER, HID_USAGE_CONSUMER_AC_DESKTOP_SHOW_ALL_WINDOWS))
|
||||
|
||||
/* Consumer AC Desktop Show All Applications */
|
||||
#define C_AC_DESKTOP_SHOW_ALL_APPLICATIONS \
|
||||
(ZMK_HID_USAGE(HID_USAGE_CONSUMER, HID_USAGE_CONSUMER_AC_DESKTOP_SHOW_ALL_APPLICATIONS))
|
||||
|
||||
/* Consumer Keyboard Input Assist Previous */
|
||||
#define C_KEYBOARD_INPUT_ASSIST_PREVIOUS \
|
||||
(ZMK_HID_USAGE(HID_USAGE_CONSUMER, HID_USAGE_CONSUMER_KEYBOARD_INPUT_ASSIST_PREVIOUS))
|
||||
|
|
|
@ -47,6 +47,7 @@ export default {
|
|||
"C_AC_DEL",
|
||||
"C_AC_VIEW_TOGGLE",
|
||||
"C_AC_DESKTOP_SHOW_ALL_WINDOWS",
|
||||
"C_AC_DESKTOP_SHOW_ALL_APPLICATIONS",
|
||||
"C_VOICE_COMMAND",
|
||||
],
|
||||
applications: [
|
||||
|
|
|
@ -7251,7 +7251,7 @@ export default [
|
|||
windows: null,
|
||||
linux: true,
|
||||
android: true,
|
||||
macos: null,
|
||||
macos: true,
|
||||
ios: null,
|
||||
},
|
||||
footnotes: {},
|
||||
|
@ -7713,7 +7713,28 @@ export default [
|
|||
windows: null,
|
||||
linux: true,
|
||||
android: null,
|
||||
macos: null,
|
||||
macos: true,
|
||||
ios: null,
|
||||
},
|
||||
footnotes: {},
|
||||
},
|
||||
{
|
||||
names: ["C_AC_DESKTOP_SHOW_ALL_APPLICATIONS"],
|
||||
description: "Desktop Show All Applications",
|
||||
context: "Consumer AC",
|
||||
clarify: true,
|
||||
usages: [
|
||||
{
|
||||
application: consumerApplication,
|
||||
item: usage(consumerPage, 0x2a2),
|
||||
},
|
||||
],
|
||||
documentation: "https://usb.org/sites/default/files/hut1_2.pdf#page=153",
|
||||
os: {
|
||||
windows: null,
|
||||
linux: true,
|
||||
android: null,
|
||||
macos: true,
|
||||
ios: null,
|
||||
},
|
||||
footnotes: {},
|
||||
|
|
Loading…
Reference in a new issue