aboutsummaryrefslogtreecommitdiff
path: root/common/layer_stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/layer_stack.h')
-rw-r--r--common/layer_stack.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/common/layer_stack.h b/common/layer_stack.h
new file mode 100644
index 000000000..25bf37a5b
--- /dev/null
+++ b/common/layer_stack.h
@@ -0,0 +1,45 @@
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
35void layer_stack_clear(void);
36bool layer_stack_push(uint8_t layer);
37bool layer_stack_pop(void);
38bool layer_stack_remove(uint8_t layer);
39bool layer_stack_remove_then_push(uint8_t layer);
40bool layer_stack_remove_or_push(uint8_t layer);
41void layer_stack_debug(void);
42action_t layer_stack_get_action(key_t key);
43
44#endif
45