aboutsummaryrefslogtreecommitdiffstats
path: root/include/util.h
diff options
context:
space:
mode:
authorLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-01-05 18:07:43 +0100
committerLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-01-05 18:36:24 +0100
commit95e0f44c73f2783541b180c9bd555f6b8abb7c0f (patch)
treef9f48b2376434e631fee5638b0dfe7c4ffa9eb83 /include/util.h
parentSend IPC modifier event on bar_modifier up/down (diff)
downloadsway-95e0f44c73f2783541b180c9bd555f6b8abb7c0f.tar.gz
sway-95e0f44c73f2783541b180c9bd555f6b8abb7c0f.tar.zst
sway-95e0f44c73f2783541b180c9bd555f6b8abb7c0f.zip
Move modifier name table to common/util.c
Lookup of modifier names is required in several places, thus it makes sense to move it to a general place.
Diffstat (limited to 'include/util.h')
-rw-r--r--include/util.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h
index 9cb861dd..4bbb64c8 100644
--- a/include/util.h
+++ b/include/util.h
@@ -1,6 +1,10 @@
1#ifndef _SWAY_UTIL_H 1#ifndef _SWAY_UTIL_H
2#define _SWAY_UTIL_H 2#define _SWAY_UTIL_H
3 3
4#include <stdint.h>
5#include <wlc/wlc.h>
6#include <xkbcommon/xkbcommon.h>
7
4/** 8/**
5 * Wrap i into the range [0, max[ 9 * Wrap i into the range [0, max[
6 */ 10 */
@@ -11,4 +15,18 @@ int wrap(int i, int max);
11 */ 15 */
12int numlen(int n); 16int numlen(int n);
13 17
18/**
19 * Get modifier mask from modifier name.
20 *
21 * Returns the modifer mask or 0 if the name isn't found.
22 */
23uint32_t get_modifier_mask_by_name(const char *name);
24
25/**
26 * Get modifier name from modifier mask.
27 *
28 * Returns the modifier name or NULL if it isn't found.
29 */
30const char *get_modifier_name_by_mask(uint32_t modifier);
31
14#endif 32#endif