aboutsummaryrefslogtreecommitdiff
path: root/quantum/command.h
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-02-07 23:16:47 +0000
committerQMK Bot <hello@qmk.fm>2021-02-07 23:16:47 +0000
commit3a98bd75c88c5cc64aed72b9d2e3a8857d949fed (patch)
tree7edcbbfa0c0efd16e456d6012f90833922d3bb3c /quantum/command.h
parentb8031a1613290ada50f4cb746216fcae90d8935d (diff)
parent99bffc2a21ebed07fd767ad2a9a7e1aadd491ef3 (diff)
downloadqmk_firmware-3a98bd75c88c5cc64aed72b9d2e3a8857d949fed.tar.gz
qmk_firmware-3a98bd75c88c5cc64aed72b9d2e3a8857d949fed.zip
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'quantum/command.h')
-rw-r--r--quantum/command.h163
1 files changed, 163 insertions, 0 deletions
diff --git a/quantum/command.h b/quantum/command.h
new file mode 100644
index 000000000..4f77be085
--- /dev/null
+++ b/quantum/command.h
@@ -0,0 +1,163 @@
1/*
2Copyright 2011 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#pragma once
19
20/* FIXME: Add doxygen comments for the behavioral defines in here. */
21
22/* TODO: Refactoring */
23typedef enum { ONESHOT, CONSOLE, MOUSEKEY } command_state_t;
24extern command_state_t command_state;
25
26/* This allows to extend commands. Return false when command is not processed. */
27bool command_extra(uint8_t code);
28bool command_console_extra(uint8_t code);
29
30#ifdef COMMAND_ENABLE
31uint8_t numkey2num(uint8_t code);
32bool command_proc(uint8_t code);
33#else
34# define command_proc(code) false
35#endif
36
37#ifndef IS_COMMAND
38# define IS_COMMAND() (get_mods() == MOD_MASK_SHIFT)
39#endif
40
41#ifndef MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
42# define MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS true
43#endif
44
45#ifndef MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
46# define MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS true
47#endif
48
49#ifndef MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
50# define MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM false
51#endif
52
53#ifndef MAGIC_KEY_HELP
54# define MAGIC_KEY_HELP H
55#endif
56
57#ifndef MAGIC_KEY_HELP_ALT
58# define MAGIC_KEY_HELP_ALT SLASH
59#endif
60
61#ifndef MAGIC_KEY_DEBUG
62# define MAGIC_KEY_DEBUG D
63#endif
64
65#ifndef MAGIC_KEY_DEBUG_MATRIX
66# define MAGIC_KEY_DEBUG_MATRIX X
67#endif
68
69#ifndef MAGIC_KEY_DEBUG_KBD
70# define MAGIC_KEY_DEBUG_KBD K
71#endif
72
73#ifndef MAGIC_KEY_DEBUG_MOUSE
74# define MAGIC_KEY_DEBUG_MOUSE M
75#endif
76
77#ifndef MAGIC_KEY_VERSION
78# define MAGIC_KEY_VERSION V
79#endif
80
81#ifndef MAGIC_KEY_STATUS
82# define MAGIC_KEY_STATUS S
83#endif
84
85#ifndef MAGIC_KEY_CONSOLE
86# define MAGIC_KEY_CONSOLE C
87#endif
88
89#ifndef MAGIC_KEY_LAYER0
90# define MAGIC_KEY_LAYER0 0
91#endif
92
93#ifndef MAGIC_KEY_LAYER0_ALT
94# define MAGIC_KEY_LAYER0_ALT GRAVE
95#endif
96
97#ifndef MAGIC_KEY_LAYER1
98# define MAGIC_KEY_LAYER1 1
99#endif
100
101#ifndef MAGIC_KEY_LAYER2
102# define MAGIC_KEY_LAYER2 2
103#endif
104
105#ifndef MAGIC_KEY_LAYER3
106# define MAGIC_KEY_LAYER3 3
107#endif
108
109#ifndef MAGIC_KEY_LAYER4
110# define MAGIC_KEY_LAYER4 4
111#endif
112
113#ifndef MAGIC_KEY_LAYER5
114# define MAGIC_KEY_LAYER5 5
115#endif
116
117#ifndef MAGIC_KEY_LAYER6
118# define MAGIC_KEY_LAYER6 6
119#endif
120
121#ifndef MAGIC_KEY_LAYER7
122# define MAGIC_KEY_LAYER7 7
123#endif
124
125#ifndef MAGIC_KEY_LAYER8
126# define MAGIC_KEY_LAYER8 8
127#endif
128
129#ifndef MAGIC_KEY_LAYER9
130# define MAGIC_KEY_LAYER9 9
131#endif
132
133#ifndef MAGIC_KEY_BOOTLOADER
134# define MAGIC_KEY_BOOTLOADER B
135#endif
136
137#ifndef MAGIC_KEY_BOOTLOADER_ALT
138# define MAGIC_KEY_BOOTLOADER_ALT ESC
139#endif
140
141#ifndef MAGIC_KEY_LOCK
142# define MAGIC_KEY_LOCK CAPS
143#endif
144
145#ifndef MAGIC_KEY_EEPROM
146# define MAGIC_KEY_EEPROM E
147#endif
148
149#ifndef MAGIC_KEY_EEPROM_CLEAR
150# define MAGIC_KEY_EEPROM_CLEAR BSPACE
151#endif
152
153#ifndef MAGIC_KEY_NKRO
154# define MAGIC_KEY_NKRO N
155#endif
156
157#ifndef MAGIC_KEY_SLEEP_LED
158# define MAGIC_KEY_SLEEP_LED Z
159
160#endif
161
162#define XMAGIC_KC(key) KC_##key
163#define MAGIC_KC(key) XMAGIC_KC(key)