2014-03-17 21:53:43 +00:00
|
|
|
|
//========================================================================
|
2019-04-16 12:43:29 +00:00
|
|
|
|
// GLFW 3.4 Wayland - www.glfw.org
|
2014-03-17 21:53:43 +00:00
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
// Copyright (c) 2014 Jonas Ådahl <jadahl@gmail.com>
|
|
|
|
|
//
|
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
|
// arising from the use of this software.
|
|
|
|
|
//
|
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
|
//
|
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
|
// be appreciated but is not required.
|
|
|
|
|
//
|
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
|
//
|
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
|
// distribution.
|
|
|
|
|
//
|
|
|
|
|
//========================================================================
|
2019-05-20 13:24:14 +00:00
|
|
|
|
// It is fine to use C99 in this file because it will not be built with VS
|
|
|
|
|
//========================================================================
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
2014-09-28 19:47:18 +00:00
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2014-09-09 14:37:55 +00:00
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <sys/mman.h>
|
2018-01-30 15:22:25 +00:00
|
|
|
|
#include <sys/timerfd.h>
|
2014-03-17 21:53:43 +00:00
|
|
|
|
#include <poll.h>
|
2014-09-09 14:43:24 +00:00
|
|
|
|
|
2021-07-13 16:12:43 +00:00
|
|
|
|
#include "wayland-client-protocol.h"
|
|
|
|
|
#include "wayland-xdg-shell-client-protocol.h"
|
|
|
|
|
#include "wayland-xdg-decoration-client-protocol.h"
|
|
|
|
|
#include "wayland-viewporter-client-protocol.h"
|
|
|
|
|
#include "wayland-relative-pointer-unstable-v1-client-protocol.h"
|
|
|
|
|
#include "wayland-pointer-constraints-unstable-v1-client-protocol.h"
|
|
|
|
|
#include "wayland-idle-inhibit-unstable-v1-client-protocol.h"
|
|
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
2018-09-29 16:11:11 +00:00
|
|
|
|
static int createTmpfileCloexec(char* tmpname)
|
2017-12-19 19:58:03 +00:00
|
|
|
|
{
|
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
|
|
fd = mkostemp(tmpname, O_CLOEXEC);
|
|
|
|
|
if (fd >= 0)
|
|
|
|
|
unlink(tmpname);
|
|
|
|
|
|
|
|
|
|
return fd;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Create a new, unique, anonymous file of the given size, and
|
|
|
|
|
* return the file descriptor for it. The file descriptor is set
|
|
|
|
|
* CLOEXEC. The file is immediately suitable for mmap()'ing
|
|
|
|
|
* the given size at offset zero.
|
|
|
|
|
*
|
|
|
|
|
* The file should not have a permanent backing store like a disk,
|
|
|
|
|
* but may have if XDG_RUNTIME_DIR is not properly implemented in OS.
|
|
|
|
|
*
|
|
|
|
|
* The file name is deleted from the file system.
|
|
|
|
|
*
|
|
|
|
|
* The file is suitable for buffer sharing between processes by
|
|
|
|
|
* transmitting the file descriptor over Unix sockets using the
|
|
|
|
|
* SCM_RIGHTS methods.
|
|
|
|
|
*
|
|
|
|
|
* posix_fallocate() is used to guarantee that disk space is available
|
2019-08-12 10:52:31 +00:00
|
|
|
|
* for the file at the given size. If disk space is insufficient, errno
|
2017-12-19 19:58:03 +00:00
|
|
|
|
* is set to ENOSPC. If posix_fallocate() is not supported, program may
|
|
|
|
|
* receive SIGBUS on accessing mmap()'ed file contents instead.
|
|
|
|
|
*/
|
2018-09-29 16:11:11 +00:00
|
|
|
|
static int createAnonymousFile(off_t size)
|
2017-12-19 19:58:03 +00:00
|
|
|
|
{
|
|
|
|
|
static const char template[] = "/glfw-shared-XXXXXX";
|
|
|
|
|
const char* path;
|
|
|
|
|
char* name;
|
|
|
|
|
int fd;
|
|
|
|
|
int ret;
|
|
|
|
|
|
2018-09-29 20:35:32 +00:00
|
|
|
|
#ifdef HAVE_MEMFD_CREATE
|
|
|
|
|
fd = memfd_create("glfw-shared", MFD_CLOEXEC | MFD_ALLOW_SEALING);
|
|
|
|
|
if (fd >= 0)
|
2017-12-19 19:58:03 +00:00
|
|
|
|
{
|
2018-09-29 20:35:32 +00:00
|
|
|
|
// We can add this seal before calling posix_fallocate(), as the file
|
|
|
|
|
// is currently zero-sized anyway.
|
|
|
|
|
//
|
|
|
|
|
// There is also no need to check for the return value, we couldn’t do
|
|
|
|
|
// anything with it anyway.
|
|
|
|
|
fcntl(fd, F_ADD_SEALS, F_SEAL_SHRINK | F_SEAL_SEAL);
|
2017-12-19 19:58:03 +00:00
|
|
|
|
}
|
2018-09-29 20:35:32 +00:00
|
|
|
|
else
|
2018-12-22 13:10:06 +00:00
|
|
|
|
#elif defined(SHM_ANON)
|
|
|
|
|
fd = shm_open(SHM_ANON, O_RDWR | O_CLOEXEC, 0600);
|
|
|
|
|
if (fd < 0)
|
2018-09-29 20:35:32 +00:00
|
|
|
|
#endif
|
|
|
|
|
{
|
|
|
|
|
path = getenv("XDG_RUNTIME_DIR");
|
|
|
|
|
if (!path)
|
|
|
|
|
{
|
|
|
|
|
errno = ENOENT;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2017-12-19 19:58:03 +00:00
|
|
|
|
|
2021-08-03 18:53:48 +00:00
|
|
|
|
name = _glfw_calloc(strlen(path) + sizeof(template), 1);
|
2018-09-29 20:35:32 +00:00
|
|
|
|
strcpy(name, path);
|
|
|
|
|
strcat(name, template);
|
2017-12-19 19:58:03 +00:00
|
|
|
|
|
2018-09-29 20:35:32 +00:00
|
|
|
|
fd = createTmpfileCloexec(name);
|
2021-08-03 18:53:48 +00:00
|
|
|
|
_glfw_free(name);
|
2018-09-29 20:35:32 +00:00
|
|
|
|
if (fd < 0)
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2017-12-19 19:58:03 +00:00
|
|
|
|
|
2018-12-22 13:10:06 +00:00
|
|
|
|
#if defined(SHM_ANON)
|
|
|
|
|
// posix_fallocate does not work on SHM descriptors
|
|
|
|
|
ret = ftruncate(fd, size);
|
|
|
|
|
#else
|
2017-12-19 19:58:03 +00:00
|
|
|
|
ret = posix_fallocate(fd, 0, size);
|
2018-12-22 13:10:06 +00:00
|
|
|
|
#endif
|
2017-12-19 19:58:03 +00:00
|
|
|
|
if (ret != 0)
|
|
|
|
|
{
|
|
|
|
|
close(fd);
|
|
|
|
|
errno = ret;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
return fd;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct wl_buffer* createShmBuffer(const GLFWimage* image)
|
|
|
|
|
{
|
|
|
|
|
struct wl_shm_pool* pool;
|
|
|
|
|
struct wl_buffer* buffer;
|
|
|
|
|
int stride = image->width * 4;
|
|
|
|
|
int length = image->width * image->height * 4;
|
|
|
|
|
void* data;
|
|
|
|
|
|
2021-02-16 19:12:19 +00:00
|
|
|
|
const int fd = createAnonymousFile(length);
|
2017-12-19 19:58:03 +00:00
|
|
|
|
if (fd < 0)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2020-05-25 13:42:52 +00:00
|
|
|
|
"Wayland: Creating a buffer file for %d B failed: %s",
|
|
|
|
|
length, strerror(errno));
|
2018-09-29 20:59:00 +00:00
|
|
|
|
return NULL;
|
2017-12-19 19:58:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data = mmap(NULL, length, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
|
|
|
|
if (data == MAP_FAILED)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2020-05-25 13:42:52 +00:00
|
|
|
|
"Wayland: mmap failed: %s", strerror(errno));
|
2017-12-19 19:58:03 +00:00
|
|
|
|
close(fd);
|
2018-09-29 20:59:00 +00:00
|
|
|
|
return NULL;
|
2017-12-19 19:58:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pool = wl_shm_create_pool(_glfw.wl.shm, fd, length);
|
|
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
unsigned char* source = (unsigned char*) image->pixels;
|
|
|
|
|
unsigned char* target = data;
|
2021-02-16 19:12:19 +00:00
|
|
|
|
for (int i = 0; i < image->width * image->height; i++, source += 4)
|
2017-12-19 19:58:03 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned int alpha = source[3];
|
|
|
|
|
|
|
|
|
|
*target++ = (unsigned char) ((source[2] * alpha) / 255);
|
|
|
|
|
*target++ = (unsigned char) ((source[1] * alpha) / 255);
|
|
|
|
|
*target++ = (unsigned char) ((source[0] * alpha) / 255);
|
|
|
|
|
*target++ = (unsigned char) alpha;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buffer =
|
|
|
|
|
wl_shm_pool_create_buffer(pool, 0,
|
|
|
|
|
image->width,
|
|
|
|
|
image->height,
|
|
|
|
|
stride, WL_SHM_FORMAT_ARGB8888);
|
|
|
|
|
munmap(data, length);
|
|
|
|
|
wl_shm_pool_destroy(pool);
|
|
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void createDecoration(_GLFWdecorationWayland* decoration,
|
|
|
|
|
struct wl_surface* parent,
|
2017-12-26 19:07:29 +00:00
|
|
|
|
struct wl_buffer* buffer, GLFWbool opaque,
|
|
|
|
|
int x, int y,
|
2017-12-19 19:58:03 +00:00
|
|
|
|
int width, int height)
|
|
|
|
|
{
|
2017-12-26 19:07:29 +00:00
|
|
|
|
struct wl_region* region;
|
|
|
|
|
|
2017-12-19 19:58:03 +00:00
|
|
|
|
decoration->surface = wl_compositor_create_surface(_glfw.wl.compositor);
|
|
|
|
|
decoration->subsurface =
|
|
|
|
|
wl_subcompositor_get_subsurface(_glfw.wl.subcompositor,
|
|
|
|
|
decoration->surface, parent);
|
|
|
|
|
wl_subsurface_set_position(decoration->subsurface, x, y);
|
|
|
|
|
decoration->viewport = wp_viewporter_get_viewport(_glfw.wl.viewporter,
|
|
|
|
|
decoration->surface);
|
|
|
|
|
wp_viewport_set_destination(decoration->viewport, width, height);
|
|
|
|
|
wl_surface_attach(decoration->surface, buffer, 0, 0);
|
2017-12-26 19:07:29 +00:00
|
|
|
|
|
|
|
|
|
if (opaque)
|
|
|
|
|
{
|
|
|
|
|
region = wl_compositor_create_region(_glfw.wl.compositor);
|
|
|
|
|
wl_region_add(region, 0, 0, width, height);
|
|
|
|
|
wl_surface_set_opaque_region(decoration->surface, region);
|
|
|
|
|
wl_surface_commit(decoration->surface);
|
|
|
|
|
wl_region_destroy(region);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
wl_surface_commit(decoration->surface);
|
2017-12-19 19:58:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void createDecorations(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
unsigned char data[] = { 224, 224, 224, 255 };
|
|
|
|
|
const GLFWimage image = { 1, 1, data };
|
2017-12-26 19:07:29 +00:00
|
|
|
|
GLFWbool opaque = (data[3] == 255);
|
2017-12-19 19:58:03 +00:00
|
|
|
|
|
2018-10-01 13:05:55 +00:00
|
|
|
|
if (!_glfw.wl.viewporter || !window->decorated || window->wl.decorations.serverSide)
|
2017-12-22 16:29:25 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2017-12-26 19:06:33 +00:00
|
|
|
|
if (!window->wl.decorations.buffer)
|
|
|
|
|
window->wl.decorations.buffer = createShmBuffer(&image);
|
2018-09-29 20:59:00 +00:00
|
|
|
|
if (!window->wl.decorations.buffer)
|
|
|
|
|
return;
|
2017-12-19 19:58:03 +00:00
|
|
|
|
|
2017-12-26 19:06:33 +00:00
|
|
|
|
createDecoration(&window->wl.decorations.top, window->wl.surface,
|
2017-12-26 19:07:29 +00:00
|
|
|
|
window->wl.decorations.buffer, opaque,
|
2017-12-19 19:58:03 +00:00
|
|
|
|
0, -_GLFW_DECORATION_TOP,
|
|
|
|
|
window->wl.width, _GLFW_DECORATION_TOP);
|
2017-12-26 19:06:33 +00:00
|
|
|
|
createDecoration(&window->wl.decorations.left, window->wl.surface,
|
2017-12-26 19:07:29 +00:00
|
|
|
|
window->wl.decorations.buffer, opaque,
|
2017-12-19 19:58:03 +00:00
|
|
|
|
-_GLFW_DECORATION_WIDTH, -_GLFW_DECORATION_TOP,
|
|
|
|
|
_GLFW_DECORATION_WIDTH, window->wl.height + _GLFW_DECORATION_TOP);
|
2017-12-26 19:06:33 +00:00
|
|
|
|
createDecoration(&window->wl.decorations.right, window->wl.surface,
|
2017-12-26 19:07:29 +00:00
|
|
|
|
window->wl.decorations.buffer, opaque,
|
2017-12-19 19:58:03 +00:00
|
|
|
|
window->wl.width, -_GLFW_DECORATION_TOP,
|
|
|
|
|
_GLFW_DECORATION_WIDTH, window->wl.height + _GLFW_DECORATION_TOP);
|
2017-12-26 19:06:33 +00:00
|
|
|
|
createDecoration(&window->wl.decorations.bottom, window->wl.surface,
|
2017-12-26 19:07:29 +00:00
|
|
|
|
window->wl.decorations.buffer, opaque,
|
2017-12-19 19:58:03 +00:00
|
|
|
|
-_GLFW_DECORATION_WIDTH, window->wl.height,
|
2017-12-22 17:22:36 +00:00
|
|
|
|
window->wl.width + _GLFW_DECORATION_HORIZONTAL, _GLFW_DECORATION_WIDTH);
|
2017-12-19 19:58:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-19 20:32:31 +00:00
|
|
|
|
static void destroyDecoration(_GLFWdecorationWayland* decoration)
|
|
|
|
|
{
|
|
|
|
|
if (decoration->subsurface)
|
|
|
|
|
wl_subsurface_destroy(decoration->subsurface);
|
2020-10-28 18:23:28 +00:00
|
|
|
|
if (decoration->surface)
|
|
|
|
|
wl_surface_destroy(decoration->surface);
|
2017-12-19 20:32:31 +00:00
|
|
|
|
if (decoration->viewport)
|
|
|
|
|
wp_viewport_destroy(decoration->viewport);
|
2017-12-26 15:15:11 +00:00
|
|
|
|
decoration->surface = NULL;
|
|
|
|
|
decoration->subsurface = NULL;
|
|
|
|
|
decoration->viewport = NULL;
|
2017-12-19 20:32:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void destroyDecorations(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
destroyDecoration(&window->wl.decorations.top);
|
|
|
|
|
destroyDecoration(&window->wl.decorations.left);
|
|
|
|
|
destroyDecoration(&window->wl.decorations.right);
|
|
|
|
|
destroyDecoration(&window->wl.decorations.bottom);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-01 13:05:55 +00:00
|
|
|
|
static void xdgDecorationHandleConfigure(void* data,
|
|
|
|
|
struct zxdg_toplevel_decoration_v1* decoration,
|
|
|
|
|
uint32_t mode)
|
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
|
|
|
|
|
|
|
|
|
window->wl.decorations.serverSide = (mode == ZXDG_TOPLEVEL_DECORATION_V1_MODE_SERVER_SIDE);
|
|
|
|
|
|
|
|
|
|
if (!window->wl.decorations.serverSide)
|
|
|
|
|
createDecorations(window);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct zxdg_toplevel_decoration_v1_listener xdgDecorationListener = {
|
|
|
|
|
xdgDecorationHandleConfigure,
|
|
|
|
|
};
|
|
|
|
|
|
2017-12-22 17:22:36 +00:00
|
|
|
|
// Makes the surface considered as XRGB instead of ARGB.
|
|
|
|
|
static void setOpaqueRegion(_GLFWwindow* window)
|
2017-12-19 19:58:03 +00:00
|
|
|
|
{
|
2017-12-22 17:22:36 +00:00
|
|
|
|
struct wl_region* region;
|
|
|
|
|
|
|
|
|
|
region = wl_compositor_create_region(_glfw.wl.compositor);
|
|
|
|
|
if (!region)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
wl_region_add(region, 0, 0, window->wl.width, window->wl.height);
|
|
|
|
|
wl_surface_set_opaque_region(window->wl.surface, region);
|
|
|
|
|
wl_surface_commit(window->wl.surface);
|
|
|
|
|
wl_region_destroy(region);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void resizeWindow(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
int scale = window->wl.scale;
|
|
|
|
|
int scaledWidth = window->wl.width * scale;
|
|
|
|
|
int scaledHeight = window->wl.height * scale;
|
|
|
|
|
wl_egl_window_resize(window->wl.native, scaledWidth, scaledHeight, 0, 0);
|
|
|
|
|
if (!window->wl.transparent)
|
|
|
|
|
setOpaqueRegion(window);
|
|
|
|
|
_glfwInputFramebufferSize(window, scaledWidth, scaledHeight);
|
|
|
|
|
_glfwInputWindowContentScale(window, scale, scale);
|
2017-12-19 19:58:03 +00:00
|
|
|
|
|
2017-12-22 17:56:06 +00:00
|
|
|
|
if (!window->wl.decorations.top.surface)
|
2017-12-22 16:29:25 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2017-12-19 19:58:03 +00:00
|
|
|
|
// Top decoration.
|
2017-12-22 17:22:36 +00:00
|
|
|
|
wp_viewport_set_destination(window->wl.decorations.top.viewport,
|
|
|
|
|
window->wl.width, _GLFW_DECORATION_TOP);
|
2017-12-19 19:58:03 +00:00
|
|
|
|
wl_surface_commit(window->wl.decorations.top.surface);
|
|
|
|
|
|
|
|
|
|
// Left decoration.
|
|
|
|
|
wp_viewport_set_destination(window->wl.decorations.left.viewport,
|
|
|
|
|
_GLFW_DECORATION_WIDTH, window->wl.height + _GLFW_DECORATION_TOP);
|
|
|
|
|
wl_surface_commit(window->wl.decorations.left.surface);
|
|
|
|
|
|
|
|
|
|
// Right decoration.
|
|
|
|
|
wl_subsurface_set_position(window->wl.decorations.right.subsurface,
|
|
|
|
|
window->wl.width, -_GLFW_DECORATION_TOP);
|
|
|
|
|
wp_viewport_set_destination(window->wl.decorations.right.viewport,
|
|
|
|
|
_GLFW_DECORATION_WIDTH, window->wl.height + _GLFW_DECORATION_TOP);
|
|
|
|
|
wl_surface_commit(window->wl.decorations.right.surface);
|
|
|
|
|
|
|
|
|
|
// Bottom decoration.
|
|
|
|
|
wl_subsurface_set_position(window->wl.decorations.bottom.subsurface,
|
|
|
|
|
-_GLFW_DECORATION_WIDTH, window->wl.height);
|
|
|
|
|
wp_viewport_set_destination(window->wl.decorations.bottom.viewport,
|
2017-12-22 17:22:36 +00:00
|
|
|
|
window->wl.width + _GLFW_DECORATION_HORIZONTAL, _GLFW_DECORATION_WIDTH);
|
2017-12-19 19:58:03 +00:00
|
|
|
|
wl_surface_commit(window->wl.decorations.bottom.surface);
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-10 15:35:06 +00:00
|
|
|
|
static void checkScaleChange(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
int scale = 1;
|
|
|
|
|
int monitorScale;
|
|
|
|
|
|
2015-12-27 02:42:45 +00:00
|
|
|
|
// Check if we will be able to set the buffer scale or not.
|
2016-10-01 19:05:29 +00:00
|
|
|
|
if (_glfw.wl.compositorVersion < 3)
|
2015-12-27 02:42:45 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2015-10-10 15:35:06 +00:00
|
|
|
|
// Get the scale factor from the highest scale monitor.
|
2021-02-16 19:12:19 +00:00
|
|
|
|
for (int i = 0; i < window->wl.monitorsCount; ++i)
|
2015-10-10 15:35:06 +00:00
|
|
|
|
{
|
|
|
|
|
monitorScale = window->wl.monitors[i]->wl.scale;
|
|
|
|
|
if (scale < monitorScale)
|
|
|
|
|
scale = monitorScale;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Only change the framebuffer size if the scale changed.
|
|
|
|
|
if (scale != window->wl.scale)
|
|
|
|
|
{
|
|
|
|
|
window->wl.scale = scale;
|
|
|
|
|
wl_surface_set_buffer_scale(window->wl.surface, scale);
|
2017-12-22 17:22:36 +00:00
|
|
|
|
resizeWindow(window);
|
2015-10-10 15:35:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 19:01:03 +00:00
|
|
|
|
static void surfaceHandleEnter(void *data,
|
|
|
|
|
struct wl_surface *surface,
|
|
|
|
|
struct wl_output *output)
|
2015-10-10 15:35:06 +00:00
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
|
|
|
|
_GLFWmonitor* monitor = wl_output_get_user_data(output);
|
|
|
|
|
|
|
|
|
|
if (window->wl.monitorsCount + 1 > window->wl.monitorsSize)
|
|
|
|
|
{
|
|
|
|
|
++window->wl.monitorsSize;
|
|
|
|
|
window->wl.monitors =
|
2021-08-03 18:53:48 +00:00
|
|
|
|
_glfw_realloc(window->wl.monitors,
|
|
|
|
|
window->wl.monitorsSize * sizeof(_GLFWmonitor*));
|
2015-10-10 15:35:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window->wl.monitors[window->wl.monitorsCount++] = monitor;
|
|
|
|
|
|
|
|
|
|
checkScaleChange(window);
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 19:01:03 +00:00
|
|
|
|
static void surfaceHandleLeave(void *data,
|
|
|
|
|
struct wl_surface *surface,
|
|
|
|
|
struct wl_output *output)
|
2015-10-10 15:35:06 +00:00
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
|
|
|
|
_GLFWmonitor* monitor = wl_output_get_user_data(output);
|
2021-02-16 19:12:19 +00:00
|
|
|
|
GLFWbool found = GLFW_FALSE;
|
2015-10-10 15:35:06 +00:00
|
|
|
|
|
2021-02-16 19:12:19 +00:00
|
|
|
|
for (int i = 0; i < window->wl.monitorsCount - 1; ++i)
|
2015-10-10 15:35:06 +00:00
|
|
|
|
{
|
|
|
|
|
if (monitor == window->wl.monitors[i])
|
|
|
|
|
found = GLFW_TRUE;
|
|
|
|
|
if (found)
|
|
|
|
|
window->wl.monitors[i] = window->wl.monitors[i + 1];
|
|
|
|
|
}
|
|
|
|
|
window->wl.monitors[--window->wl.monitorsCount] = NULL;
|
|
|
|
|
|
|
|
|
|
checkScaleChange(window);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct wl_surface_listener surfaceListener = {
|
2018-09-29 19:01:03 +00:00
|
|
|
|
surfaceHandleEnter,
|
|
|
|
|
surfaceHandleLeave
|
2015-10-10 15:35:06 +00:00
|
|
|
|
};
|
|
|
|
|
|
2017-02-17 15:52:50 +00:00
|
|
|
|
static void setIdleInhibitor(_GLFWwindow* window, GLFWbool enable)
|
|
|
|
|
{
|
|
|
|
|
if (enable && !window->wl.idleInhibitor && _glfw.wl.idleInhibitManager)
|
|
|
|
|
{
|
|
|
|
|
window->wl.idleInhibitor =
|
|
|
|
|
zwp_idle_inhibit_manager_v1_create_inhibitor(
|
|
|
|
|
_glfw.wl.idleInhibitManager, window->wl.surface);
|
|
|
|
|
if (!window->wl.idleInhibitor)
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Idle inhibitor creation failed");
|
|
|
|
|
}
|
|
|
|
|
else if (!enable && window->wl.idleInhibitor)
|
|
|
|
|
{
|
|
|
|
|
zwp_idle_inhibitor_v1_destroy(window->wl.idleInhibitor);
|
|
|
|
|
window->wl.idleInhibitor = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
|
static GLFWbool createSurface(_GLFWwindow* window,
|
|
|
|
|
const _GLFWwndconfig* wndconfig)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
|
window->wl.surface = wl_compositor_create_surface(_glfw.wl.compositor);
|
|
|
|
|
if (!window->wl.surface)
|
2015-08-23 17:30:04 +00:00
|
|
|
|
return GLFW_FALSE;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
2015-10-10 15:35:06 +00:00
|
|
|
|
wl_surface_add_listener(window->wl.surface,
|
|
|
|
|
&surfaceListener,
|
|
|
|
|
window);
|
|
|
|
|
|
2014-06-29 10:29:00 +00:00
|
|
|
|
wl_surface_set_user_data(window->wl.surface, window);
|
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
|
window->wl.native = wl_egl_window_create(window->wl.surface,
|
|
|
|
|
wndconfig->width,
|
|
|
|
|
wndconfig->height);
|
|
|
|
|
if (!window->wl.native)
|
2015-08-23 17:30:04 +00:00
|
|
|
|
return GLFW_FALSE;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
2016-04-08 23:51:48 +00:00
|
|
|
|
window->wl.width = wndconfig->width;
|
|
|
|
|
window->wl.height = wndconfig->height;
|
|
|
|
|
window->wl.scale = 1;
|
|
|
|
|
|
2017-10-01 00:38:00 +00:00
|
|
|
|
if (!window->wl.transparent)
|
|
|
|
|
setOpaqueRegion(window);
|
2016-05-05 12:15:44 +00:00
|
|
|
|
|
2016-04-08 23:51:48 +00:00
|
|
|
|
return GLFW_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 16:11:11 +00:00
|
|
|
|
static void setFullscreen(_GLFWwindow* window, _GLFWmonitor* monitor,
|
|
|
|
|
int refreshRate)
|
2017-12-22 16:42:00 +00:00
|
|
|
|
{
|
|
|
|
|
if (window->wl.xdg.toplevel)
|
|
|
|
|
{
|
|
|
|
|
xdg_toplevel_set_fullscreen(
|
|
|
|
|
window->wl.xdg.toplevel,
|
|
|
|
|
monitor->wl.output);
|
|
|
|
|
}
|
|
|
|
|
setIdleInhibitor(window, GLFW_TRUE);
|
2018-10-01 13:05:55 +00:00
|
|
|
|
if (!window->wl.decorations.serverSide)
|
|
|
|
|
destroyDecorations(window);
|
2017-12-22 16:42:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-03 03:08:54 +00:00
|
|
|
|
static void xdgToplevelHandleConfigure(void* data,
|
|
|
|
|
struct xdg_toplevel* toplevel,
|
|
|
|
|
int32_t width,
|
|
|
|
|
int32_t height,
|
|
|
|
|
struct wl_array* states)
|
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
|
|
|
|
float aspectRatio;
|
|
|
|
|
float targetRatio;
|
|
|
|
|
uint32_t* state;
|
|
|
|
|
GLFWbool maximized = GLFW_FALSE;
|
|
|
|
|
GLFWbool fullscreen = GLFW_FALSE;
|
|
|
|
|
GLFWbool activated = GLFW_FALSE;
|
|
|
|
|
|
|
|
|
|
wl_array_for_each(state, states)
|
|
|
|
|
{
|
|
|
|
|
switch (*state)
|
|
|
|
|
{
|
|
|
|
|
case XDG_TOPLEVEL_STATE_MAXIMIZED:
|
|
|
|
|
maximized = GLFW_TRUE;
|
|
|
|
|
break;
|
|
|
|
|
case XDG_TOPLEVEL_STATE_FULLSCREEN:
|
|
|
|
|
fullscreen = GLFW_TRUE;
|
|
|
|
|
break;
|
|
|
|
|
case XDG_TOPLEVEL_STATE_RESIZING:
|
|
|
|
|
break;
|
|
|
|
|
case XDG_TOPLEVEL_STATE_ACTIVATED:
|
|
|
|
|
activated = GLFW_TRUE;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-04 20:55:09 +00:00
|
|
|
|
if (width != 0 && height != 0)
|
2017-12-03 03:08:54 +00:00
|
|
|
|
{
|
2018-01-04 20:55:09 +00:00
|
|
|
|
if (!maximized && !fullscreen)
|
2017-12-03 03:08:54 +00:00
|
|
|
|
{
|
2018-01-04 20:55:09 +00:00
|
|
|
|
if (window->numer != GLFW_DONT_CARE && window->denom != GLFW_DONT_CARE)
|
|
|
|
|
{
|
|
|
|
|
aspectRatio = (float)width / (float)height;
|
|
|
|
|
targetRatio = (float)window->numer / (float)window->denom;
|
|
|
|
|
if (aspectRatio < targetRatio)
|
|
|
|
|
height = width / targetRatio;
|
|
|
|
|
else if (aspectRatio > targetRatio)
|
|
|
|
|
width = height * targetRatio;
|
|
|
|
|
}
|
2017-12-03 03:08:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-04 20:55:09 +00:00
|
|
|
|
_glfwInputWindowSize(window, width, height);
|
2021-07-13 19:50:09 +00:00
|
|
|
|
_glfwSetWindowSizeWayland(window, width, height);
|
2018-01-04 20:55:09 +00:00
|
|
|
|
_glfwInputWindowDamage(window);
|
|
|
|
|
}
|
2017-12-03 03:08:54 +00:00
|
|
|
|
|
2019-02-15 17:12:06 +00:00
|
|
|
|
if (window->wl.wasFullscreen && window->autoIconify)
|
|
|
|
|
{
|
|
|
|
|
if (!activated || !fullscreen)
|
|
|
|
|
{
|
2021-07-13 19:50:09 +00:00
|
|
|
|
_glfwIconifyWindowWayland(window);
|
2019-02-15 17:12:06 +00:00
|
|
|
|
window->wl.wasFullscreen = GLFW_FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (fullscreen && activated)
|
|
|
|
|
window->wl.wasFullscreen = GLFW_TRUE;
|
2017-12-03 03:08:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void xdgToplevelHandleClose(void* data,
|
|
|
|
|
struct xdg_toplevel* toplevel)
|
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
|
|
|
|
_glfwInputWindowCloseRequest(window);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct xdg_toplevel_listener xdgToplevelListener = {
|
|
|
|
|
xdgToplevelHandleConfigure,
|
|
|
|
|
xdgToplevelHandleClose
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void xdgSurfaceHandleConfigure(void* data,
|
|
|
|
|
struct xdg_surface* surface,
|
|
|
|
|
uint32_t serial)
|
|
|
|
|
{
|
|
|
|
|
xdg_surface_ack_configure(surface, serial);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct xdg_surface_listener xdgSurfaceListener = {
|
|
|
|
|
xdgSurfaceHandleConfigure
|
|
|
|
|
};
|
|
|
|
|
|
2018-10-01 13:05:55 +00:00
|
|
|
|
static void setXdgDecorations(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
if (_glfw.wl.decorationManager)
|
|
|
|
|
{
|
|
|
|
|
window->wl.xdg.decoration =
|
|
|
|
|
zxdg_decoration_manager_v1_get_toplevel_decoration(
|
|
|
|
|
_glfw.wl.decorationManager, window->wl.xdg.toplevel);
|
|
|
|
|
zxdg_toplevel_decoration_v1_add_listener(window->wl.xdg.decoration,
|
|
|
|
|
&xdgDecorationListener,
|
|
|
|
|
window);
|
|
|
|
|
zxdg_toplevel_decoration_v1_set_mode(
|
|
|
|
|
window->wl.xdg.decoration,
|
|
|
|
|
ZXDG_TOPLEVEL_DECORATION_V1_MODE_SERVER_SIDE);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
window->wl.decorations.serverSide = GLFW_FALSE;
|
|
|
|
|
createDecorations(window);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-03 03:08:54 +00:00
|
|
|
|
static GLFWbool createXdgSurface(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
window->wl.xdg.surface = xdg_wm_base_get_xdg_surface(_glfw.wl.wmBase,
|
|
|
|
|
window->wl.surface);
|
|
|
|
|
if (!window->wl.xdg.surface)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: xdg-surface creation failed");
|
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
xdg_surface_add_listener(window->wl.xdg.surface,
|
|
|
|
|
&xdgSurfaceListener,
|
|
|
|
|
window);
|
|
|
|
|
|
|
|
|
|
window->wl.xdg.toplevel = xdg_surface_get_toplevel(window->wl.xdg.surface);
|
|
|
|
|
if (!window->wl.xdg.toplevel)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: xdg-toplevel creation failed");
|
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
xdg_toplevel_add_listener(window->wl.xdg.toplevel,
|
|
|
|
|
&xdgToplevelListener,
|
|
|
|
|
window);
|
|
|
|
|
|
|
|
|
|
if (window->wl.title)
|
|
|
|
|
xdg_toplevel_set_title(window->wl.xdg.toplevel, window->wl.title);
|
|
|
|
|
|
2018-01-04 20:54:29 +00:00
|
|
|
|
if (window->minwidth != GLFW_DONT_CARE && window->minheight != GLFW_DONT_CARE)
|
|
|
|
|
xdg_toplevel_set_min_size(window->wl.xdg.toplevel,
|
|
|
|
|
window->minwidth, window->minheight);
|
|
|
|
|
if (window->maxwidth != GLFW_DONT_CARE && window->maxheight != GLFW_DONT_CARE)
|
|
|
|
|
xdg_toplevel_set_max_size(window->wl.xdg.toplevel,
|
|
|
|
|
window->maxwidth, window->maxheight);
|
2017-12-03 03:08:54 +00:00
|
|
|
|
|
|
|
|
|
if (window->monitor)
|
|
|
|
|
{
|
|
|
|
|
xdg_toplevel_set_fullscreen(window->wl.xdg.toplevel,
|
|
|
|
|
window->monitor->wl.output);
|
|
|
|
|
setIdleInhibitor(window, GLFW_TRUE);
|
|
|
|
|
}
|
|
|
|
|
else if (window->wl.maximized)
|
|
|
|
|
{
|
|
|
|
|
xdg_toplevel_set_maximized(window->wl.xdg.toplevel);
|
|
|
|
|
setIdleInhibitor(window, GLFW_FALSE);
|
2018-10-01 13:05:55 +00:00
|
|
|
|
setXdgDecorations(window);
|
2017-12-03 03:08:54 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
setIdleInhibitor(window, GLFW_FALSE);
|
2018-10-01 13:05:55 +00:00
|
|
|
|
setXdgDecorations(window);
|
2017-12-03 03:08:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wl_surface_commit(window->wl.surface);
|
2018-01-04 20:56:01 +00:00
|
|
|
|
wl_display_roundtrip(_glfw.wl.display);
|
2017-12-03 03:08:54 +00:00
|
|
|
|
|
|
|
|
|
return GLFW_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 16:11:11 +00:00
|
|
|
|
static void setCursorImage(_GLFWwindow* window,
|
|
|
|
|
_GLFWcursorWayland* cursorWayland)
|
2018-09-08 18:05:40 +00:00
|
|
|
|
{
|
|
|
|
|
struct itimerspec timer = {};
|
2018-09-11 12:24:43 +00:00
|
|
|
|
struct wl_cursor* wlCursor = cursorWayland->cursor;
|
2018-09-08 18:05:40 +00:00
|
|
|
|
struct wl_cursor_image* image;
|
|
|
|
|
struct wl_buffer* buffer;
|
|
|
|
|
struct wl_surface* surface = _glfw.wl.cursorSurface;
|
2018-09-11 12:24:43 +00:00
|
|
|
|
int scale = 1;
|
2018-09-08 18:05:40 +00:00
|
|
|
|
|
2018-09-11 12:24:43 +00:00
|
|
|
|
if (!wlCursor)
|
2018-09-08 18:05:40 +00:00
|
|
|
|
buffer = cursorWayland->buffer;
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-09-11 12:24:43 +00:00
|
|
|
|
if (window->wl.scale > 1 && cursorWayland->cursorHiDPI)
|
|
|
|
|
{
|
|
|
|
|
wlCursor = cursorWayland->cursorHiDPI;
|
|
|
|
|
scale = 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
image = wlCursor->images[cursorWayland->currentImage];
|
2018-09-08 18:05:40 +00:00
|
|
|
|
buffer = wl_cursor_image_get_buffer(image);
|
|
|
|
|
if (!buffer)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
timer.it_value.tv_sec = image->delay / 1000;
|
|
|
|
|
timer.it_value.tv_nsec = (image->delay % 1000) * 1000000;
|
|
|
|
|
timerfd_settime(_glfw.wl.cursorTimerfd, 0, &timer, NULL);
|
|
|
|
|
|
|
|
|
|
cursorWayland->width = image->width;
|
|
|
|
|
cursorWayland->height = image->height;
|
|
|
|
|
cursorWayland->xhot = image->hotspot_x;
|
|
|
|
|
cursorWayland->yhot = image->hotspot_y;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-12 07:30:14 +00:00
|
|
|
|
wl_pointer_set_cursor(_glfw.wl.pointer, _glfw.wl.pointerEnterSerial,
|
2018-09-08 18:05:40 +00:00
|
|
|
|
surface,
|
2018-09-11 12:24:43 +00:00
|
|
|
|
cursorWayland->xhot / scale,
|
|
|
|
|
cursorWayland->yhot / scale);
|
|
|
|
|
wl_surface_set_buffer_scale(surface, scale);
|
2018-09-08 18:05:40 +00:00
|
|
|
|
wl_surface_attach(surface, buffer, 0, 0);
|
|
|
|
|
wl_surface_damage(surface, 0, 0,
|
|
|
|
|
cursorWayland->width, cursorWayland->height);
|
|
|
|
|
wl_surface_commit(surface);
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 16:11:11 +00:00
|
|
|
|
static void incrementCursorImage(_GLFWwindow* window)
|
2018-09-08 18:05:40 +00:00
|
|
|
|
{
|
|
|
|
|
_GLFWcursor* cursor;
|
|
|
|
|
|
|
|
|
|
if (!window || window->wl.decorations.focus != mainWindow)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
cursor = window->wl.currentCursor;
|
|
|
|
|
if (cursor && cursor->wl.cursor)
|
|
|
|
|
{
|
|
|
|
|
cursor->wl.currentImage += 1;
|
|
|
|
|
cursor->wl.currentImage %= cursor->wl.cursor->image_count;
|
2018-09-11 12:24:43 +00:00
|
|
|
|
setCursorImage(window, &cursor->wl);
|
2018-09-08 18:05:40 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 16:11:11 +00:00
|
|
|
|
static void handleEvents(int timeout)
|
2015-03-18 18:50:14 +00:00
|
|
|
|
{
|
|
|
|
|
struct wl_display* display = _glfw.wl.display;
|
|
|
|
|
struct pollfd fds[] = {
|
|
|
|
|
{ wl_display_get_fd(display), POLLIN },
|
2018-01-30 15:22:25 +00:00
|
|
|
|
{ _glfw.wl.timerfd, POLLIN },
|
2018-09-08 18:01:04 +00:00
|
|
|
|
{ _glfw.wl.cursorTimerfd, POLLIN },
|
2015-03-18 18:50:14 +00:00
|
|
|
|
};
|
2018-02-24 19:53:56 +00:00
|
|
|
|
ssize_t read_ret;
|
2021-02-16 19:12:19 +00:00
|
|
|
|
uint64_t repeats;
|
2015-03-18 18:50:14 +00:00
|
|
|
|
|
|
|
|
|
while (wl_display_prepare_read(display) != 0)
|
|
|
|
|
wl_display_dispatch_pending(display);
|
|
|
|
|
|
|
|
|
|
// If an error different from EAGAIN happens, we have likely been
|
|
|
|
|
// disconnected from the Wayland session, try to handle that the best we
|
|
|
|
|
// can.
|
|
|
|
|
if (wl_display_flush(display) < 0 && errno != EAGAIN)
|
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = _glfw.windowListHead;
|
|
|
|
|
while (window)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputWindowCloseRequest(window);
|
|
|
|
|
window = window->next;
|
|
|
|
|
}
|
|
|
|
|
wl_display_cancel_read(display);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-08 18:01:04 +00:00
|
|
|
|
if (poll(fds, 3, timeout) > 0)
|
2015-03-18 18:50:14 +00:00
|
|
|
|
{
|
2018-01-30 15:22:25 +00:00
|
|
|
|
if (fds[0].revents & POLLIN)
|
|
|
|
|
{
|
|
|
|
|
wl_display_read_events(display);
|
|
|
|
|
wl_display_dispatch_pending(display);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
wl_display_cancel_read(display);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (fds[1].revents & POLLIN)
|
|
|
|
|
{
|
2018-02-24 19:53:56 +00:00
|
|
|
|
read_ret = read(_glfw.wl.timerfd, &repeats, sizeof(repeats));
|
2021-12-14 08:29:01 +00:00
|
|
|
|
if (read_ret == 8 && _glfw.wl.keyboardFocus)
|
2020-06-02 17:54:30 +00:00
|
|
|
|
{
|
2021-02-16 19:12:19 +00:00
|
|
|
|
for (uint64_t i = 0; i < repeats; ++i)
|
2020-06-02 17:54:30 +00:00
|
|
|
|
{
|
|
|
|
|
_glfwInputKey(_glfw.wl.keyboardFocus,
|
|
|
|
|
_glfw.wl.keyboardLastKey,
|
|
|
|
|
_glfw.wl.keyboardLastScancode,
|
|
|
|
|
GLFW_REPEAT,
|
|
|
|
|
_glfw.wl.xkb.modifiers);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-30 15:22:25 +00:00
|
|
|
|
}
|
2018-09-08 18:01:04 +00:00
|
|
|
|
|
|
|
|
|
if (fds[2].revents & POLLIN)
|
|
|
|
|
{
|
|
|
|
|
read_ret = read(_glfw.wl.cursorTimerfd, &repeats, sizeof(repeats));
|
2021-12-14 08:29:01 +00:00
|
|
|
|
if (read_ret == 8)
|
|
|
|
|
incrementCursorImage(_glfw.wl.pointerFocus);
|
2018-09-08 18:01:04 +00:00
|
|
|
|
}
|
2015-03-18 18:50:14 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
wl_display_cancel_read(display);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-17 21:53:43 +00:00
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
////// GLFW platform API //////
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwCreateWindowWayland(_GLFWwindow* window,
|
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
|
const _GLFWctxconfig* ctxconfig,
|
|
|
|
|
const _GLFWfbconfig* fbconfig)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2017-10-01 00:38:00 +00:00
|
|
|
|
window->wl.transparent = fbconfig->transparent;
|
|
|
|
|
|
2015-11-02 00:39:52 +00:00
|
|
|
|
if (!createSurface(window, wndconfig))
|
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
|
2016-03-28 11:19:31 +00:00
|
|
|
|
if (ctxconfig->client != GLFW_NO_API)
|
2015-06-18 12:03:02 +00:00
|
|
|
|
{
|
2017-03-03 17:51:40 +00:00
|
|
|
|
if (ctxconfig->source == GLFW_EGL_CONTEXT_API ||
|
|
|
|
|
ctxconfig->source == GLFW_NATIVE_CONTEXT_API)
|
|
|
|
|
{
|
|
|
|
|
if (!_glfwInitEGL())
|
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
if (!_glfwCreateContextEGL(window, ctxconfig, fbconfig))
|
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
}
|
|
|
|
|
else if (ctxconfig->source == GLFW_OSMESA_CONTEXT_API)
|
|
|
|
|
{
|
|
|
|
|
if (!_glfwInitOSMesa())
|
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
if (!_glfwCreateContextOSMesa(window, ctxconfig, fbconfig))
|
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
}
|
2015-06-18 12:03:02 +00:00
|
|
|
|
}
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
2016-04-08 23:51:48 +00:00
|
|
|
|
if (wndconfig->title)
|
2018-01-17 10:56:35 +00:00
|
|
|
|
window->wl.title = _glfw_strdup(wndconfig->title);
|
2016-04-08 23:51:48 +00:00
|
|
|
|
|
2014-09-09 14:37:55 +00:00
|
|
|
|
window->wl.currentCursor = NULL;
|
|
|
|
|
|
2021-08-03 18:53:48 +00:00
|
|
|
|
window->wl.monitors = _glfw_calloc(1, sizeof(_GLFWmonitor*));
|
2015-10-10 15:35:06 +00:00
|
|
|
|
window->wl.monitorsCount = 0;
|
|
|
|
|
window->wl.monitorsSize = 1;
|
|
|
|
|
|
2015-08-23 17:30:04 +00:00
|
|
|
|
return GLFW_TRUE;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwDestroyWindowWayland(_GLFWwindow* window)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2014-07-26 20:55:43 +00:00
|
|
|
|
if (window == _glfw.wl.pointerFocus)
|
|
|
|
|
{
|
|
|
|
|
_glfw.wl.pointerFocus = NULL;
|
2015-08-23 17:30:04 +00:00
|
|
|
|
_glfwInputCursorEnter(window, GLFW_FALSE);
|
2014-07-26 20:55:43 +00:00
|
|
|
|
}
|
|
|
|
|
if (window == _glfw.wl.keyboardFocus)
|
|
|
|
|
{
|
|
|
|
|
_glfw.wl.keyboardFocus = NULL;
|
2015-08-23 17:30:04 +00:00
|
|
|
|
_glfwInputWindowFocus(window, GLFW_FALSE);
|
2014-07-26 20:55:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 15:52:50 +00:00
|
|
|
|
if (window->wl.idleInhibitor)
|
|
|
|
|
zwp_idle_inhibitor_v1_destroy(window->wl.idleInhibitor);
|
|
|
|
|
|
2016-08-05 09:22:55 +00:00
|
|
|
|
if (window->context.destroy)
|
2016-05-25 12:43:51 +00:00
|
|
|
|
window->context.destroy(window);
|
2014-07-10 21:08:28 +00:00
|
|
|
|
|
2017-12-19 20:32:31 +00:00
|
|
|
|
destroyDecorations(window);
|
2018-10-01 13:05:55 +00:00
|
|
|
|
if (window->wl.xdg.decoration)
|
|
|
|
|
zxdg_toplevel_decoration_v1_destroy(window->wl.xdg.decoration);
|
|
|
|
|
|
2017-12-26 19:06:33 +00:00
|
|
|
|
if (window->wl.decorations.buffer)
|
|
|
|
|
wl_buffer_destroy(window->wl.decorations.buffer);
|
2017-12-19 20:32:31 +00:00
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
|
if (window->wl.native)
|
|
|
|
|
wl_egl_window_destroy(window->wl.native);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
2017-12-03 03:08:54 +00:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
|
|
|
|
xdg_toplevel_destroy(window->wl.xdg.toplevel);
|
|
|
|
|
|
|
|
|
|
if (window->wl.xdg.surface)
|
|
|
|
|
xdg_surface_destroy(window->wl.xdg.surface);
|
|
|
|
|
|
2014-03-19 15:20:32 +00:00
|
|
|
|
if (window->wl.surface)
|
|
|
|
|
wl_surface_destroy(window->wl.surface);
|
2015-10-10 15:35:06 +00:00
|
|
|
|
|
2021-08-03 18:53:48 +00:00
|
|
|
|
_glfw_free(window->wl.title);
|
|
|
|
|
_glfw_free(window->wl.monitors);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowTitleWayland(_GLFWwindow* window, const char* title)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2016-04-08 23:51:48 +00:00
|
|
|
|
if (window->wl.title)
|
2021-08-03 18:53:48 +00:00
|
|
|
|
_glfw_free(window->wl.title);
|
2018-01-17 10:56:35 +00:00
|
|
|
|
window->wl.title = _glfw_strdup(title);
|
2017-12-03 03:08:54 +00:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
|
|
|
|
xdg_toplevel_set_title(window->wl.xdg.toplevel, title);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowIconWayland(_GLFWwindow* window,
|
|
|
|
|
int count, const GLFWimage* images)
|
2016-03-07 13:55:30 +00:00
|
|
|
|
{
|
2020-05-20 16:02:58 +00:00
|
|
|
|
_glfwInputError(GLFW_FEATURE_UNAVAILABLE,
|
|
|
|
|
"Wayland: The platform does not support setting the window icon");
|
2016-03-07 13:55:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwGetWindowPosWayland(_GLFWwindow* window, int* xpos, int* ypos)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2014-08-26 12:46:02 +00:00
|
|
|
|
// A Wayland client is not aware of its position, so just warn and leave it
|
|
|
|
|
// as (0, 0)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
2020-05-20 16:02:58 +00:00
|
|
|
|
_glfwInputError(GLFW_FEATURE_UNAVAILABLE,
|
|
|
|
|
"Wayland: The platform does not provide the window position");
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowPosWayland(_GLFWwindow* window, int xpos, int ypos)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2014-03-19 15:11:19 +00:00
|
|
|
|
// A Wayland client can not set its position, so just warn
|
2014-03-17 21:53:43 +00:00
|
|
|
|
|
2020-05-20 16:02:58 +00:00
|
|
|
|
_glfwInputError(GLFW_FEATURE_UNAVAILABLE,
|
|
|
|
|
"Wayland: The platform does not support setting the window position");
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwGetWindowSizeWayland(_GLFWwindow* window, int* width, int* height)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
|
|
|
|
if (width)
|
2014-03-19 15:20:32 +00:00
|
|
|
|
*width = window->wl.width;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
if (height)
|
2014-03-19 15:20:32 +00:00
|
|
|
|
*height = window->wl.height;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowSizeWayland(_GLFWwindow* window, int width, int height)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
|
window->wl.width = width;
|
|
|
|
|
window->wl.height = height;
|
2017-12-22 17:22:36 +00:00
|
|
|
|
resizeWindow(window);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowSizeLimitsWayland(_GLFWwindow* window,
|
|
|
|
|
int minwidth, int minheight,
|
|
|
|
|
int maxwidth, int maxheight)
|
2014-02-13 01:57:59 +00:00
|
|
|
|
{
|
2019-03-01 17:46:06 +00:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
2017-12-03 03:08:54 +00:00
|
|
|
|
{
|
2019-03-01 17:46:06 +00:00
|
|
|
|
if (minwidth == GLFW_DONT_CARE || minheight == GLFW_DONT_CARE)
|
|
|
|
|
minwidth = minheight = 0;
|
|
|
|
|
if (maxwidth == GLFW_DONT_CARE || maxheight == GLFW_DONT_CARE)
|
|
|
|
|
maxwidth = maxheight = 0;
|
|
|
|
|
xdg_toplevel_set_min_size(window->wl.xdg.toplevel, minwidth, minheight);
|
|
|
|
|
xdg_toplevel_set_max_size(window->wl.xdg.toplevel, maxwidth, maxheight);
|
|
|
|
|
wl_surface_commit(window->wl.surface);
|
2017-12-03 03:08:54 +00:00
|
|
|
|
}
|
2014-02-13 01:57:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowAspectRatioWayland(_GLFWwindow* window, int numer, int denom)
|
2014-02-13 01:57:59 +00:00
|
|
|
|
{
|
2016-04-08 23:42:58 +00:00
|
|
|
|
// TODO: find out how to trigger a resize.
|
2019-03-01 17:46:06 +00:00
|
|
|
|
// The actual limits are checked in the xdg_toplevel::configure handler.
|
2020-05-20 16:02:58 +00:00
|
|
|
|
_glfwInputError(GLFW_FEATURE_UNIMPLEMENTED,
|
|
|
|
|
"Wayland: Window aspect ratio not yet implemented");
|
2014-02-13 01:57:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwGetFramebufferSizeWayland(_GLFWwindow* window, int* width, int* height)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2021-07-13 19:50:09 +00:00
|
|
|
|
_glfwGetWindowSizeWayland(window, width, height);
|
2020-07-15 19:56:52 +00:00
|
|
|
|
if (width)
|
|
|
|
|
*width *= window->wl.scale;
|
|
|
|
|
if (height)
|
|
|
|
|
*height *= window->wl.scale;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwGetWindowFrameSizeWayland(_GLFWwindow* window,
|
|
|
|
|
int* left, int* top,
|
|
|
|
|
int* right, int* bottom)
|
2014-05-04 09:51:40 +00:00
|
|
|
|
{
|
2018-10-01 13:05:55 +00:00
|
|
|
|
if (window->decorated && !window->monitor && !window->wl.decorations.serverSide)
|
2017-12-22 16:47:07 +00:00
|
|
|
|
{
|
|
|
|
|
if (top)
|
|
|
|
|
*top = _GLFW_DECORATION_TOP;
|
|
|
|
|
if (left)
|
|
|
|
|
*left = _GLFW_DECORATION_WIDTH;
|
|
|
|
|
if (right)
|
|
|
|
|
*right = _GLFW_DECORATION_WIDTH;
|
|
|
|
|
if (bottom)
|
|
|
|
|
*bottom = _GLFW_DECORATION_WIDTH;
|
|
|
|
|
}
|
2014-05-04 09:51:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwGetWindowContentScaleWayland(_GLFWwindow* window,
|
|
|
|
|
float* xscale, float* yscale)
|
2017-08-29 17:19:00 +00:00
|
|
|
|
{
|
|
|
|
|
if (xscale)
|
|
|
|
|
*xscale = (float) window->wl.scale;
|
|
|
|
|
if (yscale)
|
|
|
|
|
*yscale = (float) window->wl.scale;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwIconifyWindowWayland(_GLFWwindow* window)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2019-03-01 17:46:06 +00:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
|
|
|
|
xdg_toplevel_set_minimized(window->wl.xdg.toplevel);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwRestoreWindowWayland(_GLFWwindow* window)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2017-12-03 03:08:54 +00:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
|
|
|
|
{
|
|
|
|
|
if (window->monitor)
|
|
|
|
|
xdg_toplevel_unset_fullscreen(window->wl.xdg.toplevel);
|
|
|
|
|
if (window->wl.maximized)
|
|
|
|
|
xdg_toplevel_unset_maximized(window->wl.xdg.toplevel);
|
|
|
|
|
// There is no way to unset minimized, or even to know if we are
|
2019-03-01 17:46:06 +00:00
|
|
|
|
// minimized, so there is nothing to do in this case.
|
2016-04-08 23:54:23 +00:00
|
|
|
|
}
|
2017-12-03 03:08:54 +00:00
|
|
|
|
_glfwInputWindowMonitor(window, NULL);
|
|
|
|
|
window->wl.maximized = GLFW_FALSE;
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwMaximizeWindowWayland(_GLFWwindow* window)
|
2015-10-13 10:50:59 +00:00
|
|
|
|
{
|
2017-12-03 03:08:54 +00:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
2016-04-08 23:54:23 +00:00
|
|
|
|
{
|
2017-12-03 03:08:54 +00:00
|
|
|
|
xdg_toplevel_set_maximized(window->wl.xdg.toplevel);
|
2016-04-08 23:54:23 +00:00
|
|
|
|
}
|
2017-12-03 03:08:54 +00:00
|
|
|
|
window->wl.maximized = GLFW_TRUE;
|
2015-10-13 10:50:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwShowWindowWayland(_GLFWwindow* window)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2018-01-04 20:55:36 +00:00
|
|
|
|
if (!window->wl.visible)
|
|
|
|
|
{
|
2020-07-13 00:47:50 +00:00
|
|
|
|
// NOTE: The XDG surface and role are created here so command-line applications
|
|
|
|
|
// with off-screen windows do not appear in for example the Unity dock
|
|
|
|
|
if (!window->wl.xdg.toplevel)
|
|
|
|
|
createXdgSurface(window);
|
|
|
|
|
|
2018-01-04 20:55:36 +00:00
|
|
|
|
window->wl.visible = GLFW_TRUE;
|
|
|
|
|
}
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwHideWindowWayland(_GLFWwindow* window)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2020-07-13 00:47:50 +00:00
|
|
|
|
if (window->wl.visible)
|
2016-04-08 23:51:48 +00:00
|
|
|
|
{
|
2020-07-13 00:47:50 +00:00
|
|
|
|
window->wl.visible = GLFW_FALSE;
|
|
|
|
|
wl_surface_attach(window->wl.surface, NULL, 0, 0);
|
|
|
|
|
wl_surface_commit(window->wl.surface);
|
2017-12-03 03:08:54 +00:00
|
|
|
|
}
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwRequestWindowAttentionWayland(_GLFWwindow* window)
|
2017-03-21 13:02:57 +00:00
|
|
|
|
{
|
2017-05-11 12:36:56 +00:00
|
|
|
|
// TODO
|
2020-05-20 16:02:58 +00:00
|
|
|
|
_glfwInputError(GLFW_FEATURE_UNIMPLEMENTED,
|
2017-05-11 12:36:56 +00:00
|
|
|
|
"Wayland: Window attention request not implemented yet");
|
2017-03-21 13:02:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwFocusWindowWayland(_GLFWwindow* window)
|
2016-02-21 14:42:49 +00:00
|
|
|
|
{
|
2020-05-20 16:02:58 +00:00
|
|
|
|
_glfwInputError(GLFW_FEATURE_UNAVAILABLE,
|
|
|
|
|
"Wayland: The platform does not support setting the input focus");
|
2016-02-21 14:42:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowMonitorWayland(_GLFWwindow* window,
|
|
|
|
|
_GLFWmonitor* monitor,
|
|
|
|
|
int xpos, int ypos,
|
|
|
|
|
int width, int height,
|
|
|
|
|
int refreshRate)
|
2016-02-23 11:26:42 +00:00
|
|
|
|
{
|
2017-12-22 16:42:00 +00:00
|
|
|
|
if (monitor)
|
2016-04-08 23:53:03 +00:00
|
|
|
|
{
|
2017-12-22 16:42:00 +00:00
|
|
|
|
setFullscreen(window, monitor, refreshRate);
|
2016-04-08 23:53:03 +00:00
|
|
|
|
}
|
2017-12-22 16:42:00 +00:00
|
|
|
|
else
|
2016-04-08 23:53:03 +00:00
|
|
|
|
{
|
2017-12-22 16:42:00 +00:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
|
|
|
|
xdg_toplevel_unset_fullscreen(window->wl.xdg.toplevel);
|
|
|
|
|
setIdleInhibitor(window, GLFW_FALSE);
|
2018-10-01 13:05:55 +00:00
|
|
|
|
if (!_glfw.wl.decorationManager)
|
2017-12-26 15:15:11 +00:00
|
|
|
|
createDecorations(window);
|
2016-04-08 23:53:03 +00:00
|
|
|
|
}
|
2017-10-26 16:05:56 +00:00
|
|
|
|
_glfwInputWindowMonitor(window, monitor);
|
2016-02-23 11:26:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwWindowFocusedWayland(_GLFWwindow* window)
|
2014-12-26 11:25:48 +00:00
|
|
|
|
{
|
2016-04-08 23:55:03 +00:00
|
|
|
|
return _glfw.wl.keyboardFocus == window;
|
2014-12-26 11:25:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwWindowIconifiedWayland(_GLFWwindow* window)
|
2014-12-26 11:25:48 +00:00
|
|
|
|
{
|
2019-03-01 17:46:06 +00:00
|
|
|
|
// xdg-shell doesn’t give any way to request whether a surface is
|
|
|
|
|
// iconified.
|
2015-08-23 17:30:04 +00:00
|
|
|
|
return GLFW_FALSE;
|
2014-12-26 11:25:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwWindowVisibleWayland(_GLFWwindow* window)
|
2014-12-26 11:25:48 +00:00
|
|
|
|
{
|
2016-04-08 23:51:48 +00:00
|
|
|
|
return window->wl.visible;
|
2014-12-26 11:25:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwWindowMaximizedWayland(_GLFWwindow* window)
|
2015-10-13 10:50:59 +00:00
|
|
|
|
{
|
2016-04-08 23:54:23 +00:00
|
|
|
|
return window->wl.maximized;
|
2015-10-13 10:50:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwWindowHoveredWayland(_GLFWwindow* window)
|
2018-01-04 12:50:58 +00:00
|
|
|
|
{
|
|
|
|
|
return window->wl.hovered;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwFramebufferTransparentWayland(_GLFWwindow* window)
|
2017-09-18 16:10:57 +00:00
|
|
|
|
{
|
2017-10-01 00:38:00 +00:00
|
|
|
|
return window->wl.transparent;
|
2017-09-18 16:10:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowResizableWayland(_GLFWwindow* window, GLFWbool enabled)
|
2016-09-29 23:52:22 +00:00
|
|
|
|
{
|
|
|
|
|
// TODO
|
2020-05-20 16:02:58 +00:00
|
|
|
|
_glfwInputError(GLFW_FEATURE_UNIMPLEMENTED,
|
2016-09-29 23:52:22 +00:00
|
|
|
|
"Wayland: Window attribute setting not implemented yet");
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowDecoratedWayland(_GLFWwindow* window, GLFWbool enabled)
|
2016-09-29 23:52:22 +00:00
|
|
|
|
{
|
2017-12-22 16:47:07 +00:00
|
|
|
|
if (!window->monitor)
|
|
|
|
|
{
|
|
|
|
|
if (enabled)
|
|
|
|
|
createDecorations(window);
|
|
|
|
|
else
|
|
|
|
|
destroyDecorations(window);
|
|
|
|
|
}
|
2016-09-29 23:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowFloatingWayland(_GLFWwindow* window, GLFWbool enabled)
|
2016-09-29 23:52:22 +00:00
|
|
|
|
{
|
|
|
|
|
// TODO
|
2020-05-20 16:02:58 +00:00
|
|
|
|
_glfwInputError(GLFW_FEATURE_UNIMPLEMENTED,
|
2016-09-29 23:52:22 +00:00
|
|
|
|
"Wayland: Window attribute setting not implemented yet");
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowMousePassthroughWayland(_GLFWwindow* window, GLFWbool enabled)
|
2019-09-30 12:44:43 +00:00
|
|
|
|
{
|
|
|
|
|
if (enabled)
|
|
|
|
|
{
|
|
|
|
|
struct wl_region* region = wl_compositor_create_region(_glfw.wl.compositor);
|
|
|
|
|
wl_surface_set_input_region(window->wl.surface, region);
|
|
|
|
|
wl_region_destroy(region);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
wl_surface_set_input_region(window->wl.surface, 0);
|
|
|
|
|
wl_surface_commit(window->wl.surface);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
float _glfwGetWindowOpacityWayland(_GLFWwindow* window)
|
2017-09-25 21:14:45 +00:00
|
|
|
|
{
|
|
|
|
|
return 1.f;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetWindowOpacityWayland(_GLFWwindow* window, float opacity)
|
2017-09-25 21:14:45 +00:00
|
|
|
|
{
|
2020-05-20 16:02:58 +00:00
|
|
|
|
_glfwInputError(GLFW_FEATURE_UNAVAILABLE,
|
|
|
|
|
"Wayland: The platform does not support setting the window opacity");
|
2017-09-25 21:14:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetRawMouseMotionWayland(_GLFWwindow *window, GLFWbool enabled)
|
2018-12-14 02:08:25 +00:00
|
|
|
|
{
|
2019-02-22 13:48:46 +00:00
|
|
|
|
// This is handled in relativePointerHandleRelativeMotion
|
2018-12-14 02:08:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
GLFWbool _glfwRawMouseMotionSupportedWayland(void)
|
2018-12-14 02:08:25 +00:00
|
|
|
|
{
|
2019-02-22 13:48:46 +00:00
|
|
|
|
return GLFW_TRUE;
|
2018-12-14 02:08:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwPollEventsWayland(void)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2015-03-18 18:50:14 +00:00
|
|
|
|
handleEvents(0);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwWaitEventsWayland(void)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2015-03-18 18:50:14 +00:00
|
|
|
|
handleEvents(-1);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwWaitEventsTimeoutWayland(double timeout)
|
2016-02-02 20:11:16 +00:00
|
|
|
|
{
|
|
|
|
|
handleEvents((int) (timeout * 1e3));
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwPostEmptyEventWayland(void)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2014-03-19 15:20:32 +00:00
|
|
|
|
wl_display_sync(_glfw.wl.display);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwGetCursorPosWayland(_GLFWwindow* window, double* xpos, double* ypos)
|
2015-01-06 00:23:10 +00:00
|
|
|
|
{
|
2015-04-15 16:18:42 +00:00
|
|
|
|
if (xpos)
|
2015-04-19 16:54:04 +00:00
|
|
|
|
*xpos = window->wl.cursorPosX;
|
2015-04-15 16:18:42 +00:00
|
|
|
|
if (ypos)
|
2015-04-19 16:54:04 +00:00
|
|
|
|
*ypos = window->wl.cursorPosY;
|
2015-01-06 00:23:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-12-09 07:29:37 +00:00
|
|
|
|
static GLFWbool isPointerLocked(_GLFWwindow* window);
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetCursorPosWayland(_GLFWwindow* window, double x, double y)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2015-12-09 07:29:37 +00:00
|
|
|
|
if (isPointerLocked(window))
|
|
|
|
|
{
|
|
|
|
|
zwp_locked_pointer_v1_set_cursor_position_hint(
|
|
|
|
|
window->wl.pointerLock.lockedPointer,
|
|
|
|
|
wl_fixed_from_double(x), wl_fixed_from_double(y));
|
|
|
|
|
wl_surface_commit(window->wl.surface);
|
|
|
|
|
}
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetCursorModeWayland(_GLFWwindow* window, int mode)
|
2014-03-17 21:53:43 +00:00
|
|
|
|
{
|
2021-07-13 19:50:09 +00:00
|
|
|
|
_glfwSetCursorWayland(window, window->wl.currentCursor);
|
2014-03-17 21:53:43 +00:00
|
|
|
|
}
|
2014-03-19 15:11:19 +00:00
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
const char* _glfwGetScancodeNameWayland(int scancode)
|
2015-07-02 12:24:50 +00:00
|
|
|
|
{
|
|
|
|
|
// TODO
|
2020-05-20 16:02:58 +00:00
|
|
|
|
_glfwInputError(GLFW_FEATURE_UNIMPLEMENTED,
|
|
|
|
|
"Wayland: Key names not yet implemented");
|
2015-07-02 12:24:50 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwGetKeyScancodeWayland(int key)
|
2016-08-11 17:11:40 +00:00
|
|
|
|
{
|
2016-09-07 13:43:39 +00:00
|
|
|
|
return _glfw.wl.scancodes[key];
|
2016-08-11 17:11:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwCreateCursorWayland(_GLFWcursor* cursor,
|
|
|
|
|
const GLFWimage* image,
|
|
|
|
|
int xhot, int yhot)
|
2014-03-27 16:29:22 +00:00
|
|
|
|
{
|
2017-12-19 16:25:00 +00:00
|
|
|
|
cursor->wl.buffer = createShmBuffer(image);
|
2018-09-29 20:59:00 +00:00
|
|
|
|
if (!cursor->wl.buffer)
|
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
|
2014-09-09 14:37:55 +00:00
|
|
|
|
cursor->wl.width = image->width;
|
|
|
|
|
cursor->wl.height = image->height;
|
|
|
|
|
cursor->wl.xhot = xhot;
|
|
|
|
|
cursor->wl.yhot = yhot;
|
2015-08-23 17:30:04 +00:00
|
|
|
|
return GLFW_TRUE;
|
2014-03-27 16:29:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwCreateStandardCursorWayland(_GLFWcursor* cursor, int shape)
|
2014-09-02 14:52:16 +00:00
|
|
|
|
{
|
2019-05-07 18:40:37 +00:00
|
|
|
|
const char* name = NULL;
|
|
|
|
|
|
|
|
|
|
// Try the XDG names first
|
2020-07-23 16:22:23 +00:00
|
|
|
|
switch (shape)
|
|
|
|
|
{
|
|
|
|
|
case GLFW_ARROW_CURSOR:
|
|
|
|
|
name = "default";
|
|
|
|
|
break;
|
|
|
|
|
case GLFW_IBEAM_CURSOR:
|
|
|
|
|
name = "text";
|
|
|
|
|
break;
|
|
|
|
|
case GLFW_CROSSHAIR_CURSOR:
|
|
|
|
|
name = "crosshair";
|
|
|
|
|
break;
|
|
|
|
|
case GLFW_POINTING_HAND_CURSOR:
|
|
|
|
|
name = "pointer";
|
|
|
|
|
break;
|
|
|
|
|
case GLFW_RESIZE_EW_CURSOR:
|
|
|
|
|
name = "ew-resize";
|
|
|
|
|
break;
|
|
|
|
|
case GLFW_RESIZE_NS_CURSOR:
|
|
|
|
|
name = "ns-resize";
|
|
|
|
|
break;
|
|
|
|
|
case GLFW_RESIZE_NWSE_CURSOR:
|
|
|
|
|
name = "nwse-resize";
|
|
|
|
|
break;
|
|
|
|
|
case GLFW_RESIZE_NESW_CURSOR:
|
|
|
|
|
name = "nesw-resize";
|
|
|
|
|
break;
|
|
|
|
|
case GLFW_RESIZE_ALL_CURSOR:
|
|
|
|
|
name = "all-scroll";
|
|
|
|
|
break;
|
|
|
|
|
case GLFW_NOT_ALLOWED_CURSOR:
|
|
|
|
|
name = "not-allowed";
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-05-07 18:40:37 +00:00
|
|
|
|
|
|
|
|
|
cursor->wl.cursor = wl_cursor_theme_get_cursor(_glfw.wl.cursorTheme, name);
|
2015-10-22 23:28:16 +00:00
|
|
|
|
|
2019-05-07 18:40:37 +00:00
|
|
|
|
if (_glfw.wl.cursorThemeHiDPI)
|
2015-10-24 21:40:02 +00:00
|
|
|
|
{
|
2019-05-07 18:40:37 +00:00
|
|
|
|
cursor->wl.cursorHiDPI =
|
|
|
|
|
wl_cursor_theme_get_cursor(_glfw.wl.cursorThemeHiDPI, name);
|
2015-10-22 23:28:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-07 18:40:37 +00:00
|
|
|
|
if (!cursor->wl.cursor)
|
2018-09-11 12:24:43 +00:00
|
|
|
|
{
|
2019-05-07 18:40:37 +00:00
|
|
|
|
// Fall back to the core X11 names
|
2020-07-23 16:22:23 +00:00
|
|
|
|
switch (shape)
|
2019-05-07 18:40:37 +00:00
|
|
|
|
{
|
2020-07-23 16:22:23 +00:00
|
|
|
|
case GLFW_ARROW_CURSOR:
|
|
|
|
|
name = "left_ptr";
|
2021-09-02 16:30:41 +00:00
|
|
|
|
break;
|
2020-07-23 16:22:23 +00:00
|
|
|
|
case GLFW_IBEAM_CURSOR:
|
|
|
|
|
name = "xterm";
|
2021-09-02 16:30:41 +00:00
|
|
|
|
break;
|
2020-07-23 16:22:23 +00:00
|
|
|
|
case GLFW_CROSSHAIR_CURSOR:
|
|
|
|
|
name = "crosshair";
|
2021-09-02 16:30:41 +00:00
|
|
|
|
break;
|
2020-07-23 16:22:23 +00:00
|
|
|
|
case GLFW_POINTING_HAND_CURSOR:
|
|
|
|
|
name = "hand2";
|
2021-09-02 16:30:41 +00:00
|
|
|
|
break;
|
2020-07-23 16:22:23 +00:00
|
|
|
|
case GLFW_RESIZE_EW_CURSOR:
|
|
|
|
|
name = "sb_h_double_arrow";
|
2021-09-02 16:30:41 +00:00
|
|
|
|
break;
|
2020-07-23 16:22:23 +00:00
|
|
|
|
case GLFW_RESIZE_NS_CURSOR:
|
|
|
|
|
name = "sb_v_double_arrow";
|
2021-09-02 16:30:41 +00:00
|
|
|
|
break;
|
2020-07-23 16:22:23 +00:00
|
|
|
|
case GLFW_RESIZE_ALL_CURSOR:
|
|
|
|
|
name = "fleur";
|
2021-09-02 16:30:41 +00:00
|
|
|
|
break;
|
2020-07-23 16:22:23 +00:00
|
|
|
|
default:
|
|
|
|
|
_glfwInputError(GLFW_CURSOR_UNAVAILABLE,
|
|
|
|
|
"Wayland: Standard cursor shape unavailable");
|
|
|
|
|
return GLFW_FALSE;
|
2019-05-07 18:40:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cursor->wl.cursor = wl_cursor_theme_get_cursor(_glfw.wl.cursorTheme, name);
|
|
|
|
|
if (!cursor->wl.cursor)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Failed to create standard cursor \"%s\"",
|
|
|
|
|
name);
|
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_glfw.wl.cursorThemeHiDPI)
|
|
|
|
|
{
|
|
|
|
|
if (!cursor->wl.cursorHiDPI)
|
|
|
|
|
{
|
|
|
|
|
cursor->wl.cursorHiDPI =
|
|
|
|
|
wl_cursor_theme_get_cursor(_glfw.wl.cursorThemeHiDPI, name);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-09-11 12:24:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-22 23:28:16 +00:00
|
|
|
|
return GLFW_TRUE;
|
2014-09-02 14:52:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwDestroyCursorWayland(_GLFWcursor* cursor)
|
2014-03-27 16:29:22 +00:00
|
|
|
|
{
|
2015-10-22 23:28:16 +00:00
|
|
|
|
// If it's a standard cursor we don't need to do anything here
|
2018-09-08 18:05:40 +00:00
|
|
|
|
if (cursor->wl.cursor)
|
2015-10-22 23:28:16 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2015-11-16 21:57:36 +00:00
|
|
|
|
if (cursor->wl.buffer)
|
|
|
|
|
wl_buffer_destroy(cursor->wl.buffer);
|
2014-03-27 16:29:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 19:01:03 +00:00
|
|
|
|
static void relativePointerHandleRelativeMotion(void* data,
|
|
|
|
|
struct zwp_relative_pointer_v1* pointer,
|
|
|
|
|
uint32_t timeHi,
|
|
|
|
|
uint32_t timeLo,
|
|
|
|
|
wl_fixed_t dx,
|
|
|
|
|
wl_fixed_t dy,
|
|
|
|
|
wl_fixed_t dxUnaccel,
|
|
|
|
|
wl_fixed_t dyUnaccel)
|
2015-12-09 07:29:37 +00:00
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
2019-02-22 13:48:46 +00:00
|
|
|
|
double xpos = window->virtualCursorPosX;
|
|
|
|
|
double ypos = window->virtualCursorPosY;
|
2015-12-09 07:29:37 +00:00
|
|
|
|
|
|
|
|
|
if (window->cursorMode != GLFW_CURSOR_DISABLED)
|
|
|
|
|
return;
|
|
|
|
|
|
2019-02-22 13:48:46 +00:00
|
|
|
|
if (window->rawMouseMotion)
|
|
|
|
|
{
|
|
|
|
|
xpos += wl_fixed_to_double(dxUnaccel);
|
|
|
|
|
ypos += wl_fixed_to_double(dyUnaccel);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
xpos += wl_fixed_to_double(dx);
|
|
|
|
|
ypos += wl_fixed_to_double(dy);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_glfwInputCursorPos(window, xpos, ypos);
|
2015-12-09 07:29:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct zwp_relative_pointer_v1_listener relativePointerListener = {
|
2018-09-29 19:01:03 +00:00
|
|
|
|
relativePointerHandleRelativeMotion
|
2015-12-09 07:29:37 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-09-29 19:01:03 +00:00
|
|
|
|
static void lockedPointerHandleLocked(void* data,
|
|
|
|
|
struct zwp_locked_pointer_v1* lockedPointer)
|
2015-12-09 07:29:37 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void unlockPointer(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
struct zwp_relative_pointer_v1* relativePointer =
|
|
|
|
|
window->wl.pointerLock.relativePointer;
|
|
|
|
|
struct zwp_locked_pointer_v1* lockedPointer =
|
|
|
|
|
window->wl.pointerLock.lockedPointer;
|
|
|
|
|
|
|
|
|
|
zwp_relative_pointer_v1_destroy(relativePointer);
|
|
|
|
|
zwp_locked_pointer_v1_destroy(lockedPointer);
|
|
|
|
|
|
|
|
|
|
window->wl.pointerLock.relativePointer = NULL;
|
|
|
|
|
window->wl.pointerLock.lockedPointer = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void lockPointer(_GLFWwindow* window);
|
|
|
|
|
|
2018-09-29 19:01:03 +00:00
|
|
|
|
static void lockedPointerHandleUnlocked(void* data,
|
|
|
|
|
struct zwp_locked_pointer_v1* lockedPointer)
|
2015-12-09 07:29:37 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct zwp_locked_pointer_v1_listener lockedPointerListener = {
|
2018-09-29 19:01:03 +00:00
|
|
|
|
lockedPointerHandleLocked,
|
|
|
|
|
lockedPointerHandleUnlocked
|
2015-12-09 07:29:37 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void lockPointer(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
struct zwp_relative_pointer_v1* relativePointer;
|
|
|
|
|
struct zwp_locked_pointer_v1* lockedPointer;
|
|
|
|
|
|
|
|
|
|
if (!_glfw.wl.relativePointerManager)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: no relative pointer manager");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
relativePointer =
|
|
|
|
|
zwp_relative_pointer_manager_v1_get_relative_pointer(
|
|
|
|
|
_glfw.wl.relativePointerManager,
|
|
|
|
|
_glfw.wl.pointer);
|
|
|
|
|
zwp_relative_pointer_v1_add_listener(relativePointer,
|
|
|
|
|
&relativePointerListener,
|
|
|
|
|
window);
|
|
|
|
|
|
|
|
|
|
lockedPointer =
|
|
|
|
|
zwp_pointer_constraints_v1_lock_pointer(
|
|
|
|
|
_glfw.wl.pointerConstraints,
|
|
|
|
|
window->wl.surface,
|
|
|
|
|
_glfw.wl.pointer,
|
|
|
|
|
NULL,
|
|
|
|
|
ZWP_POINTER_CONSTRAINTS_V1_LIFETIME_PERSISTENT);
|
|
|
|
|
zwp_locked_pointer_v1_add_listener(lockedPointer,
|
|
|
|
|
&lockedPointerListener,
|
|
|
|
|
window);
|
|
|
|
|
|
|
|
|
|
window->wl.pointerLock.relativePointer = relativePointer;
|
|
|
|
|
window->wl.pointerLock.lockedPointer = lockedPointer;
|
|
|
|
|
|
2021-05-12 07:30:14 +00:00
|
|
|
|
wl_pointer_set_cursor(_glfw.wl.pointer, _glfw.wl.pointerEnterSerial,
|
2015-12-09 07:29:37 +00:00
|
|
|
|
NULL, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GLFWbool isPointerLocked(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
return window->wl.pointerLock.lockedPointer != NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetCursorWayland(_GLFWwindow* window, _GLFWcursor* cursor)
|
2014-03-27 16:29:22 +00:00
|
|
|
|
{
|
2015-10-22 23:28:16 +00:00
|
|
|
|
struct wl_cursor* defaultCursor;
|
2018-09-11 12:24:43 +00:00
|
|
|
|
struct wl_cursor* defaultCursorHiDPI = NULL;
|
2014-09-09 14:37:55 +00:00
|
|
|
|
|
|
|
|
|
if (!_glfw.wl.pointer)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
window->wl.currentCursor = cursor;
|
|
|
|
|
|
|
|
|
|
// If we're not in the correct window just save the cursor
|
|
|
|
|
// the next time the pointer enters the window the cursor will change
|
2018-09-08 18:05:40 +00:00
|
|
|
|
if (window != _glfw.wl.pointerFocus || window->wl.decorations.focus != mainWindow)
|
2014-09-09 14:37:55 +00:00
|
|
|
|
return;
|
|
|
|
|
|
2015-12-09 07:29:37 +00:00
|
|
|
|
// Unlock possible pointer lock if no longer disabled.
|
|
|
|
|
if (window->cursorMode != GLFW_CURSOR_DISABLED && isPointerLocked(window))
|
|
|
|
|
unlockPointer(window);
|
|
|
|
|
|
2014-09-09 14:37:55 +00:00
|
|
|
|
if (window->cursorMode == GLFW_CURSOR_NORMAL)
|
|
|
|
|
{
|
2015-10-24 21:40:02 +00:00
|
|
|
|
if (cursor)
|
2018-09-11 12:24:43 +00:00
|
|
|
|
setCursorImage(window, &cursor->wl);
|
2015-10-24 21:40:02 +00:00
|
|
|
|
else
|
2014-09-09 14:37:55 +00:00
|
|
|
|
{
|
2015-10-22 23:28:16 +00:00
|
|
|
|
defaultCursor = wl_cursor_theme_get_cursor(_glfw.wl.cursorTheme,
|
|
|
|
|
"left_ptr");
|
|
|
|
|
if (!defaultCursor)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Standard cursor not found");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-09-11 12:24:43 +00:00
|
|
|
|
if (_glfw.wl.cursorThemeHiDPI)
|
|
|
|
|
defaultCursorHiDPI =
|
|
|
|
|
wl_cursor_theme_get_cursor(_glfw.wl.cursorThemeHiDPI,
|
|
|
|
|
"left_ptr");
|
2018-09-08 18:05:40 +00:00
|
|
|
|
_GLFWcursorWayland cursorWayland = {
|
|
|
|
|
defaultCursor,
|
2018-09-11 12:24:43 +00:00
|
|
|
|
defaultCursorHiDPI,
|
2018-09-08 18:05:40 +00:00
|
|
|
|
NULL,
|
|
|
|
|
0, 0,
|
|
|
|
|
0, 0,
|
|
|
|
|
0
|
|
|
|
|
};
|
2018-09-11 12:24:43 +00:00
|
|
|
|
setCursorImage(window, &cursorWayland);
|
2014-09-09 14:37:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-12-09 07:29:37 +00:00
|
|
|
|
else if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
|
|
|
|
{
|
|
|
|
|
if (!isPointerLocked(window))
|
|
|
|
|
lockPointer(window);
|
|
|
|
|
}
|
|
|
|
|
else if (window->cursorMode == GLFW_CURSOR_HIDDEN)
|
2014-09-09 14:37:55 +00:00
|
|
|
|
{
|
2021-05-12 07:30:14 +00:00
|
|
|
|
wl_pointer_set_cursor(_glfw.wl.pointer, _glfw.wl.pointerEnterSerial, NULL, 0, 0);
|
2014-09-09 14:37:55 +00:00
|
|
|
|
}
|
2014-03-27 16:29:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-10 18:31:26 +00:00
|
|
|
|
static void dataSourceHandleTarget(void* data,
|
|
|
|
|
struct wl_data_source* dataSource,
|
|
|
|
|
const char* mimeType)
|
|
|
|
|
{
|
|
|
|
|
if (_glfw.wl.dataSource != dataSource)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Unknown clipboard data source");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void dataSourceHandleSend(void* data,
|
|
|
|
|
struct wl_data_source* dataSource,
|
|
|
|
|
const char* mimeType,
|
|
|
|
|
int fd)
|
|
|
|
|
{
|
|
|
|
|
const char* string = _glfw.wl.clipboardSendString;
|
|
|
|
|
size_t len = _glfw.wl.clipboardSendSize;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if (_glfw.wl.dataSource != dataSource)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Unknown clipboard data source");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!string)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Copy requested from an invalid string");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp(mimeType, "text/plain;charset=utf-8") != 0)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Wrong MIME type asked from clipboard");
|
|
|
|
|
close(fd);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (len > 0)
|
|
|
|
|
{
|
|
|
|
|
ret = write(fd, string, len);
|
|
|
|
|
if (ret == -1 && errno == EINTR)
|
|
|
|
|
continue;
|
|
|
|
|
if (ret == -1)
|
|
|
|
|
{
|
|
|
|
|
// TODO: also report errno maybe.
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Error while writing the clipboard");
|
|
|
|
|
close(fd);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
len -= ret;
|
|
|
|
|
}
|
|
|
|
|
close(fd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void dataSourceHandleCancelled(void* data,
|
|
|
|
|
struct wl_data_source* dataSource)
|
|
|
|
|
{
|
|
|
|
|
wl_data_source_destroy(dataSource);
|
|
|
|
|
|
|
|
|
|
if (_glfw.wl.dataSource != dataSource)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Unknown clipboard data source");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_glfw.wl.dataSource = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct wl_data_source_listener dataSourceListener = {
|
|
|
|
|
dataSourceHandleTarget,
|
|
|
|
|
dataSourceHandleSend,
|
|
|
|
|
dataSourceHandleCancelled,
|
|
|
|
|
};
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwSetClipboardStringWayland(const char* string)
|
2014-09-09 14:26:57 +00:00
|
|
|
|
{
|
2018-10-10 18:31:26 +00:00
|
|
|
|
if (_glfw.wl.dataSource)
|
|
|
|
|
{
|
|
|
|
|
wl_data_source_destroy(_glfw.wl.dataSource);
|
|
|
|
|
_glfw.wl.dataSource = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_glfw.wl.clipboardSendString)
|
|
|
|
|
{
|
2021-08-03 18:53:48 +00:00
|
|
|
|
_glfw_free(_glfw.wl.clipboardSendString);
|
2018-10-10 18:31:26 +00:00
|
|
|
|
_glfw.wl.clipboardSendString = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-03 18:53:48 +00:00
|
|
|
|
_glfw.wl.clipboardSendString = _glfw_strdup(string);
|
2018-10-10 18:31:26 +00:00
|
|
|
|
if (!_glfw.wl.clipboardSendString)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Impossible to allocate clipboard string");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_glfw.wl.clipboardSendSize = strlen(string);
|
|
|
|
|
_glfw.wl.dataSource =
|
|
|
|
|
wl_data_device_manager_create_data_source(_glfw.wl.dataDeviceManager);
|
|
|
|
|
if (!_glfw.wl.dataSource)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Impossible to create clipboard source");
|
2021-08-03 18:53:48 +00:00
|
|
|
|
_glfw_free(_glfw.wl.clipboardSendString);
|
2018-10-10 18:31:26 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
wl_data_source_add_listener(_glfw.wl.dataSource,
|
|
|
|
|
&dataSourceListener,
|
|
|
|
|
NULL);
|
|
|
|
|
wl_data_source_offer(_glfw.wl.dataSource, "text/plain;charset=utf-8");
|
|
|
|
|
wl_data_device_set_selection(_glfw.wl.dataDevice,
|
|
|
|
|
_glfw.wl.dataSource,
|
|
|
|
|
_glfw.wl.serial);
|
2014-09-09 14:26:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-10 17:21:26 +00:00
|
|
|
|
static GLFWbool growClipboardString(void)
|
|
|
|
|
{
|
|
|
|
|
char* clipboard = _glfw.wl.clipboardString;
|
|
|
|
|
|
2021-08-03 18:53:48 +00:00
|
|
|
|
clipboard = _glfw_realloc(clipboard, _glfw.wl.clipboardSize * 2);
|
2018-10-10 17:21:26 +00:00
|
|
|
|
if (!clipboard)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Impossible to grow clipboard string");
|
|
|
|
|
return GLFW_FALSE;
|
|
|
|
|
}
|
|
|
|
|
_glfw.wl.clipboardString = clipboard;
|
|
|
|
|
_glfw.wl.clipboardSize = _glfw.wl.clipboardSize * 2;
|
|
|
|
|
return GLFW_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
const char* _glfwGetClipboardStringWayland(void)
|
2014-09-09 14:26:57 +00:00
|
|
|
|
{
|
2018-10-10 17:21:26 +00:00
|
|
|
|
int fds[2];
|
|
|
|
|
int ret;
|
|
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
|
|
if (!_glfw.wl.dataOffer)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_FORMAT_UNAVAILABLE,
|
|
|
|
|
"No clipboard data has been sent yet");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = pipe2(fds, O_CLOEXEC);
|
|
|
|
|
if (ret < 0)
|
|
|
|
|
{
|
|
|
|
|
// TODO: also report errno maybe?
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Impossible to create clipboard pipe fds");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wl_data_offer_receive(_glfw.wl.dataOffer, "text/plain;charset=utf-8", fds[1]);
|
|
|
|
|
close(fds[1]);
|
|
|
|
|
|
|
|
|
|
// XXX: this is a huge hack, this function shouldn’t be synchronous!
|
|
|
|
|
handleEvents(-1);
|
|
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
|
{
|
|
|
|
|
// Grow the clipboard if we need to paste something bigger, there is no
|
|
|
|
|
// shrink operation yet.
|
|
|
|
|
if (len + 4096 > _glfw.wl.clipboardSize)
|
|
|
|
|
{
|
|
|
|
|
if (!growClipboardString())
|
|
|
|
|
{
|
|
|
|
|
close(fds[0]);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Then read from the fd to the clipboard, handling all known errors.
|
|
|
|
|
ret = read(fds[0], _glfw.wl.clipboardString + len, 4096);
|
|
|
|
|
if (ret == 0)
|
|
|
|
|
break;
|
|
|
|
|
if (ret == -1 && errno == EINTR)
|
|
|
|
|
continue;
|
|
|
|
|
if (ret == -1)
|
|
|
|
|
{
|
|
|
|
|
// TODO: also report errno maybe.
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Impossible to read from clipboard fd");
|
|
|
|
|
close(fds[0]);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
len += ret;
|
|
|
|
|
}
|
|
|
|
|
close(fds[0]);
|
|
|
|
|
if (len + 1 > _glfw.wl.clipboardSize)
|
|
|
|
|
{
|
|
|
|
|
if (!growClipboardString())
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
_glfw.wl.clipboardString[len] = '\0';
|
|
|
|
|
return _glfw.wl.clipboardString;
|
2014-09-09 14:26:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
EGLenum _glfwGetEGLPlatformWayland(EGLint** attribs)
|
2020-06-03 20:02:25 +00:00
|
|
|
|
{
|
|
|
|
|
if (_glfw.egl.EXT_platform_base && _glfw.egl.EXT_platform_wayland)
|
|
|
|
|
return EGL_PLATFORM_WAYLAND_EXT;
|
|
|
|
|
else
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
EGLNativeDisplayType _glfwGetEGLNativeDisplayWayland(void)
|
2020-06-03 18:49:36 +00:00
|
|
|
|
{
|
|
|
|
|
return _glfw.wl.display;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
EGLNativeWindowType _glfwGetEGLNativeWindowWayland(_GLFWwindow* window)
|
2020-06-03 18:49:36 +00:00
|
|
|
|
{
|
|
|
|
|
return window->wl.native;
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
void _glfwGetRequiredInstanceExtensionsWayland(char** extensions)
|
2015-08-10 18:19:04 +00:00
|
|
|
|
{
|
2016-08-22 18:25:52 +00:00
|
|
|
|
if (!_glfw.vk.KHR_surface || !_glfw.vk.KHR_wayland_surface)
|
|
|
|
|
return;
|
2015-08-10 18:19:04 +00:00
|
|
|
|
|
2016-08-22 18:25:52 +00:00
|
|
|
|
extensions[0] = "VK_KHR_surface";
|
|
|
|
|
extensions[1] = "VK_KHR_wayland_surface";
|
2015-08-10 18:19:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
int _glfwGetPhysicalDevicePresentationSupportWayland(VkInstance instance,
|
|
|
|
|
VkPhysicalDevice device,
|
|
|
|
|
uint32_t queuefamily)
|
2015-08-10 18:19:04 +00:00
|
|
|
|
{
|
2017-09-17 12:39:17 +00:00
|
|
|
|
PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR
|
|
|
|
|
vkGetPhysicalDeviceWaylandPresentationSupportKHR =
|
2015-08-10 18:19:04 +00:00
|
|
|
|
(PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR)
|
|
|
|
|
vkGetInstanceProcAddr(instance, "vkGetPhysicalDeviceWaylandPresentationSupportKHR");
|
|
|
|
|
if (!vkGetPhysicalDeviceWaylandPresentationSupportKHR)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
|
"Wayland: Vulkan instance missing VK_KHR_wayland_surface extension");
|
|
|
|
|
return VK_NULL_HANDLE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return vkGetPhysicalDeviceWaylandPresentationSupportKHR(device,
|
|
|
|
|
queuefamily,
|
|
|
|
|
_glfw.wl.display);
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
|
VkResult _glfwCreateWindowSurfaceWayland(VkInstance instance,
|
|
|
|
|
_GLFWwindow* window,
|
|
|
|
|
const VkAllocationCallbacks* allocator,
|
|
|
|
|
VkSurfaceKHR* surface)
|
2015-08-10 18:19:04 +00:00
|
|
|
|
{
|
|
|
|
|
VkResult err;
|
|
|
|
|
VkWaylandSurfaceCreateInfoKHR sci;
|
|
|
|
|
PFN_vkCreateWaylandSurfaceKHR vkCreateWaylandSurfaceKHR;
|
|
|
|
|
|
|
|
|
|
vkCreateWaylandSurfaceKHR = (PFN_vkCreateWaylandSurfaceKHR)
|
|
|
|
|
vkGetInstanceProcAddr(instance, "vkCreateWaylandSurfaceKHR");
|
|
|
|
|
if (!vkCreateWaylandSurfaceKHR)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
|
"Wayland: Vulkan instance missing VK_KHR_wayland_surface extension");
|
|
|
|
|
return VK_ERROR_EXTENSION_NOT_PRESENT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
memset(&sci, 0, sizeof(sci));
|
|
|
|
|
sci.sType = VK_STRUCTURE_TYPE_WAYLAND_SURFACE_CREATE_INFO_KHR;
|
|
|
|
|
sci.display = _glfw.wl.display;
|
|
|
|
|
sci.surface = window->wl.surface;
|
|
|
|
|
|
|
|
|
|
err = vkCreateWaylandSurfaceKHR(instance, &sci, allocator, surface);
|
|
|
|
|
if (err)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Failed to create Vulkan surface: %s",
|
|
|
|
|
_glfwGetVulkanResultString(err));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-16 20:02:31 +00:00
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
////// GLFW native API //////
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
GLFWAPI struct wl_display* glfwGetWaylandDisplay(void)
|
|
|
|
|
{
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2021-07-13 19:50:09 +00:00
|
|
|
|
|
|
|
|
|
if (_glfw.platform.platformID != GLFW_PLATFORM_WAYLAND)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_UNAVAILABLE,
|
|
|
|
|
"Wayland: Platform not initialized");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-16 20:02:31 +00:00
|
|
|
|
return _glfw.wl.display;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GLFWAPI struct wl_surface* glfwGetWaylandWindow(GLFWwindow* handle)
|
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
2021-07-13 19:50:09 +00:00
|
|
|
|
|
|
|
|
|
if (_glfw.platform.platformID != GLFW_PLATFORM_WAYLAND)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_UNAVAILABLE,
|
|
|
|
|
"Wayland: Platform not initialized");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-16 20:02:31 +00:00
|
|
|
|
return window->wl.surface;
|
|
|
|
|
}
|
|
|
|
|
|