mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 13:04:11 +01:00
Add input inhibitor to input manager
This commit is contained in:
parent
3ede718c06
commit
06fbd51ff5
@ -1,6 +1,7 @@
|
|||||||
#ifndef _SWAY_INPUT_INPUT_MANAGER_H
|
#ifndef _SWAY_INPUT_INPUT_MANAGER_H
|
||||||
#define _SWAY_INPUT_INPUT_MANAGER_H
|
#define _SWAY_INPUT_INPUT_MANAGER_H
|
||||||
#include <libinput.h>
|
#include <libinput.h>
|
||||||
|
#include <wlr/types/wlr_input_inhibitor.h>
|
||||||
#include "sway/server.h"
|
#include "sway/server.h"
|
||||||
#include "sway/config.h"
|
#include "sway/config.h"
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
@ -23,7 +24,11 @@ struct sway_input_manager {
|
|||||||
struct wl_list devices;
|
struct wl_list devices;
|
||||||
struct wl_list seats;
|
struct wl_list seats;
|
||||||
|
|
||||||
|
struct wlr_input_inhibit_manager *inhibit;
|
||||||
|
|
||||||
struct wl_listener new_input;
|
struct wl_listener new_input;
|
||||||
|
struct wl_listener inhibit_activate;
|
||||||
|
struct wl_listener inhibit_deactivate;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct sway_input_manager *input_manager_create(struct sway_server *server);
|
struct sway_input_manager *input_manager_create(struct sway_server *server);
|
||||||
|
@ -64,6 +64,9 @@ void seat_set_focus_warp(struct sway_seat *seat,
|
|||||||
void seat_set_focus_layer(struct sway_seat *seat,
|
void seat_set_focus_layer(struct sway_seat *seat,
|
||||||
struct wlr_layer_surface *layer);
|
struct wlr_layer_surface *layer);
|
||||||
|
|
||||||
|
void seat_set_exclusive_client(struct sway_seat *seat,
|
||||||
|
struct wl_client *client);
|
||||||
|
|
||||||
struct sway_container *seat_get_focus(struct sway_seat *seat);
|
struct sway_container *seat_get_focus(struct sway_seat *seat);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
#include <libinput.h>
|
#include <libinput.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <wlr/backend/libinput.h>
|
#include <wlr/backend/libinput.h>
|
||||||
|
#include <wlr/types/wlr_input_inhibitor.h>
|
||||||
#include "sway/config.h"
|
#include "sway/config.h"
|
||||||
#include "sway/input/input-manager.h"
|
#include "sway/input/input-manager.h"
|
||||||
#include "sway/input/seat.h"
|
#include "sway/input/seat.h"
|
||||||
@ -263,6 +264,24 @@ static void handle_new_input(struct wl_listener *listener, void *data) {
|
|||||||
input_device->device_destroy.notify = handle_device_destroy;
|
input_device->device_destroy.notify = handle_device_destroy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void handle_inhibit_activate(struct wl_listener *listener, void *data) {
|
||||||
|
struct sway_input_manager *input_manager = wl_container_of(
|
||||||
|
listener, input_manager, inhibit_activate);
|
||||||
|
struct sway_seat *seat;
|
||||||
|
wl_list_for_each(seat, &input_manager->seats, link) {
|
||||||
|
seat_set_exclusive_client(seat, input_manager->inhibit->active_client);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void handle_inhibit_deactivate(struct wl_listener *listener, void *data) {
|
||||||
|
struct sway_input_manager *input_manager = wl_container_of(
|
||||||
|
listener, input_manager, inhibit_deactivate);
|
||||||
|
struct sway_seat *seat;
|
||||||
|
wl_list_for_each(seat, &input_manager->seats, link) {
|
||||||
|
seat_set_exclusive_client(seat, NULL);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct sway_input_manager *input_manager_create(
|
struct sway_input_manager *input_manager_create(
|
||||||
struct sway_server *server) {
|
struct sway_server *server) {
|
||||||
struct sway_input_manager *input =
|
struct sway_input_manager *input =
|
||||||
@ -281,6 +300,14 @@ struct sway_input_manager *input_manager_create(
|
|||||||
input->new_input.notify = handle_new_input;
|
input->new_input.notify = handle_new_input;
|
||||||
wl_signal_add(&server->backend->events.new_input, &input->new_input);
|
wl_signal_add(&server->backend->events.new_input, &input->new_input);
|
||||||
|
|
||||||
|
input->inhibit = wlr_input_inhibit_manager_create(server->wl_display);
|
||||||
|
input->inhibit_activate.notify = handle_inhibit_activate;
|
||||||
|
wl_signal_add(&input->inhibit->events.activate,
|
||||||
|
&input->inhibit_activate);
|
||||||
|
input->inhibit_deactivate.notify = handle_inhibit_deactivate;
|
||||||
|
wl_signal_add(&input->inhibit->events.deactivate,
|
||||||
|
&input->inhibit_deactivate);
|
||||||
|
|
||||||
return input;
|
return input;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -460,6 +460,11 @@ void seat_set_focus_layer(struct sway_seat *seat,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void seat_set_exclusive_client(struct sway_seat *seat,
|
||||||
|
struct wl_client *client) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
struct sway_container *seat_get_focus_inactive(struct sway_seat *seat,
|
struct sway_container *seat_get_focus_inactive(struct sway_seat *seat,
|
||||||
struct sway_container *container) {
|
struct sway_container *container) {
|
||||||
return seat_get_focus_by_type(seat, container, C_TYPES);
|
return seat_get_focus_by_type(seat, container, C_TYPES);
|
||||||
|
Loading…
Reference in New Issue
Block a user