aboutsummaryrefslogtreecommitdiff
path: root/sway/input
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input')
-rw-r--r--sway/input/input-manager.c83
-rw-r--r--sway/input/seat.c3
2 files changed, 60 insertions, 26 deletions
diff --git a/sway/input/input-manager.c b/sway/input/input-manager.c
index fa8e4b49..16301489 100644
--- a/sway/input/input-manager.c
+++ b/sway/input/input-manager.c
@@ -56,9 +56,9 @@ static char *get_device_identifier(struct wlr_input_device *device) {
int len =
(strlen(name) +
- strlen_num(device->vendor) +
- strlen_num(device->product) +
- 3) * sizeof(char);
+ strlen_num(device->vendor) +
+ strlen_num(device->product) +
+ 3) * sizeof(char);
char *identifier = malloc(len);
if (!identifier) {
@@ -151,13 +151,30 @@ static void input_add_notify(struct wl_listener *listener, void *data) {
return;
}
+ bool added = false;
wl_list_for_each(seat, &input->seats, link) {
if (seat->config &&
(seat_config_get_attachment(seat->config, input_device->identifier) ||
seat_config_get_attachment(seat->config, "*"))) {
sway_seat_add_device(seat, input_device);
+ added = true;
}
}
+
+ if (!added) {
+ wl_list_for_each(seat, &input->seats, link) {
+ if (seat->config && seat->config->fallback == 1) {
+ sway_seat_add_device(seat, input_device);
+ added = true;
+ }
+ }
+ }
+
+ if (!added) {
+ sway_log(L_DEBUG,
+ "device '%s' is not configured on any seats",
+ input_device->identifier);
+ }
}
static void input_remove_notify(struct wl_listener *listener, void *data) {
@@ -248,35 +265,53 @@ void sway_input_manager_apply_seat_config(struct sway_input_manager *input,
struct seat_config *seat_config) {
sway_log(L_DEBUG, "applying new seat config for seat %s", seat_config->name);
struct sway_seat *seat = input_manager_get_seat(input, seat_config->name);
- // the old config is invalid so clear it
- sway_seat_set_config(seat, NULL);
+ if (!seat) {
+ return;
+ }
+
+ sway_seat_set_config(seat, seat_config);
- // clear devices
+ // for every device, try to add it to a seat and if no seat has it
+ // attached, add it to the fallback seats.
struct sway_input_device *input_device = NULL;
wl_list_for_each(input_device, &input->devices, link) {
- sway_seat_remove_device(seat, input_device);
- }
-
- if (seat_config_get_attachment(seat_config, "*")) {
- wl_list_for_each(input_device, &input->devices, link) {
- sway_seat_add_device(seat, input_device);
+ list_t *seat_list = create_list();
+ struct sway_seat *seat = NULL;
+ wl_list_for_each(seat, &input->seats, link) {
+ if (!seat->config) {
+ continue;
+ }
+ if (seat_config_get_attachment(seat->config, "*") ||
+ seat_config_get_attachment(seat->config, input_device->identifier)) {
+ list_add(seat_list, seat);
+ }
}
- } else {
- for (int i = 0; i < seat_config->attachments->length; ++i) {
- struct seat_attachment_config *attachment =
- seat_config->attachments->items[i];
-
- struct sway_input_device *device =
- input_sway_device_from_identifier(input,
- attachment->identifier);
- if (device) {
- sway_seat_add_device(seat, device);
+ if (seat_list->length) {
+ wl_list_for_each(seat, &input->seats, link) {
+ bool attached = false;
+ for (int i = 0; i < seat_list->length; ++i) {
+ if (seat == seat_list->items[i]) {
+ attached = true;
+ break;
+ }
+ }
+ if (attached) {
+ sway_seat_add_device(seat, input_device);
+ } else {
+ sway_seat_remove_device(seat, input_device);
+ }
+ }
+ } else {
+ wl_list_for_each(seat, &input->seats, link) {
+ if (seat->config && seat->config->fallback == 1) {
+ sway_seat_add_device(seat, input_device);
+ } else {
+ sway_seat_remove_device(seat, input_device);
+ }
}
}
}
-
- sway_seat_set_config(seat, seat_config);
}
void sway_input_manager_configure_xcursor(struct sway_input_manager *input) {
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 8fe82b46..94503687 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -120,6 +120,7 @@ void sway_seat_configure_device(struct sway_seat *seat,
void sway_seat_add_device(struct sway_seat *seat,
struct sway_input_device *input_device) {
if (sway_seat_get_device(seat, input_device)) {
+ sway_seat_configure_device(seat, input_device);
return;
}
@@ -246,7 +247,5 @@ void sway_seat_set_config(struct sway_seat *seat,
seat_device->attachment_config =
seat_config_get_attachment(seat_config,
seat_device->input_device->identifier);
- sway_seat_configure_device(seat, seat_device->input_device);
}
-
}