mirror of
https://github.com/labwc/labwc.git
synced 2026-04-12 08:21:13 -04:00
Merge 216a83c1f9 into a89bcc3c60
This commit is contained in:
commit
865bb6349c
6 changed files with 39 additions and 0 deletions
|
|
@ -40,6 +40,7 @@ struct view;
|
|||
struct view_impl {
|
||||
void (*configure)(struct view *view, struct wlr_box geo);
|
||||
void (*close)(struct view *view);
|
||||
void (*close_popups)(struct view *view);
|
||||
const char *(*get_string_prop)(struct view *view, const char *prop);
|
||||
void (*map)(struct view *view);
|
||||
void (*set_activated)(struct view *view, bool activated);
|
||||
|
|
@ -166,6 +167,7 @@ void view_toggle_keybinds(struct view *view);
|
|||
void view_set_activated(struct view *view);
|
||||
void view_set_output(struct view *view, struct output *output);
|
||||
void view_close(struct view *view);
|
||||
void view_close_popups(struct view *view);
|
||||
|
||||
/**
|
||||
* view_move_resize - resize and move view
|
||||
|
|
|
|||
|
|
@ -879,6 +879,9 @@ handle_press_mousebinding(struct server *server, struct cursor_context *ctx,
|
|||
continue;
|
||||
}
|
||||
consumed_by_frame_context |= mousebind->context == LAB_SSD_FRAME;
|
||||
if (ctx->view) {
|
||||
view_close_popups(ctx->view);
|
||||
}
|
||||
actions_run(ctx->view, server, &mousebind->actions, resize_edges);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,10 +34,20 @@ desktop_arrange_all_views(struct server *server)
|
|||
}
|
||||
}
|
||||
|
||||
static void
|
||||
close_all_popups(struct server *server)
|
||||
{
|
||||
struct view *view;
|
||||
wl_list_for_each(view, &server->views, link) {
|
||||
view_close_popups(view);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
desktop_focus_and_activate_view(struct seat *seat, struct view *view)
|
||||
{
|
||||
if (!view) {
|
||||
close_all_popups(seat->server);
|
||||
seat_focus_surface(seat, NULL);
|
||||
return;
|
||||
}
|
||||
|
|
@ -77,6 +87,7 @@ desktop_focus_and_activate_view(struct seat *seat, struct view *view)
|
|||
return;
|
||||
}
|
||||
|
||||
view_close_popups(view);
|
||||
view_set_activated(view);
|
||||
seat_focus_surface(seat, view->surface);
|
||||
}
|
||||
|
|
@ -168,6 +179,9 @@ desktop_cycle_view(struct server *server, struct view *start_view,
|
|||
return start_view; /* may be NULL */
|
||||
}
|
||||
}
|
||||
|
||||
view_close_popups(start_view);
|
||||
|
||||
struct view *view = start_view;
|
||||
struct wlr_scene_node *node = &view->scene_tree->node;
|
||||
|
||||
|
|
|
|||
|
|
@ -96,6 +96,7 @@ interactive_begin(struct view *view, enum input_mode mode, uint32_t edges)
|
|||
server->grab_y = seat->cursor->y;
|
||||
server->grab_box = geometry;
|
||||
server->resize_edges = edges;
|
||||
view_close_popups(view);
|
||||
}
|
||||
|
||||
/* Returns true if view was snapped to any edge */
|
||||
|
|
|
|||
|
|
@ -152,6 +152,14 @@ view_close(struct view *view)
|
|||
}
|
||||
}
|
||||
|
||||
void
|
||||
view_close_popups(struct view *view)
|
||||
{
|
||||
if (view->impl->close_popups) {
|
||||
view->impl->close_popups(view);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
view_move(struct view *view, int x, int y)
|
||||
{
|
||||
|
|
|
|||
11
src/xdg.c
11
src/xdg.c
|
|
@ -308,6 +308,16 @@ xdg_toplevel_view_close(struct view *view)
|
|||
wlr_xdg_toplevel_send_close(xdg_toplevel_from_view(view));
|
||||
}
|
||||
|
||||
static void
|
||||
xdg_toplevel_view_close_popups(struct view *view)
|
||||
{
|
||||
struct wlr_xdg_toplevel *toplevel = xdg_toplevel_from_view(view);
|
||||
struct wlr_xdg_popup *popup, *next;
|
||||
wl_list_for_each_safe(popup, next, &toplevel->base->popups, link) {
|
||||
wlr_xdg_popup_destroy(popup);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
xdg_toplevel_view_maximize(struct view *view, bool maximized)
|
||||
{
|
||||
|
|
@ -549,6 +559,7 @@ xdg_toplevel_view_unmap(struct view *view, bool client_request)
|
|||
static const struct view_impl xdg_toplevel_view_impl = {
|
||||
.configure = xdg_toplevel_view_configure,
|
||||
.close = xdg_toplevel_view_close,
|
||||
.close_popups = xdg_toplevel_view_close_popups,
|
||||
.get_string_prop = xdg_toplevel_view_get_string_prop,
|
||||
.map = xdg_toplevel_view_map,
|
||||
.set_activated = xdg_toplevel_view_set_activated,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue