wine/dlls/winewayland.drv/wayland_surface.c
Gopal Prasad d07019e4d1 winewayland.drv: Implement SetWindowText.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56000
Co-authored-by: Alexandros Frantzis <alexandros.frantzis@collabora.com>
2024-04-23 22:29:23 +02:00

932 lines
30 KiB
C

/*
* Wayland surfaces
*
* Copyright 2020 Alexandros Frantzis for Collabora Ltd
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#if 0
#pragma makedep unix
#endif
#include "config.h"
#include <assert.h>
#include <stdlib.h>
#include <unistd.h>
#include "waylanddrv.h"
#include "wine/debug.h"
#include "wine/server.h"
WINE_DEFAULT_DEBUG_CHANNEL(waylanddrv);
static void xdg_surface_handle_configure(void *data, struct xdg_surface *xdg_surface,
uint32_t serial)
{
struct wayland_surface *surface;
BOOL initial_configure = FALSE;
HWND hwnd = data;
TRACE("serial=%u\n", serial);
if (!(surface = wayland_surface_lock_hwnd(hwnd))) return;
/* Handle this event only if wayland_surface is still associated with
* the target xdg_surface. */
if (surface->xdg_surface == xdg_surface)
{
/* If we have a previously requested config, we have already sent a
* WM_WAYLAND_CONFIGURE which hasn't been handled yet. In that case,
* avoid sending another message to reduce message queue traffic. */
BOOL should_post = surface->requested.serial == 0;
initial_configure = surface->current.serial == 0;
surface->pending.serial = serial;
surface->requested = surface->pending;
memset(&surface->pending, 0, sizeof(surface->pending));
if (should_post) NtUserPostMessage(hwnd, WM_WAYLAND_CONFIGURE, 0, 0);
}
pthread_mutex_unlock(&surface->mutex);
/* Flush the window surface in case there is content that we weren't
* able to flush before due to the lack of the initial configure. */
if (initial_configure) wayland_window_flush(hwnd);
}
static const struct xdg_surface_listener xdg_surface_listener =
{
xdg_surface_handle_configure
};
static void xdg_toplevel_handle_configure(void *data,
struct xdg_toplevel *xdg_toplevel,
int32_t width, int32_t height,
struct wl_array *states)
{
struct wayland_surface *surface;
HWND hwnd = data;
uint32_t *state;
enum wayland_surface_config_state config_state = 0;
wl_array_for_each(state, states)
{
switch(*state)
{
case XDG_TOPLEVEL_STATE_MAXIMIZED:
config_state |= WAYLAND_SURFACE_CONFIG_STATE_MAXIMIZED;
break;
case XDG_TOPLEVEL_STATE_RESIZING:
config_state |= WAYLAND_SURFACE_CONFIG_STATE_RESIZING;
break;
case XDG_TOPLEVEL_STATE_TILED_LEFT:
case XDG_TOPLEVEL_STATE_TILED_RIGHT:
case XDG_TOPLEVEL_STATE_TILED_TOP:
case XDG_TOPLEVEL_STATE_TILED_BOTTOM:
config_state |= WAYLAND_SURFACE_CONFIG_STATE_TILED;
break;
case XDG_TOPLEVEL_STATE_FULLSCREEN:
config_state |= WAYLAND_SURFACE_CONFIG_STATE_FULLSCREEN;
break;
default:
break;
}
}
TRACE("hwnd=%p %dx%d,%#x\n", hwnd, width, height, config_state);
if (!(surface = wayland_surface_lock_hwnd(hwnd))) return;
if (surface->xdg_toplevel == xdg_toplevel)
{
surface->pending.width = width;
surface->pending.height = height;
surface->pending.state = config_state;
}
pthread_mutex_unlock(&surface->mutex);
}
static void xdg_toplevel_handle_close(void *data, struct xdg_toplevel *xdg_toplevel)
{
NtUserPostMessage((HWND)data, WM_SYSCOMMAND, SC_CLOSE, 0);
}
static const struct xdg_toplevel_listener xdg_toplevel_listener =
{
xdg_toplevel_handle_configure,
xdg_toplevel_handle_close
};
/**********************************************************************
* wayland_surface_create
*
* Creates a role-less wayland surface.
*/
struct wayland_surface *wayland_surface_create(HWND hwnd)
{
struct wayland_surface *surface;
surface = calloc(1, sizeof(*surface));
if (!surface)
{
ERR("Failed to allocate space for Wayland surface\n");
goto err;
}
TRACE("surface=%p\n", surface);
pthread_mutex_init(&surface->mutex, NULL);
surface->hwnd = hwnd;
surface->wl_surface = wl_compositor_create_surface(process_wayland.wl_compositor);
if (!surface->wl_surface)
{
ERR("Failed to create wl_surface Wayland surface\n");
goto err;
}
wl_surface_set_user_data(surface->wl_surface, hwnd);
if (process_wayland.wp_viewporter)
{
surface->wp_viewport =
wp_viewporter_get_viewport(process_wayland.wp_viewporter,
surface->wl_surface);
}
surface->window.scale = 1.0;
return surface;
err:
if (surface) wayland_surface_destroy(surface);
return NULL;
}
/**********************************************************************
* wayland_surface_destroy
*
* Destroys a wayland surface.
*/
void wayland_surface_destroy(struct wayland_surface *surface)
{
pthread_mutex_lock(&process_wayland.pointer.mutex);
if (process_wayland.pointer.focused_hwnd == surface->hwnd)
{
process_wayland.pointer.focused_hwnd = NULL;
process_wayland.pointer.enter_serial = 0;
}
if (process_wayland.pointer.constraint_hwnd == surface->hwnd)
wayland_pointer_clear_constraint();
pthread_mutex_unlock(&process_wayland.pointer.mutex);
pthread_mutex_lock(&process_wayland.keyboard.mutex);
if (process_wayland.keyboard.focused_hwnd == surface->hwnd)
process_wayland.keyboard.focused_hwnd = NULL;
pthread_mutex_unlock(&process_wayland.keyboard.mutex);
pthread_mutex_lock(&surface->mutex);
if (surface->wp_viewport)
{
wp_viewport_destroy(surface->wp_viewport);
surface->wp_viewport = NULL;
}
if (surface->xdg_toplevel)
{
xdg_toplevel_destroy(surface->xdg_toplevel);
surface->xdg_toplevel = NULL;
}
if (surface->xdg_surface)
{
xdg_surface_destroy(surface->xdg_surface);
surface->xdg_surface = NULL;
}
if (surface->wl_surface)
{
wl_surface_destroy(surface->wl_surface);
surface->wl_surface = NULL;
}
pthread_mutex_unlock(&surface->mutex);
if (surface->latest_window_buffer)
wayland_shm_buffer_unref(surface->latest_window_buffer);
wl_display_flush(process_wayland.wl_display);
pthread_mutex_destroy(&surface->mutex);
free(surface);
}
/**********************************************************************
* wayland_surface_make_toplevel
*
* Gives the toplevel role to a plain wayland surface.
*/
void wayland_surface_make_toplevel(struct wayland_surface *surface)
{
TRACE("surface=%p\n", surface);
surface->xdg_surface =
xdg_wm_base_get_xdg_surface(process_wayland.xdg_wm_base, surface->wl_surface);
if (!surface->xdg_surface) goto err;
xdg_surface_add_listener(surface->xdg_surface, &xdg_surface_listener, surface->hwnd);
surface->xdg_toplevel = xdg_surface_get_toplevel(surface->xdg_surface);
if (!surface->xdg_toplevel) goto err;
xdg_toplevel_add_listener(surface->xdg_toplevel, &xdg_toplevel_listener, surface->hwnd);
if (process_name)
xdg_toplevel_set_app_id(surface->xdg_toplevel, process_name);
wl_surface_commit(surface->wl_surface);
wl_display_flush(process_wayland.wl_display);
return;
err:
wayland_surface_clear_role(surface);
ERR("Failed to assign toplevel role to wayland surface\n");
}
/**********************************************************************
* wayland_surface_clear_role
*
* Clears the role related Wayland objects of a Wayland surface, making it a
* plain surface again. We can later assign the same role (but not a
* different one!) to the surface.
*/
void wayland_surface_clear_role(struct wayland_surface *surface)
{
TRACE("surface=%p\n", surface);
if (surface->xdg_toplevel)
{
xdg_toplevel_destroy(surface->xdg_toplevel);
surface->xdg_toplevel = NULL;
}
if (surface->xdg_surface)
{
xdg_surface_destroy(surface->xdg_surface);
surface->xdg_surface = NULL;
}
memset(&surface->pending, 0, sizeof(surface->pending));
memset(&surface->requested, 0, sizeof(surface->requested));
memset(&surface->processing, 0, sizeof(surface->processing));
memset(&surface->current, 0, sizeof(surface->current));
/* Ensure no buffer is attached, otherwise future role assignments may fail. */
wl_surface_attach(surface->wl_surface, NULL, 0, 0);
wl_surface_commit(surface->wl_surface);
surface->buffer_width = 0;
surface->buffer_height = 0;
wl_display_flush(process_wayland.wl_display);
}
/**********************************************************************
* wayland_surface_attach_shm
*
* Attaches a SHM buffer to a wayland surface.
*
* The buffer is marked as unavailable until committed and subsequently
* released by the compositor.
*/
void wayland_surface_attach_shm(struct wayland_surface *surface,
struct wayland_shm_buffer *shm_buffer,
HRGN surface_damage_region)
{
RGNDATA *surface_damage;
TRACE("surface=%p shm_buffer=%p (%dx%d)\n",
surface, shm_buffer, shm_buffer->width, shm_buffer->height);
shm_buffer->busy = TRUE;
wayland_shm_buffer_ref(shm_buffer);
wl_surface_attach(surface->wl_surface, shm_buffer->wl_buffer, 0, 0);
/* Add surface damage, i.e., which parts of the surface have changed since
* the last surface commit. Note that this is different from the buffer
* damage region. */
surface_damage = get_region_data(surface_damage_region);
if (surface_damage)
{
RECT *rgn_rect = (RECT *)surface_damage->Buffer;
RECT *rgn_rect_end = rgn_rect + surface_damage->rdh.nCount;
for (;rgn_rect < rgn_rect_end; rgn_rect++)
{
wl_surface_damage_buffer(surface->wl_surface,
rgn_rect->left, rgn_rect->top,
rgn_rect->right - rgn_rect->left,
rgn_rect->bottom - rgn_rect->top);
}
free(surface_damage);
}
surface->buffer_width = shm_buffer->width;
surface->buffer_height = shm_buffer->height;
}
/**********************************************************************
* wayland_surface_config_is_compatible
*
* Checks whether a wayland_surface_config object is compatible with the
* the provided arguments.
*/
BOOL wayland_surface_config_is_compatible(struct wayland_surface_config *conf,
int width, int height,
enum wayland_surface_config_state state)
{
static enum wayland_surface_config_state mask =
WAYLAND_SURFACE_CONFIG_STATE_MAXIMIZED;
/* We require the same state. */
if ((state & mask) != (conf->state & mask)) return FALSE;
/* The maximized state requires the configured size. During surface
* reconfiguration we can use surface geometry to provide smaller areas
* from larger sizes, so only smaller sizes are incompatible. */
if ((conf->state & WAYLAND_SURFACE_CONFIG_STATE_MAXIMIZED) &&
(width < conf->width || height < conf->height))
{
return FALSE;
}
/* The fullscreen state requires a size smaller or equal to the configured
* size. If we have a larger size, we can use surface geometry during
* surface reconfiguration to provide the smaller size, so we are always
* compatible with a fullscreen state. */
return TRUE;
}
/**********************************************************************
* wayland_surface_get_rect_in_monitor
*
* Gets the largest rectangle within a surface's window (in window coordinates)
* that is visible in a monitor.
*/
static void wayland_surface_get_rect_in_monitor(struct wayland_surface *surface,
RECT *rect)
{
HMONITOR hmonitor;
MONITORINFO mi;
mi.cbSize = sizeof(mi);
if (!(hmonitor = NtUserMonitorFromRect(&surface->window.rect, 0)) ||
!NtUserGetMonitorInfo(hmonitor, (MONITORINFO *)&mi))
{
SetRectEmpty(rect);
return;
}
intersect_rect(rect, &mi.rcMonitor, &surface->window.rect);
OffsetRect(rect, -surface->window.rect.left, -surface->window.rect.top);
}
/**********************************************************************
* wayland_surface_reconfigure_geometry
*
* Sets the xdg_surface geometry
*/
static void wayland_surface_reconfigure_geometry(struct wayland_surface *surface,
int width, int height)
{
RECT rect;
/* If the window size is bigger than the current state accepts, use the
* largest visible (from Windows' perspective) subregion of the window. */
if ((surface->current.state & (WAYLAND_SURFACE_CONFIG_STATE_MAXIMIZED |
WAYLAND_SURFACE_CONFIG_STATE_FULLSCREEN)) &&
(width > surface->current.width || height > surface->current.height))
{
wayland_surface_get_rect_in_monitor(surface, &rect);
wayland_surface_coords_from_window(surface, rect.left, rect.top,
(int *)&rect.left, (int *)&rect.top);
wayland_surface_coords_from_window(surface, rect.right, rect.bottom,
(int *)&rect.right, (int *)&rect.bottom);
/* If the window rect in the monitor is smaller than required,
* fall back to an appropriately sized rect at the top-left. */
if ((surface->current.state & WAYLAND_SURFACE_CONFIG_STATE_MAXIMIZED) &&
(rect.right - rect.left < surface->current.width ||
rect.bottom - rect.top < surface->current.height))
{
SetRect(&rect, 0, 0, surface->current.width, surface->current.height);
}
else
{
rect.right = min(rect.right, rect.left + surface->current.width);
rect.bottom = min(rect.bottom, rect.top + surface->current.height);
}
TRACE("Window is too large for Wayland state, using subregion\n");
}
else
{
SetRect(&rect, 0, 0, width, height);
}
TRACE("hwnd=%p geometry=%s\n", surface->hwnd, wine_dbgstr_rect(&rect));
if (!IsRectEmpty(&rect))
{
xdg_surface_set_window_geometry(surface->xdg_surface,
rect.left, rect.top,
rect.right - rect.left,
rect.bottom - rect.top);
}
}
/**********************************************************************
* wayland_surface_reconfigure_size
*
* Sets the surface size with viewporter
*/
static void wayland_surface_reconfigure_size(struct wayland_surface *surface,
int width, int height)
{
TRACE("hwnd=%p size=%dx%d\n", surface->hwnd, width, height);
if (surface->wp_viewport)
{
if (width != 0 && height != 0)
wp_viewport_set_destination(surface->wp_viewport, width, height);
else
wp_viewport_set_destination(surface->wp_viewport, -1, -1);
}
}
/**********************************************************************
* wayland_surface_reconfigure_client
*
* Reconfigures the subsurface covering the client area.
*/
static void wayland_surface_reconfigure_client(struct wayland_surface *surface)
{
struct wayland_window_config *window = &surface->window;
int client_x, client_y, x, y;
int client_width, client_height, width, height;
if (!surface->client) return;
/* The offset of the client area origin relatively to the window origin. */
client_x = window->client_rect.left - window->rect.left;
client_y = window->client_rect.top - window->rect.top;
client_width = window->client_rect.right - window->client_rect.left;
client_height = window->client_rect.bottom - window->client_rect.top;
wayland_surface_coords_from_window(surface, client_x, client_y, &x, &y);
wayland_surface_coords_from_window(surface, client_width, client_height,
&width, &height);
TRACE("hwnd=%p subsurface=%d,%d+%dx%d\n", surface->hwnd, x, y, width, height);
wl_subsurface_set_position(surface->client->wl_subsurface, x, y);
if (surface->client->wp_viewport)
{
if (width != 0 && height != 0)
{
wp_viewport_set_destination(surface->client->wp_viewport,
width, height);
}
else
{
/* We can't have a 0x0 destination, use 1x1 instead. */
wp_viewport_set_destination(surface->client->wp_viewport, 1, 1);
}
}
wl_surface_commit(surface->client->wl_surface);
wayland_resize_gl_drawable(surface->hwnd);
}
/**********************************************************************
* wayland_surface_reconfigure
*
* Reconfigures the wayland surface as needed to match the latest requested
* state.
*/
BOOL wayland_surface_reconfigure(struct wayland_surface *surface)
{
struct wayland_window_config *window = &surface->window;
int win_width, win_height, width, height;
if (!surface->xdg_toplevel) return TRUE;
win_width = surface->window.rect.right - surface->window.rect.left;
win_height = surface->window.rect.bottom - surface->window.rect.top;
wayland_surface_coords_from_window(surface, win_width, win_height,
&width, &height);
TRACE("hwnd=%p window=%dx%d,%#x processing=%dx%d,%#x current=%dx%d,%#x\n",
surface->hwnd, win_width, win_height, window->state,
surface->processing.width, surface->processing.height,
surface->processing.state, surface->current.width,
surface->current.height, surface->current.state);
/* Acknowledge any compatible processed config. */
if (surface->processing.serial && surface->processing.processed &&
wayland_surface_config_is_compatible(&surface->processing,
width, height,
window->state))
{
surface->current = surface->processing;
memset(&surface->processing, 0, sizeof(surface->processing));
xdg_surface_ack_configure(surface->xdg_surface, surface->current.serial);
}
/* If this is the initial configure, and we have a compatible requested
* config, use that, in order to draw windows that don't go through the
* message loop (e.g., some splash screens). */
else if (!surface->current.serial && surface->requested.serial &&
wayland_surface_config_is_compatible(&surface->requested,
width, height,
window->state))
{
surface->current = surface->requested;
memset(&surface->requested, 0, sizeof(surface->requested));
xdg_surface_ack_configure(surface->xdg_surface, surface->current.serial);
}
else if (!surface->current.serial ||
!wayland_surface_config_is_compatible(&surface->current,
width, height,
window->state))
{
return FALSE;
}
wayland_surface_reconfigure_geometry(surface, width, height);
wayland_surface_reconfigure_size(surface, width, height);
wayland_surface_reconfigure_client(surface);
return TRUE;
}
/**********************************************************************
* wayland_shm_buffer_ref
*
* Increases the reference count of a SHM buffer.
*/
void wayland_shm_buffer_ref(struct wayland_shm_buffer *shm_buffer)
{
InterlockedIncrement(&shm_buffer->ref);
}
/**********************************************************************
* wayland_shm_buffer_unref
*
* Decreases the reference count of a SHM buffer (and may destroy it).
*/
void wayland_shm_buffer_unref(struct wayland_shm_buffer *shm_buffer)
{
if (InterlockedDecrement(&shm_buffer->ref) > 0) return;
TRACE("destroying %p map=%p\n", shm_buffer, shm_buffer->map_data);
if (shm_buffer->wl_buffer)
wl_buffer_destroy(shm_buffer->wl_buffer);
if (shm_buffer->map_data)
NtUnmapViewOfSection(GetCurrentProcess(), shm_buffer->map_data);
if (shm_buffer->damage_region)
NtGdiDeleteObjectApp(shm_buffer->damage_region);
free(shm_buffer);
}
/**********************************************************************
* wayland_shm_buffer_create
*
* Creates a SHM buffer with the specified width, height and format.
*/
struct wayland_shm_buffer *wayland_shm_buffer_create(int width, int height,
enum wl_shm_format format)
{
struct wayland_shm_buffer *shm_buffer = NULL;
HANDLE handle = 0;
int fd = -1;
SIZE_T view_size = 0;
LARGE_INTEGER section_size;
NTSTATUS status;
struct wl_shm_pool *pool;
int stride, size;
stride = width * WINEWAYLAND_BYTES_PER_PIXEL;
size = stride * height;
if (size == 0)
{
ERR("Invalid shm_buffer size %dx%d\n", width, height);
goto err;
}
shm_buffer = calloc(1, sizeof(*shm_buffer));
if (!shm_buffer)
{
ERR("Failed to allocate space for SHM buffer\n");
goto err;
}
TRACE("%p %dx%d format=%d size=%d\n", shm_buffer, width, height, format, size);
shm_buffer->ref = 1;
shm_buffer->width = width;
shm_buffer->height = height;
shm_buffer->map_size = size;
shm_buffer->damage_region = NtGdiCreateRectRgn(0, 0, width, height);
if (!shm_buffer->damage_region)
{
ERR("Failed to create buffer damage region\n");
goto err;
}
section_size.QuadPart = size;
status = NtCreateSection(&handle,
GENERIC_READ | SECTION_MAP_READ | SECTION_MAP_WRITE,
NULL, &section_size, PAGE_READWRITE, SEC_COMMIT, 0);
if (status)
{
ERR("Failed to create SHM section status=0x%lx\n", (long)status);
goto err;
}
status = NtMapViewOfSection(handle, GetCurrentProcess(),
(PVOID)&shm_buffer->map_data, 0, 0, NULL,
&view_size, ViewUnmap, 0, PAGE_READWRITE);
if (status)
{
shm_buffer->map_data = NULL;
ERR("Failed to create map SHM handle status=0x%lx\n", (long)status);
goto err;
}
status = wine_server_handle_to_fd(handle, FILE_READ_DATA, &fd, NULL);
if (status)
{
ERR("Failed to get fd from SHM handle status=0x%lx\n", (long)status);
goto err;
}
pool = wl_shm_create_pool(process_wayland.wl_shm, fd, size);
if (!pool)
{
ERR("Failed to create SHM pool fd=%d size=%d\n", fd, size);
goto err;
}
shm_buffer->wl_buffer = wl_shm_pool_create_buffer(pool, 0, width, height,
stride, format);
wl_shm_pool_destroy(pool);
if (!shm_buffer->wl_buffer)
{
ERR("Failed to create SHM buffer %dx%d\n", width, height);
goto err;
}
close(fd);
NtClose(handle);
TRACE("=> map=%p\n", shm_buffer->map_data);
return shm_buffer;
err:
if (fd >= 0) close(fd);
if (handle) NtClose(handle);
if (shm_buffer) wayland_shm_buffer_unref(shm_buffer);
return NULL;
}
/**********************************************************************
* wayland_surface_coords_from_window
*
* Converts the window (logical) coordinates to wayland surface-local coordinates.
*/
void wayland_surface_coords_from_window(struct wayland_surface *surface,
int window_x, int window_y,
int *surface_x, int *surface_y)
{
*surface_x = round(window_x / surface->window.scale);
*surface_y = round(window_y / surface->window.scale);
}
/**********************************************************************
* wayland_surface_coords_to_window
*
* Converts the surface-local coordinates to window (logical) coordinates.
*/
void wayland_surface_coords_to_window(struct wayland_surface *surface,
double surface_x, double surface_y,
int *window_x, int *window_y)
{
*window_x = round(surface_x * surface->window.scale);
*window_y = round(surface_y * surface->window.scale);
}
/**********************************************************************
* wayland_client_surface_release
*/
BOOL wayland_client_surface_release(struct wayland_client_surface *client)
{
if (InterlockedDecrement(&client->ref)) return FALSE;
if (client->wp_viewport)
wp_viewport_destroy(client->wp_viewport);
if (client->wl_subsurface)
wl_subsurface_destroy(client->wl_subsurface);
if (client->wl_surface)
wl_surface_destroy(client->wl_surface);
free(client);
return TRUE;
}
/**********************************************************************
* wayland_surface_get_client
*/
struct wayland_client_surface *wayland_surface_get_client(struct wayland_surface *surface)
{
struct wl_region *empty_region;
if (surface->client)
{
InterlockedIncrement(&surface->client->ref);
return surface->client;
}
surface->client = calloc(1, sizeof(*surface->client));
if (!surface->client)
{
ERR("Failed to allocate space for client surface\n");
goto err;
}
surface->client->ref = 1;
surface->client->wl_surface =
wl_compositor_create_surface(process_wayland.wl_compositor);
if (!surface->client->wl_surface)
{
ERR("Failed to create client wl_surface\n");
goto err;
}
wl_surface_set_user_data(surface->client->wl_surface, surface->hwnd);
/* Let parent handle all pointer events. */
empty_region = wl_compositor_create_region(process_wayland.wl_compositor);
if (!empty_region)
{
ERR("Failed to create wl_region\n");
goto err;
}
wl_surface_set_input_region(surface->client->wl_surface, empty_region);
wl_region_destroy(empty_region);
surface->client->wl_subsurface =
wl_subcompositor_get_subsurface(process_wayland.wl_subcompositor,
surface->client->wl_surface,
surface->wl_surface);
if (!surface->client->wl_subsurface)
{
ERR("Failed to create client wl_subsurface\n");
goto err;
}
/* Present contents independently of the parent surface. */
wl_subsurface_set_desync(surface->client->wl_subsurface);
if (process_wayland.wp_viewporter)
{
surface->client->wp_viewport =
wp_viewporter_get_viewport(process_wayland.wp_viewporter,
surface->client->wl_surface);
}
wayland_surface_reconfigure_client(surface);
/* Commit to apply subsurface positioning. */
wl_surface_commit(surface->wl_surface);
return surface->client;
err:
if (surface->client)
{
wayland_client_surface_release(surface->client);
surface->client = NULL;
}
return NULL;
}
static void dummy_buffer_release(void *data, struct wl_buffer *buffer)
{
struct wayland_shm_buffer *shm_buffer = data;
TRACE("shm_buffer=%p\n", shm_buffer);
wayland_shm_buffer_unref(shm_buffer);
}
static const struct wl_buffer_listener dummy_buffer_listener =
{
dummy_buffer_release
};
/**********************************************************************
* wayland_surface_ensure_contents
*
* Ensure that the wayland surface has up-to-date contents, by committing
* a dummy buffer if necessary.
*/
void wayland_surface_ensure_contents(struct wayland_surface *surface)
{
struct wayland_shm_buffer *dummy_shm_buffer;
HRGN damage;
int width, height;
BOOL needs_contents;
width = surface->window.rect.right - surface->window.rect.left;
height = surface->window.rect.bottom - surface->window.rect.top;
needs_contents = surface->window.visible &&
(surface->buffer_width != width ||
surface->buffer_height != height);
TRACE("surface=%p hwnd=%p needs_contents=%d\n",
surface, surface->hwnd, needs_contents);
if (!needs_contents) return;
/* Create a transparent dummy buffer. */
dummy_shm_buffer = wayland_shm_buffer_create(width, height, WL_SHM_FORMAT_ARGB8888);
if (!dummy_shm_buffer)
{
ERR("Failed to create dummy buffer\n");
return;
}
wl_buffer_add_listener(dummy_shm_buffer->wl_buffer, &dummy_buffer_listener,
dummy_shm_buffer);
if (!(damage = NtGdiCreateRectRgn(0, 0, width, height)))
WARN("Failed to create damage region for dummy buffer\n");
if (wayland_surface_reconfigure(surface))
{
wayland_surface_attach_shm(surface, dummy_shm_buffer, damage);
wl_surface_commit(surface->wl_surface);
}
else
{
wayland_shm_buffer_unref(dummy_shm_buffer);
}
if (damage) NtGdiDeleteObjectApp(damage);
}
/**********************************************************************
* wayland_surface_set_title
*/
void wayland_surface_set_title(struct wayland_surface *surface, LPCWSTR text)
{
DWORD text_len;
DWORD utf8_count;
char *utf8 = NULL;
assert(surface->xdg_toplevel);
TRACE("surface=%p hwnd=%p text='%s'\n",
surface, surface->hwnd, wine_dbgstr_w(text));
text_len = (lstrlenW(text) + 1) * sizeof(WCHAR);
if (!RtlUnicodeToUTF8N(NULL, 0, &utf8_count, text, text_len) &&
(utf8 = malloc(utf8_count)))
{
RtlUnicodeToUTF8N(utf8, utf8_count, &utf8_count, text, text_len);
xdg_toplevel_set_title(surface->xdg_toplevel, utf8);
}
free(utf8);
}