mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-09 23:15:59 +01:00
wl-shell: render popups in the right place
This commit is contained in:
parent
fbddc81b59
commit
cd1204f71f
3 changed files with 84 additions and 9 deletions
|
@ -18,7 +18,6 @@ struct wlr_wl_shell {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct wlr_wl_shell_surface_transient_state {
|
struct wlr_wl_shell_surface_transient_state {
|
||||||
struct wlr_wl_shell_surface *parent;
|
|
||||||
int32_t x;
|
int32_t x;
|
||||||
int32_t y;
|
int32_t y;
|
||||||
enum wl_shell_surface_transient flags;
|
enum wl_shell_surface_transient flags;
|
||||||
|
@ -55,6 +54,10 @@ struct wlr_wl_shell_surface {
|
||||||
|
|
||||||
struct wl_listener surface_destroy_listener;
|
struct wl_listener surface_destroy_listener;
|
||||||
|
|
||||||
|
struct wlr_wl_shell_surface *parent;
|
||||||
|
struct wl_list child_link;
|
||||||
|
struct wl_list children; // transient and popups
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
struct wl_signal destroy;
|
struct wl_signal destroy;
|
||||||
struct wl_signal ping_timeout;
|
struct wl_signal ping_timeout;
|
||||||
|
@ -108,5 +111,6 @@ void wlr_wl_shell_surface_ping(struct wlr_wl_shell_surface *surface);
|
||||||
void wlr_wl_shell_surface_configure(struct wlr_wl_shell_surface *surface,
|
void wlr_wl_shell_surface_configure(struct wlr_wl_shell_surface *surface,
|
||||||
enum wl_shell_surface_resize edges, int32_t width, int32_t height);
|
enum wl_shell_surface_resize edges, int32_t width, int32_t height);
|
||||||
void wlr_wl_shell_surface_popup_done(struct wlr_wl_shell_surface *surface);
|
void wlr_wl_shell_surface_popup_done(struct wlr_wl_shell_surface *surface);
|
||||||
|
bool wlr_wl_shell_surface_is_transient(struct wlr_wl_shell_surface *surface);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -97,13 +97,39 @@ static void render_xdg_v6_popups(struct wlr_xdg_surface_v6 *surface,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void render_wl_shell_surface(struct wlr_wl_shell_surface *surface, struct roots_desktop *desktop,
|
||||||
|
struct wlr_output *wlr_output, struct timespec *when, double lx,
|
||||||
|
double ly, float rotation, bool is_child) {
|
||||||
|
if (is_child || !wlr_wl_shell_surface_is_transient(surface)) {
|
||||||
|
render_surface(surface->surface, desktop, wlr_output, when,
|
||||||
|
lx, ly, rotation);
|
||||||
|
struct wlr_wl_shell_surface *child;
|
||||||
|
wl_list_for_each(child, &surface->children, child_link) {
|
||||||
|
render_wl_shell_surface(child, desktop, wlr_output, when,
|
||||||
|
lx + child->transient_state->x,
|
||||||
|
ly + child->transient_state->y,
|
||||||
|
rotation, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void render_view(struct roots_view *view, struct roots_desktop *desktop,
|
static void render_view(struct roots_view *view, struct roots_desktop *desktop,
|
||||||
struct wlr_output *wlr_output, struct timespec *when) {
|
struct wlr_output *wlr_output, struct timespec *when) {
|
||||||
|
switch (view->type) {
|
||||||
|
case ROOTS_XDG_SHELL_V6_VIEW:
|
||||||
render_surface(view->wlr_surface, desktop, wlr_output, when,
|
render_surface(view->wlr_surface, desktop, wlr_output, when,
|
||||||
view->x, view->y, view->rotation);
|
view->x, view->y, view->rotation);
|
||||||
if (view->type == ROOTS_XDG_SHELL_V6_VIEW) {
|
|
||||||
render_xdg_v6_popups(view->xdg_surface_v6, desktop, wlr_output,
|
render_xdg_v6_popups(view->xdg_surface_v6, desktop, wlr_output,
|
||||||
when, view->x, view->y, view->rotation);
|
when, view->x, view->y, view->rotation);
|
||||||
|
break;
|
||||||
|
case ROOTS_WL_SHELL_VIEW:
|
||||||
|
render_wl_shell_surface(view->wl_shell_surface, desktop, wlr_output,
|
||||||
|
when, view->x, view->y, view->rotation, false);
|
||||||
|
break;
|
||||||
|
case ROOTS_XWAYLAND_VIEW:
|
||||||
|
render_surface(view->wlr_surface, desktop, wlr_output, when,
|
||||||
|
view->x, view->y, view->rotation);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -93,22 +93,53 @@ static void shell_surface_set_toplevel(struct wl_client *client,
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void shell_surface_set_parent(struct wlr_wl_shell_surface *surface,
|
||||||
|
struct wlr_wl_shell_surface *parent) {
|
||||||
|
assert(surface);
|
||||||
|
surface->parent = parent;
|
||||||
|
wl_list_remove(&surface->child_link);
|
||||||
|
wl_list_init(&surface->child_link);
|
||||||
|
if (parent) {
|
||||||
|
wl_list_insert(&parent->children, &surface->child_link);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct wlr_wl_shell_surface *shell_get_shell_surface(struct wlr_wl_shell *shell,
|
||||||
|
struct wlr_surface *surface) {
|
||||||
|
if (surface) {
|
||||||
|
struct wlr_wl_shell_surface *wl_surface;
|
||||||
|
wl_list_for_each(wl_surface, &shell->surfaces, link) {
|
||||||
|
if (wl_surface->surface == surface) {
|
||||||
|
return wl_surface;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static void shell_surface_set_transient(struct wl_client *client,
|
static void shell_surface_set_transient(struct wl_client *client,
|
||||||
struct wl_resource *resource, struct wl_resource *parent_resource,
|
struct wl_resource *resource, struct wl_resource *parent_resource,
|
||||||
int32_t x, int32_t y, enum wl_shell_surface_transient flags) {
|
int32_t x, int32_t y, enum wl_shell_surface_transient flags) {
|
||||||
wlr_log(L_DEBUG, "got shell surface transient");
|
wlr_log(L_DEBUG, "got shell surface transient");
|
||||||
struct wlr_wl_shell_surface *surface = wl_resource_get_user_data(resource);
|
struct wlr_wl_shell_surface *surface = wl_resource_get_user_data(resource);
|
||||||
struct wlr_wl_shell_surface *parent =
|
struct wlr_surface *parent =
|
||||||
wl_resource_get_user_data(parent_resource);
|
wl_resource_get_user_data(parent_resource);
|
||||||
// TODO: check if parent_resource == NULL?
|
// TODO: check if parent_resource == NULL?
|
||||||
|
|
||||||
|
struct wlr_wl_shell_surface *wl_parent = shell_get_shell_surface(surface->shell, parent);
|
||||||
|
|
||||||
|
if (!wl_parent) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
struct wlr_wl_shell_surface_transient_state *transient_state =
|
struct wlr_wl_shell_surface_transient_state *transient_state =
|
||||||
calloc(1, sizeof(struct wlr_wl_shell_surface_transient_state));
|
calloc(1, sizeof(struct wlr_wl_shell_surface_transient_state));
|
||||||
if (transient_state == NULL) {
|
if (transient_state == NULL) {
|
||||||
wl_client_post_no_memory(client);
|
wl_client_post_no_memory(client);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
transient_state->parent = parent;
|
|
||||||
|
shell_surface_set_parent(surface, wl_parent);
|
||||||
transient_state->x = x;
|
transient_state->x = x;
|
||||||
transient_state->y = y;
|
transient_state->y = y;
|
||||||
transient_state->flags = flags;
|
transient_state->flags = flags;
|
||||||
|
@ -158,9 +189,10 @@ static void shell_surface_set_popup(struct wl_client *client,
|
||||||
struct wlr_wl_shell_surface *surface = wl_resource_get_user_data(resource);
|
struct wlr_wl_shell_surface *surface = wl_resource_get_user_data(resource);
|
||||||
struct wlr_seat_handle *seat_handle =
|
struct wlr_seat_handle *seat_handle =
|
||||||
wl_resource_get_user_data(seat_resource);
|
wl_resource_get_user_data(seat_resource);
|
||||||
struct wlr_wl_shell_surface *parent =
|
struct wlr_surface *parent =
|
||||||
wl_resource_get_user_data(parent_resource);
|
wl_resource_get_user_data(parent_resource);
|
||||||
// TODO: check if parent_resource == NULL?
|
|
||||||
|
struct wlr_wl_shell_surface *wl_parent = shell_get_shell_surface(surface->shell, parent);
|
||||||
|
|
||||||
struct wlr_wl_shell_surface_transient_state *transient_state =
|
struct wlr_wl_shell_surface_transient_state *transient_state =
|
||||||
calloc(1, sizeof(struct wlr_wl_shell_surface_transient_state));
|
calloc(1, sizeof(struct wlr_wl_shell_surface_transient_state));
|
||||||
|
@ -168,7 +200,7 @@ static void shell_surface_set_popup(struct wl_client *client,
|
||||||
wl_client_post_no_memory(client);
|
wl_client_post_no_memory(client);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
transient_state->parent = parent;
|
shell_surface_set_parent(surface, wl_parent);
|
||||||
transient_state->x = x;
|
transient_state->x = x;
|
||||||
transient_state->y = y;
|
transient_state->y = y;
|
||||||
transient_state->flags = flags;
|
transient_state->flags = flags;
|
||||||
|
@ -263,6 +295,13 @@ struct wl_shell_surface_interface shell_surface_interface = {
|
||||||
static void wl_shell_surface_destroy(struct wlr_wl_shell_surface *surface) {
|
static void wl_shell_surface_destroy(struct wlr_wl_shell_surface *surface) {
|
||||||
wl_signal_emit(&surface->events.destroy, surface);
|
wl_signal_emit(&surface->events.destroy, surface);
|
||||||
wl_resource_set_user_data(surface->resource, NULL);
|
wl_resource_set_user_data(surface->resource, NULL);
|
||||||
|
|
||||||
|
struct wlr_wl_shell_surface *child;
|
||||||
|
wl_list_for_each(child, &surface->children, child_link) {
|
||||||
|
shell_surface_set_parent(child, NULL);
|
||||||
|
}
|
||||||
|
wl_list_remove(&surface->child_link);
|
||||||
|
|
||||||
wl_list_remove(&surface->link);
|
wl_list_remove(&surface->link);
|
||||||
wl_list_remove(&surface->surface_destroy_listener.link);
|
wl_list_remove(&surface->surface_destroy_listener.link);
|
||||||
wl_event_source_remove(surface->ping_timer);
|
wl_event_source_remove(surface->ping_timer);
|
||||||
|
@ -311,6 +350,8 @@ static void wl_shell_get_shell_surface(struct wl_client *client,
|
||||||
wl_client_post_no_memory(client);
|
wl_client_post_no_memory(client);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
wl_list_init(&wl_surface->child_link);
|
||||||
|
wl_list_init(&wl_surface->children);
|
||||||
|
|
||||||
wl_surface->shell = wl_shell;
|
wl_surface->shell = wl_shell;
|
||||||
wl_surface->client = client;
|
wl_surface->client = client;
|
||||||
|
@ -430,3 +471,7 @@ void wlr_wl_shell_surface_configure(struct wlr_wl_shell_surface *surface,
|
||||||
void wlr_wl_shell_surface_popup_done(struct wlr_wl_shell_surface *surface) {
|
void wlr_wl_shell_surface_popup_done(struct wlr_wl_shell_surface *surface) {
|
||||||
wl_shell_surface_send_popup_done(surface->resource);
|
wl_shell_surface_send_popup_done(surface->resource);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool wlr_wl_shell_surface_is_transient(struct wlr_wl_shell_surface *surface) {
|
||||||
|
return surface->parent != NULL;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue