2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-02-09 10:35:15 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2016-02-09 10:35:15 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2016-02-09 10:35:15 +00:00
|
|
|
#include "kwin_wayland_test.h"
|
2022-03-23 10:13:38 +00:00
|
|
|
|
2022-08-29 07:55:49 +00:00
|
|
|
#include "core/output.h"
|
2023-02-09 13:07:56 +00:00
|
|
|
#include "pointer_input.h"
|
2021-07-19 22:21:02 +00:00
|
|
|
#include "touch_input.h"
|
2016-02-09 10:35:15 +00:00
|
|
|
#include "wayland_server.h"
|
2022-04-22 17:39:12 +00:00
|
|
|
#include "window.h"
|
2016-02-09 10:35:15 +00:00
|
|
|
#include "workspace.h"
|
|
|
|
|
|
|
|
#include <KWayland/Client/compositor.h>
|
|
|
|
#include <KWayland/Client/connection_thread.h>
|
|
|
|
#include <KWayland/Client/seat.h>
|
|
|
|
#include <KWayland/Client/surface.h>
|
|
|
|
#include <KWayland/Client/touch.h>
|
|
|
|
|
2022-10-24 14:41:35 +00:00
|
|
|
#include <QAction>
|
2023-07-03 19:28:19 +00:00
|
|
|
#include <QSignalSpy>
|
2022-10-24 14:41:35 +00:00
|
|
|
|
2016-02-09 10:35:15 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_touch_input-0");
|
|
|
|
|
|
|
|
class TouchInputTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void init();
|
|
|
|
void cleanup();
|
2018-12-01 13:52:47 +00:00
|
|
|
void testTouchHidesCursor();
|
2017-01-10 18:27:42 +00:00
|
|
|
void testMultipleTouchPoints_data();
|
2016-02-09 10:35:15 +00:00
|
|
|
void testMultipleTouchPoints();
|
|
|
|
void testCancel();
|
2016-02-18 08:57:18 +00:00
|
|
|
void testTouchMouseAction();
|
2021-01-17 22:18:08 +00:00
|
|
|
void testTouchPointCount();
|
2021-07-19 22:21:02 +00:00
|
|
|
void testUpdateFocusOnDecorationDestroy();
|
2022-05-27 15:26:24 +00:00
|
|
|
void testGestureDetection();
|
2016-02-09 10:35:15 +00:00
|
|
|
|
|
|
|
private:
|
2024-03-10 14:32:54 +00:00
|
|
|
struct WindowHandle
|
|
|
|
{
|
|
|
|
Window *window;
|
|
|
|
std::unique_ptr<KWayland::Client::Surface> surface;
|
|
|
|
std::unique_ptr<Test::XdgToplevel> shellSurface;
|
2024-03-10 19:52:47 +00:00
|
|
|
std::unique_ptr<Test::XdgToplevelDecorationV1> decoration;
|
2024-03-10 14:32:54 +00:00
|
|
|
};
|
|
|
|
WindowHandle showWindow(bool decorated = false);
|
2016-02-09 10:35:15 +00:00
|
|
|
KWayland::Client::Touch *m_touch = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
void TouchInputTest::initTestCase()
|
|
|
|
{
|
2022-04-22 17:39:12 +00:00
|
|
|
qRegisterMetaType<KWin::Window *>();
|
2020-07-07 09:32:29 +00:00
|
|
|
QSignalSpy applicationStartedSpy(kwinApp(), &Application::started);
|
2020-12-09 13:06:15 +00:00
|
|
|
QVERIFY(waylandServer()->init(s_socketName));
|
2023-05-08 10:16:00 +00:00
|
|
|
Test::setOutputConfig({
|
|
|
|
QRect(0, 0, 1280, 1024),
|
|
|
|
QRect(1280, 0, 1280, 1024),
|
|
|
|
});
|
2016-02-09 10:35:15 +00:00
|
|
|
|
|
|
|
kwinApp()->start();
|
2020-07-07 09:32:29 +00:00
|
|
|
QVERIFY(applicationStartedSpy.wait());
|
2022-07-11 10:41:15 +00:00
|
|
|
const auto outputs = workspace()->outputs();
|
2021-08-31 07:03:05 +00:00
|
|
|
QCOMPARE(outputs.count(), 2);
|
|
|
|
QCOMPARE(outputs[0]->geometry(), QRect(0, 0, 1280, 1024));
|
|
|
|
QCOMPARE(outputs[1]->geometry(), QRect(1280, 0, 1280, 1024));
|
2016-02-09 10:35:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TouchInputTest::init()
|
|
|
|
{
|
2022-03-23 10:13:38 +00:00
|
|
|
QVERIFY(Test::setupWaylandConnection(Test::AdditionalWaylandInterface::Seat | Test::AdditionalWaylandInterface::XdgDecorationV1));
|
2016-06-30 11:32:54 +00:00
|
|
|
QVERIFY(Test::waitForWaylandTouch());
|
|
|
|
m_touch = Test::waylandSeat()->createTouch(Test::waylandSeat());
|
2016-02-09 10:35:15 +00:00
|
|
|
QVERIFY(m_touch);
|
|
|
|
QVERIFY(m_touch->isValid());
|
|
|
|
|
2021-08-28 18:58:29 +00:00
|
|
|
workspace()->setActiveOutput(QPoint(640, 512));
|
2023-02-09 13:07:56 +00:00
|
|
|
input()->pointer()->warp(QPoint(640, 512));
|
2016-02-09 10:35:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TouchInputTest::cleanup()
|
|
|
|
{
|
|
|
|
delete m_touch;
|
|
|
|
m_touch = nullptr;
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::destroyWaylandConnection();
|
2016-02-09 10:35:15 +00:00
|
|
|
}
|
|
|
|
|
2024-03-10 14:32:54 +00:00
|
|
|
TouchInputTest::WindowHandle TouchInputTest::showWindow(bool decorated)
|
2016-02-09 10:35:15 +00:00
|
|
|
{
|
2022-03-23 10:13:38 +00:00
|
|
|
#define VERIFY(statement) \
|
|
|
|
if (!QTest::qVerify((statement), #statement, "", __FILE__, __LINE__)) \
|
2024-03-10 19:52:47 +00:00
|
|
|
return {};
|
2022-03-23 10:13:38 +00:00
|
|
|
#define COMPARE(actual, expected) \
|
|
|
|
if (!QTest::qCompare(actual, expected, #actual, #expected, __FILE__, __LINE__)) \
|
2024-03-10 19:52:47 +00:00
|
|
|
return {};
|
2016-02-09 10:35:15 +00:00
|
|
|
|
2022-08-16 11:43:33 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> surface = Test::createSurface();
|
|
|
|
VERIFY(surface.get());
|
2024-03-10 14:32:54 +00:00
|
|
|
std::unique_ptr<Test::XdgToplevel> shellSurface = Test::createXdgToplevelSurface(surface.get(), Test::CreationSetup::CreateOnly);
|
|
|
|
VERIFY(shellSurface.get());
|
2024-03-10 19:52:47 +00:00
|
|
|
std::unique_ptr<Test::XdgToplevelDecorationV1> decoration;
|
2017-01-10 18:27:42 +00:00
|
|
|
if (decorated) {
|
2024-03-10 19:52:47 +00:00
|
|
|
decoration = Test::createXdgToplevelDecorationV1(shellSurface.get());
|
wayland: Properly handle async xdg-decoration updates
Currently, if a window switches between SSD and CSD, it is possible to
encounter a "corrupted" state where the server-side decoration is wrapped
around the window while it still has the client-side decoration.
The xdg-decoration protocol fixes this problem by saying that decoration
updates are bound to xdg_surface configure events.
At the moment, kwin sort of applies decoration updates immediately. With
this change, decoration updates will be done according to the spec.
If the compositor wants to create a decoration, it will send a configure
event and apply the decoration when the configure event is acked by the
client. In order to send the configure event with a good window geometry
size, kwin will create the decoration to query the border size but not
assign it to the client yet. As is, KDecoration api doesn't make
querying the border size ahead of time easy. The decoration plugin can
assign arbitrary border sizes to windows as it pleases it. We could change
that, but it effectively means starting KDecoration3 and setting existing
window deco ecosystem around kwin on fire the second time, that's off the
table.
If the compositor wants to remove the decoration, it will send a
configure event. When the configure event is acked and the surface is
committed, the window decoration will be destroyed.
Sync'ing decoration updates to configure events ensures that we cannot
end up with having both client-side and server-side decoration. It also
helps us to fix a bunch of geometry related issues caused by creating
and destroying the decoration without any surface buffer attached yet.
BUG: 445259
2021-01-27 15:35:13 +00:00
|
|
|
decoration->set_mode(Test::XdgToplevelDecorationV1::mode_server_side);
|
2017-01-10 18:27:42 +00:00
|
|
|
}
|
wayland: Properly handle async xdg-decoration updates
Currently, if a window switches between SSD and CSD, it is possible to
encounter a "corrupted" state where the server-side decoration is wrapped
around the window while it still has the client-side decoration.
The xdg-decoration protocol fixes this problem by saying that decoration
updates are bound to xdg_surface configure events.
At the moment, kwin sort of applies decoration updates immediately. With
this change, decoration updates will be done according to the spec.
If the compositor wants to create a decoration, it will send a configure
event and apply the decoration when the configure event is acked by the
client. In order to send the configure event with a good window geometry
size, kwin will create the decoration to query the border size but not
assign it to the client yet. As is, KDecoration api doesn't make
querying the border size ahead of time easy. The decoration plugin can
assign arbitrary border sizes to windows as it pleases it. We could change
that, but it effectively means starting KDecoration3 and setting existing
window deco ecosystem around kwin on fire the second time, that's off the
table.
If the compositor wants to remove the decoration, it will send a
configure event. When the configure event is acked and the surface is
committed, the window decoration will be destroyed.
Sync'ing decoration updates to configure events ensures that we cannot
end up with having both client-side and server-side decoration. It also
helps us to fix a bunch of geometry related issues caused by creating
and destroying the decoration without any surface buffer attached yet.
BUG: 445259
2021-01-27 15:35:13 +00:00
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested);
|
|
|
|
surface->commit(KWayland::Client::Surface::CommitFlag::None);
|
|
|
|
VERIFY(surfaceConfigureRequestedSpy.wait());
|
2016-02-09 10:35:15 +00:00
|
|
|
// let's render
|
wayland: Properly handle async xdg-decoration updates
Currently, if a window switches between SSD and CSD, it is possible to
encounter a "corrupted" state where the server-side decoration is wrapped
around the window while it still has the client-side decoration.
The xdg-decoration protocol fixes this problem by saying that decoration
updates are bound to xdg_surface configure events.
At the moment, kwin sort of applies decoration updates immediately. With
this change, decoration updates will be done according to the spec.
If the compositor wants to create a decoration, it will send a configure
event and apply the decoration when the configure event is acked by the
client. In order to send the configure event with a good window geometry
size, kwin will create the decoration to query the border size but not
assign it to the client yet. As is, KDecoration api doesn't make
querying the border size ahead of time easy. The decoration plugin can
assign arbitrary border sizes to windows as it pleases it. We could change
that, but it effectively means starting KDecoration3 and setting existing
window deco ecosystem around kwin on fire the second time, that's off the
table.
If the compositor wants to remove the decoration, it will send a
configure event. When the configure event is acked and the surface is
committed, the window decoration will be destroyed.
Sync'ing decoration updates to configure events ensures that we cannot
end up with having both client-side and server-side decoration. It also
helps us to fix a bunch of geometry related issues caused by creating
and destroying the decoration without any surface buffer attached yet.
BUG: 445259
2021-01-27 15:35:13 +00:00
|
|
|
shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last().at(0).value<quint32>());
|
2022-08-16 11:43:33 +00:00
|
|
|
auto window = Test::renderAndWaitForShown(surface.get(), QSize(100, 50), Qt::blue);
|
2016-02-09 10:35:15 +00:00
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
VERIFY(window);
|
|
|
|
COMPARE(workspace()->activeWindow(), window);
|
2016-02-09 10:35:15 +00:00
|
|
|
|
|
|
|
#undef VERIFY
|
|
|
|
#undef COMPARE
|
|
|
|
|
2024-03-10 19:52:47 +00:00
|
|
|
return {window, std::move(surface), std::move(shellSurface), std::move(decoration)};
|
2016-02-09 10:35:15 +00:00
|
|
|
}
|
|
|
|
|
2018-12-01 13:52:47 +00:00
|
|
|
void TouchInputTest::testTouchHidesCursor()
|
|
|
|
{
|
2021-12-25 17:12:12 +00:00
|
|
|
QCOMPARE(Cursors::self()->isCursorHidden(), false);
|
2018-12-01 13:52:47 +00:00
|
|
|
quint32 timestamp = 1;
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(1, QPointF(125, 125), timestamp++);
|
2021-12-25 17:12:12 +00:00
|
|
|
QCOMPARE(Cursors::self()->isCursorHidden(), true);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(2, QPointF(130, 125), timestamp++);
|
|
|
|
Test::touchUp(2, timestamp++);
|
|
|
|
Test::touchUp(1, timestamp++);
|
2018-12-01 13:52:47 +00:00
|
|
|
|
|
|
|
// now a mouse event should show the cursor again
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::pointerMotion(QPointF(0, 0), timestamp++);
|
2021-12-25 17:12:12 +00:00
|
|
|
QCOMPARE(Cursors::self()->isCursorHidden(), false);
|
2018-12-01 13:52:47 +00:00
|
|
|
|
|
|
|
// touch should hide again
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(1, QPointF(125, 125), timestamp++);
|
|
|
|
Test::touchUp(1, timestamp++);
|
2021-12-25 17:12:12 +00:00
|
|
|
QCOMPARE(Cursors::self()->isCursorHidden(), true);
|
2018-12-01 13:52:47 +00:00
|
|
|
|
|
|
|
// wheel should also show
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::pointerAxisVertical(1.0, timestamp++);
|
2021-12-25 17:12:12 +00:00
|
|
|
QCOMPARE(Cursors::self()->isCursorHidden(), false);
|
2018-12-01 13:52:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-10 18:27:42 +00:00
|
|
|
void TouchInputTest::testMultipleTouchPoints_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<bool>("decorated");
|
|
|
|
|
|
|
|
QTest::newRow("undecorated") << false;
|
|
|
|
QTest::newRow("decorated") << true;
|
|
|
|
}
|
|
|
|
|
2016-02-09 10:35:15 +00:00
|
|
|
void TouchInputTest::testMultipleTouchPoints()
|
|
|
|
{
|
2017-01-10 18:27:42 +00:00
|
|
|
QFETCH(bool, decorated);
|
2024-03-10 19:52:47 +00:00
|
|
|
auto [window, surface, shellSurface, decoration] = showWindow(decorated);
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->isDecorated(), decorated);
|
|
|
|
window->move(QPoint(100, 100));
|
|
|
|
QVERIFY(window);
|
2022-11-07 21:33:00 +00:00
|
|
|
QSignalSpy sequenceStartedSpy(m_touch, &KWayland::Client::Touch::sequenceStarted);
|
|
|
|
QSignalSpy pointAddedSpy(m_touch, &KWayland::Client::Touch::pointAdded);
|
|
|
|
QSignalSpy pointMovedSpy(m_touch, &KWayland::Client::Touch::pointMoved);
|
|
|
|
QSignalSpy pointRemovedSpy(m_touch, &KWayland::Client::Touch::pointRemoved);
|
|
|
|
QSignalSpy endedSpy(m_touch, &KWayland::Client::Touch::sequenceEnded);
|
2016-02-09 10:35:15 +00:00
|
|
|
|
|
|
|
quint32 timestamp = 1;
|
2022-11-08 17:40:58 +00:00
|
|
|
Test::touchDown(1, window->mapFromLocal(QPointF(25, 25)), timestamp++);
|
2016-02-09 10:35:15 +00:00
|
|
|
QVERIFY(sequenceStartedSpy.wait());
|
|
|
|
QCOMPARE(sequenceStartedSpy.count(), 1);
|
|
|
|
QCOMPARE(m_touch->sequence().count(), 1);
|
|
|
|
QCOMPARE(m_touch->sequence().first()->isDown(), true);
|
|
|
|
QCOMPARE(m_touch->sequence().first()->position(), QPointF(25, 25));
|
|
|
|
QCOMPARE(pointAddedSpy.count(), 0);
|
|
|
|
QCOMPARE(pointMovedSpy.count(), 0);
|
|
|
|
|
|
|
|
// a point outside the window
|
2022-11-08 17:40:58 +00:00
|
|
|
Test::touchDown(2, window->mapFromLocal(QPointF(-100, -100)), timestamp++);
|
2016-02-09 10:35:15 +00:00
|
|
|
QVERIFY(pointAddedSpy.wait());
|
|
|
|
QCOMPARE(pointAddedSpy.count(), 1);
|
|
|
|
QCOMPARE(m_touch->sequence().count(), 2);
|
|
|
|
QCOMPARE(m_touch->sequence().at(1)->isDown(), true);
|
|
|
|
QCOMPARE(m_touch->sequence().at(1)->position(), QPointF(-100, -100));
|
|
|
|
QCOMPARE(pointMovedSpy.count(), 0);
|
|
|
|
|
|
|
|
// let's move that one
|
2022-11-08 17:40:58 +00:00
|
|
|
Test::touchMotion(2, window->mapFromLocal(QPointF(0, 0)), timestamp++);
|
2016-02-09 10:35:15 +00:00
|
|
|
QVERIFY(pointMovedSpy.wait());
|
|
|
|
QCOMPARE(pointMovedSpy.count(), 1);
|
|
|
|
QCOMPARE(m_touch->sequence().count(), 2);
|
|
|
|
QCOMPARE(m_touch->sequence().at(1)->isDown(), true);
|
|
|
|
QCOMPARE(m_touch->sequence().at(1)->position(), QPointF(0, 0));
|
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchUp(1, timestamp++);
|
2016-02-09 10:35:15 +00:00
|
|
|
QVERIFY(pointRemovedSpy.wait());
|
|
|
|
QCOMPARE(pointRemovedSpy.count(), 1);
|
|
|
|
QCOMPARE(m_touch->sequence().count(), 2);
|
|
|
|
QCOMPARE(m_touch->sequence().first()->isDown(), false);
|
|
|
|
QCOMPARE(endedSpy.count(), 0);
|
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchUp(2, timestamp++);
|
2016-02-09 10:35:15 +00:00
|
|
|
QVERIFY(pointRemovedSpy.wait());
|
|
|
|
QCOMPARE(pointRemovedSpy.count(), 2);
|
|
|
|
QCOMPARE(m_touch->sequence().count(), 2);
|
|
|
|
QCOMPARE(m_touch->sequence().first()->isDown(), false);
|
|
|
|
QCOMPARE(m_touch->sequence().at(1)->isDown(), false);
|
|
|
|
QCOMPARE(endedSpy.count(), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TouchInputTest::testCancel()
|
|
|
|
{
|
2024-03-10 19:52:47 +00:00
|
|
|
auto [window, surface, shellSurface, decoration] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
window->move(QPoint(100, 100));
|
|
|
|
QVERIFY(window);
|
2022-11-07 21:33:00 +00:00
|
|
|
QSignalSpy sequenceStartedSpy(m_touch, &KWayland::Client::Touch::sequenceStarted);
|
|
|
|
QSignalSpy cancelSpy(m_touch, &KWayland::Client::Touch::sequenceCanceled);
|
|
|
|
QSignalSpy pointRemovedSpy(m_touch, &KWayland::Client::Touch::pointRemoved);
|
2016-02-09 10:35:15 +00:00
|
|
|
|
|
|
|
quint32 timestamp = 1;
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(1, QPointF(125, 125), timestamp++);
|
2016-02-09 10:35:15 +00:00
|
|
|
QVERIFY(sequenceStartedSpy.wait());
|
|
|
|
QCOMPARE(sequenceStartedSpy.count(), 1);
|
|
|
|
|
|
|
|
// cancel
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchCancel();
|
2016-02-09 10:35:15 +00:00
|
|
|
QVERIFY(cancelSpy.wait());
|
|
|
|
QCOMPARE(cancelSpy.count(), 1);
|
|
|
|
}
|
|
|
|
|
2016-02-18 08:57:18 +00:00
|
|
|
void TouchInputTest::testTouchMouseAction()
|
|
|
|
{
|
2022-04-23 19:51:16 +00:00
|
|
|
// this test verifies that a touch down on an inactive window will activate it
|
2022-11-07 21:33:00 +00:00
|
|
|
|
2016-02-18 08:57:18 +00:00
|
|
|
// create two windows
|
2024-03-10 19:52:47 +00:00
|
|
|
auto [c1, surface, shellSurface, decoration] = showWindow();
|
2016-02-18 08:57:18 +00:00
|
|
|
QVERIFY(c1);
|
2024-03-10 19:52:47 +00:00
|
|
|
auto [c2, surface2, shellSurface2, decoration2] = showWindow();
|
2016-02-18 08:57:18 +00:00
|
|
|
QVERIFY(c2);
|
|
|
|
|
|
|
|
QVERIFY(!c1->isActive());
|
|
|
|
QVERIFY(c2->isActive());
|
|
|
|
|
|
|
|
// also create a sequence started spy as the touch event should be passed through
|
2022-11-07 21:33:00 +00:00
|
|
|
QSignalSpy sequenceStartedSpy(m_touch, &KWayland::Client::Touch::sequenceStarted);
|
2016-02-18 08:57:18 +00:00
|
|
|
|
|
|
|
quint32 timestamp = 1;
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(1, c1->frameGeometry().center(), timestamp++);
|
2016-02-18 08:57:18 +00:00
|
|
|
QVERIFY(c1->isActive());
|
|
|
|
|
|
|
|
QVERIFY(sequenceStartedSpy.wait());
|
|
|
|
QCOMPARE(sequenceStartedSpy.count(), 1);
|
|
|
|
|
|
|
|
// cleanup
|
2022-04-14 14:29:51 +00:00
|
|
|
input()->touch()->cancel();
|
2021-01-17 22:18:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void TouchInputTest::testTouchPointCount()
|
|
|
|
{
|
2021-10-28 07:55:59 +00:00
|
|
|
QCOMPARE(input()->touch()->touchPointCount(), 0);
|
2021-01-17 22:18:08 +00:00
|
|
|
quint32 timestamp = 1;
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(0, QPointF(125, 125), timestamp++);
|
|
|
|
Test::touchDown(1, QPointF(125, 125), timestamp++);
|
|
|
|
Test::touchDown(2, QPointF(125, 125), timestamp++);
|
2021-10-28 07:55:59 +00:00
|
|
|
QCOMPARE(input()->touch()->touchPointCount(), 3);
|
2021-01-17 22:18:08 +00:00
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchUp(1, timestamp++);
|
2021-10-28 07:55:59 +00:00
|
|
|
QCOMPARE(input()->touch()->touchPointCount(), 2);
|
2021-01-17 22:18:08 +00:00
|
|
|
|
2022-04-14 14:29:51 +00:00
|
|
|
input()->touch()->cancel();
|
2021-10-28 07:55:59 +00:00
|
|
|
QCOMPARE(input()->touch()->touchPointCount(), 0);
|
2016-02-18 08:57:18 +00:00
|
|
|
}
|
|
|
|
|
2021-07-19 22:21:02 +00:00
|
|
|
void TouchInputTest::testUpdateFocusOnDecorationDestroy()
|
|
|
|
{
|
2022-04-23 19:51:16 +00:00
|
|
|
// This test verifies that a maximized window gets it's touch focus
|
2021-07-19 22:21:02 +00:00
|
|
|
// if decoration was focused and then destroyed on maximize with BorderlessMaximizedWindows option.
|
|
|
|
|
|
|
|
QSignalSpy sequenceEndedSpy(m_touch, &KWayland::Client::Touch::sequenceEnded);
|
|
|
|
|
|
|
|
// Enable the borderless maximized windows option.
|
2023-11-27 13:11:22 +00:00
|
|
|
auto group = kwinApp()->config()->group(QStringLiteral("Windows"));
|
2021-07-19 22:21:02 +00:00
|
|
|
group.writeEntry("BorderlessMaximizedWindows", true);
|
|
|
|
group.sync();
|
|
|
|
Workspace::self()->slotReconfigure();
|
|
|
|
QCOMPARE(options->borderlessMaximizedWindows(), true);
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
// Create the test window.
|
2022-08-01 21:29:02 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> surface(Test::createSurface());
|
|
|
|
std::unique_ptr<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.get(), Test::CreationSetup::CreateOnly));
|
|
|
|
std::unique_ptr<Test::XdgToplevelDecorationV1> decoration(Test::createXdgToplevelDecorationV1(shellSurface.get()));
|
2021-07-19 22:21:02 +00:00
|
|
|
|
2022-08-01 21:29:02 +00:00
|
|
|
QSignalSpy toplevelConfigureRequestedSpy(shellSurface.get(), &Test::XdgToplevel::configureRequested);
|
2021-07-19 22:21:02 +00:00
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested);
|
2022-08-01 21:29:02 +00:00
|
|
|
QSignalSpy decorationConfigureRequestedSpy(decoration.get(), &Test::XdgToplevelDecorationV1::configureRequested);
|
2021-07-19 22:21:02 +00:00
|
|
|
decoration->set_mode(Test::XdgToplevelDecorationV1::mode_server_side);
|
|
|
|
surface->commit(KWayland::Client::Surface::CommitFlag::None);
|
|
|
|
|
|
|
|
// Wait for the initial configure event.
|
|
|
|
Test::XdgToplevel::States states;
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 1);
|
|
|
|
QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).toSize(), QSize(0, 0));
|
|
|
|
states = toplevelConfigureRequestedSpy.last().at(1).value<Test::XdgToplevel::States>();
|
|
|
|
QVERIFY(!states.testFlag(Test::XdgToplevel::State::Activated));
|
|
|
|
QVERIFY(!states.testFlag(Test::XdgToplevel::State::Maximized));
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
// Map the window.
|
2021-07-19 22:21:02 +00:00
|
|
|
shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last().at(0).value<quint32>());
|
2022-08-01 21:29:02 +00:00
|
|
|
Window *window = Test::renderAndWaitForShown(surface.get(), QSize(100, 50), Qt::blue);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isActive());
|
|
|
|
QCOMPARE(window->maximizeMode(), MaximizeMode::MaximizeRestore);
|
|
|
|
QCOMPARE(window->requestedMaximizeMode(), MaximizeMode::MaximizeRestore);
|
|
|
|
QCOMPARE(window->isDecorated(), true);
|
|
|
|
|
|
|
|
// We should receive a configure event when the window becomes active.
|
2021-07-19 22:21:02 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 2);
|
|
|
|
states = toplevelConfigureRequestedSpy.last().at(1).value<Test::XdgToplevel::States>();
|
|
|
|
QVERIFY(states.testFlag(Test::XdgToplevel::State::Activated));
|
|
|
|
QVERIFY(!states.testFlag(Test::XdgToplevel::State::Maximized));
|
|
|
|
|
|
|
|
// Simulate decoration hover
|
|
|
|
quint32 timestamp = 0;
|
2022-04-23 19:51:16 +00:00
|
|
|
Test::touchDown(1, window->frameGeometry().topLeft(), timestamp++);
|
2021-07-19 22:21:02 +00:00
|
|
|
QVERIFY(input()->touch()->decoration());
|
|
|
|
|
|
|
|
// Maximize when on decoration
|
|
|
|
workspace()->slotWindowMaximize();
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 3);
|
|
|
|
QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).toSize(), QSize(1280, 1024));
|
|
|
|
states = toplevelConfigureRequestedSpy.last().at(1).value<Test::XdgToplevel::States>();
|
|
|
|
QVERIFY(states.testFlag(Test::XdgToplevel::State::Activated));
|
|
|
|
QVERIFY(states.testFlag(Test::XdgToplevel::State::Maximized));
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
QSignalSpy frameGeometryChangedSpy(window, &Window::frameGeometryChanged);
|
2021-07-19 22:21:02 +00:00
|
|
|
shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last().at(0).value<quint32>());
|
2022-08-01 21:29:02 +00:00
|
|
|
Test::render(surface.get(), QSize(1280, 1024), Qt::blue);
|
2021-07-19 22:21:02 +00:00
|
|
|
QVERIFY(frameGeometryChangedSpy.wait());
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->frameGeometry(), QRect(0, 0, 1280, 1024));
|
|
|
|
QCOMPARE(window->maximizeMode(), MaximizeFull);
|
|
|
|
QCOMPARE(window->requestedMaximizeMode(), MaximizeFull);
|
|
|
|
QCOMPARE(window->isDecorated(), false);
|
2021-07-19 22:21:02 +00:00
|
|
|
|
|
|
|
// Window should have focus
|
|
|
|
QVERIFY(!input()->touch()->decoration());
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchUp(1, timestamp++);
|
2021-07-19 22:21:02 +00:00
|
|
|
QVERIFY(!sequenceEndedSpy.wait(100));
|
2022-04-23 19:51:16 +00:00
|
|
|
Test::touchDown(2, window->frameGeometry().center(), timestamp++);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchUp(2, timestamp++);
|
2021-07-19 22:21:02 +00:00
|
|
|
QVERIFY(sequenceEndedSpy.wait());
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
// Destroy the window.
|
2021-07-19 22:21:02 +00:00
|
|
|
shellSurface.reset();
|
2023-04-21 20:28:48 +00:00
|
|
|
QVERIFY(Test::waitForWindowClosed(window));
|
2021-07-19 22:21:02 +00:00
|
|
|
}
|
|
|
|
|
2022-05-27 15:26:24 +00:00
|
|
|
void TouchInputTest::testGestureDetection()
|
|
|
|
{
|
2023-11-20 22:28:23 +00:00
|
|
|
#if !KWIN_BUILD_GLOBALSHORTCUTS
|
|
|
|
QSKIP("Can't test shortcuts without shortcuts");
|
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2022-05-27 15:26:24 +00:00
|
|
|
bool callbackTriggered = false;
|
|
|
|
const auto callback = [&callbackTriggered](float progress) {
|
|
|
|
callbackTriggered = true;
|
|
|
|
qWarning() << "progress callback!" << progress;
|
|
|
|
};
|
|
|
|
QAction action;
|
2022-09-11 10:14:11 +00:00
|
|
|
input()->forceRegisterTouchscreenSwipeShortcut(SwipeDirection::Right, 3, &action, callback);
|
2022-05-27 15:26:24 +00:00
|
|
|
|
|
|
|
// verify that gestures are detected
|
|
|
|
|
|
|
|
quint32 timestamp = 1;
|
|
|
|
Test::touchDown(0, QPointF(500, 125), timestamp++);
|
|
|
|
Test::touchDown(1, QPointF(500, 125), timestamp++);
|
|
|
|
Test::touchDown(2, QPointF(500, 125), timestamp++);
|
|
|
|
|
|
|
|
Test::touchMotion(0, QPointF(100, 125), timestamp++);
|
|
|
|
QVERIFY(callbackTriggered);
|
|
|
|
|
|
|
|
// verify that gestures are canceled properly
|
|
|
|
QSignalSpy gestureCancelled(&action, &QAction::triggered);
|
|
|
|
Test::touchUp(0, timestamp++);
|
|
|
|
QVERIFY(gestureCancelled.wait());
|
|
|
|
|
|
|
|
Test::touchUp(1, timestamp++);
|
|
|
|
Test::touchUp(2, timestamp++);
|
|
|
|
|
|
|
|
callbackTriggered = false;
|
|
|
|
|
|
|
|
// verify that touch points too far apart don't trigger a gesture
|
|
|
|
Test::touchDown(0, QPointF(125, 125), timestamp++);
|
|
|
|
Test::touchDown(1, QPointF(10000, 125), timestamp++);
|
|
|
|
Test::touchDown(2, QPointF(125, 125), timestamp++);
|
|
|
|
QVERIFY(!callbackTriggered);
|
|
|
|
|
|
|
|
Test::touchUp(0, timestamp++);
|
|
|
|
Test::touchUp(1, timestamp++);
|
|
|
|
Test::touchUp(2, timestamp++);
|
|
|
|
|
|
|
|
// verify that touch points triggered too slow don't trigger a gesture
|
|
|
|
Test::touchDown(0, QPointF(125, 125), timestamp++);
|
|
|
|
timestamp += 1000;
|
|
|
|
Test::touchDown(1, QPointF(125, 125), timestamp++);
|
|
|
|
Test::touchDown(2, QPointF(125, 125), timestamp++);
|
|
|
|
QVERIFY(!callbackTriggered);
|
|
|
|
|
|
|
|
Test::touchUp(0, timestamp++);
|
|
|
|
Test::touchUp(1, timestamp++);
|
|
|
|
Test::touchUp(2, timestamp++);
|
|
|
|
|
|
|
|
// verify that after a gesture has been canceled but never initiated, gestures still work
|
|
|
|
Test::touchDown(0, QPointF(500, 125), timestamp++);
|
|
|
|
Test::touchDown(1, QPointF(500, 125), timestamp++);
|
|
|
|
Test::touchDown(2, QPointF(500, 125), timestamp++);
|
|
|
|
|
|
|
|
Test::touchMotion(0, QPointF(100, 125), timestamp++);
|
|
|
|
Test::touchMotion(1, QPointF(100, 125), timestamp++);
|
|
|
|
Test::touchMotion(2, QPointF(100, 125), timestamp++);
|
|
|
|
QVERIFY(callbackTriggered);
|
|
|
|
|
|
|
|
Test::touchUp(0, timestamp++);
|
|
|
|
Test::touchUp(1, timestamp++);
|
|
|
|
Test::touchUp(2, timestamp++);
|
|
|
|
}
|
2016-02-09 10:35:15 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 08:34:19 +00:00
|
|
|
WAYLANDTEST_MAIN(KWin::TouchInputTest)
|
2016-02-09 10:35:15 +00:00
|
|
|
#include "touch_input_test.moc"
|