2017-11-19 20:54:36 +03:00
|
|
|
|
//========================================================================
|
2019-07-18 20:08:14 +03:00
|
|
|
|
// GLFW 3.4 Wayland - www.glfw.org
|
2017-11-19 20:54:36 +03: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-07-18 20:52:52 +03:00
|
|
|
|
// It is fine to use C99 in this file because it will not be built with VS
|
|
|
|
|
//========================================================================
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
|
|
|
|
|
|
#include "internal.h"
|
2018-06-08 11:57:30 +03:00
|
|
|
|
#include "backend_utils.h"
|
2018-10-03 07:17:04 +03:00
|
|
|
|
#include "memfd.h"
|
2019-02-02 11:18:26 +03:00
|
|
|
|
#include "linux_notify.h"
|
2019-08-02 19:49:02 +03:00
|
|
|
|
#include "../kitty/monotonic.h"
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <sys/mman.h>
|
|
|
|
|
|
|
|
|
|
|
2020-03-19 10:30:52 +03:00
|
|
|
|
|
2018-09-05 16:53:42 +03:00
|
|
|
|
|
|
|
|
|
|
2019-06-08 05:42:42 +03:00
|
|
|
|
static bool checkScaleChange(_GLFWwindow* window)
|
2019-03-19 12:32:11 +03:00
|
|
|
|
{
|
|
|
|
|
int scale = 1;
|
|
|
|
|
int i;
|
|
|
|
|
int monitorScale;
|
|
|
|
|
|
|
|
|
|
// Check if we will be able to set the buffer scale or not.
|
|
|
|
|
if (_glfw.wl.compositorVersion < 3)
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2019-03-19 12:32:11 +03:00
|
|
|
|
|
2019-11-16 07:30:41 +03:00
|
|
|
|
// Get the scale factor from the highest scale monitor that this window is on
|
2019-03-19 12:32:11 +03:00
|
|
|
|
for (i = 0; i < window->wl.monitorsCount; ++i)
|
|
|
|
|
{
|
|
|
|
|
monitorScale = window->wl.monitors[i]->wl.scale;
|
|
|
|
|
if (scale < monitorScale)
|
|
|
|
|
scale = monitorScale;
|
|
|
|
|
}
|
2019-11-16 07:30:41 +03:00
|
|
|
|
if (window->wl.monitorsCount < 1 && _glfw.monitorCount > 0) {
|
|
|
|
|
// The window has not yet been assigned to any monitors, use the primary monitor
|
|
|
|
|
_GLFWmonitor *m = _glfw.monitors[0];
|
|
|
|
|
if (m && m->wl.scale > scale) scale = m->wl.scale;
|
|
|
|
|
}
|
2019-03-19 12:32:11 +03:00
|
|
|
|
|
|
|
|
|
// 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);
|
2020-05-27 06:51:34 +03:00
|
|
|
|
window->wl.cursorTheme = _wlCursorThemeManage(_glfw.wl.cursorThemeManager,
|
|
|
|
|
window->wl.cursorTheme,
|
|
|
|
|
_wlCursorPxFromScale(scale));
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return true;
|
2019-03-19 12:32:11 +03:00
|
|
|
|
}
|
2019-11-16 08:17:05 +03:00
|
|
|
|
if (window->wl.monitorsCount > 0 && !window->wl.initial_scale_notified) {
|
|
|
|
|
window->wl.initial_scale_notified = true;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2019-03-19 12:32:11 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Makes the surface considered as XRGB instead of ARGB.
|
|
|
|
|
static void setOpaqueRegion(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
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 resizeFramebuffer(_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);
|
|
|
|
|
|
|
|
|
|
if (!window->wl.decorations.top.surface)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Top decoration.
|
|
|
|
|
wp_viewport_set_destination(window->wl.decorations.top.viewport,
|
|
|
|
|
window->wl.width, _GLFW_DECORATION_TOP);
|
|
|
|
|
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,
|
|
|
|
|
window->wl.width + _GLFW_DECORATION_HORIZONTAL, _GLFW_DECORATION_WIDTH);
|
|
|
|
|
wl_surface_commit(window->wl.decorations.bottom.surface);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-09-05 19:15:32 +03:00
|
|
|
|
static const char*
|
2019-05-13 08:29:01 +03:00
|
|
|
|
clipboard_mime(void) {
|
2018-09-05 19:15:32 +03:00
|
|
|
|
static char buf[128] = {0};
|
|
|
|
|
if (buf[0] == 0) {
|
|
|
|
|
snprintf(buf, sizeof(buf), "application/glfw+clipboard-%d", getpid());
|
|
|
|
|
}
|
|
|
|
|
return buf;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-19 12:32:11 +03:00
|
|
|
|
static void dispatchChangesAfterConfigure(_GLFWwindow *window, int32_t width, int32_t height) {
|
|
|
|
|
if (width <= 0) width = window->wl.width;
|
|
|
|
|
if (height <= 0) height = window->wl.height;
|
2019-06-08 05:42:42 +03:00
|
|
|
|
bool size_changed = width != window->wl.width || height != window->wl.height;
|
|
|
|
|
bool scale_changed = checkScaleChange(window);
|
2019-03-19 12:32:11 +03:00
|
|
|
|
|
|
|
|
|
if (size_changed) {
|
|
|
|
|
_glfwInputWindowSize(window, width, height);
|
|
|
|
|
_glfwPlatformSetWindowSize(window, width, height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (scale_changed) {
|
|
|
|
|
if (!size_changed)
|
|
|
|
|
resizeFramebuffer(window);
|
|
|
|
|
_glfwInputWindowContentScale(window, window->wl.scale, window->wl.scale);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_glfwInputWindowDamage(window);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-03-03 08:51:09 +03:00
|
|
|
|
/*
|
|
|
|
|
* 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-23 02:01:12 +03:00
|
|
|
|
* for the file at the given size. If disk space is insufficient, errno
|
2018-03-03 08:51:09 +03:00
|
|
|
|
* is set to ENOSPC. If posix_fallocate() is not supported, program may
|
|
|
|
|
* receive SIGBUS on accessing mmap()'ed file contents instead.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
createAnonymousFile(off_t size)
|
|
|
|
|
{
|
2019-02-17 08:00:02 +03:00
|
|
|
|
int ret, fd = -1, shm_anon = 0;
|
2018-10-03 08:26:47 +03:00
|
|
|
|
#ifdef HAS_MEMFD_CREATE
|
2019-02-17 08:00:02 +03:00
|
|
|
|
fd = memfd_create("glfw-shared", MFD_CLOEXEC | MFD_ALLOW_SEALING);
|
2018-10-03 07:17:04 +03:00
|
|
|
|
if (fd < 0) return -1;
|
|
|
|
|
// 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);
|
2019-02-17 08:00:02 +03:00
|
|
|
|
#elif defined(SHM_ANON)
|
|
|
|
|
fd = shm_open(SHM_ANON, O_RDWR | O_CLOEXEC, 0600);
|
|
|
|
|
if (fd < 0) return -1;
|
|
|
|
|
shm_anon = 1;
|
2018-10-03 07:17:04 +03:00
|
|
|
|
#else
|
2018-03-03 08:51:09 +03:00
|
|
|
|
static const char template[] = "/glfw-shared-XXXXXX";
|
|
|
|
|
const char* path;
|
|
|
|
|
char* name;
|
|
|
|
|
|
|
|
|
|
path = getenv("XDG_RUNTIME_DIR");
|
|
|
|
|
if (!path)
|
|
|
|
|
{
|
|
|
|
|
errno = ENOENT;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
name = calloc(strlen(path) + sizeof(template), 1);
|
|
|
|
|
strcpy(name, path);
|
|
|
|
|
strcat(name, template);
|
|
|
|
|
|
|
|
|
|
fd = createTmpfileCloexec(name);
|
|
|
|
|
|
|
|
|
|
free(name);
|
|
|
|
|
|
|
|
|
|
if (fd < 0)
|
|
|
|
|
return -1;
|
2018-10-03 07:17:04 +03:00
|
|
|
|
#endif
|
2019-02-17 08:00:02 +03:00
|
|
|
|
// posix_fallocate does not work on SHM descriptors
|
|
|
|
|
ret = shm_anon ? ftruncate(fd, size) : posix_fallocate(fd, 0, size);
|
2018-03-03 08:51:09 +03: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;
|
|
|
|
|
int fd, i;
|
|
|
|
|
|
|
|
|
|
fd = createAnonymousFile(length);
|
|
|
|
|
if (fd < 0)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2019-11-05 01:59:18 +03:00
|
|
|
|
"Wayland: Creating a buffer file for %d B failed: %s",
|
|
|
|
|
length, strerror(errno));
|
2018-10-02 09:00:13 +03:00
|
|
|
|
return NULL;
|
2018-03-03 08:51:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
data = mmap(NULL, length, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
|
|
|
|
if (data == MAP_FAILED)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2019-11-05 01:59:18 +03:00
|
|
|
|
"Wayland: mmap failed: %s", strerror(errno));
|
2018-03-03 08:51:09 +03:00
|
|
|
|
close(fd);
|
2018-10-02 09:00:13 +03:00
|
|
|
|
return NULL;
|
2018-03-03 08:51:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pool = wl_shm_create_pool(_glfw.wl.shm, fd, length);
|
|
|
|
|
|
|
|
|
|
close(fd);
|
|
|
|
|
unsigned char* source = (unsigned char*) image->pixels;
|
|
|
|
|
unsigned char* target = data;
|
|
|
|
|
for (i = 0; i < image->width * image->height; i++, source += 4)
|
|
|
|
|
{
|
|
|
|
|
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,
|
2019-06-08 05:42:42 +03:00
|
|
|
|
struct wl_buffer* buffer, bool opaque,
|
2018-03-03 08:51:09 +03:00
|
|
|
|
int x, int y,
|
|
|
|
|
int width, int height)
|
|
|
|
|
{
|
|
|
|
|
struct wl_region* region;
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void createDecorations(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
unsigned char data[] = { 224, 224, 224, 255 };
|
|
|
|
|
const GLFWimage image = { 1, 1, data };
|
2019-06-08 05:42:42 +03:00
|
|
|
|
bool opaque = (data[3] == 255);
|
2018-03-03 08:51:09 +03:00
|
|
|
|
|
2018-10-03 09:57:51 +03:00
|
|
|
|
if (!_glfw.wl.viewporter || !window->decorated || window->wl.decorations.serverSide)
|
2018-03-03 08:51:09 +03:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!window->wl.decorations.buffer)
|
|
|
|
|
window->wl.decorations.buffer = createShmBuffer(&image);
|
2018-10-02 09:00:13 +03:00
|
|
|
|
if (!window->wl.decorations.buffer)
|
|
|
|
|
return;
|
2018-03-03 08:51:09 +03:00
|
|
|
|
|
|
|
|
|
createDecoration(&window->wl.decorations.top, window->wl.surface,
|
|
|
|
|
window->wl.decorations.buffer, opaque,
|
|
|
|
|
0, -_GLFW_DECORATION_TOP,
|
|
|
|
|
window->wl.width, _GLFW_DECORATION_TOP);
|
|
|
|
|
createDecoration(&window->wl.decorations.left, window->wl.surface,
|
|
|
|
|
window->wl.decorations.buffer, opaque,
|
|
|
|
|
-_GLFW_DECORATION_WIDTH, -_GLFW_DECORATION_TOP,
|
|
|
|
|
_GLFW_DECORATION_WIDTH, window->wl.height + _GLFW_DECORATION_TOP);
|
|
|
|
|
createDecoration(&window->wl.decorations.right, window->wl.surface,
|
|
|
|
|
window->wl.decorations.buffer, opaque,
|
|
|
|
|
window->wl.width, -_GLFW_DECORATION_TOP,
|
|
|
|
|
_GLFW_DECORATION_WIDTH, window->wl.height + _GLFW_DECORATION_TOP);
|
|
|
|
|
createDecoration(&window->wl.decorations.bottom, window->wl.surface,
|
|
|
|
|
window->wl.decorations.buffer, opaque,
|
|
|
|
|
-_GLFW_DECORATION_WIDTH, window->wl.height,
|
|
|
|
|
window->wl.width + _GLFW_DECORATION_HORIZONTAL, _GLFW_DECORATION_WIDTH);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void destroyDecoration(_GLFWdecorationWayland* decoration)
|
|
|
|
|
{
|
|
|
|
|
if (decoration->surface)
|
|
|
|
|
wl_surface_destroy(decoration->surface);
|
|
|
|
|
if (decoration->subsurface)
|
|
|
|
|
wl_subsurface_destroy(decoration->subsurface);
|
|
|
|
|
if (decoration->viewport)
|
|
|
|
|
wp_viewport_destroy(decoration->viewport);
|
|
|
|
|
decoration->surface = NULL;
|
|
|
|
|
decoration->subsurface = NULL;
|
|
|
|
|
decoration->viewport = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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-03 09:57:51 +03:00
|
|
|
|
static void xdgDecorationHandleConfigure(void* data,
|
2019-07-01 08:12:07 +03:00
|
|
|
|
struct zxdg_toplevel_decoration_v1* decoration UNUSED,
|
2018-10-03 09:57:51 +03:00
|
|
|
|
uint32_t mode)
|
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
2019-06-12 15:55:32 +03:00
|
|
|
|
window->wl.decorations.serverSide = (mode == ZXDG_TOPLEVEL_DECORATION_V1_MODE_SERVER_SIDE);
|
|
|
|
|
if (!window->wl.decorations.serverSide)
|
2018-10-03 09:57:51 +03:00
|
|
|
|
createDecorations(window);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct zxdg_toplevel_decoration_v1_listener xdgDecorationListener = {
|
|
|
|
|
xdgDecorationHandleConfigure,
|
|
|
|
|
};
|
|
|
|
|
|
2020-05-25 16:18:05 +03:00
|
|
|
|
static void surfaceHandleEnter(void *data,
|
|
|
|
|
struct wl_surface *surface UNUSED,
|
|
|
|
|
struct wl_output *output)
|
2017-11-19 20:54:36 +03: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 =
|
|
|
|
|
realloc(window->wl.monitors,
|
|
|
|
|
window->wl.monitorsSize * sizeof(_GLFWmonitor*));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window->wl.monitors[window->wl.monitorsCount++] = monitor;
|
|
|
|
|
|
2019-03-19 12:32:11 +03:00
|
|
|
|
if (checkScaleChange(window)) {
|
|
|
|
|
resizeFramebuffer(window);
|
|
|
|
|
_glfwInputWindowContentScale(window, window->wl.scale, window->wl.scale);
|
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-25 16:18:05 +03:00
|
|
|
|
static void surfaceHandleLeave(void *data,
|
|
|
|
|
struct wl_surface *surface UNUSED,
|
|
|
|
|
struct wl_output *output)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
|
|
|
|
_GLFWmonitor* monitor = wl_output_get_user_data(output);
|
2019-06-08 05:42:42 +03:00
|
|
|
|
bool found;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
int i;
|
|
|
|
|
|
2019-06-08 05:44:30 +03:00
|
|
|
|
for (i = 0, found = false; i < window->wl.monitorsCount - 1; ++i)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
if (monitor == window->wl.monitors[i])
|
2019-06-08 05:44:30 +03:00
|
|
|
|
found = true;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
if (found)
|
|
|
|
|
window->wl.monitors[i] = window->wl.monitors[i + 1];
|
|
|
|
|
}
|
|
|
|
|
window->wl.monitors[--window->wl.monitorsCount] = NULL;
|
|
|
|
|
|
2019-03-19 12:32:11 +03:00
|
|
|
|
if (checkScaleChange(window)) {
|
|
|
|
|
resizeFramebuffer(window);
|
|
|
|
|
_glfwInputWindowContentScale(window, window->wl.scale, window->wl.scale);
|
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct wl_surface_listener surfaceListener = {
|
2020-05-25 16:18:05 +03:00
|
|
|
|
surfaceHandleEnter,
|
|
|
|
|
surfaceHandleLeave
|
2017-11-19 20:54:36 +03:00
|
|
|
|
};
|
|
|
|
|
|
2019-06-08 05:42:42 +03:00
|
|
|
|
static void setIdleInhibitor(_GLFWwindow* window, bool enable)
|
2017-11-26 09:20:55 +03:00
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-08 05:42:42 +03:00
|
|
|
|
static bool createSurface(_GLFWwindow* window,
|
2017-11-19 20:54:36 +03:00
|
|
|
|
const _GLFWwndconfig* wndconfig)
|
|
|
|
|
{
|
|
|
|
|
window->wl.surface = wl_compositor_create_surface(_glfw.wl.compositor);
|
|
|
|
|
if (!window->wl.surface)
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
wl_surface_add_listener(window->wl.surface,
|
|
|
|
|
&surfaceListener,
|
|
|
|
|
window);
|
|
|
|
|
|
|
|
|
|
wl_surface_set_user_data(window->wl.surface, window);
|
|
|
|
|
|
|
|
|
|
window->wl.native = wl_egl_window_create(window->wl.surface,
|
|
|
|
|
wndconfig->width,
|
|
|
|
|
wndconfig->height);
|
|
|
|
|
if (!window->wl.native)
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
window->wl.width = wndconfig->width;
|
|
|
|
|
window->wl.height = wndconfig->height;
|
|
|
|
|
window->wl.scale = 1;
|
|
|
|
|
|
|
|
|
|
if (!window->wl.transparent)
|
|
|
|
|
setOpaqueRegion(window);
|
|
|
|
|
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return true;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-12 13:23:06 +03:00
|
|
|
|
static void
|
|
|
|
|
setFullscreen(_GLFWwindow* window, _GLFWmonitor* monitor, bool on)
|
2018-03-03 08:51:09 +03:00
|
|
|
|
{
|
|
|
|
|
if (window->wl.xdg.toplevel)
|
|
|
|
|
{
|
2019-05-12 13:23:06 +03:00
|
|
|
|
if (on) {
|
|
|
|
|
xdg_toplevel_set_fullscreen(
|
|
|
|
|
window->wl.xdg.toplevel,
|
|
|
|
|
monitor ? monitor->wl.output : NULL);
|
|
|
|
|
if (!window->wl.decorations.serverSide)
|
|
|
|
|
destroyDecorations(window);
|
|
|
|
|
} else {
|
|
|
|
|
xdg_toplevel_unset_fullscreen(window->wl.xdg.toplevel);
|
|
|
|
|
if (!_glfw.wl.decorationManager)
|
|
|
|
|
createDecorations(window);
|
|
|
|
|
}
|
2018-03-03 08:51:09 +03:00
|
|
|
|
}
|
2019-05-12 13:23:06 +03:00
|
|
|
|
setIdleInhibitor(window, on);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2019-07-01 08:12:07 +03:00
|
|
|
|
_glfwPlatformToggleFullscreen(_GLFWwindow *window, unsigned int flags UNUSED) {
|
2019-05-12 13:23:06 +03:00
|
|
|
|
bool already_fullscreen = window->wl.fullscreened;
|
|
|
|
|
setFullscreen(window, NULL, !already_fullscreen);
|
|
|
|
|
return !already_fullscreen;
|
2018-03-03 08:51:09 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-29 10:00:05 +03:00
|
|
|
|
static void xdgToplevelHandleConfigure(void* data,
|
2019-07-01 08:12:07 +03:00
|
|
|
|
struct xdg_toplevel* toplevel UNUSED,
|
2018-01-29 10:00:05 +03:00
|
|
|
|
int32_t width,
|
|
|
|
|
int32_t height,
|
|
|
|
|
struct wl_array* states)
|
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
|
|
|
|
float aspectRatio;
|
|
|
|
|
float targetRatio;
|
|
|
|
|
uint32_t* state;
|
2019-06-08 05:44:30 +03:00
|
|
|
|
bool maximized = false;
|
|
|
|
|
bool fullscreen = false;
|
|
|
|
|
bool activated = false;
|
2018-01-29 10:00:05 +03:00
|
|
|
|
|
|
|
|
|
wl_array_for_each(state, states)
|
|
|
|
|
{
|
|
|
|
|
switch (*state)
|
|
|
|
|
{
|
|
|
|
|
case XDG_TOPLEVEL_STATE_MAXIMIZED:
|
2019-06-08 05:44:30 +03:00
|
|
|
|
maximized = true;
|
2018-01-29 10:00:05 +03:00
|
|
|
|
break;
|
|
|
|
|
case XDG_TOPLEVEL_STATE_FULLSCREEN:
|
2019-06-08 05:44:30 +03:00
|
|
|
|
fullscreen = true;
|
2018-01-29 10:00:05 +03:00
|
|
|
|
break;
|
|
|
|
|
case XDG_TOPLEVEL_STATE_RESIZING:
|
|
|
|
|
break;
|
|
|
|
|
case XDG_TOPLEVEL_STATE_ACTIVATED:
|
2019-06-08 05:44:30 +03:00
|
|
|
|
activated = true;
|
2018-01-29 10:00:05 +03:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (width != 0 && height != 0)
|
|
|
|
|
{
|
|
|
|
|
if (!maximized && !fullscreen)
|
|
|
|
|
{
|
|
|
|
|
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)
|
2019-09-27 17:17:25 +03:00
|
|
|
|
height = (int32_t)((float)width / targetRatio);
|
2018-01-29 10:00:05 +03:00
|
|
|
|
else if (aspectRatio > targetRatio)
|
2019-09-27 17:17:25 +03:00
|
|
|
|
width = (int32_t)((float)height * targetRatio);
|
2018-01-29 10:00:05 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-05-12 13:23:06 +03:00
|
|
|
|
window->wl.fullscreened = fullscreen;
|
2019-06-04 17:10:00 +03:00
|
|
|
|
if (!fullscreen) {
|
2019-05-29 14:37:42 +03:00
|
|
|
|
if (window->decorated && !window->wl.decorations.serverSide && window->wl.decorations.buffer) {
|
|
|
|
|
width -= _GLFW_DECORATION_HORIZONTAL;
|
|
|
|
|
height -= _GLFW_DECORATION_VERTICAL;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-03-19 12:32:11 +03:00
|
|
|
|
dispatchChangesAfterConfigure(window, width, height);
|
2018-01-29 10:00:05 +03:00
|
|
|
|
_glfwInputWindowFocus(window, activated);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void xdgToplevelHandleClose(void* data,
|
2019-07-01 08:12:07 +03:00
|
|
|
|
struct xdg_toplevel* toplevel UNUSED)
|
2018-01-29 10:00:05 +03:00
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
|
|
|
|
_glfwInputWindowCloseRequest(window);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct xdg_toplevel_listener xdgToplevelListener = {
|
|
|
|
|
xdgToplevelHandleConfigure,
|
|
|
|
|
xdgToplevelHandleClose
|
|
|
|
|
};
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void xdgSurfaceHandleConfigure(void* data UNUSED,
|
2018-01-29 10:00:05 +03:00
|
|
|
|
struct xdg_surface* surface,
|
|
|
|
|
uint32_t serial)
|
|
|
|
|
{
|
|
|
|
|
xdg_surface_ack_configure(surface, serial);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct xdg_surface_listener xdgSurfaceListener = {
|
|
|
|
|
xdgSurfaceHandleConfigure
|
|
|
|
|
};
|
|
|
|
|
|
2018-10-03 09:57:51 +03: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
|
|
|
|
|
{
|
2019-06-08 05:44:30 +03:00
|
|
|
|
window->wl.decorations.serverSide = false;
|
2018-10-03 09:57:51 +03:00
|
|
|
|
createDecorations(window);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-08 05:42:42 +03:00
|
|
|
|
static bool createXdgSurface(_GLFWwindow* window)
|
2018-01-29 10:00:05 +03:00
|
|
|
|
{
|
|
|
|
|
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");
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2018-01-29 10:00:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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");
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2018-01-29 10:00:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
|
if (window->monitor)
|
|
|
|
|
{
|
|
|
|
|
xdg_toplevel_set_fullscreen(window->wl.xdg.toplevel,
|
|
|
|
|
window->monitor->wl.output);
|
2019-06-08 05:44:30 +03:00
|
|
|
|
setIdleInhibitor(window, true);
|
2018-01-29 10:00:05 +03:00
|
|
|
|
}
|
|
|
|
|
else if (window->wl.maximized)
|
|
|
|
|
{
|
|
|
|
|
xdg_toplevel_set_maximized(window->wl.xdg.toplevel);
|
2019-06-08 05:44:30 +03:00
|
|
|
|
setIdleInhibitor(window, false);
|
2018-10-03 09:57:51 +03:00
|
|
|
|
setXdgDecorations(window);
|
2018-01-29 10:00:05 +03:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-06-08 05:44:30 +03:00
|
|
|
|
setIdleInhibitor(window, false);
|
2018-10-03 09:57:51 +03:00
|
|
|
|
setXdgDecorations(window);
|
2018-01-29 10:00:05 +03:00
|
|
|
|
}
|
2018-09-06 04:24:04 +03:00
|
|
|
|
if (strlen(window->wl.appId))
|
|
|
|
|
xdg_toplevel_set_app_id(window->wl.xdg.toplevel, window->wl.appId);
|
2018-01-29 10:00:05 +03:00
|
|
|
|
|
|
|
|
|
wl_surface_commit(window->wl.surface);
|
|
|
|
|
wl_display_roundtrip(_glfw.wl.display);
|
|
|
|
|
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return true;
|
2018-01-29 10:00:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-10 09:24:22 +03:00
|
|
|
|
static void
|
2020-06-02 05:29:32 +03:00
|
|
|
|
setCursorImage(_GLFWwindow* window, _GLFWcursorWayland* cursorWayland)
|
2018-09-10 09:24:22 +03:00
|
|
|
|
{
|
2020-06-02 05:29:32 +03:00
|
|
|
|
_GLFWcursorWayland defaultCursor = {.shape = GLFW_ARROW_CURSOR};
|
|
|
|
|
bool isDefaultCursor = false;
|
|
|
|
|
if (!cursorWayland) {
|
|
|
|
|
cursorWayland = &defaultCursor;
|
|
|
|
|
isDefaultCursor = true;
|
|
|
|
|
}
|
2020-06-01 17:39:07 +03:00
|
|
|
|
struct wl_cursor_image* image = NULL;
|
|
|
|
|
struct wl_buffer* buffer = NULL;
|
2018-09-10 09:24:22 +03:00
|
|
|
|
struct wl_surface* surface = _glfw.wl.cursorSurface;
|
2020-05-27 06:51:34 +03:00
|
|
|
|
const int scale = window->wl.scale;
|
2018-09-10 09:24:22 +03:00
|
|
|
|
|
2020-05-27 06:51:34 +03:00
|
|
|
|
if (cursorWayland->scale < 0) {
|
2018-09-10 09:24:22 +03:00
|
|
|
|
buffer = cursorWayland->buffer;
|
|
|
|
|
toggleTimer(&_glfw.wl.eventLoopData, _glfw.wl.cursorAnimationTimer, 0);
|
|
|
|
|
} else
|
|
|
|
|
{
|
2020-06-02 05:23:15 +03:00
|
|
|
|
if (cursorWayland->scale != scale) {
|
2020-05-27 06:51:34 +03:00
|
|
|
|
struct wl_cursor *newCursor = _glfwLoadCursor(cursorWayland->shape, window->wl.cursorTheme);
|
2020-06-02 05:23:15 +03:00
|
|
|
|
if (newCursor != NULL) {
|
2020-05-27 06:51:34 +03:00
|
|
|
|
cursorWayland->cursor = newCursor;
|
2020-06-01 20:41:16 +03:00
|
|
|
|
cursorWayland->scale = scale;
|
2020-05-27 06:51:34 +03:00
|
|
|
|
} else {
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Wayland: late cursor load failed; proceeding with existing cursor");
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-06-01 17:56:28 +03:00
|
|
|
|
if (!cursorWayland->cursor)
|
|
|
|
|
return;
|
2018-09-10 09:24:22 +03:00
|
|
|
|
image = cursorWayland->cursor->images[cursorWayland->currentImage];
|
|
|
|
|
buffer = wl_cursor_image_get_buffer(image);
|
2020-06-02 05:29:32 +03:00
|
|
|
|
if (image->delay && !isDefaultCursor) {
|
2019-08-02 19:49:02 +03:00
|
|
|
|
changeTimerInterval(&_glfw.wl.eventLoopData, _glfw.wl.cursorAnimationTimer, ms_to_monotonic_t(image->delay));
|
2018-09-10 09:24:22 +03:00
|
|
|
|
toggleTimer(&_glfw.wl.eventLoopData, _glfw.wl.cursorAnimationTimer, 1);
|
|
|
|
|
} else {
|
|
|
|
|
toggleTimer(&_glfw.wl.eventLoopData, _glfw.wl.cursorAnimationTimer, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!buffer)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
cursorWayland->width = image->width;
|
|
|
|
|
cursorWayland->height = image->height;
|
|
|
|
|
cursorWayland->xhot = image->hotspot_x;
|
|
|
|
|
cursorWayland->yhot = image->hotspot_y;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
wl_pointer_set_cursor(_glfw.wl.pointer, _glfw.wl.pointerSerial,
|
|
|
|
|
surface,
|
2020-05-27 06:51:34 +03:00
|
|
|
|
cursorWayland->xhot / scale,
|
|
|
|
|
cursorWayland->yhot / scale);
|
|
|
|
|
wl_surface_set_buffer_scale(surface, scale);
|
2018-09-10 09:24:22 +03:00
|
|
|
|
wl_surface_attach(surface, buffer, 0, 0);
|
|
|
|
|
wl_surface_damage(surface, 0, 0,
|
|
|
|
|
cursorWayland->width, cursorWayland->height);
|
|
|
|
|
wl_surface_commit(surface);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
incrementCursorImage(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
if (window && window->wl.decorations.focus == mainWindow) {
|
|
|
|
|
_GLFWcursor* cursor = window->wl.currentCursor;
|
|
|
|
|
if (cursor && cursor->wl.cursor)
|
|
|
|
|
{
|
|
|
|
|
cursor->wl.currentImage += 1;
|
|
|
|
|
cursor->wl.currentImage %= cursor->wl.cursor->image_count;
|
2020-06-02 05:29:32 +03:00
|
|
|
|
setCursorImage(window, &cursor->wl);
|
2018-10-26 08:53:34 +03:00
|
|
|
|
toggleTimer(&_glfw.wl.eventLoopData, _glfw.wl.cursorAnimationTimer, cursor->wl.cursor->image_count > 1);
|
2018-09-10 09:24:22 +03:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
toggleTimer(&_glfw.wl.eventLoopData, _glfw.wl.cursorAnimationTimer, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2019-07-01 08:12:07 +03:00
|
|
|
|
animateCursorImage(id_type timer_id UNUSED, void *data UNUSED) {
|
2018-09-10 09:24:22 +03:00
|
|
|
|
incrementCursorImage(_glfw.wl.pointerFocus);
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-22 06:23:10 +03:00
|
|
|
|
static void
|
|
|
|
|
abortOnFatalError(int last_error) {
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Wayland: fatal display error: %s", strerror(last_error));
|
|
|
|
|
_GLFWwindow* window = _glfw.windowListHead;
|
|
|
|
|
while (window)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputWindowCloseRequest(window);
|
|
|
|
|
window = window->next;
|
|
|
|
|
}
|
2019-07-20 11:25:38 +03:00
|
|
|
|
// ensure the tick callback is called
|
|
|
|
|
_glfw.wl.eventLoopData.wakeup_data_read = true;
|
2019-03-22 06:23:10 +03:00
|
|
|
|
}
|
2018-09-10 09:24:22 +03:00
|
|
|
|
|
2020-01-23 12:37:22 +03:00
|
|
|
|
static void
|
|
|
|
|
wayland_read_events(int poll_result, int events, void *data UNUSED) {
|
|
|
|
|
EVDBG("wayland_read_events poll_result: %d events: %d", poll_result, events);
|
|
|
|
|
if (poll_result > 0 && events) wl_display_read_events(_glfw.wl.display);
|
|
|
|
|
else wl_display_cancel_read(_glfw.wl.display);
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
|
static void
|
2019-08-02 19:49:02 +03:00
|
|
|
|
handleEvents(monotonic_t timeout)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
struct wl_display* display = _glfw.wl.display;
|
2019-03-22 06:23:10 +03:00
|
|
|
|
errno = 0;
|
2019-08-02 19:49:02 +03:00
|
|
|
|
EVDBG("starting handleEvents(%.2f)", monotonic_t_to_s_double(timeout));
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
2018-07-09 17:43:05 +03:00
|
|
|
|
while (wl_display_prepare_read(display) != 0) {
|
2020-01-14 21:47:17 +03:00
|
|
|
|
if (wl_display_dispatch_pending(display) == -1) {
|
2020-01-14 22:06:13 +03:00
|
|
|
|
abortOnFatalError(errno);
|
2020-01-14 21:47:17 +03:00
|
|
|
|
return;
|
2019-03-22 06:23:10 +03:00
|
|
|
|
}
|
2018-07-09 17:43:05 +03:00
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
// If an error different from EAGAIN happens, we have likely been
|
|
|
|
|
// disconnected from the Wayland session, try to handle that the best we
|
|
|
|
|
// can.
|
2019-03-22 06:23:10 +03:00
|
|
|
|
errno = 0;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
if (wl_display_flush(display) < 0 && errno != EAGAIN)
|
|
|
|
|
{
|
|
|
|
|
wl_display_cancel_read(display);
|
2020-01-14 21:42:15 +03:00
|
|
|
|
abortOnFatalError(errno);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-23 12:37:22 +03:00
|
|
|
|
// we pass in wayland_read_events to ensure that the above wl_display_prepare_read call
|
|
|
|
|
// is followed by either wl_display_cancel_read or wl_display_read_events
|
2020-01-23 12:38:54 +03:00
|
|
|
|
// before any events/timers are dispatched. This allows other wayland functions
|
|
|
|
|
// to be called in the event/timer handlers without causing a deadlock
|
2020-01-23 12:37:22 +03:00
|
|
|
|
bool display_read_ok = pollForEvents(&_glfw.wl.eventLoopData, timeout, wayland_read_events);
|
2019-07-20 12:18:28 +03:00
|
|
|
|
EVDBG("display_read_ok: %d", display_read_ok);
|
2018-07-09 17:43:05 +03:00
|
|
|
|
if (display_read_ok) {
|
2019-07-20 12:18:28 +03:00
|
|
|
|
int num = wl_display_dispatch_pending(display);
|
|
|
|
|
(void)num;
|
|
|
|
|
EVDBG("dispatched %d Wayland events", num);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
2018-07-09 19:04:06 +03:00
|
|
|
|
glfw_ibus_dispatch(&_glfw.wl.xkb.ibus);
|
2019-02-03 17:29:02 +03:00
|
|
|
|
glfw_dbus_session_bus_dispatch();
|
2019-07-20 12:18:28 +03:00
|
|
|
|
EVDBG("other dispatch done");
|
2019-07-18 11:55:11 +03:00
|
|
|
|
if (_glfw.wl.eventLoopData.wakeup_fd_ready) check_for_wakeup_events(&_glfw.wl.eventLoopData);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-21 10:36:13 +03:00
|
|
|
|
static struct wl_cursor*
|
2020-05-27 06:51:34 +03:00
|
|
|
|
try_cursor_names(struct wl_cursor_theme* theme, int arg_count, ...) {
|
2019-03-21 10:36:13 +03:00
|
|
|
|
struct wl_cursor* ans = NULL;
|
|
|
|
|
va_list ap;
|
|
|
|
|
va_start(ap, arg_count);
|
|
|
|
|
for (int i = 0; i < arg_count && !ans; i++) {
|
|
|
|
|
const char *name = va_arg(ap, const char *);
|
2020-05-27 06:51:34 +03:00
|
|
|
|
ans = wl_cursor_theme_get_cursor(theme, name);
|
2019-03-21 10:36:13 +03:00
|
|
|
|
}
|
|
|
|
|
va_end(ap);
|
|
|
|
|
return ans;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-27 06:51:34 +03:00
|
|
|
|
struct wl_cursor* _glfwLoadCursor(GLFWCursorShape shape, struct wl_cursor_theme* theme)
|
2019-03-21 10:36:13 +03:00
|
|
|
|
{
|
2019-06-08 05:42:42 +03:00
|
|
|
|
static bool warnings[GLFW_INVALID_CURSOR] = {0};
|
2019-03-21 10:36:13 +03:00
|
|
|
|
#define NUMARGS(...) (sizeof((const char*[]){__VA_ARGS__})/sizeof(const char*))
|
|
|
|
|
#define C(name, ...) case name: { \
|
2020-05-27 06:51:34 +03:00
|
|
|
|
ans = try_cursor_names(theme, NUMARGS(__VA_ARGS__), __VA_ARGS__); \
|
2019-03-21 10:36:13 +03:00
|
|
|
|
if (!ans && !warnings[name]) {\
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, "Wayland: Could not find standard cursor: %s", #name); \
|
2019-06-08 05:44:30 +03:00
|
|
|
|
warnings[name] = true; \
|
2019-03-21 10:36:13 +03:00
|
|
|
|
} \
|
|
|
|
|
break; }
|
|
|
|
|
|
|
|
|
|
struct wl_cursor* ans = NULL;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
switch (shape)
|
|
|
|
|
{
|
2020-06-01 17:53:32 +03:00
|
|
|
|
C(GLFW_ARROW_CURSOR, "left_ptr", "arrow", "default")
|
2019-03-21 10:36:13 +03:00
|
|
|
|
C(GLFW_IBEAM_CURSOR, "xterm", "ibeam", "text")
|
|
|
|
|
C(GLFW_CROSSHAIR_CURSOR, "crosshair", "cross")
|
|
|
|
|
C(GLFW_HAND_CURSOR, "hand2", "grab", "grabbing", "closedhand")
|
|
|
|
|
C(GLFW_HRESIZE_CURSOR, "sb_h_double_arrow", "h_double_arrow", "col-resize")
|
|
|
|
|
C(GLFW_VRESIZE_CURSOR, "sb_v_double_arrow", "v_double_arrow", "row-resize")
|
|
|
|
|
C(GLFW_NW_RESIZE_CURSOR, "top_left_corner", "nw-resize")
|
|
|
|
|
C(GLFW_NE_RESIZE_CURSOR, "top_right_corner", "ne-resize")
|
|
|
|
|
C(GLFW_SW_RESIZE_CURSOR, "bottom_left_corner", "sw-resize")
|
|
|
|
|
C(GLFW_SE_RESIZE_CURSOR, "bottom_right_corner", "se-resize")
|
|
|
|
|
case GLFW_INVALID_CURSOR:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return ans;
|
|
|
|
|
#undef NUMARGS
|
|
|
|
|
#undef C
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
////// GLFW platform API //////
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
int _glfwPlatformCreateWindow(_GLFWwindow* window,
|
|
|
|
|
const _GLFWwndconfig* wndconfig,
|
|
|
|
|
const _GLFWctxconfig* ctxconfig,
|
|
|
|
|
const _GLFWfbconfig* fbconfig)
|
|
|
|
|
{
|
|
|
|
|
window->wl.transparent = fbconfig->transparent;
|
2018-09-06 04:24:04 +03:00
|
|
|
|
strncpy(window->wl.appId, wndconfig->wl.appId, sizeof(window->wl.appId));
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
if (!createSurface(window, wndconfig))
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
if (ctxconfig->client != GLFW_NO_API)
|
|
|
|
|
{
|
|
|
|
|
if (ctxconfig->source == GLFW_EGL_CONTEXT_API ||
|
|
|
|
|
ctxconfig->source == GLFW_NATIVE_CONTEXT_API)
|
|
|
|
|
{
|
|
|
|
|
if (!_glfwInitEGL())
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
if (!_glfwCreateContextEGL(window, ctxconfig, fbconfig))
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
else if (ctxconfig->source == GLFW_OSMESA_CONTEXT_API)
|
|
|
|
|
{
|
|
|
|
|
if (!_glfwInitOSMesa())
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
if (!_glfwCreateContextOSMesa(window, ctxconfig, fbconfig))
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (wndconfig->title)
|
2018-01-29 10:00:05 +03:00
|
|
|
|
window->wl.title = _glfw_strdup(wndconfig->title);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
if (wndconfig->visible)
|
|
|
|
|
{
|
2019-05-11 15:20:02 +03:00
|
|
|
|
if (!createXdgSurface(window))
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
2019-06-08 05:44:30 +03:00
|
|
|
|
window->wl.visible = true;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2018-01-29 10:00:05 +03:00
|
|
|
|
window->wl.xdg.surface = NULL;
|
|
|
|
|
window->wl.xdg.toplevel = NULL;
|
2019-06-08 05:44:30 +03:00
|
|
|
|
window->wl.visible = false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window->wl.currentCursor = NULL;
|
2020-05-27 06:51:34 +03:00
|
|
|
|
// Don't set window->wl.cursorTheme to NULL here.
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
window->wl.monitors = calloc(1, sizeof(_GLFWmonitor*));
|
|
|
|
|
window->wl.monitorsCount = 0;
|
|
|
|
|
window->wl.monitorsSize = 1;
|
|
|
|
|
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return true;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformDestroyWindow(_GLFWwindow* window)
|
|
|
|
|
{
|
2020-06-01 17:53:32 +03:00
|
|
|
|
if (window->wl.cursorTheme) {
|
2020-05-27 06:51:34 +03:00
|
|
|
|
_wlCursorThemeManage(_glfw.wl.cursorThemeManager,
|
|
|
|
|
window->wl.cursorTheme,
|
|
|
|
|
0);
|
|
|
|
|
window->wl.cursorTheme = NULL;
|
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
if (window == _glfw.wl.pointerFocus)
|
|
|
|
|
{
|
|
|
|
|
_glfw.wl.pointerFocus = NULL;
|
2019-06-08 05:44:30 +03:00
|
|
|
|
_glfwInputCursorEnter(window, false);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
if (window == _glfw.wl.keyboardFocus)
|
|
|
|
|
{
|
|
|
|
|
_glfw.wl.keyboardFocus = NULL;
|
2019-06-08 05:44:30 +03:00
|
|
|
|
_glfwInputWindowFocus(window, false);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-26 09:20:55 +03:00
|
|
|
|
if (window->wl.idleInhibitor)
|
|
|
|
|
zwp_idle_inhibitor_v1_destroy(window->wl.idleInhibitor);
|
|
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
|
if (window->context.destroy)
|
|
|
|
|
window->context.destroy(window);
|
|
|
|
|
|
2018-03-03 08:51:09 +03:00
|
|
|
|
destroyDecorations(window);
|
2020-05-27 06:51:34 +03:00
|
|
|
|
|
2018-10-03 09:57:51 +03:00
|
|
|
|
if (window->wl.xdg.decoration)
|
|
|
|
|
zxdg_toplevel_decoration_v1_destroy(window->wl.xdg.decoration);
|
2019-06-12 15:55:32 +03:00
|
|
|
|
|
2018-03-03 08:51:09 +03:00
|
|
|
|
if (window->wl.decorations.buffer)
|
|
|
|
|
wl_buffer_destroy(window->wl.decorations.buffer);
|
|
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
|
if (window->wl.native)
|
|
|
|
|
wl_egl_window_destroy(window->wl.native);
|
|
|
|
|
|
2018-01-29 10:00:05 +03: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);
|
|
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
|
if (window->wl.surface)
|
|
|
|
|
wl_surface_destroy(window->wl.surface);
|
|
|
|
|
|
|
|
|
|
free(window->wl.title);
|
|
|
|
|
free(window->wl.monitors);
|
2018-10-26 06:19:17 +03:00
|
|
|
|
if (window->wl.frameCallbackData.current_wl_callback)
|
|
|
|
|
wl_callback_destroy(window->wl.frameCallbackData.current_wl_callback);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowTitle(_GLFWwindow* window, const char* title)
|
|
|
|
|
{
|
|
|
|
|
if (window->wl.title)
|
|
|
|
|
free(window->wl.title);
|
2020-01-27 06:19:25 +03:00
|
|
|
|
// Wayland cannot handle requests larger than ~8200 bytes. Sending
|
2020-01-30 14:36:32 +03:00
|
|
|
|
// one causes an abort(). Since titles this large are meaningless anyway
|
2020-02-17 17:14:35 +03:00
|
|
|
|
// ensure they do not happen.
|
|
|
|
|
window->wl.title = utf_8_strndup(title, 2048);
|
2018-01-29 10:00:05 +03:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
2020-01-27 06:19:25 +03:00
|
|
|
|
xdg_toplevel_set_title(window->wl.xdg.toplevel, window->wl.title);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
void _glfwPlatformSetWindowIcon(_GLFWwindow* window UNUSED,
|
|
|
|
|
int count UNUSED, const GLFWimage* images UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Setting window icon not supported");
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
void _glfwPlatformGetWindowPos(_GLFWwindow* window UNUSED, int* xpos UNUSED, int* ypos UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
// A Wayland client is not aware of its position, so just warn and leave it
|
|
|
|
|
// as (0, 0)
|
|
|
|
|
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Window position retrieval not supported");
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
void _glfwPlatformSetWindowPos(_GLFWwindow* window UNUSED, int xpos UNUSED, int ypos UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
// A Wayland client can not set its position, so just warn
|
|
|
|
|
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Window position setting not supported");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformGetWindowSize(_GLFWwindow* window, int* width, int* height)
|
|
|
|
|
{
|
|
|
|
|
if (width)
|
|
|
|
|
*width = window->wl.width;
|
|
|
|
|
if (height)
|
|
|
|
|
*height = window->wl.height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowSize(_GLFWwindow* window, int width, int height)
|
|
|
|
|
{
|
2019-03-19 12:32:11 +03:00
|
|
|
|
if (width != window->wl.width || height != window->wl.height) {
|
|
|
|
|
window->wl.width = width;
|
|
|
|
|
window->wl.height = height;
|
|
|
|
|
resizeFramebuffer(window);
|
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowSizeLimits(_GLFWwindow* window,
|
|
|
|
|
int minwidth, int minheight,
|
|
|
|
|
int maxwidth, int maxheight)
|
|
|
|
|
{
|
2019-05-11 15:20:02 +03:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
2018-01-29 10:00:05 +03:00
|
|
|
|
{
|
2019-05-11 15:20:02 +03: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);
|
2018-01-29 10:00:05 +03:00
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
void _glfwPlatformSetWindowAspectRatio(_GLFWwindow* window UNUSED,
|
|
|
|
|
int numer UNUSED, int denom UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
// TODO: find out how to trigger a resize.
|
2019-05-11 15:20:02 +03:00
|
|
|
|
// The actual limits are checked in the xdg_toplevel::configure handler.
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-13 22:38:12 +03:00
|
|
|
|
void _glfwPlatformSetWindowSizeIncrements(_GLFWwindow* window UNUSED,
|
|
|
|
|
int widthincr UNUSED, int heightincr UNUSED)
|
|
|
|
|
{
|
|
|
|
|
// TODO: find out how to trigger a resize.
|
|
|
|
|
// The actual limits are checked in the xdg_toplevel::configure handler.
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-12 15:55:32 +03:00
|
|
|
|
void _glfwPlatformGetFramebufferSize(_GLFWwindow* window,
|
|
|
|
|
int* width, int* height)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
_glfwPlatformGetWindowSize(window, width, height);
|
|
|
|
|
*width *= window->wl.scale;
|
|
|
|
|
*height *= window->wl.scale;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window,
|
|
|
|
|
int* left, int* top,
|
|
|
|
|
int* right, int* bottom)
|
|
|
|
|
{
|
2018-10-03 09:57:51 +03:00
|
|
|
|
if (window->decorated && !window->monitor && !window->wl.decorations.serverSide)
|
2018-03-03 08:51:09 +03: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;
|
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformGetWindowContentScale(_GLFWwindow* window,
|
|
|
|
|
float* xscale, float* yscale)
|
|
|
|
|
{
|
|
|
|
|
if (xscale)
|
|
|
|
|
*xscale = (float) window->wl.scale;
|
|
|
|
|
if (yscale)
|
|
|
|
|
*yscale = (float) window->wl.scale;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-02 19:49:02 +03:00
|
|
|
|
monotonic_t _glfwPlatformGetDoubleClickInterval(_GLFWwindow* window UNUSED)
|
2018-10-26 12:57:33 +03:00
|
|
|
|
{
|
2019-08-02 19:49:02 +03:00
|
|
|
|
return ms_to_monotonic_t(500ll);
|
2018-10-26 12:57:33 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
|
void _glfwPlatformIconifyWindow(_GLFWwindow* window)
|
|
|
|
|
{
|
2019-05-11 15:20:02 +03:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
|
|
|
|
xdg_toplevel_set_minimized(window->wl.xdg.toplevel);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformRestoreWindow(_GLFWwindow* window)
|
|
|
|
|
{
|
2018-01-29 10:00:05 +03:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2018-01-29 10:00:05 +03:00
|
|
|
|
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-05-11 15:20:02 +03:00
|
|
|
|
// minimized, so there is nothing to do in this case.
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
2018-01-29 10:00:05 +03:00
|
|
|
|
_glfwInputWindowMonitor(window, NULL);
|
2019-06-08 05:44:30 +03:00
|
|
|
|
window->wl.maximized = false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformMaximizeWindow(_GLFWwindow* window)
|
|
|
|
|
{
|
2018-01-29 10:00:05 +03:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2018-01-29 10:00:05 +03:00
|
|
|
|
xdg_toplevel_set_maximized(window->wl.xdg.toplevel);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
2019-06-08 05:44:30 +03:00
|
|
|
|
window->wl.maximized = true;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformShowWindow(_GLFWwindow* window)
|
|
|
|
|
{
|
2018-01-29 10:00:05 +03:00
|
|
|
|
if (!window->wl.visible)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2019-05-11 15:20:02 +03:00
|
|
|
|
createXdgSurface(window);
|
2019-06-08 05:44:30 +03:00
|
|
|
|
window->wl.visible = true;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformHideWindow(_GLFWwindow* window)
|
|
|
|
|
{
|
2018-01-29 10:00:05 +03:00
|
|
|
|
if (window->wl.xdg.toplevel)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2018-01-29 10:00:05 +03:00
|
|
|
|
xdg_toplevel_destroy(window->wl.xdg.toplevel);
|
|
|
|
|
xdg_surface_destroy(window->wl.xdg.surface);
|
|
|
|
|
window->wl.xdg.toplevel = NULL;
|
|
|
|
|
window->wl.xdg.surface = NULL;
|
|
|
|
|
}
|
2019-06-08 05:44:30 +03:00
|
|
|
|
window->wl.visible = false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
void _glfwPlatformRequestWindowAttention(_GLFWwindow* window UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
// TODO
|
2019-06-08 05:44:30 +03:00
|
|
|
|
static bool notified = false;
|
2019-04-27 12:23:31 +03:00
|
|
|
|
if (!notified) {
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Window attention request not implemented yet");
|
2019-06-08 05:44:30 +03:00
|
|
|
|
notified = true;
|
2019-04-27 12:23:31 +03:00
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
int _glfwPlatformWindowBell(_GLFWwindow* window UNUSED)
|
2017-11-20 20:33:27 +03:00
|
|
|
|
{
|
2018-03-27 17:15:19 +03:00
|
|
|
|
// TODO: Use an actual Wayland API to implement this when one becomes available
|
2018-08-04 18:28:01 +03:00
|
|
|
|
static char tty[L_ctermid + 1];
|
|
|
|
|
int fd = open(ctermid(tty), O_WRONLY | O_CLOEXEC);
|
2018-03-27 17:15:19 +03:00
|
|
|
|
if (fd > -1) {
|
2019-06-08 05:44:30 +03:00
|
|
|
|
int ret = write(fd, "\x07", 1) == 1 ? true : false;
|
2018-03-27 17:15:19 +03:00
|
|
|
|
close(fd);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-20 20:33:27 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
void _glfwPlatformFocusWindow(_GLFWwindow* window UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Focusing a window requires user interaction");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformSetWindowMonitor(_GLFWwindow* window,
|
|
|
|
|
_GLFWmonitor* monitor,
|
2019-07-01 08:12:07 +03:00
|
|
|
|
int xpos UNUSED, int ypos UNUSED,
|
|
|
|
|
int width UNUSED, int height UNUSED,
|
|
|
|
|
int refreshRate UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2019-05-12 13:23:06 +03:00
|
|
|
|
setFullscreen(window, monitor, monitor != NULL);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
_glfwInputWindowMonitor(window, monitor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int _glfwPlatformWindowFocused(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
return _glfw.wl.keyboardFocus == window;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
int _glfwPlatformWindowOccluded(_GLFWwindow* window UNUSED)
|
2019-02-18 07:04:26 +03:00
|
|
|
|
{
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2019-02-18 07:04:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
int _glfwPlatformWindowIconified(_GLFWwindow* window UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2019-05-11 15:20:02 +03:00
|
|
|
|
// xdg-shell doesn’t give any way to request whether a surface is
|
|
|
|
|
// iconified.
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int _glfwPlatformWindowVisible(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
return window->wl.visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int _glfwPlatformWindowMaximized(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
return window->wl.maximized;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-12 03:04:53 +03:00
|
|
|
|
int _glfwPlatformWindowHovered(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
return window->wl.hovered;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
|
int _glfwPlatformFramebufferTransparent(_GLFWwindow* window)
|
|
|
|
|
{
|
|
|
|
|
return window->wl.transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
void _glfwPlatformSetWindowResizable(_GLFWwindow* window UNUSED, bool enabled UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
// TODO
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Window attribute setting not implemented yet");
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-08 05:42:42 +03:00
|
|
|
|
void _glfwPlatformSetWindowDecorated(_GLFWwindow* window, bool enabled)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2018-03-03 08:51:09 +03:00
|
|
|
|
if (!window->monitor)
|
|
|
|
|
{
|
|
|
|
|
if (enabled)
|
|
|
|
|
createDecorations(window);
|
|
|
|
|
else
|
|
|
|
|
destroyDecorations(window);
|
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
void _glfwPlatformSetWindowFloating(_GLFWwindow* window UNUSED, bool enabled UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
// TODO
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Window attribute setting not implemented yet");
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
float _glfwPlatformGetWindowOpacity(_GLFWwindow* window UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
return 1.f;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
void _glfwPlatformSetWindowOpacity(_GLFWwindow* window UNUSED, float opacity UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-24 20:47:52 +03:00
|
|
|
|
void _glfwPlatformSetRawMouseMotion(_GLFWwindow *window UNUSED, bool enabled UNUSED)
|
2020-05-24 20:35:59 +03:00
|
|
|
|
{
|
2020-05-25 16:20:48 +03:00
|
|
|
|
// This is handled in relativePointerHandleRelativeMotion
|
2020-05-24 20:35:59 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-24 20:47:52 +03:00
|
|
|
|
bool _glfwPlatformRawMouseMotionSupported(void)
|
2020-05-24 20:35:59 +03:00
|
|
|
|
{
|
2020-05-25 16:20:48 +03:00
|
|
|
|
return true;
|
2020-05-24 20:35:59 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
|
void _glfwPlatformPollEvents(void)
|
|
|
|
|
{
|
2018-07-13 08:26:12 +03:00
|
|
|
|
wl_display_dispatch_pending(_glfw.wl.display);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
handleEvents(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformWaitEvents(void)
|
|
|
|
|
{
|
2019-08-02 19:49:02 +03:00
|
|
|
|
monotonic_t timeout = wl_display_dispatch_pending(_glfw.wl.display) > 0 ? 0 : -1;
|
2018-07-13 08:26:12 +03:00
|
|
|
|
handleEvents(timeout);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-08-02 19:49:02 +03:00
|
|
|
|
void _glfwPlatformWaitEventsTimeout(monotonic_t timeout)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2018-07-13 08:26:12 +03:00
|
|
|
|
if (wl_display_dispatch_pending(_glfw.wl.display) > 0) timeout = 0;
|
2018-06-08 06:44:14 +03:00
|
|
|
|
handleEvents(timeout);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformPostEmptyEvent(void)
|
|
|
|
|
{
|
2019-07-05 07:04:51 +03:00
|
|
|
|
wakeupEventLoop(&_glfw.wl.eventLoopData);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformGetCursorPos(_GLFWwindow* window, double* xpos, double* ypos)
|
|
|
|
|
{
|
|
|
|
|
if (xpos)
|
|
|
|
|
*xpos = window->wl.cursorPosX;
|
|
|
|
|
if (ypos)
|
|
|
|
|
*ypos = window->wl.cursorPosY;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-08 05:42:42 +03:00
|
|
|
|
static bool isPointerLocked(_GLFWwindow* window);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
void _glfwPlatformSetCursorPos(_GLFWwindow* window, double x, double y)
|
|
|
|
|
{
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
void _glfwPlatformSetCursorMode(_GLFWwindow* window, int mode UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
_glfwPlatformSetCursor(window, window->wl.currentCursor);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-16 03:25:20 +03:00
|
|
|
|
const char* _glfwPlatformGetNativeKeyName(int native_key)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2019-10-16 03:25:20 +03:00
|
|
|
|
return glfw_xkb_keysym_name(native_key);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-16 03:25:20 +03:00
|
|
|
|
int _glfwPlatformGetNativeKeyForKey(int key)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2018-03-29 22:27:02 +03:00
|
|
|
|
return glfw_xkb_sym_for_key(key);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int _glfwPlatformCreateCursor(_GLFWcursor* cursor,
|
|
|
|
|
const GLFWimage* image,
|
2019-07-01 08:12:07 +03:00
|
|
|
|
int xhot, int yhot, int count UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2018-03-03 08:51:09 +03:00
|
|
|
|
cursor->wl.buffer = createShmBuffer(image);
|
2018-10-02 09:00:13 +03:00
|
|
|
|
if (!cursor->wl.buffer)
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
cursor->wl.width = image->width;
|
|
|
|
|
cursor->wl.height = image->height;
|
|
|
|
|
cursor->wl.xhot = xhot;
|
|
|
|
|
cursor->wl.yhot = yhot;
|
2020-05-27 06:51:34 +03:00
|
|
|
|
cursor->wl.scale = -1;
|
|
|
|
|
cursor->wl.shape = GLFW_INVALID_CURSOR;
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return true;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-21 10:36:13 +03:00
|
|
|
|
int _glfwPlatformCreateStandardCursor(_GLFWcursor* cursor, GLFWCursorShape shape)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
2020-05-27 06:51:34 +03:00
|
|
|
|
// Don't actually load the cursor at this point,
|
|
|
|
|
// because there's not enough info to be properly HiDPI aware.
|
|
|
|
|
cursor->wl.cursor = NULL;
|
2018-09-10 09:24:22 +03:00
|
|
|
|
cursor->wl.currentImage = 0;
|
2020-05-27 06:51:34 +03:00
|
|
|
|
cursor->wl.scale = 0;
|
|
|
|
|
cursor->wl.shape = shape;
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return true;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformDestroyCursor(_GLFWcursor* cursor)
|
|
|
|
|
{
|
|
|
|
|
// If it's a standard cursor we don't need to do anything here
|
2018-09-10 09:24:22 +03:00
|
|
|
|
if (cursor->wl.cursor)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (cursor->wl.buffer)
|
|
|
|
|
wl_buffer_destroy(cursor->wl.buffer);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-25 16:18:05 +03:00
|
|
|
|
static void relativePointerHandleRelativeMotion(void* data,
|
|
|
|
|
struct zwp_relative_pointer_v1* pointer UNUSED,
|
|
|
|
|
uint32_t timeHi UNUSED,
|
|
|
|
|
uint32_t timeLo UNUSED,
|
2020-05-25 16:20:48 +03:00
|
|
|
|
wl_fixed_t dx,
|
|
|
|
|
wl_fixed_t dy,
|
2020-05-25 16:18:05 +03:00
|
|
|
|
wl_fixed_t dxUnaccel,
|
|
|
|
|
wl_fixed_t dyUnaccel)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = data;
|
2020-05-25 16:20:48 +03:00
|
|
|
|
double xpos = window->virtualCursorPosX;
|
|
|
|
|
double ypos = window->virtualCursorPosY;
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
|
|
|
|
if (window->cursorMode != GLFW_CURSOR_DISABLED)
|
|
|
|
|
return;
|
|
|
|
|
|
2020-05-25 16:20:48 +03: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);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct zwp_relative_pointer_v1_listener relativePointerListener = {
|
2020-05-25 16:18:05 +03:00
|
|
|
|
relativePointerHandleRelativeMotion
|
2017-11-19 20:54:36 +03:00
|
|
|
|
};
|
|
|
|
|
|
2020-05-25 16:18:05 +03:00
|
|
|
|
static void lockedPointerHandleLocked(void* data UNUSED,
|
|
|
|
|
struct zwp_locked_pointer_v1* lockedPointer UNUSED)
|
2017-11-19 20:54:36 +03: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;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void lockPointer(_GLFWwindow* window UNUSED);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
2020-05-25 16:18:05 +03:00
|
|
|
|
static void lockedPointerHandleUnlocked(void* data UNUSED,
|
|
|
|
|
struct zwp_locked_pointer_v1* lockedPointer UNUSED)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const struct zwp_locked_pointer_v1_listener lockedPointerListener = {
|
2020-05-25 16:18:05 +03:00
|
|
|
|
lockedPointerHandleLocked,
|
|
|
|
|
lockedPointerHandleUnlocked
|
2017-11-19 20:54:36 +03: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;
|
|
|
|
|
|
|
|
|
|
wl_pointer_set_cursor(_glfw.wl.pointer, _glfw.wl.pointerSerial,
|
|
|
|
|
NULL, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-08 05:42:42 +03:00
|
|
|
|
static bool isPointerLocked(_GLFWwindow* window)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
{
|
|
|
|
|
return window->wl.pointerLock.lockedPointer != NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformSetCursor(_GLFWwindow* window, _GLFWcursor* cursor)
|
|
|
|
|
{
|
|
|
|
|
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-10 09:24:22 +03:00
|
|
|
|
if (window != _glfw.wl.pointerFocus || window->wl.decorations.focus != mainWindow)
|
2017-11-19 20:54:36 +03:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Unlock possible pointer lock if no longer disabled.
|
|
|
|
|
if (window->cursorMode != GLFW_CURSOR_DISABLED && isPointerLocked(window))
|
|
|
|
|
unlockPointer(window);
|
|
|
|
|
|
|
|
|
|
if (window->cursorMode == GLFW_CURSOR_NORMAL)
|
|
|
|
|
{
|
|
|
|
|
if (cursor)
|
2020-06-02 05:29:32 +03:00
|
|
|
|
setCursorImage(window, &cursor->wl);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
else
|
|
|
|
|
{
|
2020-06-02 05:29:32 +03:00
|
|
|
|
setCursorImage(window, NULL);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if (window->cursorMode == GLFW_CURSOR_DISABLED)
|
|
|
|
|
{
|
|
|
|
|
if (!isPointerLocked(window))
|
|
|
|
|
lockPointer(window);
|
|
|
|
|
}
|
|
|
|
|
else if (window->cursorMode == GLFW_CURSOR_HIDDEN)
|
|
|
|
|
{
|
|
|
|
|
wl_pointer_set_cursor(_glfw.wl.pointer, _glfw.wl.pointerSerial,
|
|
|
|
|
NULL, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-25 19:22:47 +03:00
|
|
|
|
static void send_text(char *text, int fd)
|
2018-09-04 19:52:43 +03:00
|
|
|
|
{
|
2018-10-25 19:22:47 +03:00
|
|
|
|
if (text) {
|
|
|
|
|
size_t len = strlen(text), pos = 0;
|
2019-08-02 19:49:02 +03:00
|
|
|
|
monotonic_t start = glfwGetTime();
|
|
|
|
|
while (pos < len && glfwGetTime() - start < s_to_monotonic_t(2ll)) {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
ssize_t ret = write(fd, text + pos, len - pos);
|
2018-09-04 19:52:43 +03:00
|
|
|
|
if (ret < 0) {
|
|
|
|
|
if (errno == EAGAIN || errno == EINTR) continue;
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Could not copy writing to destination fd failed with error: %s", strerror(errno));
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (ret > 0) {
|
|
|
|
|
start = glfwGetTime();
|
|
|
|
|
pos += ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
close(fd);
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void _glfwSendClipboardText(void *data UNUSED, struct wl_data_source *data_source UNUSED, const char *mime_type UNUSED, int fd) {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
send_text(_glfw.wl.clipboardString, fd);
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void _glfwSendPrimarySelectionText(void *data UNUSED, struct zwp_primary_selection_source_v1 *primary_selection_source UNUSED,
|
|
|
|
|
const char *mime_type UNUSED, int fd) {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
send_text(_glfw.wl.primarySelectionString, fd);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-19 10:30:52 +03:00
|
|
|
|
static char* read_offer_string(int data_pipe, size_t *data_sz) {
|
2018-09-05 15:24:26 +03:00
|
|
|
|
wl_display_flush(_glfw.wl.display);
|
2020-03-19 10:30:52 +03:00
|
|
|
|
size_t capacity = 0;
|
2018-09-05 19:11:47 +03:00
|
|
|
|
char *buf = NULL;
|
2020-03-19 10:30:52 +03:00
|
|
|
|
*data_sz = 0;
|
2018-09-05 15:24:26 +03:00
|
|
|
|
struct pollfd fds;
|
2018-10-25 19:22:47 +03:00
|
|
|
|
fds.fd = data_pipe;
|
2018-09-05 15:24:26 +03:00
|
|
|
|
fds.events = POLLIN;
|
2019-08-02 19:49:02 +03:00
|
|
|
|
monotonic_t start = glfwGetTime();
|
2018-09-05 15:24:26 +03:00
|
|
|
|
#define bail(...) { \
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR, __VA_ARGS__); \
|
2018-09-05 19:11:47 +03:00
|
|
|
|
free(buf); buf = NULL; \
|
2018-10-25 19:22:47 +03:00
|
|
|
|
close(data_pipe); \
|
2018-09-05 15:24:26 +03:00
|
|
|
|
return NULL; \
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-02 19:49:02 +03:00
|
|
|
|
while (glfwGetTime() - start < s_to_monotonic_t(2ll)) {
|
2018-09-05 15:24:26 +03:00
|
|
|
|
int ret = poll(&fds, 1, 2000);
|
|
|
|
|
if (ret == -1) {
|
|
|
|
|
if (errno == EINTR) continue;
|
|
|
|
|
bail("Wayland: Failed to poll clipboard data from pipe with error: %s", strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
if (!ret) {
|
|
|
|
|
bail("Wayland: Failed to read clipboard data from pipe (timed out)");
|
|
|
|
|
}
|
2020-03-19 10:30:52 +03:00
|
|
|
|
if (capacity <= *data_sz || capacity - *data_sz <= 64) {
|
2018-09-05 15:24:26 +03:00
|
|
|
|
capacity += 4096;
|
2018-09-05 19:11:47 +03:00
|
|
|
|
buf = realloc(buf, capacity);
|
|
|
|
|
if (!buf) {
|
2018-09-05 15:24:26 +03:00
|
|
|
|
bail("Wayland: Failed to allocate memory to read clipboard data");
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-03-19 10:30:52 +03:00
|
|
|
|
ret = read(data_pipe, buf + *data_sz, capacity - *data_sz - 1);
|
2018-09-05 15:24:26 +03:00
|
|
|
|
if (ret == -1) {
|
|
|
|
|
if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) continue;
|
|
|
|
|
bail("Wayland: Failed to read clipboard data from pipe with error: %s", strerror(errno));
|
|
|
|
|
}
|
2020-03-19 10:30:52 +03:00
|
|
|
|
if (ret == 0) { close(data_pipe); buf[*data_sz] = 0; return buf; }
|
|
|
|
|
*data_sz += ret;
|
2018-09-05 15:24:26 +03:00
|
|
|
|
start = glfwGetTime();
|
|
|
|
|
}
|
|
|
|
|
bail("Wayland: Failed to read clipboard data from pipe (timed out)");
|
|
|
|
|
#undef bail
|
2018-09-05 19:11:47 +03:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-13 22:58:02 +03:00
|
|
|
|
static char* read_primary_selection_offer(struct zwp_primary_selection_offer_v1 *primary_selection_offer, const char *mime) {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
int pipefd[2];
|
|
|
|
|
if (pipe2(pipefd, O_CLOEXEC) != 0) return NULL;
|
2018-11-13 22:58:02 +03:00
|
|
|
|
zwp_primary_selection_offer_v1_receive(primary_selection_offer, mime, pipefd[1]);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
close(pipefd[1]);
|
2020-03-19 10:30:52 +03:00
|
|
|
|
size_t sz = 0;
|
|
|
|
|
return read_offer_string(pipefd[0], &sz);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-19 10:30:52 +03:00
|
|
|
|
static char* read_data_offer(struct wl_data_offer *data_offer, const char *mime, size_t *sz) {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
int pipefd[2];
|
|
|
|
|
if (pipe2(pipefd, O_CLOEXEC) != 0) return NULL;
|
|
|
|
|
wl_data_offer_receive(data_offer, mime, pipefd[1]);
|
|
|
|
|
close(pipefd[1]);
|
2020-03-19 10:30:52 +03:00
|
|
|
|
return read_offer_string(pipefd[0], sz);
|
2018-09-05 15:24:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void data_source_canceled(void *data UNUSED, struct wl_data_source *wl_data_source) {
|
2018-09-05 17:07:55 +03:00
|
|
|
|
if (_glfw.wl.dataSourceForClipboard == wl_data_source)
|
|
|
|
|
_glfw.wl.dataSourceForClipboard = NULL;
|
|
|
|
|
wl_data_source_destroy(wl_data_source);
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void primary_selection_source_canceled(void *data UNUSED, struct zwp_primary_selection_source_v1 *primary_selection_source) {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
if (_glfw.wl.dataSourceForPrimarySelection == primary_selection_source)
|
|
|
|
|
_glfw.wl.dataSourceForPrimarySelection = NULL;
|
2018-11-13 22:58:02 +03:00
|
|
|
|
zwp_primary_selection_source_v1_destroy(primary_selection_source);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void data_source_target(void *data UNUSED, struct wl_data_source *wl_data_source UNUSED, const char* mime UNUSED) {
|
2018-09-05 17:34:38 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static const struct wl_data_source_listener data_source_listener = {
|
2018-09-04 19:52:43 +03:00
|
|
|
|
.send = _glfwSendClipboardText,
|
2018-09-05 17:07:55 +03:00
|
|
|
|
.cancelled = data_source_canceled,
|
2018-09-05 17:34:38 +03:00
|
|
|
|
.target = data_source_target,
|
2018-09-04 19:52:43 +03:00
|
|
|
|
};
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static const struct zwp_primary_selection_source_v1_listener primary_selection_source_listener = {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
.send = _glfwSendPrimarySelectionText,
|
|
|
|
|
.cancelled = primary_selection_source_canceled,
|
|
|
|
|
};
|
|
|
|
|
|
2020-03-19 10:30:52 +03:00
|
|
|
|
void
|
|
|
|
|
destroy_data_offer(_GLFWWaylandDataOffer *offer) {
|
|
|
|
|
if (offer->id) {
|
|
|
|
|
if (offer->is_primary) zwp_primary_selection_offer_v1_destroy(offer->id);
|
|
|
|
|
else wl_data_offer_destroy(offer->id);
|
2018-09-05 15:24:26 +03:00
|
|
|
|
}
|
2020-03-19 10:30:52 +03:00
|
|
|
|
if (offer->mimes) {
|
|
|
|
|
for (size_t i = 0; i < offer->mimes_count; i++) free((char*)offer->mimes[i]);
|
|
|
|
|
free(offer->mimes);
|
|
|
|
|
}
|
|
|
|
|
memset(offer, 0, sizeof(_GLFWWaylandDataOffer));
|
2018-09-05 15:24:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-19 10:30:52 +03:00
|
|
|
|
static void prune_unclaimed_data_offers(void) {
|
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
|
|
|
|
if (_glfw.wl.dataOffers[i].id && !_glfw.wl.dataOffers[i].offer_type) {
|
|
|
|
|
destroy_data_offer(&_glfw.wl.dataOffers[i]);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void mark_selection_offer(void *data UNUSED, struct wl_data_device *data_device UNUSED, struct wl_data_offer *data_offer)
|
2018-09-05 15:24:26 +03:00
|
|
|
|
{
|
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
|
|
|
|
if (_glfw.wl.dataOffers[i].id == data_offer) {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
_glfw.wl.dataOffers[i].offer_type = CLIPBOARD;
|
|
|
|
|
} else if (_glfw.wl.dataOffers[i].offer_type == CLIPBOARD) {
|
|
|
|
|
_glfw.wl.dataOffers[i].offer_type = EXPIRED; // previous selection offer
|
2018-09-05 15:24:26 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
prune_unclaimed_data_offers();
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void mark_primary_selection_offer(void *data UNUSED, struct zwp_primary_selection_device_v1* primary_selection_device UNUSED,
|
2018-11-13 22:58:02 +03:00
|
|
|
|
struct zwp_primary_selection_offer_v1 *primary_selection_offer) {
|
2020-03-19 10:30:52 +03:00
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
|
|
|
|
if (_glfw.wl.dataOffers[i].id == primary_selection_offer) {
|
|
|
|
|
_glfw.wl.dataOffers[i].offer_type = PRIMARY_SELECTION;
|
|
|
|
|
} else if (_glfw.wl.dataOffers[i].offer_type == PRIMARY_SELECTION) {
|
|
|
|
|
_glfw.wl.dataOffers[i].offer_type = EXPIRED; // previous selection offer
|
2018-10-25 19:22:47 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-03-19 10:30:52 +03:00
|
|
|
|
prune_unclaimed_data_offers();
|
2018-10-25 19:22:47 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-19 10:30:52 +03:00
|
|
|
|
static void
|
|
|
|
|
set_offer_mimetype(_GLFWWaylandDataOffer* offer, const char* mime) {
|
|
|
|
|
if (strcmp(mime, "text/plain;charset=utf-8") == 0) {
|
|
|
|
|
offer->plain_text_mime = "text/plain;charset=utf-8";
|
|
|
|
|
} else if (!offer->plain_text_mime && strcmp(mime, "text/plain")) {
|
|
|
|
|
offer->plain_text_mime = "text/plain";
|
|
|
|
|
}
|
|
|
|
|
if (strcmp(mime, clipboard_mime()) == 0) {
|
|
|
|
|
offer->is_self_offer = true;
|
|
|
|
|
}
|
|
|
|
|
if (!offer->mimes || offer->mimes_count >= offer->mimes_capacity - 1) {
|
|
|
|
|
offer->mimes = realloc(offer->mimes, sizeof(char*) * (offer->mimes_capacity + 64));
|
|
|
|
|
if (offer->mimes) offer->mimes_capacity += 64;
|
|
|
|
|
else return;
|
|
|
|
|
}
|
|
|
|
|
offer->mimes[offer->mimes_count++] = _glfw_strdup(mime);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void handle_offer_mimetype(void *data UNUSED, struct wl_data_offer* id, const char *mime) {
|
2018-09-05 15:24:26 +03:00
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
|
|
|
|
if (_glfw.wl.dataOffers[i].id == id) {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
set_offer_mimetype(&_glfw.wl.dataOffers[i], mime);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void handle_primary_selection_offer_mimetype(void *data UNUSED, struct zwp_primary_selection_offer_v1* id, const char *mime) {
|
2020-03-19 10:30:52 +03:00
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
|
|
|
|
if (_glfw.wl.dataOffers[i].id == id) {
|
|
|
|
|
set_offer_mimetype((_GLFWWaylandDataOffer*)&_glfw.wl.dataOffers[i], mime);
|
2018-09-05 15:24:26 +03:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void data_offer_source_actions(void *data UNUSED, struct wl_data_offer* id, uint32_t actions) {
|
2018-09-05 17:28:55 +03:00
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
|
|
|
|
if (_glfw.wl.dataOffers[i].id == id) {
|
|
|
|
|
_glfw.wl.dataOffers[i].source_actions = actions;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void data_offer_action(void *data UNUSED, struct wl_data_offer* id, uint32_t action) {
|
2018-09-05 17:28:55 +03:00
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
|
|
|
|
if (_glfw.wl.dataOffers[i].id == id) {
|
|
|
|
|
_glfw.wl.dataOffers[i].dnd_action = action;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-09-05 15:24:26 +03:00
|
|
|
|
static const struct wl_data_offer_listener data_offer_listener = {
|
|
|
|
|
.offer = handle_offer_mimetype,
|
2018-09-05 17:28:55 +03:00
|
|
|
|
.source_actions = data_offer_source_actions,
|
|
|
|
|
.action = data_offer_action,
|
2018-09-05 15:24:26 +03:00
|
|
|
|
};
|
|
|
|
|
|
2018-11-13 22:58:02 +03:00
|
|
|
|
static const struct zwp_primary_selection_offer_v1_listener primary_selection_offer_listener = {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
.offer = handle_primary_selection_offer_mimetype,
|
|
|
|
|
};
|
|
|
|
|
|
2020-03-19 10:30:52 +03:00
|
|
|
|
static size_t
|
|
|
|
|
handle_data_offer_generic(void *id, bool is_primary) {
|
2018-09-05 15:24:26 +03:00
|
|
|
|
size_t smallest_idx = SIZE_MAX, pos = 0;
|
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
|
|
|
|
if (_glfw.wl.dataOffers[i].idx && _glfw.wl.dataOffers[i].idx < smallest_idx) {
|
|
|
|
|
smallest_idx = _glfw.wl.dataOffers[i].idx;
|
|
|
|
|
pos = i;
|
|
|
|
|
}
|
|
|
|
|
if (_glfw.wl.dataOffers[i].id == NULL) {
|
2020-03-19 10:30:52 +03:00
|
|
|
|
pos = i;
|
2018-09-05 15:24:26 +03:00
|
|
|
|
goto end;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-03-19 10:30:52 +03:00
|
|
|
|
if (_glfw.wl.dataOffers[pos].id) destroy_data_offer(&_glfw.wl.dataOffers[pos]);
|
|
|
|
|
end:
|
2018-09-05 15:24:26 +03:00
|
|
|
|
_glfw.wl.dataOffers[pos].id = id;
|
2020-03-19 10:30:52 +03:00
|
|
|
|
_glfw.wl.dataOffers[pos].is_primary = is_primary;
|
2018-09-05 15:24:26 +03:00
|
|
|
|
_glfw.wl.dataOffers[pos].idx = ++_glfw.wl.dataOffersCounter;
|
2020-03-19 10:30:52 +03:00
|
|
|
|
return pos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void handle_data_offer(void *data UNUSED, struct wl_data_device *wl_data_device UNUSED, struct wl_data_offer *id) {
|
|
|
|
|
handle_data_offer_generic(id, false);
|
2018-09-05 15:24:26 +03:00
|
|
|
|
wl_data_offer_add_listener(id, &data_offer_listener, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void handle_primary_selection_offer(void *data UNUSED, struct zwp_primary_selection_device_v1 *zwp_primary_selection_device_v1 UNUSED, struct zwp_primary_selection_offer_v1 *id) {
|
2020-03-19 10:30:52 +03:00
|
|
|
|
handle_data_offer_generic(id, true);
|
2018-11-13 22:58:02 +03:00
|
|
|
|
zwp_primary_selection_offer_v1_add_listener(id, &primary_selection_offer_listener, NULL);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void drag_enter(void *data UNUSED, struct wl_data_device *wl_data_device UNUSED, uint32_t serial, struct wl_surface *surface, wl_fixed_t x UNUSED, wl_fixed_t y UNUSED, struct wl_data_offer *id) {
|
2018-09-05 19:11:47 +03:00
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
2020-03-19 10:30:52 +03:00
|
|
|
|
_GLFWWaylandDataOffer *d = _glfw.wl.dataOffers + i;
|
|
|
|
|
if (d->id == id) {
|
|
|
|
|
d->offer_type = DRAG_AND_DROP;
|
|
|
|
|
d->surface = surface;
|
|
|
|
|
_GLFWwindow* window = _glfw.windowListHead;
|
|
|
|
|
int format_priority = 0;
|
|
|
|
|
while (window)
|
|
|
|
|
{
|
|
|
|
|
if (window->wl.surface == surface) {
|
|
|
|
|
for (size_t x = 0; x < d->mimes_count; x++) {
|
|
|
|
|
int prio = _glfwInputDrop(window, d->mimes[x], NULL, 0);
|
|
|
|
|
if (prio > format_priority) d->mime_for_drop = d->mimes[x];
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
window = window->next;
|
|
|
|
|
}
|
|
|
|
|
wl_data_offer_accept(id, serial, d->mime_for_drop);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
} else if (_glfw.wl.dataOffers[i].offer_type == DRAG_AND_DROP) {
|
|
|
|
|
_glfw.wl.dataOffers[i].offer_type = EXPIRED; // previous drag offer
|
2018-09-05 19:11:47 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
prune_unclaimed_data_offers();
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void drag_leave(void *data UNUSED, struct wl_data_device *wl_data_device UNUSED) {
|
2018-09-05 19:11:47 +03:00
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
if (_glfw.wl.dataOffers[i].offer_type == DRAG_AND_DROP) {
|
2020-03-19 10:30:52 +03:00
|
|
|
|
destroy_data_offer(&_glfw.wl.dataOffers[i]);
|
2018-09-05 19:11:47 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-14 05:50:44 +03:00
|
|
|
|
static void drop(void *data UNUSED, struct wl_data_device *wl_data_device UNUSED) {
|
2018-09-05 19:11:47 +03:00
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
2020-03-19 10:30:52 +03:00
|
|
|
|
if (_glfw.wl.dataOffers[i].offer_type == DRAG_AND_DROP && _glfw.wl.dataOffers[i].mime_for_drop) {
|
|
|
|
|
size_t sz = 0;
|
|
|
|
|
char *data = read_data_offer(_glfw.wl.dataOffers[i].id, _glfw.wl.dataOffers[i].mime_for_drop, &sz);
|
|
|
|
|
if (data) {
|
2020-03-14 06:42:06 +03:00
|
|
|
|
// We dont do finish as this requires version 3 for wl_data_device_manager
|
|
|
|
|
// which then requires more work with calling set_actions for drag and drop to function
|
|
|
|
|
// wl_data_offer_finish(_glfw.wl.dataOffers[i].id);
|
2018-09-05 19:11:47 +03:00
|
|
|
|
|
|
|
|
|
_GLFWwindow* window = _glfw.windowListHead;
|
|
|
|
|
while (window)
|
|
|
|
|
{
|
|
|
|
|
if (window->wl.surface == _glfw.wl.dataOffers[i].surface) {
|
2020-03-19 10:30:52 +03:00
|
|
|
|
_glfwInputDrop(window, _glfw.wl.dataOffers[i].mime_for_drop, data, sz);
|
2018-09-05 19:11:47 +03:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
window = window->next;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-19 10:30:52 +03:00
|
|
|
|
free(data);
|
2018-09-05 19:11:47 +03:00
|
|
|
|
}
|
2020-03-19 10:30:52 +03:00
|
|
|
|
destroy_data_offer(&_glfw.wl.dataOffers[i]);
|
2018-09-05 19:11:47 +03:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static void motion(void *data UNUSED, struct wl_data_device *wl_data_device UNUSED, uint32_t time UNUSED, wl_fixed_t x UNUSED, wl_fixed_t y UNUSED) {
|
2018-09-05 19:11:47 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static const struct wl_data_device_listener data_device_listener = {
|
2018-09-05 15:24:26 +03:00
|
|
|
|
.data_offer = handle_data_offer,
|
|
|
|
|
.selection = mark_selection_offer,
|
2018-09-05 19:11:47 +03:00
|
|
|
|
.enter = drag_enter,
|
|
|
|
|
.motion = motion,
|
|
|
|
|
.drop = drop,
|
|
|
|
|
.leave = drag_leave,
|
2018-09-05 15:24:26 +03:00
|
|
|
|
};
|
|
|
|
|
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static const struct zwp_primary_selection_device_v1_listener primary_selection_device_listener = {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
.data_offer = handle_primary_selection_offer,
|
|
|
|
|
.selection = mark_primary_selection_offer,
|
|
|
|
|
};
|
|
|
|
|
|
2018-09-05 15:24:26 +03:00
|
|
|
|
|
2018-09-04 19:52:43 +03:00
|
|
|
|
static void
|
2018-10-25 19:22:47 +03:00
|
|
|
|
clipboard_copy_callback_done(void *data, struct wl_callback *callback, uint32_t serial) {
|
2018-10-27 09:05:25 +03:00
|
|
|
|
if (_glfw.wl.dataDevice && data == (void*)_glfw.wl.dataSourceForClipboard) {
|
|
|
|
|
wl_data_device_set_selection(_glfw.wl.dataDevice, data, serial);
|
2018-09-04 19:52:43 +03:00
|
|
|
|
}
|
2018-10-27 09:04:54 +03:00
|
|
|
|
wl_callback_destroy(callback);
|
2018-09-04 19:52:43 +03:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-25 19:22:47 +03:00
|
|
|
|
static void
|
|
|
|
|
primary_selection_copy_callback_done(void *data, struct wl_callback *callback, uint32_t serial) {
|
|
|
|
|
if (_glfw.wl.primarySelectionDevice && data == (void*)_glfw.wl.dataSourceForPrimarySelection) {
|
2018-11-13 22:58:02 +03:00
|
|
|
|
zwp_primary_selection_device_v1_set_selection(_glfw.wl.primarySelectionDevice, data, serial);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
}
|
|
|
|
|
wl_callback_destroy(callback);
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-05 15:24:26 +03:00
|
|
|
|
void _glfwSetupWaylandDataDevice() {
|
|
|
|
|
_glfw.wl.dataDevice = wl_data_device_manager_get_data_device(_glfw.wl.dataDeviceManager, _glfw.wl.seat);
|
|
|
|
|
if (_glfw.wl.dataDevice) wl_data_device_add_listener(_glfw.wl.dataDevice, &data_device_listener, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-25 19:22:47 +03:00
|
|
|
|
void _glfwSetupWaylandPrimarySelectionDevice() {
|
2018-11-13 22:58:02 +03:00
|
|
|
|
_glfw.wl.primarySelectionDevice = zwp_primary_selection_device_manager_v1_get_device(_glfw.wl.primarySelectionDeviceManager, _glfw.wl.seat);
|
|
|
|
|
if (_glfw.wl.primarySelectionDevice) zwp_primary_selection_device_v1_add_listener(_glfw.wl.primarySelectionDevice, &primary_selection_device_listener, NULL);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-08 05:42:42 +03:00
|
|
|
|
static inline bool _glfwEnsureDataDevice(void) {
|
2018-09-04 19:52:43 +03:00
|
|
|
|
if (!_glfw.wl.dataDeviceManager)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2018-09-05 15:24:26 +03:00
|
|
|
|
"Wayland: Cannot use clipboard, data device manager is not ready");
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2018-09-04 19:52:43 +03:00
|
|
|
|
}
|
2018-09-05 05:21:15 +03:00
|
|
|
|
|
2018-09-04 19:52:43 +03:00
|
|
|
|
if (!_glfw.wl.dataDevice)
|
|
|
|
|
{
|
|
|
|
|
if (!_glfw.wl.seat)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2018-09-05 15:24:26 +03:00
|
|
|
|
"Wayland: Cannot use clipboard, seat is not ready");
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2018-09-04 19:52:43 +03:00
|
|
|
|
}
|
|
|
|
|
if (!_glfw.wl.dataDevice)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
2019-08-24 02:37:27 +03:00
|
|
|
|
"Wayland: Cannot use clipboard, failed to create data device");
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return false;
|
2018-09-04 19:52:43 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-06-08 05:44:30 +03:00
|
|
|
|
return true;
|
2018-09-05 05:21:15 +03:00
|
|
|
|
}
|
2018-09-04 19:52:43 +03:00
|
|
|
|
|
2018-09-05 05:21:15 +03:00
|
|
|
|
void _glfwPlatformSetClipboardString(const char* string)
|
|
|
|
|
{
|
|
|
|
|
if (!_glfwEnsureDataDevice()) return;
|
2018-09-04 19:52:43 +03:00
|
|
|
|
free(_glfw.wl.clipboardString);
|
|
|
|
|
_glfw.wl.clipboardString = _glfw_strdup(string);
|
|
|
|
|
if (_glfw.wl.dataSourceForClipboard)
|
|
|
|
|
wl_data_source_destroy(_glfw.wl.dataSourceForClipboard);
|
|
|
|
|
_glfw.wl.dataSourceForClipboard = wl_data_device_manager_create_data_source(_glfw.wl.dataDeviceManager);
|
|
|
|
|
if (!_glfw.wl.dataSourceForClipboard)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Cannot copy failed to create data source");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
wl_data_source_add_listener(_glfw.wl.dataSourceForClipboard, &data_source_listener, NULL);
|
2018-09-05 19:15:32 +03:00
|
|
|
|
wl_data_source_offer(_glfw.wl.dataSourceForClipboard, clipboard_mime());
|
2018-09-04 19:52:43 +03:00
|
|
|
|
wl_data_source_offer(_glfw.wl.dataSourceForClipboard, "text/plain");
|
|
|
|
|
wl_data_source_offer(_glfw.wl.dataSourceForClipboard, "text/plain;charset=utf-8");
|
|
|
|
|
wl_data_source_offer(_glfw.wl.dataSourceForClipboard, "TEXT");
|
|
|
|
|
wl_data_source_offer(_glfw.wl.dataSourceForClipboard, "STRING");
|
|
|
|
|
wl_data_source_offer(_glfw.wl.dataSourceForClipboard, "UTF8_STRING");
|
|
|
|
|
struct wl_callback *callback = wl_display_sync(_glfw.wl.display);
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static const struct wl_callback_listener clipboard_copy_callback_listener = {.done = clipboard_copy_callback_done};
|
2018-10-25 19:22:47 +03:00
|
|
|
|
wl_callback_add_listener(callback, &clipboard_copy_callback_listener, _glfw.wl.dataSourceForClipboard);
|
2017-11-19 20:54:36 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char* _glfwPlatformGetClipboardString(void)
|
|
|
|
|
{
|
2018-09-05 15:24:26 +03:00
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
2020-03-19 10:30:52 +03:00
|
|
|
|
_GLFWWaylandDataOffer *d = _glfw.wl.dataOffers + i;
|
|
|
|
|
if (d->id && d->offer_type == CLIPBOARD && d->plain_text_mime) {
|
|
|
|
|
if (d->is_self_offer) return _glfw.wl.clipboardString;
|
2018-10-25 19:22:47 +03:00
|
|
|
|
free(_glfw.wl.pasteString);
|
2020-03-19 10:30:52 +03:00
|
|
|
|
size_t sz = 0;
|
|
|
|
|
_glfw.wl.pasteString = read_data_offer(d->id, d->plain_text_mime, &sz);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
return _glfw.wl.pasteString;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformSetPrimarySelectionString(const char* string)
|
|
|
|
|
{
|
|
|
|
|
if (!_glfw.wl.primarySelectionDevice) {
|
2019-06-08 05:44:30 +03:00
|
|
|
|
static bool warned_about_primary_selection_device = false;
|
2018-10-31 06:39:46 +03:00
|
|
|
|
if (!warned_about_primary_selection_device) {
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Cannot copy no primary selection device available");
|
2019-06-08 05:44:30 +03:00
|
|
|
|
warned_about_primary_selection_device = true;
|
2018-10-31 06:39:46 +03:00
|
|
|
|
}
|
2018-10-25 19:22:47 +03:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (_glfw.wl.primarySelectionString == string) return;
|
|
|
|
|
free(_glfw.wl.primarySelectionString);
|
|
|
|
|
_glfw.wl.primarySelectionString = _glfw_strdup(string);
|
|
|
|
|
|
|
|
|
|
if (_glfw.wl.dataSourceForPrimarySelection)
|
2018-11-13 22:58:02 +03:00
|
|
|
|
zwp_primary_selection_source_v1_destroy(_glfw.wl.dataSourceForPrimarySelection);
|
|
|
|
|
_glfw.wl.dataSourceForPrimarySelection = zwp_primary_selection_device_manager_v1_create_source(_glfw.wl.primarySelectionDeviceManager);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
if (!_glfw.wl.dataSourceForPrimarySelection)
|
|
|
|
|
{
|
|
|
|
|
_glfwInputError(GLFW_PLATFORM_ERROR,
|
|
|
|
|
"Wayland: Cannot copy failed to create primary selection source");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-11-13 22:58:02 +03:00
|
|
|
|
zwp_primary_selection_source_v1_add_listener(_glfw.wl.dataSourceForPrimarySelection, &primary_selection_source_listener, NULL);
|
|
|
|
|
zwp_primary_selection_source_v1_offer(_glfw.wl.dataSourceForPrimarySelection, clipboard_mime());
|
|
|
|
|
zwp_primary_selection_source_v1_offer(_glfw.wl.dataSourceForPrimarySelection, "text/plain");
|
|
|
|
|
zwp_primary_selection_source_v1_offer(_glfw.wl.dataSourceForPrimarySelection, "text/plain;charset=utf-8");
|
|
|
|
|
zwp_primary_selection_source_v1_offer(_glfw.wl.dataSourceForPrimarySelection, "TEXT");
|
|
|
|
|
zwp_primary_selection_source_v1_offer(_glfw.wl.dataSourceForPrimarySelection, "STRING");
|
|
|
|
|
zwp_primary_selection_source_v1_offer(_glfw.wl.dataSourceForPrimarySelection, "UTF8_STRING");
|
2018-10-25 19:22:47 +03:00
|
|
|
|
struct wl_callback *callback = wl_display_sync(_glfw.wl.display);
|
2019-07-01 08:12:07 +03:00
|
|
|
|
static const struct wl_callback_listener primary_selection_copy_callback_listener = {.done = primary_selection_copy_callback_done};
|
2018-10-25 19:22:47 +03:00
|
|
|
|
wl_callback_add_listener(callback, &primary_selection_copy_callback_listener, _glfw.wl.dataSourceForPrimarySelection);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char* _glfwPlatformGetPrimarySelectionString(void)
|
|
|
|
|
{
|
|
|
|
|
if (_glfw.wl.dataSourceForPrimarySelection != NULL) return _glfw.wl.primarySelectionString;
|
|
|
|
|
|
2020-03-19 10:30:52 +03:00
|
|
|
|
for (size_t i = 0; i < arraysz(_glfw.wl.dataOffers); i++) {
|
|
|
|
|
_GLFWWaylandDataOffer *d = _glfw.wl.dataOffers + i;
|
|
|
|
|
if (d->id && d->is_primary && d->offer_type == PRIMARY_SELECTION && d->plain_text_mime) {
|
|
|
|
|
if (d->is_self_offer) {
|
2018-10-25 19:22:47 +03:00
|
|
|
|
return _glfw.wl.primarySelectionString;
|
|
|
|
|
}
|
|
|
|
|
free(_glfw.wl.pasteString);
|
2020-03-19 10:30:52 +03:00
|
|
|
|
_glfw.wl.pasteString = read_primary_selection_offer(d->id, d->plain_text_mime);
|
2018-10-25 19:22:47 +03:00
|
|
|
|
return _glfw.wl.pasteString;
|
2018-09-05 15:24:26 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void _glfwPlatformGetRequiredInstanceExtensions(char** extensions)
|
|
|
|
|
{
|
|
|
|
|
if (!_glfw.vk.KHR_surface || !_glfw.vk.KHR_wayland_surface)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
extensions[0] = "VK_KHR_surface";
|
|
|
|
|
extensions[1] = "VK_KHR_wayland_surface";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int _glfwPlatformGetPhysicalDevicePresentationSupport(VkInstance instance,
|
|
|
|
|
VkPhysicalDevice device,
|
|
|
|
|
uint32_t queuefamily)
|
|
|
|
|
{
|
|
|
|
|
PFN_vkGetPhysicalDeviceWaylandPresentationSupportKHR
|
|
|
|
|
vkGetPhysicalDeviceWaylandPresentationSupportKHR =
|
|
|
|
|
(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);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VkResult _glfwPlatformCreateWindowSurface(VkInstance instance,
|
|
|
|
|
_GLFWwindow* window,
|
|
|
|
|
const VkAllocationCallbacks* allocator,
|
|
|
|
|
VkSurfaceKHR* surface)
|
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-11 07:43:38 +03:00
|
|
|
|
void
|
|
|
|
|
_glfwPlatformUpdateIMEState(_GLFWwindow *w, int which, int a, int b, int c, int d) {
|
|
|
|
|
glfw_xkb_update_ime_state(w, &_glfw.wl.xkb, which, a, b, c, d);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-26 05:08:47 +03:00
|
|
|
|
static void
|
2019-07-01 08:12:07 +03:00
|
|
|
|
frame_handle_redraw(void *data, struct wl_callback *callback, uint32_t time UNUSED) {
|
2018-10-26 06:19:17 +03:00
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) data;
|
|
|
|
|
if (callback == window->wl.frameCallbackData.current_wl_callback) {
|
|
|
|
|
window->wl.frameCallbackData.callback(window->wl.frameCallbackData.id);
|
|
|
|
|
window->wl.frameCallbackData.current_wl_callback = NULL;
|
|
|
|
|
}
|
2018-10-26 05:08:47 +03:00
|
|
|
|
wl_callback_destroy(callback);
|
|
|
|
|
}
|
2017-11-19 20:54:36 +03:00
|
|
|
|
|
2019-06-12 15:55:32 +03:00
|
|
|
|
|
2017-11-19 20:54:36 +03:00
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
////// GLFW native API //////
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
GLFWAPI struct wl_display* glfwGetWaylandDisplay(void)
|
|
|
|
|
{
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
return _glfw.wl.display;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GLFWAPI struct wl_surface* glfwGetWaylandWindow(GLFWwindow* handle)
|
|
|
|
|
{
|
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
return window->wl.surface;
|
|
|
|
|
}
|
2018-06-22 07:51:51 +03:00
|
|
|
|
|
2019-10-16 03:25:20 +03:00
|
|
|
|
GLFWAPI int glfwGetNativeKeyForName(const char* keyName, bool caseSensitive) {
|
2018-06-22 07:51:51 +03:00
|
|
|
|
return glfw_xkb_keysym_from_name(keyName, caseSensitive);
|
|
|
|
|
}
|
2018-10-26 05:08:47 +03:00
|
|
|
|
|
|
|
|
|
GLFWAPI void glfwRequestWaylandFrameEvent(GLFWwindow *handle, unsigned long long id, void(*callback)(unsigned long long id)) {
|
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
|
|
|
|
static const struct wl_callback_listener frame_listener = { .done = frame_handle_redraw };
|
2018-10-26 06:19:17 +03:00
|
|
|
|
if (window->wl.frameCallbackData.current_wl_callback) wl_callback_destroy(window->wl.frameCallbackData.current_wl_callback);
|
|
|
|
|
window->wl.frameCallbackData.id = id;
|
|
|
|
|
window->wl.frameCallbackData.callback = callback;
|
|
|
|
|
window->wl.frameCallbackData.current_wl_callback = wl_surface_frame(window->wl.surface);
|
2018-10-26 07:42:54 +03:00
|
|
|
|
if (window->wl.frameCallbackData.current_wl_callback) {
|
|
|
|
|
wl_callback_add_listener(window->wl.frameCallbackData.current_wl_callback, &frame_listener, window);
|
|
|
|
|
wl_surface_commit(window->wl.surface);
|
|
|
|
|
}
|
2018-10-26 05:08:47 +03:00
|
|
|
|
}
|
2019-02-02 11:18:26 +03:00
|
|
|
|
|
2019-02-03 11:23:26 +03:00
|
|
|
|
GLFWAPI unsigned long long glfwDBusUserNotify(const char *app_name, const char* icon, const char *summary, const char *body, const char *action_name, int32_t timeout, GLFWDBusnotificationcreatedfun callback, void *data) {
|
|
|
|
|
return glfw_dbus_send_user_notification(app_name, icon, summary, body, action_name, timeout, callback, data);
|
2019-02-02 11:18:26 +03:00
|
|
|
|
}
|
2019-02-03 10:50:07 +03:00
|
|
|
|
|
|
|
|
|
GLFWAPI void glfwDBusSetUserNotificationHandler(GLFWDBusnotificationactivatedfun handler) {
|
|
|
|
|
glfw_dbus_set_user_notification_activated_handler(handler);
|
|
|
|
|
}
|