mirror of https://github.com/0intro/wmii
52 lines
1.1 KiB
C
52 lines
1.1 KiB
C
/*
|
|
* (C)opyright MMIV-MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include "blitz.h"
|
|
|
|
/* free the result manually! */
|
|
char *blitz_modtostr(unsigned long mod)
|
|
{
|
|
char result[60];
|
|
result[0] = 0;
|
|
|
|
if (mod & ShiftMask)
|
|
cext_strlcat(result, "S-", sizeof(result));
|
|
if (mod & ControlMask)
|
|
cext_strlcat(result, "C-", sizeof(result));
|
|
if (mod & Mod1Mask)
|
|
cext_strlcat(result, "M-", sizeof(result));
|
|
if (mod & Mod2Mask)
|
|
cext_strlcat(result, "M2-", sizeof(result));
|
|
if (mod & Mod3Mask)
|
|
cext_strlcat(result, "M3-", sizeof(result));
|
|
if (mod & Mod4Mask)
|
|
cext_strlcat(result, "WIN-", sizeof(result));
|
|
if (mod & Mod5Mask)
|
|
cext_strlcat(result, "M5-", sizeof(result));
|
|
return cext_estrdup(result);
|
|
}
|
|
|
|
unsigned long blitz_strtomod(char *val)
|
|
{
|
|
unsigned long mod = 0;
|
|
if (strstr(val, "S-"))
|
|
mod |= ShiftMask;
|
|
if (strstr(val, "C-"))
|
|
mod |= ControlMask;
|
|
if (strstr(val, "M-"))
|
|
mod |= Mod1Mask;
|
|
if (strstr(val, "M2-"))
|
|
mod |= Mod2Mask;
|
|
if (strstr(val, "M3-"))
|
|
mod |= Mod3Mask;
|
|
if (strstr(val, "WIN-"))
|
|
mod |= Mod4Mask;
|
|
if (strstr(val, "M5-"))
|
|
mod |= Mod5Mask;
|
|
return mod;
|
|
}
|