summaryrefslogtreecommitdiffstats
path: root/client.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-12-05improve type safety of toplevel_from_wlr_surface()Leonardo Hernández Hernández1-15/+32
2022-12-05merge toplevel_from_{wlr_layer_surface,popup} into client_from_wlr_surfaceLeonardo Hernández Hernández1-61/+47
now it is a big function called toplevel_from_wlr_surface
2022-12-05sort client_get_parent()Leonardo Hernández Hernández1-13/+13
2022-12-03fix flickering when resizing/spawning windowsPalanix1-0/+15
Fixes: https://github.com/djpohly/dwl/issues/306
2022-12-01fix xwayland clients being floating by defaultLeonardo Hernández Hernández1-2/+1
Fix 3213088aa23e1f6cad1a5ba506dfb7318e1011c9 References: https://github.com/djpohly/dwl/pull/334#issuecomment-1333147730
2022-11-09check null in toplevel_from_popupshua1-1/+3
managed to SEGFAULT the server by trying to create a popup without setting a parent first. Not sure if this is dwl or wlroots issue, so also opened a ticket upstream: https://gitlab.freedesktop.org/wlroots/wlroots/-/merge_requests/3811
2022-10-15allow unmanaged clients (like dzen or dmenu) to have keyboard focusLeonardo Hernández Hernández1-0/+11
2022-10-08correctly handle cursor motion when button is held (for layer surfaces)Leonardo Hernández Hernández1-0/+15
2022-09-20remove unused variablesLeonardo Hernández Hernández1-2/+0
2022-08-27new function to notify keyboard enterLeonardo Hernández Hernández1-0/+10
2022-08-27sort client.h functionsLeonardo Hernández Hernández1-68/+64
2022-08-23set monitor for clients that don't have one in updatemons()Leonardo Hernández Hernández1-0/+10
only if selmon is enabled and the clients are mapped
2022-08-12handle client_from_wlr_surface() receiving a subsurfaceLeonardo Hernández Hernández1-0/+3
2022-07-19always set the same monitor and tags for child clients of a clientLeonardo Hernández Hernández1-19/+33
fixes #272
2022-07-15remove a useless checkLeonardo Hernández Hernández1-2/+2
if `s->role_data == NULL`, wlr_*_surface_from_wlr_surface() will return NULL and we are checking it
2022-07-15only set bounds for clients that support itLeonardo Hernández Hernández1-1/+4
2022-06-24respect size hintsLeonardo Hernández Hernández1-45/+38
2022-06-21unconstrain layer shell popupsLeonardo Hernández Hernández1-3/+5
also unconstrain popups from monitor's usable area
2022-06-16move ugglyness to client.hLeonardo Hernández Hernández1-0/+11
2022-06-09set client bounds at resizeLeonardo Hernández Hernández1-0/+10
2022-06-06improve client_from_wlr_surface()Leonardo Hernández Hernández1-3/+15
2022-05-23add a new function to get a client from a wlr_surfaceLeonardo Hernández Hernández1-0/+7
2022-05-15Check if XWayland client size_hints are NULLBen Jargowsky1-2/+7
2022-05-14fix segfault when dragging chromium tabsLeonardo Hernández Hernández1-6/+9
2022-05-08replace wlr_xwayland_surface_size_hints with xcb_size_hints_tLeonardo Hernández Hernández1-3/+2
2022-04-10add missing return in client_is_floating_type()v0.3.1Leonardo Hernández Hernández1-0/+2
This causes all Xwayland clients to be treated as floating
2022-03-23improve floating detectionLeonardo Hernández Hernández1-7/+28
mostly copied from sway
2022-03-21improve floating detectionLeonardo Hernández Hernández1-7/+28
mostly copied from sway
2022-03-18do not allow set client size less than its min sizeLeonardo Hernández Hernández1-0/+20
2022-03-16constraint popups to its parent clientLeonardo Hernández Hernández1-0/+21
Closes: #146 Closes: #155
2022-03-13don't use fullscreen event in fullscreennotify()Leonardo Hernández Hernández1-0/+10
2022-02-03Account for changes expecting wlr_xdg_toplevel rather than wlr_xdg_surfaceA Frederick Christensen1-5/+5
2022-01-08fix client_set_tiled, which was ignoring its "edges" argumentArmaël Guéneau1-2/+1
2021-09-05simplify client_for_each_surfaceDevin J. Pohly1-16/+14
All the XDG surface iterator does is iterate the main wlr_surface, then iterate the popups. If we inline that function, we can merge part of it with the X11 case.
2021-05-23factor xwayland hackiness out into client.hDevin J. Pohly1-0/+11
2020-12-25consolidate some of the ugliness into a separate fileDevin J. Pohly1-0/+163
Similar to Linux kernel approach, encapsulate some of the uglier conditional compilation into inline functions in header files. The goal is to make dwl.c more attractive to people who embrace the suckless philosophy - simple, short, hackable, and easy to understand. We want dwm users to feel comfortable here, not scare them off. Plus, if we do this right, the main dwl.c code should require only minimal changes once XWayland is no longer a necessary evil. According to `cloc`, this also brings dwl.c down below 2000 lines of non-blank, non-comment code.