aboutsummaryrefslogtreecommitdiffstats
path: root/common/util.c
diff options
context:
space:
mode:
authorLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-01-06 16:59:54 +0100
committerLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-01-08 03:03:40 +0100
commitdffacea831b6e7277920e885984d9c7c9b281d6c (patch)
tree197d392dce35d14db34f903f45a086722ee6fbdc /common/util.c
parentMerge pull request #439 from mikkeloscar/bindsym-release (diff)
downloadsway-dffacea831b6e7277920e885984d9c7c9b281d6c.tar.gz
sway-dffacea831b6e7277920e885984d9c7c9b281d6c.tar.zst
sway-dffacea831b6e7277920e885984d9c7c9b281d6c.zip
Add function for getting list of modifier names.
Get an array of modifier names from modifier masks.
Diffstat (limited to 'common/util.c')
-rw-r--r--common/util.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/common/util.c b/common/util.c
index b5037d35..243f90a8 100644
--- a/common/util.c
+++ b/common/util.c
@@ -51,3 +51,17 @@ const char *get_modifier_name_by_mask(uint32_t modifier) {
51 51
52 return NULL; 52 return NULL;
53} 53}
54
55int get_modifier_names(const char **names, uint32_t modifier_masks) {
56 int length = 0;
57 int i;
58 for (i = 0; i < (int)(sizeof(modifiers) / sizeof(struct modifier_key)); ++i) {
59 if ((modifier_masks & modifiers[i].mod) != 0) {
60 names[length] = modifiers[i].name;
61 ++length;
62 modifier_masks ^= modifiers[i].mod;
63 }
64 }
65
66 return length;
67}