summaryrefslogtreecommitdiffstats
path: root/include/swaylock/seat.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-04-02 23:14:37 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-04-04 18:47:48 -0400
commit1008d4cc9105e18074f8152ec5d6679aef8ebc5f (patch)
tree7ea62bc43f58f50477f0ee3edb44076944f19d02 /include/swaylock/seat.h
parentSet up an XKB context for the keyboard (diff)
downloadsway-1008d4cc9105e18074f8152ec5d6679aef8ebc5f.tar.gz
sway-1008d4cc9105e18074f8152ec5d6679aef8ebc5f.tar.zst
sway-1008d4cc9105e18074f8152ec5d6679aef8ebc5f.zip
Split seat code into its own file
Diffstat (limited to 'include/swaylock/seat.h')
-rw-r--r--include/swaylock/seat.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/include/swaylock/seat.h b/include/swaylock/seat.h
new file mode 100644
index 00000000..44bc37d5
--- /dev/null
+++ b/include/swaylock/seat.h
@@ -0,0 +1,38 @@
1#ifndef _SWAYLOCK_SEAT_H
2#define _SWAYLOCK_SEAT_H
3#include <xkbcommon/xkbcommon.h>
4
5enum mod_bit {
6 MOD_SHIFT = 1<<0,
7 MOD_CAPS = 1<<1,
8 MOD_CTRL = 1<<2,
9 MOD_ALT = 1<<3,
10 MOD_MOD2 = 1<<4,
11 MOD_MOD3 = 1<<5,
12 MOD_LOGO = 1<<6,
13 MOD_MOD5 = 1<<7,
14};
15
16enum mask {
17 MASK_SHIFT,
18 MASK_CAPS,
19 MASK_CTRL,
20 MASK_ALT,
21 MASK_MOD2,
22 MASK_MOD3,
23 MASK_LOGO,
24 MASK_MOD5,
25 MASK_LAST
26};
27
28struct swaylock_xkb {
29 uint32_t modifiers;
30 struct xkb_state *state;
31 struct xkb_context *context;
32 struct xkb_keymap *keymap;
33 xkb_mod_mask_t masks[MASK_LAST];
34};
35
36extern const struct wl_seat_listener seat_listener;
37
38#endif