diff options
| author | tmk <nobody@nowhere> | 2013-02-15 13:47:41 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2013-02-15 13:47:41 +0900 |
| commit | 768ea72f109fee2411c77bf2fabcbede5f98650d (patch) | |
| tree | 59350a8538ef9a8380250771fb57490759041fec /common/layer_stack.h | |
| parent | c74ad260fb45b2deec0309d9a9cbac3c0434886b (diff) | |
| download | qmk_firmware-768ea72f109fee2411c77bf2fabcbede5f98650d.tar.gz qmk_firmware-768ea72f109fee2411c77bf2fabcbede5f98650d.zip | |
Add layer_stack files taking apart from action.c
Diffstat (limited to 'common/layer_stack.h')
| -rw-r--r-- | common/layer_stack.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/common/layer_stack.h b/common/layer_stack.h new file mode 100644 index 000000000..c88eaffc4 --- /dev/null +++ b/common/layer_stack.h | |||
| @@ -0,0 +1,44 @@ | |||
| 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 LAYER_STACK_H | ||
| 18 | #define LAYER_STACK_H | ||
| 19 | |||
| 20 | #include <stdint.h> | ||
| 21 | #include "action.h" | ||
| 22 | |||
| 23 | |||
| 24 | /* | ||
| 25 | * Layer stack | ||
| 26 | */ | ||
| 27 | #define LAYER_STACK_SIZE 8 | ||
| 28 | typedef struct { | ||
| 29 | uint8_t layer:4; | ||
| 30 | uint8_t next:3; | ||
| 31 | bool used; | ||
| 32 | } layer_item_t; | ||
| 33 | |||
| 34 | |||
| 35 | bool layer_stack_push(uint8_t layer); | ||
| 36 | bool layer_stack_pop(void); | ||
| 37 | bool layer_stack_remove(uint8_t layer); | ||
| 38 | bool layer_stack_remove_then_push(uint8_t layer); | ||
| 39 | bool layer_stack_remove_or_push(uint8_t layer); | ||
| 40 | void layer_stack_debug(void); | ||
| 41 | action_t layer_stack_get_action(key_t key); | ||
| 42 | |||
| 43 | #endif | ||
| 44 | |||
