2017-12-17 00:33:22 +11:00
|
|
|
#ifndef _SWAY_INPUT_INPUT_MANAGER_H
|
|
|
|
#define _SWAY_INPUT_INPUT_MANAGER_H
|
2017-12-07 00:28:46 +11:00
|
|
|
#include <libinput.h>
|
|
|
|
#include "sway/server.h"
|
2017-12-09 00:07:47 +11:00
|
|
|
#include "sway/config.h"
|
2017-12-07 00:28:46 +11:00
|
|
|
#include "list.h"
|
|
|
|
|
2017-12-11 20:17:14 +11:00
|
|
|
extern struct input_config *current_input_config;
|
2017-12-15 03:11:56 +11:00
|
|
|
extern struct seat_config *current_seat_config;
|
2017-12-11 20:17:14 +11:00
|
|
|
|
2017-12-13 00:29:37 +11:00
|
|
|
/**
|
|
|
|
* The global singleton input manager
|
|
|
|
* TODO: make me not a global
|
|
|
|
*/
|
|
|
|
extern struct sway_input_manager *input_manager;
|
|
|
|
|
|
|
|
struct sway_input_device {
|
|
|
|
char *identifier;
|
|
|
|
struct wlr_input_device *wlr_device;
|
|
|
|
struct input_config *config;
|
|
|
|
struct wl_list link;
|
|
|
|
};
|
|
|
|
|
2017-12-07 23:31:49 +11:00
|
|
|
struct sway_input_manager {
|
2017-12-08 01:58:32 +11:00
|
|
|
struct wl_listener input_add;
|
|
|
|
struct wl_listener input_remove;
|
|
|
|
struct sway_server *server;
|
2017-12-13 00:29:37 +11:00
|
|
|
struct wl_list devices;
|
|
|
|
struct wl_list seats;
|
2017-12-07 00:28:46 +11:00
|
|
|
};
|
|
|
|
|
2017-12-07 23:31:49 +11:00
|
|
|
struct sway_input_manager *sway_input_manager_create(
|
|
|
|
struct sway_server *server);
|
2017-12-07 00:28:46 +11:00
|
|
|
|
2017-12-13 00:29:37 +11:00
|
|
|
bool sway_input_manager_has_focus(struct sway_input_manager *input,
|
2017-12-11 03:11:47 +11:00
|
|
|
swayc_t *container);
|
|
|
|
|
2017-12-13 00:29:37 +11:00
|
|
|
void sway_input_manager_set_focus(struct sway_input_manager *input,
|
|
|
|
swayc_t *container);
|
|
|
|
|
|
|
|
void sway_input_manager_configure_xcursor(struct sway_input_manager *input);
|
|
|
|
|
2017-12-15 03:11:56 +11:00
|
|
|
void sway_input_manager_apply_input_config(struct sway_input_manager *input,
|
|
|
|
struct input_config *input_config);
|
|
|
|
|
|
|
|
void sway_input_manager_apply_seat_config(struct sway_input_manager *input,
|
|
|
|
struct seat_config *seat_config);
|
2017-12-13 00:29:37 +11:00
|
|
|
|
2017-12-07 00:28:46 +11:00
|
|
|
#endif
|