]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/common/keymap.h
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
[qmk_firmware.git] / tmk_core / common / keymap.h
1 /*
2 Copyright 2011 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 #ifndef KEYMAP_H
19 #define KEYMAP_H
20
21 #include <stdint.h>
22 #include <stdbool.h>
23 #include "action.h"
24
25 /* NOTE: Not portable. Bit field order depends on implementation */
26 typedef union {
27     uint8_t raw;
28     struct {
29         bool swap_control_capslock:1;
30         bool capslock_to_control:1;
31         bool swap_lalt_lgui:1;
32         bool swap_ralt_rgui:1;
33         bool no_gui:1;
34         bool swap_grave_esc:1;
35         bool swap_backslash_backspace:1;
36         bool nkro:1;
37     };
38 } keymap_config_t;
39 keymap_config_t keymap_config;
40
41
42 /* translates key to keycode */
43 uint8_t keymap_key_to_keycode(uint8_t layer, keypos_t key);
44
45 /* translates Fn keycode to action */
46 action_t keymap_fn_to_action(uint8_t keycode);
47
48
49
50 #ifdef USE_LEGACY_KEYMAP
51 /* 
52  * Legacy keymap
53  *      Consider using new keymap API above instead.
54  */
55 /* keycode of key */
56 __attribute__ ((deprecated))
57 uint8_t keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t col);
58
59 /* layer to move during press Fn key */
60 __attribute__ ((deprecated))
61 uint8_t keymap_fn_layer(uint8_t fn_bits);
62
63 /* keycode to send when release Fn key without using */
64 __attribute__ ((deprecated))
65 uint8_t keymap_fn_keycode(uint8_t fn_bits);
66 #endif
67
68 #endif