aboutsummaryrefslogtreecommitdiff
path: root/common/layer_stack.h
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-02-15 13:47:41 +0900
committertmk <nobody@nowhere>2013-02-15 13:47:41 +0900
commit768ea72f109fee2411c77bf2fabcbede5f98650d (patch)
tree59350a8538ef9a8380250771fb57490759041fec /common/layer_stack.h
parentc74ad260fb45b2deec0309d9a9cbac3c0434886b (diff)
downloadqmk_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.h44
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/*
2Copyright 2013 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#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
28typedef struct {
29 uint8_t layer:4;
30 uint8_t next:3;
31 bool used;
32} layer_item_t;
33
34
35bool layer_stack_push(uint8_t layer);
36bool layer_stack_pop(void);
37bool layer_stack_remove(uint8_t layer);
38bool layer_stack_remove_then_push(uint8_t layer);
39bool layer_stack_remove_or_push(uint8_t layer);
40void layer_stack_debug(void);
41action_t layer_stack_get_action(key_t key);
42
43#endif
44