2017-12-17 00:33:22 +11:00
|
|
|
#ifndef _SWAY_INPUT_KEYBOARD_H
|
|
|
|
#define _SWAY_INPUT_KEYBOARD_H
|
|
|
|
|
2017-12-11 05:59:04 +11:00
|
|
|
#include "sway/input/seat.h"
|
|
|
|
|
|
|
|
struct sway_keyboard {
|
2017-12-15 03:11:56 +11:00
|
|
|
struct sway_seat_device *seat_device;
|
2017-12-11 05:59:04 +11:00
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
struct xkb_keymap *keymap;
|
|
|
|
|
2017-12-11 05:59:04 +11:00
|
|
|
struct wl_listener keyboard_key;
|
|
|
|
struct wl_listener keyboard_modifiers;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sway_keyboard *sway_keyboard_create(struct sway_seat *seat,
|
2017-12-15 03:11:56 +11:00
|
|
|
struct sway_seat_device *device);
|
|
|
|
|
|
|
|
void sway_keyboard_configure(struct sway_keyboard *keyboard);
|
2017-12-11 07:37:17 +11:00
|
|
|
|
|
|
|
void sway_keyboard_destroy(struct sway_keyboard *keyboard);
|
2017-12-17 00:33:22 +11:00
|
|
|
|
|
|
|
#endif
|