swaylock/include/seat.h
2020-06-19 23:02:23 +02:00

32 lines
615 B
C

#ifndef _SWAYLOCK_SEAT_H
#define _SWAYLOCK_SEAT_H
#include <xkbcommon/xkbcommon.h>
#include <stdint.h>
#include <stdbool.h>
struct loop;
struct loop_timer;
struct swaylock_xkb {
bool caps_lock;
bool control;
struct xkb_state *state;
struct xkb_context *context;
struct xkb_keymap *keymap;
};
struct swaylock_seat {
struct swaylock_state *state;
struct wl_pointer *pointer;
struct wl_keyboard *keyboard;
int32_t repeat_period_ms;
int32_t repeat_delay_ms;
uint32_t repeat_sym;
uint32_t repeat_codepoint;
struct loop_timer *repeat_timer;
};
extern const struct wl_seat_listener seat_listener;
#endif