mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-22 07:02:28 +00:00
xwm: handle configure notify
This commit is contained in:
parent
a9d70a6256
commit
fa94a06fd6
@ -535,6 +535,21 @@ static void handle_configure_request(struct wlr_xwm *xwm,
|
||||
}
|
||||
}
|
||||
|
||||
static void handle_configure_notify(struct wlr_xwm *xwm,
|
||||
xcb_configure_notify_event_t *ev) {
|
||||
struct wlr_xwayland_surface *xsurface =
|
||||
lookup_surface_any(xwm, ev->window);
|
||||
|
||||
if (!xsurface) {
|
||||
return;
|
||||
}
|
||||
|
||||
xsurface->x = ev->x;
|
||||
xsurface->y = ev->y;
|
||||
xsurface->width = ev->width;
|
||||
xsurface->height = ev->height;
|
||||
}
|
||||
|
||||
static void handle_map_request(struct wlr_xwm *xwm,
|
||||
xcb_map_request_event_t *ev) {
|
||||
wlr_log(L_DEBUG, "XCB_MAP_REQUEST (%u)", ev->window);
|
||||
@ -630,6 +645,9 @@ static int x11_event_handler(int fd, uint32_t mask, void *data) {
|
||||
case XCB_CONFIGURE_REQUEST:
|
||||
handle_configure_request(xwm, (xcb_configure_request_event_t *)event);
|
||||
break;
|
||||
case XCB_CONFIGURE_NOTIFY:
|
||||
handle_configure_notify(xwm, (xcb_configure_notify_event_t *)event);
|
||||
break;
|
||||
case XCB_MAP_REQUEST:
|
||||
handle_map_request(xwm, (xcb_map_request_event_t *)event);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user