2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-06-30 11:32:54 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2016-06-30 11:32:54 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2022-02-23 13:27:05 +00:00
|
|
|
#include <config-kwin.h>
|
2022-03-23 10:13:38 +00:00
|
|
|
|
2023-07-03 19:28:19 +00:00
|
|
|
#include <QSignalSpy>
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
#include "kwin_wayland_test.h"
|
2022-03-23 10:13:38 +00:00
|
|
|
|
2022-02-28 18:58:35 +00:00
|
|
|
#if KWIN_BUILD_SCREENLOCKER
|
2016-08-16 08:23:37 +00:00
|
|
|
#include "screenlockerwatcher.h"
|
2022-02-23 13:27:05 +00:00
|
|
|
#endif
|
2022-03-23 10:13:38 +00:00
|
|
|
#include "inputmethod.h"
|
2022-04-22 09:27:33 +00:00
|
|
|
#include "wayland/display.h"
|
2016-07-01 07:54:44 +00:00
|
|
|
#include "wayland_server.h"
|
2020-07-22 18:35:41 +00:00
|
|
|
#include "workspace.h"
|
2023-02-21 02:37:30 +00:00
|
|
|
#include <wayland-zkde-screencast-unstable-v1-client-protocol.h>
|
2016-06-30 11:32:54 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <KWayland/Client/appmenu.h>
|
2016-06-30 11:32:54 +00:00
|
|
|
#include <KWayland/Client/compositor.h>
|
|
|
|
#include <KWayland/Client/connection_thread.h>
|
|
|
|
#include <KWayland/Client/event_queue.h>
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <KWayland/Client/output.h>
|
2016-06-30 11:32:54 +00:00
|
|
|
#include <KWayland/Client/plasmashell.h>
|
|
|
|
#include <KWayland/Client/plasmawindowmanagement.h>
|
2023-05-05 11:14:34 +00:00
|
|
|
#include <KWayland/Client/pointer.h>
|
2016-11-25 06:17:43 +00:00
|
|
|
#include <KWayland/Client/pointerconstraints.h>
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <KWayland/Client/registry.h>
|
2016-06-30 11:32:54 +00:00
|
|
|
#include <KWayland/Client/seat.h>
|
2018-06-07 09:08:15 +00:00
|
|
|
#include <KWayland/Client/shadow.h>
|
2016-06-30 11:32:54 +00:00
|
|
|
#include <KWayland/Client/shm_pool.h>
|
2019-02-21 22:25:19 +00:00
|
|
|
#include <KWayland/Client/subcompositor.h>
|
|
|
|
#include <KWayland/Client/subsurface.h>
|
2016-06-30 11:32:54 +00:00
|
|
|
#include <KWayland/Client/surface.h>
|
2020-09-01 08:58:46 +00:00
|
|
|
#include <KWayland/Client/textinput.h>
|
2016-06-30 11:32:54 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
// screenlocker
|
2022-02-28 18:58:35 +00:00
|
|
|
#if KWIN_BUILD_SCREENLOCKER
|
2016-08-16 06:19:45 +00:00
|
|
|
#include <KScreenLocker/KsldApp>
|
2022-02-23 13:27:05 +00:00
|
|
|
#endif
|
2016-08-16 06:19:45 +00:00
|
|
|
|
2023-02-03 13:29:21 +00:00
|
|
|
#include <QFutureWatcher>
|
2016-06-30 11:32:54 +00:00
|
|
|
#include <QThread>
|
2023-10-22 05:09:07 +00:00
|
|
|
#include <QtConcurrentRun>
|
2016-06-30 11:32:54 +00:00
|
|
|
|
2016-12-03 13:31:14 +00:00
|
|
|
// system
|
|
|
|
#include <sys/socket.h>
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <sys/types.h>
|
2016-12-03 13:31:14 +00:00
|
|
|
#include <unistd.h>
|
2023-04-15 19:28:12 +00:00
|
|
|
#include <xf86drm.h>
|
2016-12-03 13:31:14 +00:00
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
namespace Test
|
|
|
|
{
|
|
|
|
|
2020-08-07 19:01:42 +00:00
|
|
|
LayerShellV1::~LayerShellV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
LayerSurfaceV1::~LayerSurfaceV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayerSurfaceV1::zwlr_layer_surface_v1_configure(uint32_t serial, uint32_t width, uint32_t height)
|
|
|
|
{
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT configureRequested(serial, QSize(width, height));
|
2020-08-07 19:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void LayerSurfaceV1::zwlr_layer_surface_v1_closed()
|
|
|
|
{
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT closeRequested();
|
2020-08-07 19:01:42 +00:00
|
|
|
}
|
|
|
|
|
2020-09-02 09:27:08 +00:00
|
|
|
XdgShell::~XdgShell()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
XdgSurface::XdgSurface(XdgShell *shell, KWayland::Client::Surface *surface, QObject *parent)
|
2020-09-02 09:27:08 +00:00
|
|
|
: QObject(parent)
|
|
|
|
, QtWayland::xdg_surface(shell->get_xdg_surface(*surface))
|
|
|
|
, m_surface(surface)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XdgSurface::~XdgSurface()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
KWayland::Client::Surface *XdgSurface::surface() const
|
2020-09-02 09:27:08 +00:00
|
|
|
{
|
|
|
|
return m_surface;
|
|
|
|
}
|
|
|
|
|
|
|
|
void XdgSurface::xdg_surface_configure(uint32_t serial)
|
|
|
|
{
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT configureRequested(serial);
|
2020-09-02 09:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
XdgToplevel::XdgToplevel(XdgSurface *surface, QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, QtWayland::xdg_toplevel(surface->get_toplevel())
|
|
|
|
, m_xdgSurface(surface)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XdgToplevel::~XdgToplevel()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
XdgSurface *XdgToplevel::xdgSurface() const
|
|
|
|
{
|
2022-08-01 21:29:02 +00:00
|
|
|
return m_xdgSurface.get();
|
2020-09-02 09:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void XdgToplevel::xdg_toplevel_configure(int32_t width, int32_t height, wl_array *states)
|
|
|
|
{
|
|
|
|
States requestedStates;
|
|
|
|
|
|
|
|
const uint32_t *stateData = static_cast<const uint32_t *>(states->data);
|
|
|
|
const size_t stateCount = states->size / sizeof(uint32_t);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < stateCount; ++i) {
|
|
|
|
switch (stateData[i]) {
|
|
|
|
case QtWayland::xdg_toplevel::state_maximized:
|
|
|
|
requestedStates |= State::Maximized;
|
|
|
|
break;
|
|
|
|
case QtWayland::xdg_toplevel::state_fullscreen:
|
|
|
|
requestedStates |= State::Fullscreen;
|
|
|
|
break;
|
|
|
|
case QtWayland::xdg_toplevel::state_resizing:
|
|
|
|
requestedStates |= State::Resizing;
|
|
|
|
break;
|
|
|
|
case QtWayland::xdg_toplevel::state_activated:
|
|
|
|
requestedStates |= State::Activated;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT configureRequested(QSize(width, height), requestedStates);
|
2020-09-02 09:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void XdgToplevel::xdg_toplevel_close()
|
|
|
|
{
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT closeRequested();
|
2020-09-02 09:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
XdgPositioner::XdgPositioner(XdgShell *shell)
|
|
|
|
: QtWayland::xdg_positioner(shell->create_positioner())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XdgPositioner::~XdgPositioner()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
XdgPopup::XdgPopup(XdgSurface *surface, XdgSurface *parentSurface, XdgPositioner *positioner, QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, QtWayland::xdg_popup(surface->get_popup(parentSurface->object(), positioner->object()))
|
|
|
|
, m_xdgSurface(surface)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XdgPopup::~XdgPopup()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
XdgSurface *XdgPopup::xdgSurface() const
|
|
|
|
{
|
2022-08-01 21:29:02 +00:00
|
|
|
return m_xdgSurface.get();
|
2020-09-02 09:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void XdgPopup::xdg_popup_configure(int32_t x, int32_t y, int32_t width, int32_t height)
|
|
|
|
{
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT configureRequested(QRect(x, y, width, height));
|
2020-09-02 09:27:08 +00:00
|
|
|
}
|
|
|
|
|
2021-05-11 05:26:51 +00:00
|
|
|
void XdgPopup::xdg_popup_popup_done()
|
|
|
|
{
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT doneReceived();
|
2021-05-11 05:26:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
XdgDecorationManagerV1::~XdgDecorationManagerV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
XdgToplevelDecorationV1::XdgToplevelDecorationV1(XdgDecorationManagerV1 *manager,
|
|
|
|
XdgToplevel *toplevel, QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, QtWayland::zxdg_toplevel_decoration_v1(manager->get_toplevel_decoration(toplevel->object()))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
XdgToplevelDecorationV1::~XdgToplevelDecorationV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
void XdgToplevelDecorationV1::zxdg_toplevel_decoration_v1_configure(uint32_t m)
|
|
|
|
{
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT configureRequested(mode(m));
|
2021-05-11 05:26:51 +00:00
|
|
|
}
|
|
|
|
|
2021-05-13 19:59:22 +00:00
|
|
|
IdleInhibitManagerV1::~IdleInhibitManagerV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
IdleInhibitorV1::IdleInhibitorV1(IdleInhibitManagerV1 *manager, KWayland::Client::Surface *surface)
|
|
|
|
: QtWayland::zwp_idle_inhibitor_v1(manager->create_inhibitor(*surface))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
IdleInhibitorV1::~IdleInhibitorV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
2023-03-08 08:07:39 +00:00
|
|
|
ScreenEdgeManagerV1::~ScreenEdgeManagerV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoHideScreenEdgeV1::AutoHideScreenEdgeV1(ScreenEdgeManagerV1 *manager, KWayland::Client::Surface *surface, uint32_t border)
|
|
|
|
: QtWayland::kde_auto_hide_screen_edge_v1(manager->get_auto_hide_screen_edge(border, *surface))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
AutoHideScreenEdgeV1::~AutoHideScreenEdgeV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
2023-05-05 11:14:34 +00:00
|
|
|
CursorShapeManagerV1::~CursorShapeManagerV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
CursorShapeDeviceV1::CursorShapeDeviceV1(CursorShapeManagerV1 *manager, KWayland::Client::Pointer *pointer)
|
|
|
|
: QtWayland::wp_cursor_shape_device_v1(manager->get_pointer(*pointer))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CursorShapeDeviceV1::~CursorShapeDeviceV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
2023-09-22 11:29:17 +00:00
|
|
|
FakeInput::~FakeInput()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
2023-11-13 09:51:28 +00:00
|
|
|
SecurityContextManagerV1::~SecurityContextManagerV1()
|
|
|
|
{
|
|
|
|
destroy();
|
|
|
|
}
|
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
static struct
|
|
|
|
{
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::ConnectionThread *connection = nullptr;
|
|
|
|
KWayland::Client::EventQueue *queue = nullptr;
|
2020-07-22 18:35:41 +00:00
|
|
|
KWayland::Client::Compositor *compositor = nullptr;
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::SubCompositor *subCompositor = nullptr;
|
|
|
|
KWayland::Client::ShadowManager *shadowManager = nullptr;
|
2020-09-02 09:27:08 +00:00
|
|
|
XdgShell *xdgShell = nullptr;
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::ShmPool *shm = nullptr;
|
|
|
|
KWayland::Client::Seat *seat = nullptr;
|
|
|
|
KWayland::Client::PlasmaShell *plasmaShell = nullptr;
|
|
|
|
KWayland::Client::PlasmaWindowManagement *windowManagement = nullptr;
|
|
|
|
KWayland::Client::PointerConstraints *pointerConstraints = nullptr;
|
|
|
|
KWayland::Client::Registry *registry = nullptr;
|
2021-09-08 09:04:44 +00:00
|
|
|
WaylandOutputManagementV2 *outputManagementV2 = nullptr;
|
2016-06-30 11:32:54 +00:00
|
|
|
QThread *thread = nullptr;
|
2023-10-19 06:50:15 +00:00
|
|
|
QList<KWayland::Client::Output *> outputs;
|
|
|
|
QList<WaylandOutputDeviceV2 *> outputDevicesV2;
|
2021-05-13 19:59:22 +00:00
|
|
|
IdleInhibitManagerV1 *idleInhibitManagerV1 = nullptr;
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::AppMenuManager *appMenu = nullptr;
|
2021-05-11 05:26:51 +00:00
|
|
|
XdgDecorationManagerV1 *xdgDecorationManagerV1 = nullptr;
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::TextInputManager *textInputManager = nullptr;
|
2020-09-01 08:58:46 +00:00
|
|
|
QtWayland::zwp_input_panel_v1 *inputPanelV1 = nullptr;
|
|
|
|
MockInputMethod *inputMethodV1 = nullptr;
|
|
|
|
QtWayland::zwp_input_method_context_v1 *inputMethodContextV1 = nullptr;
|
2020-08-07 19:01:42 +00:00
|
|
|
LayerShellV1 *layerShellV1 = nullptr;
|
2020-09-25 06:51:04 +00:00
|
|
|
TextInputManagerV3 *textInputManagerV3 = nullptr;
|
2022-06-30 22:23:35 +00:00
|
|
|
FractionalScaleManagerV1 *fractionalScaleManagerV1 = nullptr;
|
2023-02-21 02:37:30 +00:00
|
|
|
ScreencastingV1 *screencastingV1 = nullptr;
|
2023-03-08 08:07:39 +00:00
|
|
|
ScreenEdgeManagerV1 *screenEdgeManagerV1 = nullptr;
|
2023-05-05 11:14:34 +00:00
|
|
|
CursorShapeManagerV1 *cursorShapeManagerV1 = nullptr;
|
2023-09-21 13:35:41 +00:00
|
|
|
FakeInput *fakeInput = nullptr;
|
2023-11-13 09:51:28 +00:00
|
|
|
SecurityContextManagerV1 *securityContextManagerV1 = nullptr;
|
2016-06-30 11:32:54 +00:00
|
|
|
} s_waylandConnection;
|
|
|
|
|
2021-12-23 08:42:00 +00:00
|
|
|
MockInputMethod *inputMethod()
|
|
|
|
{
|
|
|
|
return s_waylandConnection.inputMethodV1;
|
|
|
|
}
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
KWayland::Client::Surface *inputPanelSurface()
|
2021-07-20 23:37:58 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.inputMethodV1->inputPanelSurface();
|
|
|
|
}
|
|
|
|
|
2020-09-01 08:58:46 +00:00
|
|
|
MockInputMethod::MockInputMethod(struct wl_registry *registry, int id, int version)
|
|
|
|
: QtWayland::zwp_input_method_v1(registry, id, version)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
MockInputMethod::~MockInputMethod()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void MockInputMethod::zwp_input_method_v1_activate(struct ::zwp_input_method_context_v1 *context)
|
|
|
|
{
|
|
|
|
if (!m_inputSurface) {
|
|
|
|
m_inputSurface = Test::createSurface();
|
2024-01-11 06:37:51 +00:00
|
|
|
m_inputMethodSurface = Test::createInputPanelSurfaceV1(m_inputSurface.get(), s_waylandConnection.outputs.first(), m_mode);
|
2020-09-01 08:58:46 +00:00
|
|
|
}
|
2021-12-23 08:42:00 +00:00
|
|
|
m_context = context;
|
2024-01-11 06:37:51 +00:00
|
|
|
|
|
|
|
switch (m_mode) {
|
|
|
|
case Mode::TopLevel:
|
|
|
|
Test::render(m_inputSurface.get(), QSize(1280, 400), Qt::blue);
|
|
|
|
break;
|
|
|
|
case Mode::Overlay:
|
|
|
|
Test::render(m_inputSurface.get(), QSize(200, 50), Qt::blue);
|
|
|
|
break;
|
|
|
|
}
|
2021-12-23 08:42:00 +00:00
|
|
|
|
|
|
|
Q_EMIT activate();
|
2020-09-01 08:58:46 +00:00
|
|
|
}
|
|
|
|
|
2024-01-11 06:37:51 +00:00
|
|
|
void MockInputMethod::setMode(MockInputMethod::Mode mode)
|
|
|
|
{
|
|
|
|
m_mode = mode;
|
|
|
|
}
|
|
|
|
|
2020-09-01 08:58:46 +00:00
|
|
|
void MockInputMethod::zwp_input_method_v1_deactivate(struct ::zwp_input_method_context_v1 *context)
|
|
|
|
{
|
2021-12-23 08:42:00 +00:00
|
|
|
QCOMPARE(context, m_context);
|
2020-09-01 08:58:46 +00:00
|
|
|
zwp_input_method_context_v1_destroy(context);
|
2021-12-23 08:42:00 +00:00
|
|
|
m_context = nullptr;
|
2020-09-01 08:58:46 +00:00
|
|
|
|
|
|
|
if (m_inputSurface) {
|
|
|
|
m_inputSurface->release();
|
|
|
|
m_inputSurface->destroy();
|
2022-08-16 11:43:33 +00:00
|
|
|
m_inputSurface.reset();
|
2020-09-01 08:58:46 +00:00
|
|
|
delete m_inputMethodSurface;
|
|
|
|
m_inputMethodSurface = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-03 13:31:14 +00:00
|
|
|
bool setupWaylandConnection(AdditionalWaylandInterfaces flags)
|
2016-06-30 11:32:54 +00:00
|
|
|
{
|
|
|
|
if (s_waylandConnection.connection) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-12-03 13:31:14 +00:00
|
|
|
|
|
|
|
int sx[2];
|
|
|
|
if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, sx) < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
KWin::waylandServer()->display()->createClient(sx[0]);
|
2016-06-30 11:32:54 +00:00
|
|
|
// setup connection
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.connection = new KWayland::Client::ConnectionThread;
|
|
|
|
QSignalSpy connectedSpy(s_waylandConnection.connection, &KWayland::Client::ConnectionThread::connected);
|
2016-06-30 11:32:54 +00:00
|
|
|
if (!connectedSpy.isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-12-03 13:31:14 +00:00
|
|
|
s_waylandConnection.connection->setSocketFd(sx[1]);
|
2016-06-30 11:32:54 +00:00
|
|
|
|
|
|
|
s_waylandConnection.thread = new QThread(kwinApp());
|
|
|
|
s_waylandConnection.connection->moveToThread(s_waylandConnection.thread);
|
|
|
|
s_waylandConnection.thread->start();
|
|
|
|
|
|
|
|
s_waylandConnection.connection->initConnection();
|
|
|
|
if (!connectedSpy.wait()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.queue = new KWayland::Client::EventQueue;
|
2016-06-30 11:32:54 +00:00
|
|
|
s_waylandConnection.queue->setup(s_waylandConnection.connection);
|
|
|
|
if (!s_waylandConnection.queue->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::Registry *registry = new KWayland::Client::Registry;
|
2017-08-18 14:15:19 +00:00
|
|
|
s_waylandConnection.registry = registry;
|
|
|
|
registry->setEventQueue(s_waylandConnection.queue);
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
QObject::connect(registry, &KWayland::Client::Registry::outputAnnounced, [=](quint32 name, quint32 version) {
|
2022-04-14 12:27:50 +00:00
|
|
|
KWayland::Client::Output *output = registry->createOutput(name, version, s_waylandConnection.registry);
|
2017-08-18 14:15:19 +00:00
|
|
|
s_waylandConnection.outputs << output;
|
2022-04-14 12:27:50 +00:00
|
|
|
QObject::connect(output, &KWayland::Client::Output::removed, [=]() {
|
2017-08-18 14:15:19 +00:00
|
|
|
output->deleteLater();
|
|
|
|
s_waylandConnection.outputs.removeOne(output);
|
2020-08-20 08:53:33 +00:00
|
|
|
});
|
2022-04-14 12:27:50 +00:00
|
|
|
QObject::connect(output, &KWayland::Client::Output::destroyed, [=]() {
|
2020-08-20 08:53:33 +00:00
|
|
|
s_waylandConnection.outputs.removeOne(output);
|
2017-08-18 14:15:19 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
QObject::connect(registry, &KWayland::Client::Registry::interfaceAnnounced, [=](const QByteArray &interface, quint32 name, quint32 version) {
|
2020-09-01 08:58:46 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::InputMethodV1) {
|
|
|
|
if (interface == QByteArrayLiteral("zwp_input_method_v1")) {
|
|
|
|
s_waylandConnection.inputMethodV1 = new MockInputMethod(*registry, name, version);
|
|
|
|
} else if (interface == QByteArrayLiteral("zwp_input_panel_v1")) {
|
|
|
|
s_waylandConnection.inputPanelV1 = new QtWayland::zwp_input_panel_v1(*registry, name, version);
|
|
|
|
}
|
|
|
|
}
|
2020-08-07 19:01:42 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::LayerShellV1) {
|
|
|
|
if (interface == QByteArrayLiteral("zwlr_layer_shell_v1")) {
|
|
|
|
s_waylandConnection.layerShellV1 = new LayerShellV1();
|
|
|
|
s_waylandConnection.layerShellV1->init(*registry, name, version);
|
|
|
|
}
|
|
|
|
}
|
2020-09-25 06:51:04 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::TextInputManagerV3) {
|
|
|
|
// do something
|
|
|
|
if (interface == QByteArrayLiteral("zwp_text_input_manager_v3")) {
|
|
|
|
s_waylandConnection.textInputManagerV3 = new TextInputManagerV3();
|
|
|
|
s_waylandConnection.textInputManagerV3->init(*registry, name, version);
|
|
|
|
}
|
|
|
|
}
|
2020-09-02 09:27:08 +00:00
|
|
|
if (interface == QByteArrayLiteral("xdg_wm_base")) {
|
|
|
|
s_waylandConnection.xdgShell = new XdgShell();
|
|
|
|
s_waylandConnection.xdgShell->init(*registry, name, version);
|
|
|
|
}
|
2021-05-11 05:26:51 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::XdgDecorationV1) {
|
|
|
|
if (interface == zxdg_decoration_manager_v1_interface.name) {
|
|
|
|
s_waylandConnection.xdgDecorationManagerV1 = new XdgDecorationManagerV1();
|
|
|
|
s_waylandConnection.xdgDecorationManagerV1->init(*registry, name, version);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2021-05-13 19:59:22 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::IdleInhibitV1) {
|
|
|
|
if (interface == zwp_idle_inhibit_manager_v1_interface.name) {
|
|
|
|
s_waylandConnection.idleInhibitManagerV1 = new IdleInhibitManagerV1();
|
|
|
|
s_waylandConnection.idleInhibitManagerV1->init(*registry, name, version);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2021-09-08 09:04:44 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::OutputDeviceV2) {
|
|
|
|
if (interface == kde_output_device_v2_interface.name) {
|
|
|
|
WaylandOutputDeviceV2 *device = new WaylandOutputDeviceV2(name);
|
|
|
|
device->init(*registry, name, version);
|
|
|
|
|
|
|
|
s_waylandConnection.outputDevicesV2 << device;
|
|
|
|
|
|
|
|
QObject::connect(device, &WaylandOutputDeviceV2::destroyed, [=]() {
|
|
|
|
s_waylandConnection.outputDevicesV2.removeOne(device);
|
|
|
|
device->deleteLater();
|
|
|
|
});
|
|
|
|
|
|
|
|
QObject::connect(registry, &KWayland::Client::Registry::interfaceRemoved, device, [name, device](const quint32 &interfaceName) {
|
|
|
|
if (name == interfaceName) {
|
|
|
|
s_waylandConnection.outputDevicesV2.removeOne(device);
|
|
|
|
device->deleteLater();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flags & AdditionalWaylandInterface::OutputManagementV2) {
|
|
|
|
if (interface == kde_output_management_v2_interface.name) {
|
|
|
|
s_waylandConnection.outputManagementV2 = new WaylandOutputManagementV2(*registry, name, version);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2022-06-30 22:23:35 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::FractionalScaleManagerV1) {
|
|
|
|
if (interface == wp_fractional_scale_manager_v1_interface.name) {
|
|
|
|
s_waylandConnection.fractionalScaleManagerV1 = new FractionalScaleManagerV1();
|
|
|
|
s_waylandConnection.fractionalScaleManagerV1->init(*registry, name, version);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2023-02-21 02:37:30 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::ScreencastingV1) {
|
|
|
|
if (interface == zkde_screencast_unstable_v1_interface.name) {
|
|
|
|
s_waylandConnection.screencastingV1 = new ScreencastingV1();
|
|
|
|
s_waylandConnection.screencastingV1->init(*registry, name, version);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2023-03-08 08:07:39 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::ScreenEdgeV1) {
|
|
|
|
if (interface == kde_screen_edge_manager_v1_interface.name) {
|
|
|
|
s_waylandConnection.screenEdgeManagerV1 = new ScreenEdgeManagerV1();
|
|
|
|
s_waylandConnection.screenEdgeManagerV1->init(*registry, name, version);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2023-09-21 13:35:41 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::CursorShapeV1) {
|
2023-05-05 11:14:34 +00:00
|
|
|
if (interface == wp_cursor_shape_manager_v1_interface.name) {
|
|
|
|
s_waylandConnection.cursorShapeManagerV1 = new CursorShapeManagerV1();
|
|
|
|
s_waylandConnection.cursorShapeManagerV1->init(*registry, name, version);
|
|
|
|
}
|
|
|
|
}
|
2023-09-21 13:35:41 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::FakeInput) {
|
|
|
|
if (interface == org_kde_kwin_fake_input_interface.name) {
|
|
|
|
s_waylandConnection.fakeInput = new FakeInput();
|
|
|
|
s_waylandConnection.fakeInput->init(*registry, name, version);
|
|
|
|
}
|
|
|
|
}
|
2023-11-13 09:51:28 +00:00
|
|
|
if (flags & AdditionalWaylandInterface::SecurityContextManagerV1) {
|
|
|
|
if (interface == wp_security_context_manager_v1_interface.name) {
|
|
|
|
s_waylandConnection.securityContextManagerV1 = new SecurityContextManagerV1();
|
|
|
|
s_waylandConnection.securityContextManagerV1->init(*registry, name, version);
|
|
|
|
}
|
|
|
|
}
|
2020-09-01 08:58:46 +00:00
|
|
|
});
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
QSignalSpy allAnnounced(registry, &KWayland::Client::Registry::interfacesAnnounced);
|
2016-06-30 11:32:54 +00:00
|
|
|
if (!allAnnounced.isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-08-18 14:15:19 +00:00
|
|
|
registry->create(s_waylandConnection.connection);
|
|
|
|
if (!registry->isValid()) {
|
2016-06-30 11:32:54 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-08-18 14:15:19 +00:00
|
|
|
registry->setup();
|
2016-06-30 11:32:54 +00:00
|
|
|
if (!allAnnounced.wait()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.compositor = registry->createCompositor(registry->interface(KWayland::Client::Registry::Interface::Compositor).name, registry->interface(KWayland::Client::Registry::Interface::Compositor).version);
|
2016-06-30 11:32:54 +00:00
|
|
|
if (!s_waylandConnection.compositor->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.subCompositor = registry->createSubCompositor(registry->interface(KWayland::Client::Registry::Interface::SubCompositor).name, registry->interface(KWayland::Client::Registry::Interface::SubCompositor).version);
|
2019-02-21 22:25:19 +00:00
|
|
|
if (!s_waylandConnection.subCompositor->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.shm = registry->createShmPool(registry->interface(KWayland::Client::Registry::Interface::Shm).name, registry->interface(KWayland::Client::Registry::Interface::Shm).version);
|
2016-06-30 11:32:54 +00:00
|
|
|
if (!s_waylandConnection.shm->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (flags.testFlag(AdditionalWaylandInterface::Seat)) {
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.seat = registry->createSeat(registry->interface(KWayland::Client::Registry::Interface::Seat).name, registry->interface(KWayland::Client::Registry::Interface::Seat).version);
|
2016-06-30 11:32:54 +00:00
|
|
|
if (!s_waylandConnection.seat->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2018-06-07 09:08:15 +00:00
|
|
|
if (flags.testFlag(AdditionalWaylandInterface::ShadowManager)) {
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.shadowManager = registry->createShadowManager(registry->interface(KWayland::Client::Registry::Interface::Shadow).name,
|
|
|
|
registry->interface(KWayland::Client::Registry::Interface::Shadow).version);
|
2018-06-07 09:08:15 +00:00
|
|
|
if (!s_waylandConnection.shadowManager->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-06-30 11:32:54 +00:00
|
|
|
if (flags.testFlag(AdditionalWaylandInterface::PlasmaShell)) {
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.plasmaShell = registry->createPlasmaShell(registry->interface(KWayland::Client::Registry::Interface::PlasmaShell).name,
|
|
|
|
registry->interface(KWayland::Client::Registry::Interface::PlasmaShell).version);
|
2016-06-30 11:32:54 +00:00
|
|
|
if (!s_waylandConnection.plasmaShell->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (flags.testFlag(AdditionalWaylandInterface::WindowManagement)) {
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.windowManagement = registry->createPlasmaWindowManagement(registry->interface(KWayland::Client::Registry::Interface::PlasmaWindowManagement).name,
|
|
|
|
registry->interface(KWayland::Client::Registry::Interface::PlasmaWindowManagement).version);
|
2016-06-30 11:32:54 +00:00
|
|
|
if (!s_waylandConnection.windowManagement->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-11-25 06:17:43 +00:00
|
|
|
if (flags.testFlag(AdditionalWaylandInterface::PointerConstraints)) {
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.pointerConstraints = registry->createPointerConstraints(registry->interface(KWayland::Client::Registry::Interface::PointerConstraintsUnstableV1).name,
|
|
|
|
registry->interface(KWayland::Client::Registry::Interface::PointerConstraintsUnstableV1).version);
|
2016-11-25 06:17:43 +00:00
|
|
|
if (!s_waylandConnection.pointerConstraints->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2017-12-22 14:22:24 +00:00
|
|
|
if (flags.testFlag(AdditionalWaylandInterface::AppMenu)) {
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.appMenu = registry->createAppMenuManager(registry->interface(KWayland::Client::Registry::Interface::AppMenu).name, registry->interface(KWayland::Client::Registry::Interface::AppMenu).version);
|
2017-12-22 14:22:24 +00:00
|
|
|
if (!s_waylandConnection.appMenu->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2020-09-01 08:58:46 +00:00
|
|
|
if (flags.testFlag(AdditionalWaylandInterface::TextInputManagerV2)) {
|
2022-11-07 21:33:00 +00:00
|
|
|
s_waylandConnection.textInputManager = registry->createTextInputManager(registry->interface(KWayland::Client::Registry::Interface::TextInputManagerUnstableV2).name, registry->interface(KWayland::Client::Registry::Interface::TextInputManagerUnstableV2).version);
|
2020-09-01 08:58:46 +00:00
|
|
|
if (!s_waylandConnection.textInputManager->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-06-30 11:32:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void destroyWaylandConnection()
|
|
|
|
{
|
|
|
|
delete s_waylandConnection.compositor;
|
|
|
|
s_waylandConnection.compositor = nullptr;
|
2019-02-21 22:25:19 +00:00
|
|
|
delete s_waylandConnection.subCompositor;
|
|
|
|
s_waylandConnection.subCompositor = nullptr;
|
2016-06-30 11:32:54 +00:00
|
|
|
delete s_waylandConnection.windowManagement;
|
|
|
|
s_waylandConnection.windowManagement = nullptr;
|
|
|
|
delete s_waylandConnection.plasmaShell;
|
|
|
|
s_waylandConnection.plasmaShell = nullptr;
|
|
|
|
delete s_waylandConnection.seat;
|
|
|
|
s_waylandConnection.seat = nullptr;
|
2016-11-25 06:17:43 +00:00
|
|
|
delete s_waylandConnection.pointerConstraints;
|
|
|
|
s_waylandConnection.pointerConstraints = nullptr;
|
2020-09-02 09:27:08 +00:00
|
|
|
delete s_waylandConnection.xdgShell;
|
|
|
|
s_waylandConnection.xdgShell = nullptr;
|
2018-06-07 09:08:15 +00:00
|
|
|
delete s_waylandConnection.shadowManager;
|
|
|
|
s_waylandConnection.shadowManager = nullptr;
|
2021-05-13 19:59:22 +00:00
|
|
|
delete s_waylandConnection.idleInhibitManagerV1;
|
|
|
|
s_waylandConnection.idleInhibitManagerV1 = nullptr;
|
2016-06-30 11:32:54 +00:00
|
|
|
delete s_waylandConnection.shm;
|
|
|
|
s_waylandConnection.shm = nullptr;
|
2017-08-18 14:15:19 +00:00
|
|
|
delete s_waylandConnection.registry;
|
|
|
|
s_waylandConnection.registry = nullptr;
|
2017-12-22 14:22:24 +00:00
|
|
|
delete s_waylandConnection.appMenu;
|
|
|
|
s_waylandConnection.appMenu = nullptr;
|
2021-05-11 05:26:51 +00:00
|
|
|
delete s_waylandConnection.xdgDecorationManagerV1;
|
|
|
|
s_waylandConnection.xdgDecorationManagerV1 = nullptr;
|
2020-09-01 08:58:46 +00:00
|
|
|
delete s_waylandConnection.textInputManager;
|
|
|
|
s_waylandConnection.textInputManager = nullptr;
|
|
|
|
delete s_waylandConnection.inputPanelV1;
|
|
|
|
s_waylandConnection.inputPanelV1 = nullptr;
|
2020-08-07 19:01:42 +00:00
|
|
|
delete s_waylandConnection.layerShellV1;
|
|
|
|
s_waylandConnection.layerShellV1 = nullptr;
|
2021-09-08 09:04:44 +00:00
|
|
|
delete s_waylandConnection.outputManagementV2;
|
|
|
|
s_waylandConnection.outputManagementV2 = nullptr;
|
2022-06-30 22:23:35 +00:00
|
|
|
delete s_waylandConnection.fractionalScaleManagerV1;
|
|
|
|
s_waylandConnection.fractionalScaleManagerV1 = nullptr;
|
2023-03-08 08:07:39 +00:00
|
|
|
delete s_waylandConnection.screencastingV1;
|
|
|
|
s_waylandConnection.screencastingV1 = nullptr;
|
|
|
|
delete s_waylandConnection.screenEdgeManagerV1;
|
|
|
|
s_waylandConnection.screenEdgeManagerV1 = nullptr;
|
2023-05-05 11:14:34 +00:00
|
|
|
delete s_waylandConnection.cursorShapeManagerV1;
|
|
|
|
s_waylandConnection.cursorShapeManagerV1 = nullptr;
|
2023-09-21 13:35:41 +00:00
|
|
|
delete s_waylandConnection.fakeInput;
|
|
|
|
s_waylandConnection.fakeInput = nullptr;
|
2023-11-13 09:51:28 +00:00
|
|
|
delete s_waylandConnection.securityContextManagerV1;
|
|
|
|
s_waylandConnection.securityContextManagerV1 = nullptr;
|
2022-09-08 08:27:20 +00:00
|
|
|
|
|
|
|
delete s_waylandConnection.queue; // Must be destroyed last
|
|
|
|
s_waylandConnection.queue = nullptr;
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
if (s_waylandConnection.thread) {
|
|
|
|
s_waylandConnection.connection->deleteLater();
|
|
|
|
s_waylandConnection.thread->quit();
|
|
|
|
s_waylandConnection.thread->wait();
|
|
|
|
delete s_waylandConnection.thread;
|
|
|
|
s_waylandConnection.thread = nullptr;
|
|
|
|
s_waylandConnection.connection = nullptr;
|
|
|
|
}
|
2021-01-14 08:21:59 +00:00
|
|
|
s_waylandConnection.outputs.clear();
|
2021-09-08 09:04:44 +00:00
|
|
|
s_waylandConnection.outputDevicesV2.clear();
|
2016-06-30 11:32:54 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::ConnectionThread *waylandConnection()
|
2016-06-30 11:32:54 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.connection;
|
|
|
|
}
|
|
|
|
|
2020-07-22 18:35:41 +00:00
|
|
|
KWayland::Client::Compositor *waylandCompositor()
|
2016-06-30 11:32:54 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.compositor;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::SubCompositor *waylandSubCompositor()
|
2019-02-21 22:25:19 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.subCompositor;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::ShadowManager *waylandShadowManager()
|
2018-06-07 09:08:15 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.shadowManager;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::ShmPool *waylandShmPool()
|
2016-06-30 11:32:54 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.shm;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::Seat *waylandSeat()
|
2016-06-30 11:32:54 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.seat;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::PlasmaShell *waylandPlasmaShell()
|
2016-06-30 11:32:54 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.plasmaShell;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::PlasmaWindowManagement *waylandWindowManagement()
|
2016-06-30 11:32:54 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.windowManagement;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::PointerConstraints *waylandPointerConstraints()
|
2016-11-25 06:17:43 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.pointerConstraints;
|
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::AppMenuManager *waylandAppMenuManager()
|
2017-12-22 14:22:24 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.appMenu;
|
|
|
|
}
|
|
|
|
|
2021-09-08 09:04:44 +00:00
|
|
|
KWin::Test::WaylandOutputManagementV2 *waylandOutputManagementV2()
|
2020-06-24 09:17:42 +00:00
|
|
|
{
|
2021-09-08 09:04:44 +00:00
|
|
|
return s_waylandConnection.outputManagementV2;
|
2020-06-24 09:17:42 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 21:33:00 +00:00
|
|
|
KWayland::Client::TextInputManager *waylandTextInputManager()
|
2020-09-01 08:58:46 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.textInputManager;
|
|
|
|
}
|
|
|
|
|
2020-09-25 06:51:04 +00:00
|
|
|
TextInputManagerV3 *waylandTextInputManagerV3()
|
|
|
|
{
|
|
|
|
return s_waylandConnection.textInputManagerV3;
|
|
|
|
}
|
|
|
|
|
2023-10-19 06:50:15 +00:00
|
|
|
QList<KWayland::Client::Output *> waylandOutputs()
|
2020-08-07 19:01:42 +00:00
|
|
|
{
|
|
|
|
return s_waylandConnection.outputs;
|
|
|
|
}
|
2019-01-01 17:37:18 +00:00
|
|
|
|
2022-09-05 12:29:56 +00:00
|
|
|
KWayland::Client::Output *waylandOutput(const QString &name)
|
|
|
|
{
|
|
|
|
for (KWayland::Client::Output *output : std::as_const(s_waylandConnection.outputs)) {
|
|
|
|
if (output->name() == name) {
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-02-21 02:37:30 +00:00
|
|
|
ScreencastingV1 *screencasting()
|
|
|
|
{
|
|
|
|
return s_waylandConnection.screencastingV1;
|
|
|
|
}
|
|
|
|
|
2023-10-19 06:50:15 +00:00
|
|
|
QList<KWin::Test::WaylandOutputDeviceV2 *> waylandOutputDevicesV2()
|
2021-01-14 08:21:59 +00:00
|
|
|
{
|
2021-09-08 09:04:44 +00:00
|
|
|
return s_waylandConnection.outputDevicesV2;
|
2021-01-14 08:21:59 +00:00
|
|
|
}
|
|
|
|
|
2023-09-21 13:35:41 +00:00
|
|
|
FakeInput *waylandFakeInput()
|
|
|
|
{
|
|
|
|
return s_waylandConnection.fakeInput;
|
|
|
|
}
|
|
|
|
|
2023-11-13 09:51:28 +00:00
|
|
|
SecurityContextManagerV1 *waylandSecurityContextManagerV1()
|
|
|
|
{
|
|
|
|
return s_waylandConnection.securityContextManagerV1;
|
|
|
|
}
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
bool waitForWaylandSurface(Window *window)
|
2021-05-15 08:43:37 +00:00
|
|
|
{
|
2022-04-23 19:51:16 +00:00
|
|
|
if (window->surface()) {
|
2021-05-15 08:43:37 +00:00
|
|
|
return true;
|
|
|
|
}
|
2022-04-23 19:51:16 +00:00
|
|
|
QSignalSpy surfaceChangedSpy(window, &Window::surfaceChanged);
|
2021-05-15 08:43:37 +00:00
|
|
|
return surfaceChangedSpy.wait();
|
|
|
|
}
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
bool waitForWaylandPointer()
|
|
|
|
{
|
|
|
|
if (!s_waylandConnection.seat) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-11-07 21:33:00 +00:00
|
|
|
QSignalSpy hasPointerSpy(s_waylandConnection.seat, &KWayland::Client::Seat::hasPointerChanged);
|
2016-06-30 11:32:54 +00:00
|
|
|
if (!hasPointerSpy.isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return hasPointerSpy.wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool waitForWaylandTouch()
|
|
|
|
{
|
|
|
|
if (!s_waylandConnection.seat) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-11-07 21:33:00 +00:00
|
|
|
QSignalSpy hasTouchSpy(s_waylandConnection.seat, &KWayland::Client::Seat::hasTouchChanged);
|
2016-06-30 11:32:54 +00:00
|
|
|
if (!hasTouchSpy.isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return hasTouchSpy.wait();
|
|
|
|
}
|
|
|
|
|
2016-08-11 09:17:09 +00:00
|
|
|
bool waitForWaylandKeyboard()
|
|
|
|
{
|
|
|
|
if (!s_waylandConnection.seat) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-11-07 21:33:00 +00:00
|
|
|
QSignalSpy hasKeyboardSpy(s_waylandConnection.seat, &KWayland::Client::Seat::hasKeyboardChanged);
|
2016-08-11 09:17:09 +00:00
|
|
|
if (!hasKeyboardSpy.isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return hasKeyboardSpy.wait();
|
|
|
|
}
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
void render(KWayland::Client::Surface *surface, const QSize &size, const QColor &color, const QImage::Format &format)
|
2016-06-30 11:32:54 +00:00
|
|
|
{
|
|
|
|
QImage img(size, format);
|
|
|
|
img.fill(color);
|
2017-07-31 14:12:37 +00:00
|
|
|
render(surface, img);
|
|
|
|
}
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
void render(KWayland::Client::Surface *surface, const QImage &img)
|
2017-07-31 14:12:37 +00:00
|
|
|
{
|
2016-06-30 11:32:54 +00:00
|
|
|
surface->attachBuffer(s_waylandConnection.shm->createBuffer(img));
|
2017-07-31 14:12:37 +00:00
|
|
|
surface->damage(QRect(QPoint(0, 0), img.size()));
|
2021-09-03 17:54:03 +00:00
|
|
|
surface->commit(KWayland::Client::Surface::CommitFlag::None);
|
2016-06-30 11:32:54 +00:00
|
|
|
}
|
|
|
|
|
2022-04-22 17:39:12 +00:00
|
|
|
Window *waitForWaylandWindowShown(int timeout)
|
2016-07-01 07:54:44 +00:00
|
|
|
{
|
2022-04-23 08:33:23 +00:00
|
|
|
QSignalSpy windowAddedSpy(workspace(), &Workspace::windowAdded);
|
|
|
|
if (!windowAddedSpy.isValid()) {
|
2016-07-01 07:54:44 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2022-04-23 08:33:23 +00:00
|
|
|
if (!windowAddedSpy.wait(timeout)) {
|
2016-07-01 07:54:44 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2022-04-23 08:33:23 +00:00
|
|
|
return windowAddedSpy.first().first().value<Window *>();
|
2016-07-01 07:54:44 +00:00
|
|
|
}
|
|
|
|
|
2022-04-22 17:39:12 +00:00
|
|
|
Window *renderAndWaitForShown(KWayland::Client::Surface *surface, const QSize &size, const QColor &color, const QImage::Format &format, int timeout)
|
2023-02-21 02:37:30 +00:00
|
|
|
{
|
|
|
|
QImage img(size, format);
|
|
|
|
img.fill(color);
|
|
|
|
return renderAndWaitForShown(surface, img, timeout);
|
|
|
|
}
|
|
|
|
|
|
|
|
Window *renderAndWaitForShown(KWayland::Client::Surface *surface, const QImage &img, int timeout)
|
2016-07-01 07:54:44 +00:00
|
|
|
{
|
2022-04-23 08:33:23 +00:00
|
|
|
QSignalSpy windowAddedSpy(workspace(), &Workspace::windowAdded);
|
|
|
|
if (!windowAddedSpy.isValid()) {
|
2016-07-01 07:54:44 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2023-02-21 02:37:30 +00:00
|
|
|
render(surface, img);
|
2016-07-01 07:54:44 +00:00
|
|
|
flushWaylandConnection();
|
2022-04-23 08:33:23 +00:00
|
|
|
if (!windowAddedSpy.wait(timeout)) {
|
2016-07-01 07:54:44 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2022-04-23 08:33:23 +00:00
|
|
|
return windowAddedSpy.first().first().value<Window *>();
|
2016-07-01 07:54:44 +00:00
|
|
|
}
|
|
|
|
|
2016-06-30 11:32:54 +00:00
|
|
|
void flushWaylandConnection()
|
|
|
|
{
|
|
|
|
if (s_waylandConnection.connection) {
|
|
|
|
s_waylandConnection.connection->flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-24 18:36:47 +00:00
|
|
|
class WaylandSyncPoint : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit WaylandSyncPoint(KWayland::Client::ConnectionThread *connection, KWayland::Client::EventQueue *eventQueue)
|
|
|
|
{
|
|
|
|
static const wl_callback_listener listener = {
|
|
|
|
.done = [](void *data, wl_callback *callback, uint32_t callback_data) {
|
|
|
|
auto syncPoint = static_cast<WaylandSyncPoint *>(data);
|
|
|
|
Q_EMIT syncPoint->done();
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
m_callback = wl_display_sync(connection->display());
|
|
|
|
eventQueue->addProxy(m_callback);
|
|
|
|
wl_callback_add_listener(m_callback, &listener, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
~WaylandSyncPoint() override
|
|
|
|
{
|
|
|
|
wl_callback_destroy(m_callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void done();
|
|
|
|
|
|
|
|
private:
|
|
|
|
wl_callback *m_callback;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool waylandSync()
|
|
|
|
{
|
|
|
|
WaylandSyncPoint syncPoint(s_waylandConnection.connection, s_waylandConnection.queue);
|
|
|
|
QSignalSpy doneSpy(&syncPoint, &WaylandSyncPoint::done);
|
|
|
|
return doneSpy.wait();
|
|
|
|
}
|
|
|
|
|
2022-08-16 11:43:33 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> createSurface()
|
2016-06-30 11:32:54 +00:00
|
|
|
{
|
|
|
|
if (!s_waylandConnection.compositor) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2022-08-16 11:43:33 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> s{s_waylandConnection.compositor->createSurface()};
|
|
|
|
return s->isValid() ? std::move(s) : nullptr;
|
2016-06-30 11:32:54 +00:00
|
|
|
}
|
|
|
|
|
2024-03-10 19:41:15 +00:00
|
|
|
std::unique_ptr<KWayland::Client::SubSurface> createSubSurface(KWayland::Client::Surface *surface, KWayland::Client::Surface *parentSurface)
|
2019-02-21 22:25:19 +00:00
|
|
|
{
|
|
|
|
if (!s_waylandConnection.subCompositor) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2024-03-10 19:41:15 +00:00
|
|
|
std::unique_ptr<KWayland::Client::SubSurface> s(s_waylandConnection.subCompositor->createSubSurface(surface, parentSurface));
|
2019-02-21 22:25:19 +00:00
|
|
|
if (!s->isValid()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2024-03-10 19:38:22 +00:00
|
|
|
std::unique_ptr<LayerSurfaceV1> createLayerSurfaceV1(KWayland::Client::Surface *surface, const QString &scope, KWayland::Client::Output *output, LayerShellV1::layer layer)
|
2020-08-07 19:01:42 +00:00
|
|
|
{
|
|
|
|
LayerShellV1 *shell = s_waylandConnection.layerShellV1;
|
|
|
|
if (!shell) {
|
|
|
|
qWarning() << "Could not create a layer surface because the layer shell global is not bound";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ::wl_output *nativeOutput = nullptr;
|
|
|
|
if (output) {
|
|
|
|
nativeOutput = *output;
|
|
|
|
}
|
|
|
|
|
2024-03-10 19:38:22 +00:00
|
|
|
auto shellSurface = std::make_unique<LayerSurfaceV1>();
|
2020-08-07 19:01:42 +00:00
|
|
|
shellSurface->init(shell->get_layer_surface(*surface, nativeOutput, layer, scope));
|
|
|
|
|
|
|
|
return shellSurface;
|
|
|
|
}
|
|
|
|
|
2024-01-11 06:37:51 +00:00
|
|
|
QtWayland::zwp_input_panel_surface_v1 *createInputPanelSurfaceV1(KWayland::Client::Surface *surface, KWayland::Client::Output *output, MockInputMethod::Mode mode)
|
2020-09-01 08:58:46 +00:00
|
|
|
{
|
|
|
|
if (!s_waylandConnection.inputPanelV1) {
|
|
|
|
qWarning() << "Unable to create the input panel surface. The interface input_panel global is not bound";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
QtWayland::zwp_input_panel_surface_v1 *s = new QtWayland::zwp_input_panel_surface_v1(s_waylandConnection.inputPanelV1->get_input_panel_surface(*surface));
|
|
|
|
|
|
|
|
if (!s->isInitialized()) {
|
|
|
|
delete s;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2024-01-11 06:37:51 +00:00
|
|
|
switch (mode) {
|
|
|
|
case MockInputMethod::Mode::TopLevel:
|
|
|
|
s->set_toplevel(output->output(), QtWayland::zwp_input_panel_surface_v1::position_center_bottom);
|
|
|
|
break;
|
|
|
|
case MockInputMethod::Mode::Overlay:
|
|
|
|
s->set_overlay_panel();
|
|
|
|
break;
|
|
|
|
}
|
2020-09-01 08:58:46 +00:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2022-06-30 22:23:35 +00:00
|
|
|
FractionalScaleV1 *createFractionalScaleV1(KWayland::Client::Surface *surface)
|
|
|
|
{
|
|
|
|
if (!s_waylandConnection.fractionalScaleManagerV1) {
|
|
|
|
qWarning() << "Unable to create fractional scale surface. The global is not bound";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
auto scale = new FractionalScaleV1();
|
|
|
|
scale->init(s_waylandConnection.fractionalScaleManagerV1->get_fractional_scale(*surface));
|
|
|
|
|
|
|
|
return scale;
|
|
|
|
}
|
|
|
|
|
2020-09-02 09:27:08 +00:00
|
|
|
static void waitForConfigured(XdgSurface *shellSurface)
|
|
|
|
{
|
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface, &XdgSurface::configureRequested);
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
shellSurface->surface()->commit(KWayland::Client::Surface::CommitFlag::None);
|
2020-09-02 09:27:08 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
|
|
|
|
shellSurface->ack_configure(surfaceConfigureRequestedSpy.last().first().toUInt());
|
|
|
|
}
|
|
|
|
|
2024-03-10 14:32:54 +00:00
|
|
|
std::unique_ptr<XdgToplevel> createXdgToplevelSurface(KWayland::Client::Surface *surface)
|
2021-12-09 07:47:55 +00:00
|
|
|
{
|
2024-03-10 14:32:54 +00:00
|
|
|
return createXdgToplevelSurface(surface, CreationSetup::CreateAndConfigure);
|
2021-12-09 07:47:55 +00:00
|
|
|
}
|
|
|
|
|
2024-03-10 14:32:54 +00:00
|
|
|
std::unique_ptr<XdgToplevel> createXdgToplevelSurface(KWayland::Client::Surface *surface, CreationSetup configureMode)
|
2020-09-02 09:27:08 +00:00
|
|
|
{
|
|
|
|
XdgShell *shell = s_waylandConnection.xdgShell;
|
|
|
|
|
|
|
|
if (!shell) {
|
|
|
|
qWarning() << "Could not create an xdg_toplevel surface because xdg_wm_base global is not bound";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-05-11 05:26:51 +00:00
|
|
|
XdgSurface *xdgSurface = new XdgSurface(shell, surface);
|
2024-03-10 14:32:54 +00:00
|
|
|
std::unique_ptr<XdgToplevel> xdgToplevel = std::make_unique<XdgToplevel>(xdgSurface);
|
2020-09-02 09:27:08 +00:00
|
|
|
|
|
|
|
if (configureMode == CreationSetup::CreateAndConfigure) {
|
|
|
|
waitForConfigured(xdgSurface);
|
|
|
|
}
|
|
|
|
|
|
|
|
return xdgToplevel;
|
|
|
|
}
|
|
|
|
|
2024-03-10 14:32:54 +00:00
|
|
|
std::unique_ptr<XdgPositioner> createXdgPositioner()
|
2020-09-02 09:27:08 +00:00
|
|
|
{
|
|
|
|
XdgShell *shell = s_waylandConnection.xdgShell;
|
|
|
|
|
|
|
|
if (!shell) {
|
|
|
|
qWarning() << "Could not create an xdg_positioner object because xdg_wm_base global is not bound";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2024-03-10 14:32:54 +00:00
|
|
|
return std::make_unique<XdgPositioner>(shell);
|
2020-09-02 09:27:08 +00:00
|
|
|
}
|
|
|
|
|
2024-03-10 14:32:54 +00:00
|
|
|
std::unique_ptr<XdgPopup> createXdgPopupSurface(KWayland::Client::Surface *surface, XdgSurface *parentSurface, XdgPositioner *positioner, CreationSetup configureMode)
|
2020-09-02 09:27:08 +00:00
|
|
|
{
|
|
|
|
XdgShell *shell = s_waylandConnection.xdgShell;
|
|
|
|
|
|
|
|
if (!shell) {
|
|
|
|
qWarning() << "Could not create an xdg_popup surface because xdg_wm_base global is not bound";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2021-05-11 05:26:51 +00:00
|
|
|
XdgSurface *xdgSurface = new XdgSurface(shell, surface);
|
2024-03-10 14:32:54 +00:00
|
|
|
std::unique_ptr<XdgPopup> xdgPopup = std::make_unique<XdgPopup>(xdgSurface, parentSurface, positioner);
|
2020-09-02 09:27:08 +00:00
|
|
|
|
|
|
|
if (configureMode == CreationSetup::CreateAndConfigure) {
|
|
|
|
waitForConfigured(xdgSurface);
|
|
|
|
}
|
|
|
|
|
|
|
|
return xdgPopup;
|
|
|
|
}
|
|
|
|
|
2021-05-11 05:26:51 +00:00
|
|
|
XdgToplevelDecorationV1 *createXdgToplevelDecorationV1(XdgToplevel *toplevel, QObject *parent)
|
|
|
|
{
|
|
|
|
XdgDecorationManagerV1 *manager = s_waylandConnection.xdgDecorationManagerV1;
|
|
|
|
|
|
|
|
if (!manager) {
|
|
|
|
qWarning() << "Could not create an xdg_toplevel_decoration_v1 because xdg_decoration_manager_v1 global is not bound";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new XdgToplevelDecorationV1(manager, toplevel, parent);
|
|
|
|
}
|
|
|
|
|
2021-05-13 19:59:22 +00:00
|
|
|
IdleInhibitorV1 *createIdleInhibitorV1(KWayland::Client::Surface *surface)
|
|
|
|
{
|
|
|
|
IdleInhibitManagerV1 *manager = s_waylandConnection.idleInhibitManagerV1;
|
|
|
|
if (!manager) {
|
|
|
|
qWarning() << "Could not create an idle_inhibitor_v1 because idle_inhibit_manager_v1 global is not bound";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new IdleInhibitorV1(manager, surface);
|
|
|
|
}
|
|
|
|
|
2023-03-08 08:07:39 +00:00
|
|
|
AutoHideScreenEdgeV1 *createAutoHideScreenEdgeV1(KWayland::Client::Surface *surface, uint32_t border)
|
|
|
|
{
|
|
|
|
ScreenEdgeManagerV1 *manager = s_waylandConnection.screenEdgeManagerV1;
|
|
|
|
if (!manager) {
|
|
|
|
qWarning() << "Could not create an kde_auto_hide_screen_edge_v1 because kde_screen_edge_manager_v1 global is not bound";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new AutoHideScreenEdgeV1(manager, surface, border);
|
|
|
|
}
|
|
|
|
|
2023-05-05 11:14:34 +00:00
|
|
|
CursorShapeDeviceV1 *createCursorShapeDeviceV1(KWayland::Client::Pointer *pointer)
|
|
|
|
{
|
|
|
|
CursorShapeManagerV1 *manager = s_waylandConnection.cursorShapeManagerV1;
|
|
|
|
if (!manager) {
|
|
|
|
qWarning() << "Could not create a wp_cursor_shape_device_v1 because wp_cursor_shape_manager_v1 global is not bound";
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new CursorShapeDeviceV1(manager, pointer);
|
|
|
|
}
|
|
|
|
|
2023-04-21 20:28:48 +00:00
|
|
|
bool waitForWindowClosed(Window *window)
|
2016-07-01 10:37:09 +00:00
|
|
|
{
|
2023-04-21 20:28:48 +00:00
|
|
|
QSignalSpy closedSpy(window, &Window::closed);
|
|
|
|
if (!closedSpy.isValid()) {
|
2016-07-01 10:37:09 +00:00
|
|
|
return false;
|
|
|
|
}
|
2023-04-21 20:28:48 +00:00
|
|
|
return closedSpy.wait();
|
2016-07-01 10:37:09 +00:00
|
|
|
}
|
|
|
|
|
2022-02-28 18:58:35 +00:00
|
|
|
#if KWIN_BUILD_SCREENLOCKER
|
2016-08-16 06:19:45 +00:00
|
|
|
bool lockScreen()
|
|
|
|
{
|
|
|
|
if (waylandServer()->isScreenLocked()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QSignalSpy lockStateChangedSpy(ScreenLocker::KSldApp::self(), &ScreenLocker::KSldApp::lockStateChanged);
|
|
|
|
if (!lockStateChangedSpy.isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ScreenLocker::KSldApp::self()->lock(ScreenLocker::EstablishLock::Immediate);
|
|
|
|
if (lockStateChangedSpy.count() != 1) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-08-16 08:23:37 +00:00
|
|
|
if (!waylandServer()->isScreenLocked()) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-07-31 12:40:08 +00:00
|
|
|
if (!kwinApp()->screenLockerWatcher()->isLocked()) {
|
|
|
|
QSignalSpy lockedSpy(kwinApp()->screenLockerWatcher(), &ScreenLockerWatcher::locked);
|
2016-08-16 08:23:37 +00:00
|
|
|
if (!lockedSpy.isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!lockedSpy.wait()) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-07-31 12:40:08 +00:00
|
|
|
if (!kwinApp()->screenLockerWatcher()->isLocked()) {
|
2016-08-16 08:23:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2016-08-16 06:19:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool unlockScreen()
|
|
|
|
{
|
|
|
|
QSignalSpy lockStateChangedSpy(ScreenLocker::KSldApp::self(), &ScreenLocker::KSldApp::lockStateChanged);
|
|
|
|
if (!lockStateChangedSpy.isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
using namespace ScreenLocker;
|
|
|
|
const auto children = KSldApp::self()->children();
|
|
|
|
for (auto it = children.begin(); it != children.end(); ++it) {
|
|
|
|
if (qstrcmp((*it)->metaObject()->className(), "LogindIntegration") != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
QMetaObject::invokeMethod(*it, "requestUnlock");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (waylandServer()->isScreenLocked()) {
|
|
|
|
lockStateChangedSpy.wait();
|
|
|
|
}
|
2016-08-16 08:23:37 +00:00
|
|
|
if (waylandServer()->isScreenLocked()) {
|
|
|
|
return true;
|
|
|
|
}
|
2022-07-31 12:40:08 +00:00
|
|
|
if (kwinApp()->screenLockerWatcher()->isLocked()) {
|
|
|
|
QSignalSpy lockedSpy(kwinApp()->screenLockerWatcher(), &ScreenLockerWatcher::locked);
|
2016-08-16 08:23:37 +00:00
|
|
|
if (!lockedSpy.isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!lockedSpy.wait()) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-07-31 12:40:08 +00:00
|
|
|
if (kwinApp()->screenLockerWatcher()->isLocked()) {
|
2016-08-16 08:23:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2016-08-16 06:19:45 +00:00
|
|
|
}
|
2022-02-23 13:27:05 +00:00
|
|
|
#endif // KWIN_BUILD_LOCKSCREEN
|
2016-08-16 06:19:45 +00:00
|
|
|
|
2023-04-15 19:28:12 +00:00
|
|
|
bool renderNodeAvailable()
|
|
|
|
{
|
|
|
|
const int deviceCount = drmGetDevices2(0, nullptr, 0);
|
|
|
|
if (deviceCount <= 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-10-19 06:50:15 +00:00
|
|
|
QList<drmDevice *> devices(deviceCount);
|
2023-04-15 19:28:12 +00:00
|
|
|
if (drmGetDevices2(0, devices.data(), devices.size()) < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
auto deviceCleanup = qScopeGuard([&devices]() {
|
|
|
|
drmFreeDevices(devices.data(), devices.size());
|
|
|
|
});
|
|
|
|
|
|
|
|
return std::any_of(devices.constBegin(), devices.constEnd(), [](drmDevice *device) {
|
|
|
|
return device->available_nodes & (1 << DRM_NODE_RENDER);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-12-15 16:58:46 +00:00
|
|
|
#if KWIN_BUILD_X11
|
2023-02-03 13:29:21 +00:00
|
|
|
void XcbConnectionDeleter::operator()(xcb_connection_t *pointer)
|
|
|
|
{
|
|
|
|
xcb_disconnect(pointer);
|
|
|
|
};
|
|
|
|
|
|
|
|
Test::XcbConnectionPtr createX11Connection()
|
|
|
|
{
|
2023-01-27 12:29:32 +00:00
|
|
|
QFutureWatcher<xcb_connection_t *> watcher;
|
|
|
|
QEventLoop e;
|
|
|
|
e.connect(&watcher, &QFutureWatcher<xcb_connection_t *>::finished, &e, &QEventLoop::quit);
|
|
|
|
QFuture<xcb_connection_t *> future = QtConcurrent::run([]() {
|
|
|
|
return xcb_connect(nullptr, nullptr);
|
|
|
|
});
|
|
|
|
watcher.setFuture(future);
|
|
|
|
e.exec();
|
|
|
|
return Test::XcbConnectionPtr(future.result());
|
2023-02-03 13:29:21 +00:00
|
|
|
}
|
2023-12-15 16:58:46 +00:00
|
|
|
#endif
|
2023-02-03 13:29:21 +00:00
|
|
|
|
2021-09-08 09:04:44 +00:00
|
|
|
WaylandOutputManagementV2::WaylandOutputManagementV2(struct ::wl_registry *registry, int id, int version)
|
|
|
|
: QObject()
|
|
|
|
, QtWayland::kde_output_management_v2()
|
|
|
|
{
|
|
|
|
init(registry, id, version);
|
|
|
|
}
|
|
|
|
|
|
|
|
WaylandOutputConfigurationV2 *WaylandOutputManagementV2::createConfiguration()
|
|
|
|
{
|
|
|
|
return new WaylandOutputConfigurationV2(create_configuration());
|
|
|
|
}
|
|
|
|
|
|
|
|
WaylandOutputConfigurationV2::WaylandOutputConfigurationV2(struct ::kde_output_configuration_v2 *object)
|
|
|
|
: QObject()
|
|
|
|
, QtWayland::kde_output_configuration_v2()
|
|
|
|
{
|
|
|
|
init(object);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputConfigurationV2::kde_output_configuration_v2_applied()
|
|
|
|
{
|
|
|
|
Q_EMIT applied();
|
|
|
|
}
|
|
|
|
void WaylandOutputConfigurationV2::kde_output_configuration_v2_failed()
|
|
|
|
{
|
|
|
|
Q_EMIT failed();
|
|
|
|
}
|
|
|
|
|
|
|
|
WaylandOutputDeviceV2Mode::WaylandOutputDeviceV2Mode(struct ::kde_output_device_mode_v2 *object)
|
|
|
|
: QtWayland::kde_output_device_mode_v2(object)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WaylandOutputDeviceV2Mode::~WaylandOutputDeviceV2Mode()
|
|
|
|
{
|
|
|
|
kde_output_device_mode_v2_destroy(object());
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2Mode::kde_output_device_mode_v2_size(int32_t width, int32_t height)
|
|
|
|
{
|
|
|
|
m_size = QSize(width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2Mode::kde_output_device_mode_v2_refresh(int32_t refresh)
|
|
|
|
{
|
|
|
|
m_refreshRate = refresh;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2Mode::kde_output_device_mode_v2_preferred()
|
|
|
|
{
|
|
|
|
m_preferred = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2Mode::kde_output_device_mode_v2_removed()
|
|
|
|
{
|
|
|
|
Q_EMIT removed();
|
|
|
|
}
|
|
|
|
|
|
|
|
int WaylandOutputDeviceV2Mode::refreshRate() const
|
|
|
|
{
|
|
|
|
return m_refreshRate;
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize WaylandOutputDeviceV2Mode::size() const
|
|
|
|
{
|
|
|
|
return m_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WaylandOutputDeviceV2Mode::preferred() const
|
|
|
|
{
|
|
|
|
return m_preferred;
|
|
|
|
}
|
|
|
|
|
2023-03-14 15:46:57 +00:00
|
|
|
bool WaylandOutputDeviceV2Mode::operator==(const WaylandOutputDeviceV2Mode &other) const
|
2021-09-08 09:04:44 +00:00
|
|
|
{
|
|
|
|
return m_size == other.m_size && m_refreshRate == other.m_refreshRate && m_preferred == other.m_preferred;
|
|
|
|
}
|
|
|
|
|
|
|
|
WaylandOutputDeviceV2Mode *WaylandOutputDeviceV2Mode::get(struct ::kde_output_device_mode_v2 *object)
|
|
|
|
{
|
|
|
|
auto mode = QtWayland::kde_output_device_mode_v2::fromObject(object);
|
|
|
|
return static_cast<WaylandOutputDeviceV2Mode *>(mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
WaylandOutputDeviceV2::WaylandOutputDeviceV2(int id)
|
|
|
|
: QObject()
|
|
|
|
, kde_output_device_v2()
|
|
|
|
, m_id(id)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WaylandOutputDeviceV2::~WaylandOutputDeviceV2()
|
|
|
|
{
|
|
|
|
qDeleteAll(m_modes);
|
|
|
|
|
|
|
|
kde_output_device_v2_destroy(object());
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_geometry(int32_t x,
|
|
|
|
int32_t y,
|
|
|
|
int32_t physical_width,
|
|
|
|
int32_t physical_height,
|
|
|
|
int32_t subpixel,
|
|
|
|
const QString &make,
|
|
|
|
const QString &model,
|
|
|
|
int32_t transform)
|
|
|
|
{
|
|
|
|
m_pos = QPoint(x, y);
|
|
|
|
m_physicalSize = QSize(physical_width, physical_height);
|
|
|
|
m_subpixel = subpixel;
|
|
|
|
m_manufacturer = make;
|
|
|
|
m_model = model;
|
|
|
|
m_transform = transform;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_current_mode(struct ::kde_output_device_mode_v2 *mode)
|
|
|
|
{
|
|
|
|
auto m = WaylandOutputDeviceV2Mode::get(mode);
|
|
|
|
|
|
|
|
if (*m == *m_mode) {
|
|
|
|
// unchanged
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_mode = m;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_mode(struct ::kde_output_device_mode_v2 *mode)
|
|
|
|
{
|
|
|
|
WaylandOutputDeviceV2Mode *m = new WaylandOutputDeviceV2Mode(mode);
|
|
|
|
// last mode sent is the current one
|
|
|
|
m_mode = m;
|
|
|
|
m_modes.append(m);
|
|
|
|
|
|
|
|
connect(m, &WaylandOutputDeviceV2Mode::removed, this, [this, m]() {
|
|
|
|
m_modes.removeOne(m);
|
|
|
|
if (m_mode == m) {
|
|
|
|
if (!m_modes.isEmpty()) {
|
|
|
|
m_mode = m_modes.first();
|
|
|
|
} else {
|
|
|
|
// was last mode
|
|
|
|
qFatal("KWaylandBackend: no output modes available anymore, this seems like a compositor bug");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delete m;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
QString WaylandOutputDeviceV2::modeId() const
|
|
|
|
{
|
|
|
|
return QString::number(m_modes.indexOf(m_mode));
|
|
|
|
}
|
|
|
|
|
|
|
|
WaylandOutputDeviceV2Mode *WaylandOutputDeviceV2::deviceModeFromId(const int modeId) const
|
|
|
|
{
|
|
|
|
return m_modes.at(modeId);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString WaylandOutputDeviceV2::modeName(const WaylandOutputDeviceV2Mode *m) const
|
|
|
|
{
|
|
|
|
return QString::number(m->size().width()) + QLatin1Char('x') + QString::number(m->size().height()) + QLatin1Char('@')
|
|
|
|
+ QString::number(qRound(m->refreshRate() / 1000.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString WaylandOutputDeviceV2::name() const
|
|
|
|
{
|
|
|
|
return QStringLiteral("%1 %2").arg(m_manufacturer, m_model);
|
|
|
|
}
|
|
|
|
|
|
|
|
QDebug operator<<(QDebug dbg, const WaylandOutputDeviceV2 *output)
|
|
|
|
{
|
|
|
|
dbg << "WaylandOutput(Id:" << output->id() << ", Name:" << QString(output->manufacturer() + QLatin1Char(' ') + output->model()) << ")";
|
|
|
|
return dbg;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_done()
|
|
|
|
{
|
|
|
|
Q_EMIT done();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_scale(wl_fixed_t factor)
|
|
|
|
{
|
|
|
|
m_factor = wl_fixed_to_double(factor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_edid(const QString &edid)
|
|
|
|
{
|
|
|
|
m_edid = QByteArray::fromBase64(edid.toUtf8());
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_enabled(int32_t enabled)
|
|
|
|
{
|
|
|
|
if (m_enabled != enabled) {
|
|
|
|
m_enabled = enabled;
|
|
|
|
Q_EMIT enabledChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_uuid(const QString &uuid)
|
|
|
|
{
|
|
|
|
m_uuid = uuid;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_serial_number(const QString &serialNumber)
|
|
|
|
{
|
|
|
|
m_serialNumber = serialNumber;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_eisa_id(const QString &eisaId)
|
|
|
|
{
|
|
|
|
m_eisaId = eisaId;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_capabilities(uint32_t flags)
|
|
|
|
{
|
|
|
|
m_flags = flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_overscan(uint32_t overscan)
|
|
|
|
{
|
|
|
|
m_overscan = overscan;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_vrr_policy(uint32_t vrr_policy)
|
|
|
|
{
|
|
|
|
m_vrr_policy = vrr_policy;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WaylandOutputDeviceV2::kde_output_device_v2_rgb_range(uint32_t rgb_range)
|
|
|
|
{
|
|
|
|
m_rgbRange = rgb_range;
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray WaylandOutputDeviceV2::edid() const
|
|
|
|
{
|
|
|
|
return m_edid;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WaylandOutputDeviceV2::enabled() const
|
|
|
|
{
|
|
|
|
return m_enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
int WaylandOutputDeviceV2::id() const
|
|
|
|
{
|
|
|
|
return m_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
qreal WaylandOutputDeviceV2::scale() const
|
|
|
|
{
|
|
|
|
return m_factor;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString WaylandOutputDeviceV2::manufacturer() const
|
|
|
|
{
|
|
|
|
return m_manufacturer;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString WaylandOutputDeviceV2::model() const
|
|
|
|
{
|
|
|
|
return m_model;
|
|
|
|
}
|
|
|
|
|
|
|
|
QPoint WaylandOutputDeviceV2::globalPosition() const
|
|
|
|
{
|
|
|
|
return m_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
QSize WaylandOutputDeviceV2::pixelSize() const
|
|
|
|
{
|
|
|
|
return m_mode->size();
|
|
|
|
}
|
|
|
|
|
|
|
|
int WaylandOutputDeviceV2::refreshRate() const
|
|
|
|
{
|
|
|
|
return m_mode->refreshRate();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t WaylandOutputDeviceV2::vrrPolicy() const
|
|
|
|
{
|
|
|
|
return m_vrr_policy;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t WaylandOutputDeviceV2::overscan() const
|
|
|
|
{
|
|
|
|
return m_overscan;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t WaylandOutputDeviceV2::capabilities() const
|
|
|
|
{
|
|
|
|
return m_flags;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t WaylandOutputDeviceV2::rgbRange() const
|
|
|
|
{
|
|
|
|
return m_rgbRange;
|
|
|
|
}
|
|
|
|
|
2022-02-23 12:53:23 +00:00
|
|
|
VirtualInputDevice::VirtualInputDevice(QObject *parent)
|
|
|
|
: InputDevice(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualInputDevice::setPointer(bool set)
|
|
|
|
{
|
|
|
|
m_pointer = set;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualInputDevice::setKeyboard(bool set)
|
|
|
|
{
|
|
|
|
m_keyboard = set;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualInputDevice::setTouch(bool set)
|
|
|
|
{
|
|
|
|
m_touch = set;
|
|
|
|
}
|
|
|
|
|
2023-05-08 08:48:30 +00:00
|
|
|
void VirtualInputDevice::setLidSwitch(bool set)
|
|
|
|
{
|
|
|
|
m_lidSwitch = set;
|
|
|
|
}
|
|
|
|
|
2022-02-23 12:53:23 +00:00
|
|
|
void VirtualInputDevice::setName(const QString &name)
|
|
|
|
{
|
|
|
|
m_name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString VirtualInputDevice::sysName() const
|
|
|
|
{
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString VirtualInputDevice::name() const
|
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VirtualInputDevice::isEnabled() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualInputDevice::setEnabled(bool enabled)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
LEDs VirtualInputDevice::leds() const
|
|
|
|
{
|
|
|
|
return LEDs();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VirtualInputDevice::setLeds(LEDs leds)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VirtualInputDevice::isKeyboard() const
|
|
|
|
{
|
|
|
|
return m_keyboard;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VirtualInputDevice::isPointer() const
|
|
|
|
{
|
|
|
|
return m_pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VirtualInputDevice::isTouchpad() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VirtualInputDevice::isTouch() const
|
|
|
|
{
|
|
|
|
return m_touch;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VirtualInputDevice::isTabletTool() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VirtualInputDevice::isTabletPad() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VirtualInputDevice::isTabletModeSwitch() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VirtualInputDevice::isLidSwitch() const
|
|
|
|
{
|
2023-05-08 08:48:30 +00:00
|
|
|
return m_lidSwitch;
|
2022-02-23 12:53:23 +00:00
|
|
|
}
|
2022-03-10 10:15:26 +00:00
|
|
|
|
|
|
|
void keyboardKeyPressed(quint32 key, quint32 time)
|
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualKeyboard = static_cast<WaylandTestApplication *>(kwinApp())->virtualKeyboard();
|
2022-12-21 00:55:20 +00:00
|
|
|
Q_EMIT virtualKeyboard->keyChanged(key, InputRedirection::KeyboardKeyState::KeyboardKeyPressed, std::chrono::milliseconds(time), virtualKeyboard);
|
2022-03-10 10:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void keyboardKeyReleased(quint32 key, quint32 time)
|
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualKeyboard = static_cast<WaylandTestApplication *>(kwinApp())->virtualKeyboard();
|
2022-12-21 00:55:20 +00:00
|
|
|
Q_EMIT virtualKeyboard->keyChanged(key, InputRedirection::KeyboardKeyState::KeyboardKeyReleased, std::chrono::milliseconds(time), virtualKeyboard);
|
2022-03-10 10:15:26 +00:00
|
|
|
}
|
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
void pointerAxisHorizontal(qreal delta, quint32 time, qint32 discreteDelta, InputRedirection::PointerAxisSource source)
|
2022-03-10 10:15:26 +00:00
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualPointer = static_cast<WaylandTestApplication *>(kwinApp())->virtualPointer();
|
2022-12-21 00:55:20 +00:00
|
|
|
Q_EMIT virtualPointer->pointerAxisChanged(InputRedirection::PointerAxis::PointerAxisHorizontal, delta, discreteDelta, source, std::chrono::milliseconds(time), virtualPointer);
|
2023-05-04 14:15:40 +00:00
|
|
|
Q_EMIT virtualPointer->pointerFrame(virtualPointer);
|
2022-03-10 10:15:26 +00:00
|
|
|
}
|
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
void pointerAxisVertical(qreal delta, quint32 time, qint32 discreteDelta, InputRedirection::PointerAxisSource source)
|
2022-03-10 10:15:26 +00:00
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualPointer = static_cast<WaylandTestApplication *>(kwinApp())->virtualPointer();
|
2022-12-21 00:55:20 +00:00
|
|
|
Q_EMIT virtualPointer->pointerAxisChanged(InputRedirection::PointerAxis::PointerAxisVertical, delta, discreteDelta, source, std::chrono::milliseconds(time), virtualPointer);
|
2023-05-04 14:15:40 +00:00
|
|
|
Q_EMIT virtualPointer->pointerFrame(virtualPointer);
|
2022-03-10 10:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void pointerButtonPressed(quint32 button, quint32 time)
|
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualPointer = static_cast<WaylandTestApplication *>(kwinApp())->virtualPointer();
|
2022-12-21 00:55:20 +00:00
|
|
|
Q_EMIT virtualPointer->pointerButtonChanged(button, InputRedirection::PointerButtonState::PointerButtonPressed, std::chrono::milliseconds(time), virtualPointer);
|
2023-05-04 14:15:40 +00:00
|
|
|
Q_EMIT virtualPointer->pointerFrame(virtualPointer);
|
2022-03-10 10:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void pointerButtonReleased(quint32 button, quint32 time)
|
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualPointer = static_cast<WaylandTestApplication *>(kwinApp())->virtualPointer();
|
2022-12-21 00:55:20 +00:00
|
|
|
Q_EMIT virtualPointer->pointerButtonChanged(button, InputRedirection::PointerButtonState::PointerButtonReleased, std::chrono::milliseconds(time), virtualPointer);
|
2023-05-04 14:15:40 +00:00
|
|
|
Q_EMIT virtualPointer->pointerFrame(virtualPointer);
|
2022-03-10 10:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void pointerMotion(const QPointF &position, quint32 time)
|
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualPointer = static_cast<WaylandTestApplication *>(kwinApp())->virtualPointer();
|
2022-12-21 00:55:20 +00:00
|
|
|
Q_EMIT virtualPointer->pointerMotionAbsolute(position, std::chrono::milliseconds(time), virtualPointer);
|
2023-05-04 14:15:40 +00:00
|
|
|
Q_EMIT virtualPointer->pointerFrame(virtualPointer);
|
2022-03-10 10:15:26 +00:00
|
|
|
}
|
|
|
|
|
2023-01-23 15:35:30 +00:00
|
|
|
void pointerMotionRelative(const QPointF &delta, quint32 time)
|
|
|
|
{
|
|
|
|
auto virtualPointer = static_cast<WaylandTestApplication *>(kwinApp())->virtualPointer();
|
|
|
|
Q_EMIT virtualPointer->pointerMotion(delta, delta, std::chrono::milliseconds(time), virtualPointer);
|
2023-05-04 14:15:40 +00:00
|
|
|
Q_EMIT virtualPointer->pointerFrame(virtualPointer);
|
2023-01-23 15:35:30 +00:00
|
|
|
}
|
|
|
|
|
2022-03-10 10:15:26 +00:00
|
|
|
void touchCancel()
|
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualTouch = static_cast<WaylandTestApplication *>(kwinApp())->virtualTouch();
|
2022-03-10 10:15:26 +00:00
|
|
|
Q_EMIT virtualTouch->touchCanceled(virtualTouch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void touchDown(qint32 id, const QPointF &pos, quint32 time)
|
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualTouch = static_cast<WaylandTestApplication *>(kwinApp())->virtualTouch();
|
2022-12-21 00:55:20 +00:00
|
|
|
Q_EMIT virtualTouch->touchDown(id, pos, std::chrono::milliseconds(time), virtualTouch);
|
2022-03-10 10:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void touchMotion(qint32 id, const QPointF &pos, quint32 time)
|
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualTouch = static_cast<WaylandTestApplication *>(kwinApp())->virtualTouch();
|
2022-12-21 00:55:20 +00:00
|
|
|
Q_EMIT virtualTouch->touchMotion(id, pos, std::chrono::milliseconds(time), virtualTouch);
|
2022-03-10 10:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void touchUp(qint32 id, quint32 time)
|
|
|
|
{
|
2022-03-10 10:27:35 +00:00
|
|
|
auto virtualTouch = static_cast<WaylandTestApplication *>(kwinApp())->virtualTouch();
|
2022-12-21 00:55:20 +00:00
|
|
|
Q_EMIT virtualTouch->touchUp(id, std::chrono::milliseconds(time), virtualTouch);
|
2022-03-10 10:15:26 +00:00
|
|
|
}
|
2016-06-30 11:32:54 +00:00
|
|
|
}
|
|
|
|
}
|
2023-04-24 18:36:47 +00:00
|
|
|
|
|
|
|
#include "test_helpers.moc"
|