diff options
Diffstat (limited to 'common/action_util.h')
| -rw-r--r-- | common/action_util.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/common/action_util.h b/common/action_util.h new file mode 100644 index 000000000..939bc2b66 --- /dev/null +++ b/common/action_util.h | |||
| @@ -0,0 +1,56 @@ | |||
| 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 | #ifndef ACTION_UTIL_H | ||
| 18 | #define ACTION_UTIL_H | ||
| 19 | |||
| 20 | #include <stdint.h> | ||
| 21 | |||
| 22 | extern report_keyboard_t *keyboard_report; | ||
| 23 | |||
| 24 | void send_keyboard_report(void); | ||
| 25 | |||
| 26 | /* key */ | ||
| 27 | void add_key(uint8_t key); | ||
| 28 | void del_key(uint8_t key); | ||
| 29 | void clear_keys(void); | ||
| 30 | |||
| 31 | /* modifier */ | ||
| 32 | uint8_t get_mods(void); | ||
| 33 | void add_mods(uint8_t mods); | ||
| 34 | void del_mods(uint8_t mods); | ||
| 35 | void set_mods(uint8_t mods); | ||
| 36 | void clear_mods(void); | ||
| 37 | |||
| 38 | /* weak modifier */ | ||
| 39 | uint8_t get_weak_mods(void); | ||
| 40 | void add_weak_mods(uint8_t mods); | ||
| 41 | void del_weak_mods(uint8_t mods); | ||
| 42 | void set_weak_mods(uint8_t mods); | ||
| 43 | void clear_weak_mods(void); | ||
| 44 | |||
| 45 | /* oneshot modifier */ | ||
| 46 | void set_oneshot_mods(uint8_t mods); | ||
| 47 | void clear_oneshot_mods(void); | ||
| 48 | void oneshot_toggle(void); | ||
| 49 | void oneshot_enable(void); | ||
| 50 | void oneshot_disable(void); | ||
| 51 | |||
| 52 | /* inspect */ | ||
| 53 | uint8_t has_anykey(void); | ||
| 54 | uint8_t has_anymod(void); | ||
| 55 | uint8_t get_first_key(void); | ||
| 56 | #endif | ||
