2017-09-23 00:24:32 +00: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 20:56:11 +00:00
|
|
|
#include "rootston/cursor.h"
|
2017-09-23 14:13:05 +00:00
|
|
|
#include "rootston/config.h"
|
2017-09-23 00:24:32 +00:00
|
|
|
#include "rootston/view.h"
|
2017-09-23 14:36:32 +00:00
|
|
|
#include "rootston/server.h"
|
2017-09-23 00:24:32 +00:00
|
|
|
|
|
|
|
struct roots_input {
|
2017-09-23 14:13:05 +00:00
|
|
|
struct roots_config *config;
|
2017-09-23 18:53:15 +00:00
|
|
|
struct roots_server *server;
|
2017-09-23 14:13:05 +00:00
|
|
|
|
|
|
|
struct wl_listener input_add;
|
|
|
|
struct wl_listener input_remove;
|
2017-09-23 18:53:15 +00:00
|
|
|
|
2017-11-08 19:53:08 +00:00
|
|
|
struct wl_list seats;
|
2017-09-23 00:24:32 +00:00
|
|
|
};
|
|
|
|
|
2017-09-23 14:13:05 +00:00
|
|
|
struct roots_input *input_create(struct roots_server *server,
|
|
|
|
struct roots_config *config);
|
|
|
|
void input_destroy(struct roots_input *input);
|
|
|
|
|
2017-11-07 20:56:11 +00:00
|
|
|
struct roots_seat *input_seat_from_wlr_seat(struct roots_input *input,
|
|
|
|
struct wlr_seat *seat);
|
|
|
|
|
2017-11-10 13:27:45 +00:00
|
|
|
bool input_view_has_focus(struct roots_input *input, struct roots_view *view);
|
|
|
|
|
2017-11-22 13:10:06 +00:00
|
|
|
struct roots_seat *input_get_seat(struct roots_input *input, char *name);
|
|
|
|
|
2017-09-23 00:24:32 +00:00
|
|
|
#endif
|