mirror of
https://github.com/swaywm/sway.git
synced 2025-11-26 06:59:59 -05:00
config reload: destroy old seat when removed from config
This adds new sway_seat_destroy and sway_cursor_destroy helpers and compare new and old config on free
This commit is contained in:
parent
869be4378d
commit
5766f426aa
7 changed files with 45 additions and 1 deletions
|
|
@ -149,6 +149,16 @@ static void handle_request_set_cursor(struct wl_listener *listener,
|
|||
wlr_log(L_DEBUG, "TODO: handle request set cursor event: %p", event);
|
||||
}
|
||||
|
||||
void sway_cursor_destroy(struct sway_cursor *cursor) {
|
||||
if (!cursor) {
|
||||
return;
|
||||
}
|
||||
|
||||
wlr_xcursor_manager_destroy(cursor->xcursor_manager);
|
||||
wlr_cursor_destroy(cursor->cursor);
|
||||
free(cursor);
|
||||
}
|
||||
|
||||
struct sway_cursor *sway_cursor_create(struct sway_seat *seat) {
|
||||
struct sway_cursor *cursor = calloc(1, sizeof(struct sway_cursor));
|
||||
if (!sway_assert(cursor, "could not allocate sway cursor")) {
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ struct sway_input_manager *input_manager;
|
|||
struct input_config *current_input_config = NULL;
|
||||
struct seat_config *current_seat_config = NULL;
|
||||
|
||||
static struct sway_seat *input_manager_get_seat(
|
||||
struct sway_seat *input_manager_get_seat(
|
||||
struct sway_input_manager *input, const char *seat_name) {
|
||||
struct sway_seat *seat = NULL;
|
||||
wl_list_for_each(seat, &input->seats, link) {
|
||||
|
|
|
|||
|
|
@ -21,6 +21,16 @@ static void seat_device_destroy(struct sway_seat_device *seat_device) {
|
|||
free(seat_device);
|
||||
}
|
||||
|
||||
void sway_seat_destroy(struct sway_seat *seat) {
|
||||
struct sway_seat_device *seat_device, *next;
|
||||
wl_list_for_each_safe(seat_device, next, &seat->devices, link) {
|
||||
seat_device_destroy(seat_device);
|
||||
}
|
||||
sway_cursor_destroy(seat->cursor);
|
||||
wl_list_remove(&seat->link);
|
||||
wlr_seat_destroy(seat->wlr_seat);
|
||||
}
|
||||
|
||||
struct sway_seat *sway_seat_create(struct sway_input_manager *input,
|
||||
const char *seat_name) {
|
||||
struct sway_seat *seat = calloc(1, sizeof(struct sway_seat));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue