diff options
Diffstat (limited to 'quantum/action_util.h')
-rw-r--r-- | quantum/action_util.h | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/quantum/action_util.h b/quantum/action_util.h new file mode 100644 index 000000000..f2b3897ae --- /dev/null +++ b/quantum/action_util.h | |||
@@ -0,0 +1,105 @@ | |||
1 | /* | ||
2 | Copyright 2013 Jun Wako <wakojun@gmail.com> | ||
3 | |||
4 | This program is free software: you can redistribute it and/or modify | ||
5 | it under the terms of the GNU General Public License as published by | ||
6 | the Free Software Foundation, either version 2 of the License, or | ||
7 | (at your option) any later version. | ||
8 | |||
9 | This program is distributed in the hope that it will be useful, | ||
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | GNU General Public License for more details. | ||
13 | |||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #pragma once | ||
19 | |||
20 | #include <stdint.h> | ||
21 | #include "report.h" | ||
22 | |||
23 | #ifdef __cplusplus | ||
24 | extern "C" { | ||
25 | #endif | ||
26 | |||
27 | extern report_keyboard_t *keyboard_report; | ||
28 | |||
29 | void send_keyboard_report(void); | ||
30 | |||
31 | /* key */ | ||
32 | inline void add_key(uint8_t key) { add_key_to_report(keyboard_report, key); } | ||
33 | |||
34 | inline void del_key(uint8_t key) { del_key_from_report(keyboard_report, key); } | ||
35 | |||
36 | inline void clear_keys(void) { clear_keys_from_report(keyboard_report); } | ||
37 | |||
38 | /* modifier */ | ||
39 | uint8_t get_mods(void); | ||
40 | void add_mods(uint8_t mods); | ||
41 | void del_mods(uint8_t mods); | ||
42 | void set_mods(uint8_t mods); | ||
43 | void clear_mods(void); | ||
44 | |||
45 | /* weak modifier */ | ||
46 | uint8_t get_weak_mods(void); | ||
47 | void add_weak_mods(uint8_t mods); | ||
48 | void del_weak_mods(uint8_t mods); | ||
49 | void set_weak_mods(uint8_t mods); | ||
50 | void clear_weak_mods(void); | ||
51 | |||
52 | /* macro modifier */ | ||
53 | uint8_t get_macro_mods(void); | ||
54 | void add_macro_mods(uint8_t mods); | ||
55 | void del_macro_mods(uint8_t mods); | ||
56 | void set_macro_mods(uint8_t mods); | ||
57 | void clear_macro_mods(void); | ||
58 | |||
59 | /* oneshot modifier */ | ||
60 | uint8_t get_oneshot_mods(void); | ||
61 | void add_oneshot_mods(uint8_t mods); | ||
62 | void del_oneshot_mods(uint8_t mods); | ||
63 | void set_oneshot_mods(uint8_t mods); | ||
64 | void clear_oneshot_mods(void); | ||
65 | bool has_oneshot_mods_timed_out(void); | ||
66 | |||
67 | uint8_t get_oneshot_locked_mods(void); | ||
68 | void set_oneshot_locked_mods(uint8_t mods); | ||
69 | void clear_oneshot_locked_mods(void); | ||
70 | |||
71 | typedef enum { ONESHOT_PRESSED = 0b01, ONESHOT_OTHER_KEY_PRESSED = 0b10, ONESHOT_START = 0b11, ONESHOT_TOGGLED = 0b100 } oneshot_fullfillment_t; | ||
72 | void set_oneshot_layer(uint8_t layer, uint8_t state); | ||
73 | uint8_t get_oneshot_layer(void); | ||
74 | void clear_oneshot_layer_state(oneshot_fullfillment_t state); | ||
75 | void reset_oneshot_layer(void); | ||
76 | bool is_oneshot_layer_active(void); | ||
77 | uint8_t get_oneshot_layer_state(void); | ||
78 | bool has_oneshot_layer_timed_out(void); | ||
79 | bool has_oneshot_swaphands_timed_out(void); | ||
80 | |||
81 | void oneshot_locked_mods_changed_user(uint8_t mods); | ||
82 | void oneshot_locked_mods_changed_kb(uint8_t mods); | ||
83 | void oneshot_mods_changed_user(uint8_t mods); | ||
84 | void oneshot_mods_changed_kb(uint8_t mods); | ||
85 | void oneshot_layer_changed_user(uint8_t layer); | ||
86 | void oneshot_layer_changed_kb(uint8_t layer); | ||
87 | |||
88 | void oneshot_toggle(void); | ||
89 | void oneshot_enable(void); | ||
90 | void oneshot_disable(void); | ||
91 | bool is_oneshot_enabled(void); | ||
92 | |||
93 | /* inspect */ | ||
94 | uint8_t has_anymod(void); | ||
95 | |||
96 | #ifdef SWAP_HANDS_ENABLE | ||
97 | void set_oneshot_swaphands(void); | ||
98 | void release_oneshot_swaphands(void); | ||
99 | void use_oneshot_swaphands(void); | ||
100 | void clear_oneshot_swaphands(void); | ||
101 | #endif | ||
102 | |||
103 | #ifdef __cplusplus | ||
104 | } | ||
105 | #endif | ||