mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 20:05:58 +01:00
34 lines
963 B
C
34 lines
963 B
C
#ifndef ROOTSTON_KEYBOARD_H
|
|
#define ROOTSTON_KEYBOARD_H
|
|
|
|
#include <xkbcommon/xkbcommon.h>
|
|
#include "rootston/input.h"
|
|
|
|
#define ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP 32
|
|
|
|
struct roots_keyboard {
|
|
struct roots_input *input;
|
|
struct roots_seat *seat;
|
|
struct wlr_input_device *device;
|
|
struct roots_keyboard_config *config;
|
|
struct wl_list link;
|
|
|
|
struct wl_listener device_destroy;
|
|
struct wl_listener keyboard_key;
|
|
struct wl_listener keyboard_modifiers;
|
|
|
|
xkb_keysym_t pressed_keysyms_translated[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP];
|
|
xkb_keysym_t pressed_keysyms_raw[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP];
|
|
};
|
|
|
|
struct roots_keyboard *roots_keyboard_create(struct wlr_input_device *device,
|
|
struct roots_input *input);
|
|
|
|
void roots_keyboard_destroy(struct roots_keyboard *keyboard);
|
|
|
|
void roots_keyboard_handle_key(struct roots_keyboard *keyboard,
|
|
struct wlr_event_keyboard_key *event);
|
|
|
|
void roots_keyboard_handle_modifiers(struct roots_keyboard *r_keyboard);
|
|
|
|
#endif
|