foot/xkbcommon-vmod.h
Daniel Eklöf 3e1e3ea38c
libxkbcommon: don't require 1.8.0
The version bump was done since we now use XKB_VMOD_NAME_*; macros
added in libxkbcommon 1.8.0.

Not all distros have updated libxkbcommon yet (read: Debian). Since
it's fairly easy to work around, let's do that.

Closes #2103
2025-05-18 11:36:57 +02:00

18 lines
651 B
C

#pragma once
#include <xkbcommon/xkbcommon-names.h>
/* Added in libxkbcommon 1.8.0 */
#if !defined(XKB_VMOD_NAME_ALT)
/* Common *virtual* modifiers, encoded in xkeyboard-config in the compat and
* symbols files. They have been stable since the beginning of the project and
* are unlikely to ever change. */
#define XKB_VMOD_NAME_ALT "Alt"
#define XKB_VMOD_NAME_HYPER "Hyper"
#define XKB_VMOD_NAME_LEVEL3 "LevelThree"
#define XKB_VMOD_NAME_LEVEL5 "LevelFive"
#define XKB_VMOD_NAME_META "Meta"
#define XKB_VMOD_NAME_NUM "NumLock"
#define XKB_VMOD_NAME_SCROLL "ScrollLock"
#define XKB_VMOD_NAME_SUPER "Super"
#endif