sway/sway/input/seat.c

248 lines
6.5 KiB
C
Raw Normal View History

2017-12-07 14:58:32 +00:00
#define _XOPEN_SOURCE 700
2017-12-08 12:22:26 +00:00
#include <wlr/types/wlr_cursor.h>
2017-12-09 16:51:28 +00:00
#include <wlr/types/wlr_xcursor_manager.h>
2017-12-08 13:07:47 +00:00
#include "sway/input/seat.h"
#include "sway/input/cursor.h"
#include "sway/input/input-manager.h"
2017-12-10 18:59:04 +00:00
#include "sway/input/keyboard.h"
2017-12-09 16:51:28 +00:00
#include "sway/output.h"
2017-12-10 16:11:47 +00:00
#include "sway/view.h"
2017-12-07 14:58:32 +00:00
#include "log.h"
2017-12-14 16:11:56 +00:00
static void seat_device_destroy(struct sway_seat_device *seat_device) {
if (!seat_device) {
return;
}
sway_keyboard_destroy(seat_device->keyboard);
wlr_cursor_detach_input_device(seat_device->sway_seat->cursor->cursor,
seat_device->input_device->wlr_device);
wl_list_remove(&seat_device->link);
free(seat_device);
}
2017-12-10 16:11:47 +00:00
struct sway_seat *sway_seat_create(struct sway_input_manager *input,
2017-12-07 14:58:32 +00:00
const char *seat_name) {
struct sway_seat *seat = calloc(1, sizeof(struct sway_seat));
if (!seat) {
return NULL;
}
2017-12-08 12:22:26 +00:00
2017-12-14 16:11:56 +00:00
seat->wlr_seat = wlr_seat_create(input->server->wl_display, seat_name);
if (!sway_assert(seat->wlr_seat, "could not allocate seat")) {
2017-12-08 12:22:26 +00:00
return NULL;
}
seat->cursor = sway_cursor_create(seat);
if (!seat->cursor) {
2017-12-14 16:11:56 +00:00
wlr_seat_destroy(seat->wlr_seat);
2017-12-08 12:22:26 +00:00
free(seat);
return NULL;
}
2017-12-10 16:11:47 +00:00
seat->input = input;
2017-12-14 16:11:56 +00:00
wl_list_init(&seat->devices);
2017-12-10 16:11:47 +00:00
2017-12-14 16:11:56 +00:00
wlr_seat_set_capabilities(seat->wlr_seat,
2017-12-08 12:22:26 +00:00
WL_SEAT_CAPABILITY_KEYBOARD |
WL_SEAT_CAPABILITY_POINTER |
WL_SEAT_CAPABILITY_TOUCH);
2017-12-09 16:51:28 +00:00
sway_seat_configure_xcursor(seat);
2017-12-12 13:29:37 +00:00
wl_list_insert(&input->seats, &seat->link);
2017-12-10 18:59:04 +00:00
2017-12-07 14:58:32 +00:00
return seat;
}
2017-12-14 16:11:56 +00:00
static void seat_configure_pointer(struct sway_seat *seat,
struct sway_seat_device *sway_device) {
2017-12-08 12:22:26 +00:00
// TODO pointer configuration
2017-12-12 13:29:37 +00:00
wlr_cursor_attach_input_device(seat->cursor->cursor,
2017-12-14 16:11:56 +00:00
sway_device->input_device->wlr_device);
2017-12-08 12:22:26 +00:00
}
2017-12-14 16:11:56 +00:00
static void seat_configure_keyboard(struct sway_seat *seat,
struct sway_seat_device *seat_device) {
if (!seat_device->keyboard) {
sway_keyboard_create(seat, seat_device);
}
sway_keyboard_configure(seat_device->keyboard);
2017-12-12 13:29:37 +00:00
}
2017-12-14 16:11:56 +00:00
static struct sway_seat_device *sway_seat_get_device(struct sway_seat *seat,
struct sway_input_device *input_device) {
struct sway_seat_device *seat_device = NULL;
wl_list_for_each(seat_device, &seat->devices, link) {
if (seat_device->input_device == input_device) {
return seat_device;
}
}
return NULL;
2017-12-10 18:59:04 +00:00
}
2017-12-14 16:11:56 +00:00
void sway_seat_configure_device(struct sway_seat *seat,
struct sway_input_device *input_device) {
struct sway_seat_device *seat_device =
sway_seat_get_device(seat, input_device);
if (!seat_device) {
2017-12-12 13:29:37 +00:00
return;
}
2017-12-14 16:11:56 +00:00
if (seat->config) {
seat_device->attachment_config =
seat_config_get_attachment(seat->config, input_device->identifier);
}
switch (input_device->wlr_device->type) {
2017-12-08 12:22:26 +00:00
case WLR_INPUT_DEVICE_POINTER:
2017-12-14 16:11:56 +00:00
seat_configure_pointer(seat, seat_device);
2017-12-08 12:22:26 +00:00
break;
case WLR_INPUT_DEVICE_KEYBOARD:
2017-12-14 16:11:56 +00:00
seat_configure_keyboard(seat, seat_device);
wlr_seat_set_keyboard(seat->wlr_seat,
seat_device->input_device->wlr_device);
2017-12-10 18:59:04 +00:00
break;
2017-12-08 12:22:26 +00:00
case WLR_INPUT_DEVICE_TOUCH:
case WLR_INPUT_DEVICE_TABLET_PAD:
case WLR_INPUT_DEVICE_TABLET_TOOL:
2017-12-14 16:11:56 +00:00
sway_log(L_DEBUG, "TODO: configure other devices");
2017-12-08 12:22:26 +00:00
break;
}
}
2017-12-14 16:11:56 +00:00
void sway_seat_add_device(struct sway_seat *seat,
struct sway_input_device *input_device) {
if (sway_seat_get_device(seat, input_device)) {
return;
2017-12-10 20:37:17 +00:00
}
2017-12-14 16:11:56 +00:00
struct sway_seat_device *seat_device =
calloc(1, sizeof(struct sway_seat_device));
if (!seat_device) {
sway_log(L_DEBUG, "could not allocate seat device");
return;
}
2017-12-16 18:16:58 +00:00
sway_log(L_DEBUG, "adding device %s to seat %s",
input_device->identifier, seat->wlr_seat->name);
2017-12-14 16:11:56 +00:00
seat_device->sway_seat = seat;
seat_device->input_device = input_device;
wl_list_insert(&seat->devices, &seat_device->link);
sway_seat_configure_device(seat, input_device);
2017-12-07 14:58:32 +00:00
}
void sway_seat_remove_device(struct sway_seat *seat,
2017-12-14 16:11:56 +00:00
struct sway_input_device *input_device) {
struct sway_seat_device *seat_device =
sway_seat_get_device(seat, input_device);
2017-12-12 13:29:37 +00:00
2017-12-14 16:11:56 +00:00
if (!seat_device) {
return;
2017-12-08 12:22:26 +00:00
}
2017-12-12 13:29:37 +00:00
2017-12-16 18:16:58 +00:00
sway_log(L_DEBUG, "removing device %s from seat %s",
input_device->identifier, seat->wlr_seat->name);
2017-12-14 16:11:56 +00:00
seat_device_destroy(seat_device);
2017-12-07 14:58:32 +00:00
}
2017-12-09 16:51:28 +00:00
void sway_seat_configure_xcursor(struct sway_seat *seat) {
// TODO configure theme and size
const char *cursor_theme = "default";
2017-12-09 19:06:00 +00:00
if (!seat->cursor->xcursor_manager) {
seat->cursor->xcursor_manager =
wlr_xcursor_manager_create("default", 24);
if (sway_assert(seat->cursor->xcursor_manager,
2017-12-14 16:11:56 +00:00
"Cannot create XCursor manager for theme %s",
cursor_theme)) {
2017-12-09 19:06:00 +00:00
return;
}
2017-12-09 16:51:28 +00:00
}
for (int i = 0; i < root_container.children->length; ++i) {
swayc_t *output_container = root_container.children->items[i];
struct wlr_output *output =
output_container->sway_output->wlr_output;
bool result =
wlr_xcursor_manager_load(seat->cursor->xcursor_manager,
output->scale);
2017-12-09 19:06:00 +00:00
sway_assert(!result,
2017-12-16 12:39:22 +00:00
"Cannot load xcursor theme for output '%s' with scale %f",
2017-12-09 16:51:28 +00:00
output->name, output->scale);
}
wlr_xcursor_manager_set_cursor_image(seat->cursor->xcursor_manager,
"left_ptr", seat->cursor->cursor);
wlr_cursor_warp(seat->cursor->cursor, NULL, seat->cursor->cursor->x,
seat->cursor->cursor->y);
}
2017-12-10 16:11:47 +00:00
static void handle_focus_destroy(struct wl_listener *listener, void *data) {
struct sway_seat *seat = wl_container_of(listener, seat, focus_destroy);
//swayc_t *container = data;
// TODO set new focus based on the state of the tree
sway_seat_set_focus(seat, NULL);
}
void sway_seat_set_focus(struct sway_seat *seat, swayc_t *container) {
swayc_t *last_focus = seat->focus;
if (last_focus == container) {
return;
}
if (last_focus) {
wl_list_remove(&seat->focus_destroy.link);
}
if (container) {
struct sway_view *view = container->sway_view;
view->iface.set_activated(view, true);
wl_signal_add(&container->events.destroy, &seat->focus_destroy);
seat->focus_destroy.notify = handle_focus_destroy;
2017-12-14 16:11:56 +00:00
wlr_seat_keyboard_notify_enter(seat->wlr_seat, view->surface);
2017-12-10 16:11:47 +00:00
}
seat->focus = container;
if (last_focus &&
2017-12-12 13:29:37 +00:00
!sway_input_manager_has_focus(seat->input, last_focus)) {
2017-12-10 16:11:47 +00:00
struct sway_view *view = last_focus->sway_view;
view->iface.set_activated(view, false);
}
}
2017-12-14 16:11:56 +00:00
void sway_seat_set_config(struct sway_seat *seat,
struct seat_config *seat_config) {
// clear configs
seat->config = NULL;
struct sway_seat_device *seat_device = NULL;
wl_list_for_each(seat_device, &seat->devices, link) {
seat_device->attachment_config = NULL;
}
if (!seat_config) {
return;
}
// add configs
seat->config = seat_config;
wl_list_for_each(seat_device, &seat->devices, link) {
seat_device->attachment_config =
seat_config_get_attachment(seat_config,
seat_device->input_device->identifier);
sway_seat_configure_device(seat, seat_device->input_device);
}
}