bool mapped;
bool been_mapped;
int x, y;
+ bool show_server_side_deco;
};
struct keyboard {
#include "theme/theme.h"
#include "config/rcxml.h"
-/* Based on expected font height of Sans 8 */
#define BORDER_WIDTH (1)
struct wlr_box deco_max_extents(struct view *view)
static void render_decorations(struct wlr_output *output, struct view *view)
{
- if (!view_want_deco(view))
+ if (!view->show_server_side_deco)
return;
struct draw_data ddata = {
.renderer = view->server->renderer,
/* If surface already has a 'desired' position, don't touch it */
if (view->x || view->y)
return;
- if (!is_toplevel(view))
+
+ /* Do not touch xwayland surfaces like menus and apps like dmenu */
+ if (view->type == LAB_XWAYLAND_VIEW && !view->show_server_side_deco)
return;
+
struct wlr_box box;
- if (view->type == LAB_XDG_SHELL_VIEW && rc.client_side_decorations) {
- /* CSD */
+ if (view->type == LAB_XDG_SHELL_VIEW && !view->show_server_side_deco)
+ /*
+ * We're here either because rc.xml says yes to CSD or
+ * because the XDG shell won't allow CSD to be turned off
+ */
wlr_xdg_surface_get_geometry(view->xdg_surface, &box);
- } else if (!view_want_deco(view)) {
- return;
- } else {
- /* SSD */
+ else
box = deco_max_extents(view);
- }
view->x -= box.x;
view->y -= box.y;
if (view->type != LAB_XWAYLAND_VIEW)
}
}
-/* Do we want _server_ side decoration? */
-bool view_want_deco(struct view *view)
-{
- if (view->type == LAB_XDG_SHELL_VIEW && rc.client_side_decorations)
- return false;
-
- /*
- * Some XDG shells refuse to give us their CSD in which case their
- * geometry.{x,y} seems to be greater than zero, so filter on that.
- */
- if (view->type == LAB_XDG_SHELL_VIEW && !rc.client_side_decorations &&
- view->xdg_surface->geometry.x)
- return false;
-
- if (view->type == LAB_XDG_SHELL_VIEW)
- return true;
- if (view->xwayland_surface->override_redirect)
- return false;
- if (view->xwayland_surface->decorations !=
- WLR_XWAYLAND_SURFACE_DECORATIONS_ALL)
- return false;
- return true;
-}
-
static void move_to_front(struct view *view)
{
wl_list_remove(&view->link);
wl_list_for_each (view, &server->views, link) {
if (_view_at(view, lx, ly, surface, sx, sy))
return view;
- if (!view_want_deco(view))
+ if (!view->show_server_side_deco)
continue;
if (deco_at(view, lx, ly) == LAB_DECO_PART_TITLE) {
*view_area = LAB_DECO_PART_TITLE;
xdg_deco_request_mode(&xdg_deco->request_mode, wlr_decoration);
}
+static bool has_ssd(struct view *view)
+{
+ if (rc.client_side_decorations)
+ return false;
+
+ /*
+ * Some XDG shells refuse to disable CSD in which case their
+ * geometry.{x,y} seems to be greater. We filter on that on the
+ * assumption that this will remain true.
+ */
+ if (view->xdg_surface->geometry.x || view->xdg_surface->geometry.y)
+ return false;
+
+ return true;
+}
+
void xdg_surface_map(struct wl_listener *listener, void *data)
{
struct view *view = wl_container_of(listener, view, map);
view->mapped = true;
view->surface = view->xdg_surface->surface;
- if (!view->been_mapped)
+ if (!view->been_mapped) {
+ view->show_server_side_deco = has_ssd(view);
view_init_position(view);
+ }
view->been_mapped = true;
view_focus(view);
}
return i;
}
+static bool has_ssd(struct view *view)
+{
+ if (view->xwayland_surface->override_redirect)
+ return false;
+ if (view->xwayland_surface->decorations !=
+ WLR_XWAYLAND_SURFACE_DECORATIONS_ALL)
+ return false;
+ return true;
+}
+
void xwl_surface_map(struct wl_listener *listener, void *data)
{
struct view *view = wl_container_of(listener, view, map);
view->x = view->xwayland_surface->x;
view->y = view->xwayland_surface->y;
view->surface = view->xwayland_surface->surface;
- if (!view->been_mapped)
+ if (!view->been_mapped) {
+ view->show_server_side_deco = has_ssd(view);
view_init_position(view);
+ }
view->been_mapped = true;
view_focus(view);
}