wlroots-hyprland/include/rootston/input.h

30 lines
723 B
C
Raw Normal View History

2017-09-23 02:24:32 +02:00
#ifndef _ROOTSTON_INPUT_H
#define _ROOTSTON_INPUT_H
#include <wayland-server.h>
#include <wlr/types/wlr_input_device.h>
#include <wlr/types/wlr_cursor.h>
#include <wlr/types/wlr_seat.h>
2017-11-07 21:56:11 +01:00
#include "rootston/cursor.h"
2017-09-23 16:13:05 +02:00
#include "rootston/config.h"
2017-09-23 02:24:32 +02:00
#include "rootston/view.h"
2017-09-23 16:36:32 +02:00
#include "rootston/server.h"
2017-09-23 02:24:32 +02:00
struct roots_input {
2017-09-23 16:13:05 +02:00
struct roots_config *config;
2017-09-23 20:53:15 +02:00
struct roots_server *server;
2017-09-23 16:13:05 +02:00
struct wl_listener input_add;
struct wl_listener input_remove;
2017-09-23 20:53:15 +02:00
2017-11-08 20:53:08 +01:00
struct wl_list seats;
2017-09-23 02:24:32 +02:00
};
2017-09-23 16:13:05 +02:00
struct roots_input *input_create(struct roots_server *server,
struct roots_config *config);
void input_destroy(struct roots_input *input);
2017-11-07 21:56:11 +01:00
struct roots_seat *input_seat_from_wlr_seat(struct roots_input *input,
struct wlr_seat *seat);
2017-09-23 02:24:32 +02:00
#endif