mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
Make the close command use roots_seat_get_focus, rename a few symbols
This commit is contained in:
parent
a8b31da52c
commit
bf41e7a794
5 changed files with 17 additions and 18 deletions
|
@ -28,7 +28,7 @@ struct roots_seat_view {
|
|||
struct roots_view *view;
|
||||
struct wl_list link; // roots_seat::views
|
||||
|
||||
struct wl_listener destroy;
|
||||
struct wl_listener view_destroy;
|
||||
};
|
||||
|
||||
struct roots_pointer {
|
||||
|
@ -69,7 +69,7 @@ void roots_seat_configure_xcursor(struct roots_seat *seat);
|
|||
|
||||
bool roots_seat_has_meta_pressed(struct roots_seat *seat);
|
||||
|
||||
struct roots_view *roots_seat_get_focused_view(struct roots_seat *seat);
|
||||
struct roots_view *roots_seat_get_focus(struct roots_seat *seat);
|
||||
|
||||
void roots_seat_focus_view(struct roots_seat *seat, struct roots_view *view);
|
||||
|
||||
|
|
|
@ -58,7 +58,7 @@ static void roots_cursor_update_position(struct roots_cursor *cursor,
|
|||
}
|
||||
break;
|
||||
case ROOTS_CURSOR_MOVE:
|
||||
view = roots_seat_get_focused_view(seat);
|
||||
view = roots_seat_get_focus(seat);
|
||||
if (view != NULL) {
|
||||
double dx = cursor->cursor->x - cursor->offs_x;
|
||||
double dy = cursor->cursor->y - cursor->offs_y;
|
||||
|
@ -67,7 +67,7 @@ static void roots_cursor_update_position(struct roots_cursor *cursor,
|
|||
}
|
||||
break;
|
||||
case ROOTS_CURSOR_RESIZE:
|
||||
view = roots_seat_get_focused_view(seat);
|
||||
view = roots_seat_get_focus(seat);
|
||||
if (view != NULL) {
|
||||
double dx = cursor->cursor->x - cursor->offs_x;
|
||||
double dy = cursor->cursor->y - cursor->offs_y;
|
||||
|
@ -111,7 +111,7 @@ static void roots_cursor_update_position(struct roots_cursor *cursor,
|
|||
}
|
||||
break;
|
||||
case ROOTS_CURSOR_ROTATE:
|
||||
view = roots_seat_get_focused_view(seat);
|
||||
view = roots_seat_get_focus(seat);
|
||||
if (view != NULL) {
|
||||
int ox = view->x + view->wlr_surface->current->width/2,
|
||||
oy = view->y + view->wlr_surface->current->height/2;
|
||||
|
|
|
@ -116,7 +116,7 @@ bool input_view_has_focus(struct roots_input *input, struct roots_view *view) {
|
|||
}
|
||||
struct roots_seat *seat;
|
||||
wl_list_for_each(seat, &input->seats, link) {
|
||||
if (view == roots_seat_get_focused_view(seat)) {
|
||||
if (view == roots_seat_get_focus(seat)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -91,10 +91,9 @@ static void keyboard_binding_execute(struct roots_keyboard *keyboard,
|
|||
if (strcmp(command, "exit") == 0) {
|
||||
wl_display_terminate(keyboard->input->server->wl_display);
|
||||
} else if (strcmp(command, "close") == 0) {
|
||||
if (!wl_list_empty(&seat->views)) {
|
||||
struct roots_seat_view *first_seat_view = wl_container_of(
|
||||
seat->views.next, first_seat_view, link);
|
||||
view_close(first_seat_view->view);
|
||||
struct roots_view *focus = roots_seat_get_focus(seat);
|
||||
if (focus != NULL) {
|
||||
view_close(focus);
|
||||
}
|
||||
} else if (strcmp(command, "next_window") == 0) {
|
||||
if (!wl_list_empty(&seat->views)) {
|
||||
|
|
|
@ -485,7 +485,7 @@ bool roots_seat_has_meta_pressed(struct roots_seat *seat) {
|
|||
return false;
|
||||
}
|
||||
|
||||
struct roots_view *roots_seat_get_focused_view(struct roots_seat *seat) {
|
||||
struct roots_view *roots_seat_get_focus(struct roots_seat *seat) {
|
||||
if (!seat->has_focus || wl_list_empty(&seat->views)) {
|
||||
return NULL;
|
||||
}
|
||||
|
@ -497,12 +497,12 @@ struct roots_view *roots_seat_get_focused_view(struct roots_seat *seat) {
|
|||
static void seat_view_destroy(struct roots_seat_view *seat_view) {
|
||||
struct roots_seat *seat = seat_view->seat;
|
||||
|
||||
if (seat_view->view == roots_seat_get_focused_view(seat)) {
|
||||
if (seat_view->view == roots_seat_get_focus(seat)) {
|
||||
seat->has_focus = false;
|
||||
seat->cursor->mode = ROOTS_CURSOR_PASSTHROUGH;
|
||||
}
|
||||
|
||||
wl_list_remove(&seat_view->destroy.link);
|
||||
wl_list_remove(&seat_view->view_destroy.link);
|
||||
wl_list_remove(&seat_view->link);
|
||||
free(seat_view);
|
||||
|
||||
|
@ -516,7 +516,7 @@ static void seat_view_destroy(struct roots_seat_view *seat_view) {
|
|||
|
||||
static void seat_view_handle_destroy(struct wl_listener *listener, void *data) {
|
||||
struct roots_seat_view *seat_view =
|
||||
wl_container_of(listener, seat_view, destroy);
|
||||
wl_container_of(listener, seat_view, view_destroy);
|
||||
seat_view_destroy(seat_view);
|
||||
}
|
||||
|
||||
|
@ -532,14 +532,14 @@ static struct roots_seat_view *seat_add_view(struct roots_seat *seat,
|
|||
|
||||
wl_list_insert(&seat->views, &seat_view->link);
|
||||
|
||||
seat_view->destroy.notify = seat_view_handle_destroy;
|
||||
wl_signal_add(&view->events.destroy, &seat_view->destroy);
|
||||
seat_view->view_destroy.notify = seat_view_handle_destroy;
|
||||
wl_signal_add(&view->events.destroy, &seat_view->view_destroy);
|
||||
|
||||
return seat_view;
|
||||
}
|
||||
|
||||
void roots_seat_focus_view(struct roots_seat *seat, struct roots_view *view) {
|
||||
struct roots_view *prev_focus = roots_seat_get_focused_view(seat);
|
||||
struct roots_view *prev_focus = roots_seat_get_focus(seat);
|
||||
if (view == prev_focus) {
|
||||
return;
|
||||
}
|
||||
|
@ -569,7 +569,7 @@ void roots_seat_focus_view(struct roots_seat *seat, struct roots_view *view) {
|
|||
|
||||
seat->has_focus = false;
|
||||
|
||||
// unfocus the old view if it is not focused by some other seat
|
||||
// deactivate the old view if it is not focused by some other seat
|
||||
if (prev_focus != NULL && !input_view_has_focus(seat->input, prev_focus)) {
|
||||
view_activate(prev_focus, false);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue