2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-02-04 10:18:45 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2016-02-04 10:18:45 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2016-02-04 10:18:45 +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"
|
2016-02-04 10:18:45 +00:00
|
|
|
#include "cursor.h"
|
2022-04-22 17:45:19 +00:00
|
|
|
#include "internalwindow.h"
|
2016-05-12 08:28:40 +00:00
|
|
|
#include "pointer_input.h"
|
2022-03-23 10:13:38 +00:00
|
|
|
#include "touch_input.h"
|
2016-02-04 10:18:45 +00:00
|
|
|
#include "wayland_server.h"
|
2022-04-22 17:39:12 +00:00
|
|
|
#include "window.h"
|
2016-02-04 10:18:45 +00:00
|
|
|
#include "workspace.h"
|
2019-06-07 09:55:11 +00:00
|
|
|
|
2016-05-12 08:28:40 +00:00
|
|
|
#include "decorations/decoratedclient.h"
|
2019-06-07 09:55:11 +00:00
|
|
|
#include "decorations/decorationbridge.h"
|
|
|
|
#include "decorations/settings.h"
|
2016-02-04 10:18:45 +00:00
|
|
|
|
|
|
|
#include <KWayland/Client/compositor.h>
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <KWayland/Client/connection_thread.h>
|
2018-05-01 14:21:12 +00:00
|
|
|
#include <KWayland/Client/keyboard.h>
|
2016-02-04 10:18:45 +00:00
|
|
|
#include <KWayland/Client/pointer.h>
|
|
|
|
#include <KWayland/Client/seat.h>
|
|
|
|
#include <KWayland/Client/shm_pool.h>
|
|
|
|
#include <KWayland/Client/surface.h>
|
|
|
|
|
2016-02-04 13:20:36 +00:00
|
|
|
#include <KDecoration2/Decoration>
|
2019-06-07 09:55:11 +00:00
|
|
|
#include <KDecoration2/DecorationSettings>
|
2016-02-04 13:20:36 +00:00
|
|
|
|
2023-07-03 19:28:19 +00:00
|
|
|
#include <QSignalSpy>
|
|
|
|
|
2016-02-04 10:18:45 +00:00
|
|
|
#include <linux/input.h>
|
|
|
|
|
2016-05-12 08:28:40 +00:00
|
|
|
Q_DECLARE_METATYPE(Qt::WindowFrameSection)
|
|
|
|
|
2016-02-04 10:18:45 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_decoration_input-0");
|
|
|
|
|
|
|
|
class DecorationInputTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void init();
|
|
|
|
void cleanup();
|
2016-05-12 08:28:40 +00:00
|
|
|
void testAxis_data();
|
2016-02-04 10:18:45 +00:00
|
|
|
void testAxis();
|
2023-08-24 13:59:22 +00:00
|
|
|
void testDoubleClickOnAllDesktops();
|
|
|
|
void testDoubleClickClose();
|
2016-05-12 14:33:03 +00:00
|
|
|
void testDoubleTap();
|
2016-02-04 13:20:36 +00:00
|
|
|
void testHover();
|
2016-03-11 11:48:01 +00:00
|
|
|
void testPressToMove_data();
|
2016-02-04 14:07:03 +00:00
|
|
|
void testPressToMove();
|
2016-05-12 14:33:03 +00:00
|
|
|
void testTapToMove_data();
|
|
|
|
void testTapToMove();
|
2016-09-15 09:44:32 +00:00
|
|
|
void testResizeOutsideWindow_data();
|
|
|
|
void testResizeOutsideWindow();
|
2017-11-11 11:28:10 +00:00
|
|
|
void testModifierClickUnrestrictedMove_data();
|
|
|
|
void testModifierClickUnrestrictedMove();
|
|
|
|
void testModifierScrollOpacity_data();
|
|
|
|
void testModifierScrollOpacity();
|
2018-02-04 20:21:54 +00:00
|
|
|
void testTouchEvents();
|
2018-05-01 14:21:12 +00:00
|
|
|
void testTooltipDoesntEatKeyEvents();
|
2016-02-04 10:18:45 +00:00
|
|
|
|
|
|
|
private:
|
2024-03-10 14:32:54 +00:00
|
|
|
std::tuple<Window *, std::unique_ptr<KWayland::Client::Surface>, std::unique_ptr<Test::XdgToplevel>> showWindow();
|
2016-02-04 10:18:45 +00:00
|
|
|
};
|
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
#define MOTION(target) Test::pointerMotion(target, timestamp++)
|
2016-02-04 10:18:45 +00:00
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
#define PRESS Test::pointerButtonPressed(BTN_LEFT, timestamp++)
|
2016-02-04 10:18:45 +00:00
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
#define RELEASE Test::pointerButtonReleased(BTN_LEFT, timestamp++)
|
2016-02-04 10:18:45 +00:00
|
|
|
|
2024-03-10 14:32:54 +00:00
|
|
|
std::tuple<Window *, std::unique_ptr<KWayland::Client::Surface>, std::unique_ptr<Test::XdgToplevel>> DecorationInputTest::showWindow()
|
2016-02-04 10:18:45 +00:00
|
|
|
{
|
2022-03-23 10:13:38 +00:00
|
|
|
#define VERIFY(statement) \
|
|
|
|
if (!QTest::qVerify((statement), #statement, "", __FILE__, __LINE__)) \
|
2023-08-24 13:59:22 +00:00
|
|
|
return {nullptr, nullptr, nullptr};
|
2022-03-23 10:13:38 +00:00
|
|
|
#define COMPARE(actual, expected) \
|
|
|
|
if (!QTest::qCompare(actual, expected, #actual, #expected, __FILE__, __LINE__)) \
|
2023-08-24 13:59:22 +00:00
|
|
|
return {nullptr, nullptr, nullptr};
|
2016-02-04 10:18:45 +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());
|
|
|
|
Test::XdgToplevelDecorationV1 *decoration = Test::createXdgToplevelDecorationV1(shellSurface.get(), 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
|
|
|
VERIFY(decoration);
|
|
|
|
|
|
|
|
QSignalSpy decorationConfigureRequestedSpy(decoration, &Test::XdgToplevelDecorationV1::configureRequested);
|
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested);
|
|
|
|
|
|
|
|
decoration->set_mode(Test::XdgToplevelDecorationV1::mode_server_side);
|
|
|
|
surface->commit(KWayland::Client::Surface::CommitFlag::None);
|
|
|
|
VERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
COMPARE(decorationConfigureRequestedSpy.last().at(0).value<Test::XdgToplevelDecorationV1::mode>(), Test::XdgToplevelDecorationV1::mode_server_side);
|
|
|
|
|
2016-02-04 10:18:45 +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(500, 50), Qt::blue);
|
2022-04-23 19:51:16 +00:00
|
|
|
VERIFY(window);
|
|
|
|
COMPARE(workspace()->activeWindow(), window);
|
2016-02-04 10:18:45 +00:00
|
|
|
|
|
|
|
#undef VERIFY
|
|
|
|
#undef COMPARE
|
|
|
|
|
2024-03-10 14:32:54 +00:00
|
|
|
return {window, std::move(surface), std::move(shellSurface)};
|
2016-02-04 10:18:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationInputTest::initTestCase()
|
|
|
|
{
|
2022-04-22 17:39:12 +00:00
|
|
|
qRegisterMetaType<KWin::Window *>();
|
2022-04-22 17:45:19 +00:00
|
|
|
qRegisterMetaType<KWin::InternalWindow *>();
|
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-04 10:18:45 +00:00
|
|
|
|
|
|
|
// change some options
|
|
|
|
KSharedConfig::Ptr config = KSharedConfig::openConfig(QString(), KConfig::SimpleConfig);
|
|
|
|
config->group(QStringLiteral("MouseBindings")).writeEntry("CommandTitlebarWheel", QStringLiteral("above/below"));
|
2016-02-04 10:56:45 +00:00
|
|
|
config->group(QStringLiteral("Windows")).writeEntry("TitlebarDoubleClickCommand", QStringLiteral("OnAllDesktops"));
|
|
|
|
config->group(QStringLiteral("Desktops")).writeEntry("Number", 2);
|
2016-02-04 10:18:45 +00:00
|
|
|
config->sync();
|
|
|
|
|
|
|
|
kwinApp()->setConfig(config);
|
|
|
|
|
|
|
|
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-04 10:18:45 +00:00
|
|
|
setenv("QT_QPA_PLATFORM", "wayland", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationInputTest::init()
|
|
|
|
{
|
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
|
|
|
QVERIFY(Test::setupWaylandConnection(Test::AdditionalWaylandInterface::Seat | Test::AdditionalWaylandInterface::XdgDecorationV1));
|
2016-06-30 11:32:54 +00:00
|
|
|
QVERIFY(Test::waitForWaylandPointer());
|
2016-02-04 10:18:45 +00:00
|
|
|
|
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-04 10:18:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationInputTest::cleanup()
|
|
|
|
{
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::destroyWaylandConnection();
|
2016-02-04 10:18:45 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 08:28:40 +00:00
|
|
|
void DecorationInputTest::testAxis_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QPoint>("decoPoint");
|
|
|
|
QTest::addColumn<Qt::WindowFrameSection>("expectedSection");
|
2019-08-27 15:01:14 +00:00
|
|
|
|
2020-09-09 09:54:44 +00:00
|
|
|
QTest::newRow("topLeft") << QPoint(0, 0) << Qt::TopLeftSection;
|
|
|
|
QTest::newRow("top") << QPoint(250, 0) << Qt::TopSection;
|
|
|
|
QTest::newRow("topRight") << QPoint(499, 0) << Qt::TopRightSection;
|
2016-05-12 08:28:40 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 10:18:45 +00:00
|
|
|
void DecorationInputTest::testAxis()
|
|
|
|
{
|
2023-01-18 18:15:29 +00:00
|
|
|
static constexpr double oneTick = 15;
|
|
|
|
|
2023-08-24 13:59:22 +00:00
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
|
|
|
QCOMPARE(window->titlebarPosition(), Qt::TopEdge);
|
|
|
|
QVERIFY(!window->keepAbove());
|
|
|
|
QVERIFY(!window->keepBelow());
|
2016-02-04 10:18:45 +00:00
|
|
|
|
|
|
|
quint32 timestamp = 1;
|
2022-11-08 17:40:58 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().center().x(), window->frameMargins().top() / 2.0));
|
2021-01-28 14:45:57 +00:00
|
|
|
QVERIFY(input()->pointer()->decoration());
|
2016-05-12 08:28:40 +00:00
|
|
|
QCOMPARE(input()->pointer()->decoration()->decoration()->sectionUnderMouse(), Qt::TitleBarArea);
|
2016-02-04 10:18:45 +00:00
|
|
|
|
|
|
|
// TODO: mouse wheel direction looks wrong to me
|
|
|
|
// simulate wheel
|
2023-01-18 18:15:29 +00:00
|
|
|
Test::pointerAxisVertical(oneTick, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->keepBelow());
|
|
|
|
QVERIFY(!window->keepAbove());
|
2023-01-18 18:15:29 +00:00
|
|
|
Test::pointerAxisVertical(-oneTick, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->keepBelow());
|
|
|
|
QVERIFY(!window->keepAbove());
|
2023-01-18 18:15:29 +00:00
|
|
|
Test::pointerAxisVertical(-oneTick, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->keepBelow());
|
|
|
|
QVERIFY(window->keepAbove());
|
2016-05-12 08:28:40 +00:00
|
|
|
|
|
|
|
// test top most deco pixel, BUG: 362860
|
2022-04-23 19:51:16 +00:00
|
|
|
window->move(QPoint(0, 0));
|
2016-05-12 08:28:40 +00:00
|
|
|
QFETCH(QPoint, decoPoint);
|
|
|
|
MOTION(decoPoint);
|
2021-01-28 14:45:57 +00:00
|
|
|
QVERIFY(input()->pointer()->decoration());
|
2022-04-28 07:44:11 +00:00
|
|
|
QCOMPARE(input()->pointer()->decoration()->window(), window);
|
2016-05-12 08:28:40 +00:00
|
|
|
QTEST(input()->pointer()->decoration()->decoration()->sectionUnderMouse(), "expectedSection");
|
2023-01-18 18:15:29 +00:00
|
|
|
Test::pointerAxisVertical(oneTick, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->keepBelow());
|
|
|
|
QVERIFY(!window->keepAbove());
|
2016-05-12 08:28:40 +00:00
|
|
|
}
|
|
|
|
|
2023-08-24 13:59:22 +00:00
|
|
|
void KWin::DecorationInputTest::testDoubleClickOnAllDesktops()
|
2016-02-04 10:56:45 +00:00
|
|
|
{
|
2023-11-27 13:11:22 +00:00
|
|
|
KConfigGroup group = kwinApp()->config()->group(QStringLiteral("Windows"));
|
2023-08-24 13:59:22 +00:00
|
|
|
group.writeEntry("TitlebarDoubleClickCommand", QStringLiteral("OnAllDesktops"));
|
|
|
|
group.sync();
|
|
|
|
workspace()->slotReconfigure();
|
|
|
|
|
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
|
|
|
QVERIFY(!window->isOnAllDesktops());
|
2016-02-04 10:56:45 +00:00
|
|
|
quint32 timestamp = 1;
|
2022-11-08 17:40:58 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().center().x(), window->frameMargins().top() / 2.0));
|
2016-02-04 10:56:45 +00:00
|
|
|
|
|
|
|
// double click
|
|
|
|
PRESS;
|
|
|
|
RELEASE;
|
|
|
|
PRESS;
|
|
|
|
RELEASE;
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isOnAllDesktops());
|
2016-02-04 10:56:45 +00:00
|
|
|
// double click again
|
|
|
|
PRESS;
|
|
|
|
RELEASE;
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isOnAllDesktops());
|
2016-02-04 10:56:45 +00:00
|
|
|
PRESS;
|
|
|
|
RELEASE;
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->isOnAllDesktops());
|
2016-02-04 10:56:45 +00:00
|
|
|
}
|
|
|
|
|
2023-08-24 13:59:22 +00:00
|
|
|
void DecorationInputTest::testDoubleClickClose()
|
|
|
|
{
|
|
|
|
// this test verifies that no crash occurs when double click is configured to close action
|
2023-11-27 13:11:22 +00:00
|
|
|
KConfigGroup group = kwinApp()->config()->group(QStringLiteral("Windows"));
|
2023-08-24 13:59:22 +00:00
|
|
|
group.writeEntry("TitlebarDoubleClickCommand", QStringLiteral("Close"));
|
|
|
|
group.sync();
|
|
|
|
workspace()->slotReconfigure();
|
|
|
|
|
|
|
|
auto [window, surface, shellSurface] = showWindow();
|
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
quint32 timestamp = 1;
|
|
|
|
MOTION(QPoint(window->frameGeometry().center().x(), window->frameMargins().top() / 2.0));
|
|
|
|
|
2024-03-10 14:32:54 +00:00
|
|
|
connect(shellSurface.get(), &Test::XdgToplevel::closeRequested, this, [&surface = surface]() {
|
2023-08-24 13:59:22 +00:00
|
|
|
surface.reset();
|
|
|
|
});
|
|
|
|
|
|
|
|
// double click
|
|
|
|
QSignalSpy closedSpy(window, &Window::closed);
|
|
|
|
window->ref();
|
|
|
|
PRESS;
|
|
|
|
RELEASE;
|
|
|
|
PRESS;
|
|
|
|
QVERIFY(closedSpy.wait());
|
|
|
|
RELEASE;
|
|
|
|
|
|
|
|
QVERIFY(window->isDeleted());
|
|
|
|
window->unref();
|
|
|
|
}
|
|
|
|
|
2016-05-12 14:33:03 +00:00
|
|
|
void KWin::DecorationInputTest::testDoubleTap()
|
|
|
|
{
|
2023-11-27 13:11:22 +00:00
|
|
|
KConfigGroup group = kwinApp()->config()->group(QStringLiteral("Windows"));
|
2023-08-24 13:59:22 +00:00
|
|
|
group.writeEntry("TitlebarDoubleClickCommand", QStringLiteral("OnAllDesktops"));
|
|
|
|
group.sync();
|
|
|
|
workspace()->slotReconfigure();
|
|
|
|
|
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
|
|
|
QVERIFY(!window->isOnAllDesktops());
|
2016-05-12 14:33:03 +00:00
|
|
|
quint32 timestamp = 1;
|
2022-11-08 17:40:58 +00:00
|
|
|
const QPoint tapPoint(window->frameGeometry().center().x(), window->frameMargins().top() / 2.0);
|
2016-05-12 14:33:03 +00:00
|
|
|
|
|
|
|
// double tap
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(0, tapPoint, timestamp++);
|
|
|
|
Test::touchUp(0, timestamp++);
|
|
|
|
Test::touchDown(0, tapPoint, timestamp++);
|
|
|
|
Test::touchUp(0, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isOnAllDesktops());
|
2016-05-12 14:33:03 +00:00
|
|
|
// double tap again
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(0, tapPoint, timestamp++);
|
|
|
|
Test::touchUp(0, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isOnAllDesktops());
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(0, tapPoint, timestamp++);
|
|
|
|
Test::touchUp(0, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->isOnAllDesktops());
|
2016-05-12 14:33:03 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 13:20:36 +00:00
|
|
|
void DecorationInputTest::testHover()
|
|
|
|
{
|
2023-08-24 13:59:22 +00:00
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
2016-02-04 13:20:36 +00:00
|
|
|
|
|
|
|
// our left border is moved out of the visible area, so move the window to a better place
|
2022-04-23 19:51:16 +00:00
|
|
|
window->move(QPoint(20, 0));
|
2016-02-04 13:20:36 +00:00
|
|
|
|
|
|
|
quint32 timestamp = 1;
|
2022-11-08 17:40:58 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().center().x(), window->frameMargins().top() / 2.0));
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->cursor(), CursorShape(Qt::ArrowCursor));
|
2016-02-04 13:20:36 +00:00
|
|
|
|
2019-06-07 09:55:11 +00:00
|
|
|
// There is a mismatch of the cursor key positions between windows
|
|
|
|
// with and without borders (with borders one can move inside a bit and still
|
|
|
|
// be on an edge, without not). We should make this consistent in KWin's core.
|
|
|
|
//
|
|
|
|
// TODO: Test input position with different border sizes.
|
|
|
|
// TODO: We should test with the fake decoration to have a fixed test environment.
|
2022-07-20 11:46:41 +00:00
|
|
|
const bool hasBorders = Workspace::self()->decorationBridge()->settings()->borderSize() != KDecoration2::BorderSize::None;
|
2019-06-07 09:55:11 +00:00
|
|
|
auto deviation = [hasBorders] {
|
|
|
|
return hasBorders ? -1 : 0;
|
|
|
|
};
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().x(), 0));
|
|
|
|
QCOMPARE(window->cursor(), CursorShape(KWin::ExtendedCursor::SizeNorthWest));
|
|
|
|
MOTION(QPoint(window->frameGeometry().x() + window->frameGeometry().width() / 2, 0));
|
|
|
|
QCOMPARE(window->cursor(), CursorShape(KWin::ExtendedCursor::SizeNorth));
|
|
|
|
MOTION(QPoint(window->frameGeometry().x() + window->frameGeometry().width() - 1, 0));
|
|
|
|
QCOMPARE(window->cursor(), CursorShape(KWin::ExtendedCursor::SizeNorthEast));
|
|
|
|
MOTION(QPoint(window->frameGeometry().x() + window->frameGeometry().width() + deviation(), window->height() / 2));
|
|
|
|
QCOMPARE(window->cursor(), CursorShape(KWin::ExtendedCursor::SizeEast));
|
|
|
|
MOTION(QPoint(window->frameGeometry().x() + window->frameGeometry().width() + deviation(), window->height() - 1));
|
|
|
|
QCOMPARE(window->cursor(), CursorShape(KWin::ExtendedCursor::SizeSouthEast));
|
|
|
|
MOTION(QPoint(window->frameGeometry().x() + window->frameGeometry().width() / 2, window->height() + deviation()));
|
|
|
|
QCOMPARE(window->cursor(), CursorShape(KWin::ExtendedCursor::SizeSouth));
|
|
|
|
MOTION(QPoint(window->frameGeometry().x(), window->height() + deviation()));
|
|
|
|
QCOMPARE(window->cursor(), CursorShape(KWin::ExtendedCursor::SizeSouthWest));
|
|
|
|
MOTION(QPoint(window->frameGeometry().x() - 1, window->height() / 2));
|
|
|
|
QCOMPARE(window->cursor(), CursorShape(KWin::ExtendedCursor::SizeWest));
|
|
|
|
|
|
|
|
MOTION(window->frameGeometry().center());
|
2016-02-04 13:20:36 +00:00
|
|
|
QEXPECT_FAIL("", "Cursor not set back on leave", Continue);
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->cursor(), CursorShape(Qt::ArrowCursor));
|
2016-02-04 13:20:36 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 11:48:01 +00:00
|
|
|
void DecorationInputTest::testPressToMove_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QPoint>("offset");
|
|
|
|
QTest::addColumn<QPoint>("offset2");
|
|
|
|
QTest::addColumn<QPoint>("offset3");
|
2019-08-27 15:01:14 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("To right") << QPoint(10, 0) << QPoint(20, 0) << QPoint(30, 0);
|
|
|
|
QTest::newRow("To left") << QPoint(-10, 0) << QPoint(-20, 0) << QPoint(-30, 0);
|
|
|
|
QTest::newRow("To bottom") << QPoint(0, 10) << QPoint(0, 20) << QPoint(0, 30);
|
|
|
|
QTest::newRow("To top") << QPoint(0, -10) << QPoint(0, -20) << QPoint(0, -30);
|
2016-03-11 11:48:01 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 14:07:03 +00:00
|
|
|
void DecorationInputTest::testPressToMove()
|
|
|
|
{
|
2023-08-24 13:59:22 +00:00
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
2022-07-11 12:20:35 +00:00
|
|
|
window->move(workspace()->activeOutput()->geometry().center() - QPoint(window->width() / 2, window->height() / 2));
|
2023-02-18 11:38:08 +00:00
|
|
|
QSignalSpy interactiveMoveResizeStartedSpy(window, &Window::interactiveMoveResizeStarted);
|
|
|
|
QSignalSpy interactiveMoveResizeFinishedSpy(window, &Window::interactiveMoveResizeFinished);
|
2016-02-04 14:07:03 +00:00
|
|
|
|
|
|
|
quint32 timestamp = 1;
|
2022-11-08 17:40:58 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().center().x(), window->y() + window->frameMargins().top() / 2.0));
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->cursor(), CursorShape(Qt::ArrowCursor));
|
2016-02-04 14:07:03 +00:00
|
|
|
|
|
|
|
PRESS;
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->isInteractiveMove());
|
2016-03-11 11:48:01 +00:00
|
|
|
QFETCH(QPoint, offset);
|
2022-11-08 17:40:58 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().center().x(), window->y() + window->frameMargins().top() / 2.0) + offset);
|
2022-05-16 20:13:39 +00:00
|
|
|
const QPointF oldPos = window->pos();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isInteractiveMove());
|
2023-02-18 11:38:08 +00:00
|
|
|
QCOMPARE(interactiveMoveResizeStartedSpy.count(), 1);
|
2016-02-04 14:07:03 +00:00
|
|
|
|
|
|
|
RELEASE;
|
2022-04-23 19:51:16 +00:00
|
|
|
QTRY_VERIFY(!window->isInteractiveMove());
|
2023-02-18 11:38:08 +00:00
|
|
|
QCOMPARE(interactiveMoveResizeFinishedSpy.count(), 1);
|
2016-02-04 14:07:03 +00:00
|
|
|
QEXPECT_FAIL("", "Just trigger move doesn't move the window", Continue);
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->pos(), oldPos + offset);
|
2016-02-04 14:07:03 +00:00
|
|
|
|
|
|
|
// again
|
|
|
|
PRESS;
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->isInteractiveMove());
|
2016-03-11 11:48:01 +00:00
|
|
|
QFETCH(QPoint, offset2);
|
2022-11-08 17:40:58 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().center().x(), window->y() + window->frameMargins().top() / 2.0) + offset2);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isInteractiveMove());
|
2023-02-18 11:38:08 +00:00
|
|
|
QCOMPARE(interactiveMoveResizeStartedSpy.count(), 2);
|
2016-03-11 11:48:01 +00:00
|
|
|
QFETCH(QPoint, offset3);
|
2022-11-08 17:40:58 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().center().x(), window->y() + window->frameMargins().top() / 2.0) + offset3);
|
2016-02-04 14:07:03 +00:00
|
|
|
|
|
|
|
RELEASE;
|
2022-04-23 19:51:16 +00:00
|
|
|
QTRY_VERIFY(!window->isInteractiveMove());
|
2023-02-18 11:38:08 +00:00
|
|
|
QCOMPARE(interactiveMoveResizeFinishedSpy.count(), 2);
|
2016-03-11 11:48:01 +00:00
|
|
|
// TODO: the offset should also be included
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->pos(), oldPos + offset2 + offset3);
|
2016-02-04 14:07:03 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 14:33:03 +00:00
|
|
|
void DecorationInputTest::testTapToMove_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QPoint>("offset");
|
|
|
|
QTest::addColumn<QPoint>("offset2");
|
|
|
|
QTest::addColumn<QPoint>("offset3");
|
2019-08-27 15:01:14 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("To right") << QPoint(10, 0) << QPoint(20, 0) << QPoint(30, 0);
|
|
|
|
QTest::newRow("To left") << QPoint(-10, 0) << QPoint(-20, 0) << QPoint(-30, 0);
|
|
|
|
QTest::newRow("To bottom") << QPoint(0, 10) << QPoint(0, 20) << QPoint(0, 30);
|
|
|
|
QTest::newRow("To top") << QPoint(0, -10) << QPoint(0, -20) << QPoint(0, -30);
|
2016-05-12 14:33:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationInputTest::testTapToMove()
|
|
|
|
{
|
2023-08-24 13:59:22 +00:00
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
2022-07-11 12:20:35 +00:00
|
|
|
window->move(workspace()->activeOutput()->geometry().center() - QPoint(window->width() / 2, window->height() / 2));
|
2023-02-18 11:38:08 +00:00
|
|
|
QSignalSpy interactiveMoveResizeStartedSpy(window, &Window::interactiveMoveResizeStarted);
|
|
|
|
QSignalSpy interactiveMoveResizeFinishedSpy(window, &Window::interactiveMoveResizeFinished);
|
2016-05-12 14:33:03 +00:00
|
|
|
|
|
|
|
quint32 timestamp = 1;
|
2022-11-08 17:40:58 +00:00
|
|
|
QPoint p = QPoint(window->frameGeometry().center().x(), window->y() + window->frameMargins().top() / 2.0);
|
2016-05-12 14:33:03 +00:00
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(0, p, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->isInteractiveMove());
|
2016-05-12 14:33:03 +00:00
|
|
|
QFETCH(QPoint, offset);
|
|
|
|
QCOMPARE(input()->touch()->decorationPressId(), 0);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchMotion(0, p + offset, timestamp++);
|
2022-05-16 20:13:39 +00:00
|
|
|
const QPointF oldPos = window->pos();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isInteractiveMove());
|
2023-02-18 11:38:08 +00:00
|
|
|
QCOMPARE(interactiveMoveResizeStartedSpy.count(), 1);
|
2016-05-12 14:33:03 +00:00
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchUp(0, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QTRY_VERIFY(!window->isInteractiveMove());
|
2023-02-18 11:38:08 +00:00
|
|
|
QCOMPARE(interactiveMoveResizeFinishedSpy.count(), 1);
|
2016-05-12 14:33:03 +00:00
|
|
|
QEXPECT_FAIL("", "Just trigger move doesn't move the window", Continue);
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->pos(), oldPos + offset);
|
2016-05-12 14:33:03 +00:00
|
|
|
|
|
|
|
// again
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(1, p + offset, timestamp++);
|
2016-05-12 14:33:03 +00:00
|
|
|
QCOMPARE(input()->touch()->decorationPressId(), 1);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->isInteractiveMove());
|
2016-05-12 14:33:03 +00:00
|
|
|
QFETCH(QPoint, offset2);
|
2022-11-08 17:40:58 +00:00
|
|
|
Test::touchMotion(1, QPoint(window->frameGeometry().center().x(), window->y() + window->frameMargins().top() / 2.0) + offset2, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isInteractiveMove());
|
2023-02-18 11:38:08 +00:00
|
|
|
QCOMPARE(interactiveMoveResizeStartedSpy.count(), 2);
|
2016-05-12 14:33:03 +00:00
|
|
|
QFETCH(QPoint, offset3);
|
2022-11-08 17:40:58 +00:00
|
|
|
Test::touchMotion(1, QPoint(window->frameGeometry().center().x(), window->y() + window->frameMargins().top() / 2.0) + offset3, timestamp++);
|
2016-05-12 14:33:03 +00:00
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchUp(1, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QTRY_VERIFY(!window->isInteractiveMove());
|
2023-02-18 11:38:08 +00:00
|
|
|
QCOMPARE(interactiveMoveResizeFinishedSpy.count(), 2);
|
2016-05-12 14:33:03 +00:00
|
|
|
// TODO: the offset should also be included
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->pos(), oldPos + offset2 + offset3);
|
2016-05-12 14:33:03 +00:00
|
|
|
}
|
|
|
|
|
2016-09-15 09:44:32 +00:00
|
|
|
void DecorationInputTest::testResizeOutsideWindow_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<Qt::Edge>("edge");
|
|
|
|
QTest::addColumn<Qt::CursorShape>("expectedCursor");
|
|
|
|
|
2020-09-09 09:54:44 +00:00
|
|
|
QTest::newRow("left") << Qt::LeftEdge << Qt::SizeHorCursor;
|
|
|
|
QTest::newRow("right") << Qt::RightEdge << Qt::SizeHorCursor;
|
|
|
|
QTest::newRow("bottom") << Qt::BottomEdge << Qt::SizeVerCursor;
|
2016-09-15 09:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationInputTest::testResizeOutsideWindow()
|
|
|
|
{
|
|
|
|
// this test verifies that one can resize the window outside the decoration with NoSideBorder
|
|
|
|
|
|
|
|
// first adjust config
|
2023-11-27 13:11:22 +00:00
|
|
|
kwinApp()->config()->group(QStringLiteral("org.kde.kdecoration2")).writeEntry("BorderSize", QStringLiteral("None"));
|
2016-09-15 09:44:32 +00:00
|
|
|
kwinApp()->config()->sync();
|
|
|
|
workspace()->slotReconfigure();
|
|
|
|
|
|
|
|
// now create window
|
2023-08-24 13:59:22 +00:00
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
2022-07-11 12:20:35 +00:00
|
|
|
window->move(workspace()->activeOutput()->geometry().center() - QPoint(window->width() / 2, window->height() / 2));
|
2023-02-18 11:38:08 +00:00
|
|
|
QSignalSpy interactiveMoveResizeStartedSpy(window, &Window::interactiveMoveResizeStarted);
|
2016-09-15 09:44:32 +00:00
|
|
|
|
|
|
|
// go to border
|
|
|
|
quint32 timestamp = 1;
|
|
|
|
QFETCH(Qt::Edge, edge);
|
|
|
|
switch (edge) {
|
|
|
|
case Qt::LeftEdge:
|
2022-04-23 19:51:16 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().x() - 1, window->frameGeometry().center().y()));
|
2016-09-15 09:44:32 +00:00
|
|
|
break;
|
|
|
|
case Qt::RightEdge:
|
2022-04-23 19:51:16 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().x() + window->frameGeometry().width() + 1, window->frameGeometry().center().y()));
|
2016-09-15 09:44:32 +00:00
|
|
|
break;
|
|
|
|
case Qt::BottomEdge:
|
2022-04-23 19:51:16 +00:00
|
|
|
MOTION(QPoint(window->frameGeometry().center().x(), window->frameGeometry().y() + window->frameGeometry().height() + 1));
|
2016-09-15 09:44:32 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2023-02-20 21:36:45 +00:00
|
|
|
QVERIFY(!exclusiveContains(window->frameGeometry(), KWin::Cursors::self()->mouse()->pos()));
|
2016-09-15 09:44:32 +00:00
|
|
|
|
|
|
|
// pressing should trigger resize
|
|
|
|
PRESS;
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->isInteractiveResize());
|
2023-02-18 11:38:08 +00:00
|
|
|
QVERIFY(interactiveMoveResizeStartedSpy.wait());
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isInteractiveResize());
|
2016-09-15 09:44:32 +00:00
|
|
|
|
|
|
|
RELEASE;
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->isInteractiveResize());
|
2016-09-15 09:44:32 +00:00
|
|
|
}
|
|
|
|
|
2017-11-11 11:28:10 +00:00
|
|
|
void DecorationInputTest::testModifierClickUnrestrictedMove_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<int>("modifierKey");
|
|
|
|
QTest::addColumn<int>("mouseButton");
|
|
|
|
QTest::addColumn<QString>("modKey");
|
|
|
|
QTest::addColumn<bool>("capsLock");
|
|
|
|
|
|
|
|
const QString alt = QStringLiteral("Alt");
|
|
|
|
const QString meta = QStringLiteral("Meta");
|
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("Left Alt + Left Click") << KEY_LEFTALT << BTN_LEFT << alt << false;
|
|
|
|
QTest::newRow("Left Alt + Right Click") << KEY_LEFTALT << BTN_RIGHT << alt << false;
|
|
|
|
QTest::newRow("Left Alt + Middle Click") << KEY_LEFTALT << BTN_MIDDLE << alt << false;
|
|
|
|
QTest::newRow("Right Alt + Left Click") << KEY_RIGHTALT << BTN_LEFT << alt << false;
|
|
|
|
QTest::newRow("Right Alt + Right Click") << KEY_RIGHTALT << BTN_RIGHT << alt << false;
|
2020-09-09 09:54:44 +00:00
|
|
|
QTest::newRow("Right Alt + Middle Click") << KEY_RIGHTALT << BTN_MIDDLE << alt << false;
|
|
|
|
// now everything with meta
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("Left Meta + Left Click") << KEY_LEFTMETA << BTN_LEFT << meta << false;
|
|
|
|
QTest::newRow("Left Meta + Right Click") << KEY_LEFTMETA << BTN_RIGHT << meta << false;
|
|
|
|
QTest::newRow("Left Meta + Middle Click") << KEY_LEFTMETA << BTN_MIDDLE << meta << false;
|
|
|
|
QTest::newRow("Right Meta + Left Click") << KEY_RIGHTMETA << BTN_LEFT << meta << false;
|
|
|
|
QTest::newRow("Right Meta + Right Click") << KEY_RIGHTMETA << BTN_RIGHT << meta << false;
|
2020-09-09 09:54:44 +00:00
|
|
|
QTest::newRow("Right Meta + Middle Click") << KEY_RIGHTMETA << BTN_MIDDLE << meta << false;
|
|
|
|
|
|
|
|
// and with capslock
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("Left Alt + Left Click/CapsLock") << KEY_LEFTALT << BTN_LEFT << alt << true;
|
|
|
|
QTest::newRow("Left Alt + Right Click/CapsLock") << KEY_LEFTALT << BTN_RIGHT << alt << true;
|
|
|
|
QTest::newRow("Left Alt + Middle Click/CapsLock") << KEY_LEFTALT << BTN_MIDDLE << alt << true;
|
|
|
|
QTest::newRow("Right Alt + Left Click/CapsLock") << KEY_RIGHTALT << BTN_LEFT << alt << true;
|
|
|
|
QTest::newRow("Right Alt + Right Click/CapsLock") << KEY_RIGHTALT << BTN_RIGHT << alt << true;
|
2020-09-09 09:54:44 +00:00
|
|
|
QTest::newRow("Right Alt + Middle Click/CapsLock") << KEY_RIGHTALT << BTN_MIDDLE << alt << true;
|
|
|
|
// now everything with meta
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("Left Meta + Left Click/CapsLock") << KEY_LEFTMETA << BTN_LEFT << meta << true;
|
|
|
|
QTest::newRow("Left Meta + Right Click/CapsLock") << KEY_LEFTMETA << BTN_RIGHT << meta << true;
|
|
|
|
QTest::newRow("Left Meta + Middle Click/CapsLock") << KEY_LEFTMETA << BTN_MIDDLE << meta << true;
|
|
|
|
QTest::newRow("Right Meta + Left Click/CapsLock") << KEY_RIGHTMETA << BTN_LEFT << meta << true;
|
|
|
|
QTest::newRow("Right Meta + Right Click/CapsLock") << KEY_RIGHTMETA << BTN_RIGHT << meta << true;
|
2020-09-09 09:54:44 +00:00
|
|
|
QTest::newRow("Right Meta + Middle Click/CapsLock") << KEY_RIGHTMETA << BTN_MIDDLE << meta << true;
|
2017-11-11 11:28:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationInputTest::testModifierClickUnrestrictedMove()
|
|
|
|
{
|
|
|
|
// this test ensures that Alt+mouse button press triggers unrestricted move
|
|
|
|
|
|
|
|
// first modify the config for this run
|
|
|
|
QFETCH(QString, modKey);
|
2023-11-27 13:11:22 +00:00
|
|
|
KConfigGroup group = kwinApp()->config()->group(QStringLiteral("MouseBindings"));
|
2017-11-11 11:28:10 +00:00
|
|
|
group.writeEntry("CommandAllKey", modKey);
|
|
|
|
group.writeEntry("CommandAll1", "Move");
|
|
|
|
group.writeEntry("CommandAll2", "Move");
|
|
|
|
group.writeEntry("CommandAll3", "Move");
|
|
|
|
group.sync();
|
|
|
|
workspace()->slotReconfigure();
|
|
|
|
QCOMPARE(options->commandAllModifier(), modKey == QStringLiteral("Alt") ? Qt::AltModifier : Qt::MetaModifier);
|
|
|
|
QCOMPARE(options->commandAll1(), Options::MouseUnrestrictedMove);
|
|
|
|
QCOMPARE(options->commandAll2(), Options::MouseUnrestrictedMove);
|
|
|
|
QCOMPARE(options->commandAll3(), Options::MouseUnrestrictedMove);
|
|
|
|
|
|
|
|
// create a window
|
2023-08-24 13:59:22 +00:00
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
2022-07-11 12:20:35 +00:00
|
|
|
window->move(workspace()->activeOutput()->geometry().center() - QPoint(window->width() / 2, window->height() / 2));
|
2017-11-11 11:28:10 +00:00
|
|
|
// move cursor on window
|
2023-02-09 13:07:56 +00:00
|
|
|
input()->pointer()->warp(QPoint(window->frameGeometry().center().x(), window->y() + window->frameMargins().top() / 2.0));
|
2017-11-11 11:28:10 +00:00
|
|
|
|
|
|
|
// simulate modifier+click
|
|
|
|
quint32 timestamp = 1;
|
|
|
|
QFETCH(bool, capsLock);
|
|
|
|
if (capsLock) {
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(KEY_CAPSLOCK, timestamp++);
|
2017-11-11 11:28:10 +00:00
|
|
|
}
|
|
|
|
QFETCH(int, modifierKey);
|
|
|
|
QFETCH(int, mouseButton);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(modifierKey, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->isInteractiveMove());
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::pointerButtonPressed(mouseButton, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isInteractiveMove());
|
2017-11-11 11:28:10 +00:00
|
|
|
// release modifier should not change it
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyReleased(modifierKey, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window->isInteractiveMove());
|
2017-11-11 11:28:10 +00:00
|
|
|
// but releasing the key should end move/resize
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::pointerButtonReleased(mouseButton, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(!window->isInteractiveMove());
|
2017-11-11 11:28:10 +00:00
|
|
|
if (capsLock) {
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyReleased(KEY_CAPSLOCK, timestamp++);
|
2017-11-11 11:28:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationInputTest::testModifierScrollOpacity_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<int>("modifierKey");
|
|
|
|
QTest::addColumn<QString>("modKey");
|
|
|
|
QTest::addColumn<bool>("capsLock");
|
|
|
|
|
|
|
|
const QString alt = QStringLiteral("Alt");
|
|
|
|
const QString meta = QStringLiteral("Meta");
|
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("Left Alt") << KEY_LEFTALT << alt << false;
|
|
|
|
QTest::newRow("Right Alt") << KEY_RIGHTALT << alt << false;
|
|
|
|
QTest::newRow("Left Meta") << KEY_LEFTMETA << meta << false;
|
2020-09-09 09:54:44 +00:00
|
|
|
QTest::newRow("Right Meta") << KEY_RIGHTMETA << meta << false;
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("Left Alt/CapsLock") << KEY_LEFTALT << alt << true;
|
|
|
|
QTest::newRow("Right Alt/CapsLock") << KEY_RIGHTALT << alt << true;
|
|
|
|
QTest::newRow("Left Meta/CapsLock") << KEY_LEFTMETA << meta << true;
|
2020-09-09 09:54:44 +00:00
|
|
|
QTest::newRow("Right Meta/CapsLock") << KEY_RIGHTMETA << meta << true;
|
2017-11-11 11:28:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationInputTest::testModifierScrollOpacity()
|
|
|
|
{
|
|
|
|
// this test verifies that mod+wheel performs a window operation
|
|
|
|
|
|
|
|
// first modify the config for this run
|
|
|
|
QFETCH(QString, modKey);
|
2023-11-27 13:11:22 +00:00
|
|
|
KConfigGroup group = kwinApp()->config()->group(QStringLiteral("MouseBindings"));
|
2017-11-11 11:28:10 +00:00
|
|
|
group.writeEntry("CommandAllKey", modKey);
|
|
|
|
group.writeEntry("CommandAllWheel", "change opacity");
|
|
|
|
group.sync();
|
|
|
|
workspace()->slotReconfigure();
|
|
|
|
|
2023-08-24 13:59:22 +00:00
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
2022-07-11 12:20:35 +00:00
|
|
|
window->move(workspace()->activeOutput()->geometry().center() - QPoint(window->width() / 2, window->height() / 2));
|
2017-11-11 11:28:10 +00:00
|
|
|
// move cursor on window
|
2023-02-09 13:07:56 +00:00
|
|
|
input()->pointer()->warp(QPoint(window->frameGeometry().center().x(), window->y() + window->frameMargins().top() / 2.0));
|
2017-11-11 11:28:10 +00:00
|
|
|
// set the opacity to 0.5
|
2022-04-23 19:51:16 +00:00
|
|
|
window->setOpacity(0.5);
|
|
|
|
QCOMPARE(window->opacity(), 0.5);
|
2017-11-11 11:28:10 +00:00
|
|
|
|
|
|
|
// simulate modifier+wheel
|
|
|
|
quint32 timestamp = 1;
|
|
|
|
QFETCH(bool, capsLock);
|
|
|
|
if (capsLock) {
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(KEY_CAPSLOCK, timestamp++);
|
2017-11-11 11:28:10 +00:00
|
|
|
}
|
|
|
|
QFETCH(int, modifierKey);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(modifierKey, timestamp++);
|
|
|
|
Test::pointerAxisVertical(-5, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->opacity(), 0.6);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::pointerAxisVertical(5, timestamp++);
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->opacity(), 0.5);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyReleased(modifierKey, timestamp++);
|
2017-11-11 11:28:10 +00:00
|
|
|
if (capsLock) {
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyReleased(KEY_CAPSLOCK, timestamp++);
|
2017-11-11 11:28:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-04 20:21:54 +00:00
|
|
|
class EventHelper : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2022-03-23 10:13:38 +00:00
|
|
|
EventHelper()
|
|
|
|
: QObject()
|
|
|
|
{
|
|
|
|
}
|
2018-02-04 20:21:54 +00:00
|
|
|
~EventHelper() override = default;
|
|
|
|
|
|
|
|
bool eventFilter(QObject *watched, QEvent *event) override
|
|
|
|
{
|
|
|
|
if (event->type() == QEvent::HoverMove) {
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT hoverMove();
|
2018-02-04 20:21:54 +00:00
|
|
|
} else if (event->type() == QEvent::HoverLeave) {
|
2021-06-08 07:02:14 +00:00
|
|
|
Q_EMIT hoverLeave();
|
2018-02-04 20:21:54 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Q_SIGNALS:
|
|
|
|
void hoverMove();
|
|
|
|
void hoverLeave();
|
|
|
|
};
|
|
|
|
|
|
|
|
void DecorationInputTest::testTouchEvents()
|
|
|
|
{
|
|
|
|
// this test verifies that the decoration gets a hover leave event on touch release
|
|
|
|
// see BUG 386231
|
2023-08-24 13:59:22 +00:00
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
2018-02-04 20:21:54 +00:00
|
|
|
|
|
|
|
EventHelper helper;
|
2022-04-23 19:51:16 +00:00
|
|
|
window->decoration()->installEventFilter(&helper);
|
2018-02-04 20:21:54 +00:00
|
|
|
QSignalSpy hoverMoveSpy(&helper, &EventHelper::hoverMove);
|
|
|
|
QSignalSpy hoverLeaveSpy(&helper, &EventHelper::hoverLeave);
|
|
|
|
|
|
|
|
quint32 timestamp = 1;
|
2022-11-08 17:40:58 +00:00
|
|
|
const QPoint tapPoint(window->frameGeometry().center().x(), window->frameMargins().top() / 2.0);
|
2018-02-04 20:21:54 +00:00
|
|
|
|
|
|
|
QVERIFY(!input()->touch()->decoration());
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(0, tapPoint, timestamp++);
|
2018-02-04 20:21:54 +00:00
|
|
|
QVERIFY(input()->touch()->decoration());
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(input()->touch()->decoration()->decoration(), window->decoration());
|
2018-02-04 20:21:54 +00:00
|
|
|
QCOMPARE(hoverMoveSpy.count(), 1);
|
|
|
|
QCOMPARE(hoverLeaveSpy.count(), 0);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchUp(0, timestamp++);
|
2018-02-04 20:21:54 +00:00
|
|
|
QCOMPARE(hoverMoveSpy.count(), 1);
|
|
|
|
QCOMPARE(hoverLeaveSpy.count(), 1);
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
QCOMPARE(window->isInteractiveMove(), false);
|
2018-02-04 20:21:54 +00:00
|
|
|
|
|
|
|
// let's check that a hover motion is sent if the pointer is on deco, when touch release
|
2023-02-09 13:07:56 +00:00
|
|
|
input()->pointer()->warp(tapPoint);
|
2018-02-04 20:21:54 +00:00
|
|
|
QCOMPARE(hoverMoveSpy.count(), 2);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(0, tapPoint, timestamp++);
|
2018-02-04 20:21:54 +00:00
|
|
|
QCOMPARE(hoverMoveSpy.count(), 3);
|
|
|
|
QCOMPARE(hoverLeaveSpy.count(), 1);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchUp(0, timestamp++);
|
2018-09-15 00:00:24 +00:00
|
|
|
QCOMPARE(hoverMoveSpy.count(), 3);
|
|
|
|
QCOMPARE(hoverLeaveSpy.count(), 2);
|
2018-02-04 20:21:54 +00:00
|
|
|
}
|
|
|
|
|
2018-05-01 14:21:12 +00:00
|
|
|
void DecorationInputTest::testTooltipDoesntEatKeyEvents()
|
|
|
|
{
|
|
|
|
// this test verifies that a tooltip on the decoration does not steal key events
|
|
|
|
// BUG: 393253
|
|
|
|
|
|
|
|
// first create a keyboard
|
|
|
|
auto keyboard = Test::waylandSeat()->createKeyboard(Test::waylandSeat());
|
|
|
|
QVERIFY(keyboard);
|
|
|
|
QSignalSpy enteredSpy(keyboard, &KWayland::Client::Keyboard::entered);
|
|
|
|
|
2023-08-24 13:59:22 +00:00
|
|
|
const auto [window, surface, shellSurface] = showWindow();
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
|
|
|
QVERIFY(!window->noBorder());
|
2020-11-22 23:56:44 +00:00
|
|
|
QVERIFY(enteredSpy.wait());
|
2018-05-01 14:21:12 +00:00
|
|
|
|
|
|
|
QSignalSpy keyEvent(keyboard, &KWayland::Client::Keyboard::keyChanged);
|
|
|
|
QVERIFY(keyEvent.isValid());
|
|
|
|
|
2023-03-13 11:54:38 +00:00
|
|
|
QSignalSpy windowAddedSpy(workspace(), &Workspace::windowAdded);
|
2022-04-23 19:51:16 +00:00
|
|
|
window->decoratedClient()->requestShowToolTip(QStringLiteral("test"));
|
2018-05-01 14:21:12 +00:00
|
|
|
// now we should get an internal window
|
2022-04-23 08:33:23 +00:00
|
|
|
QVERIFY(windowAddedSpy.wait());
|
|
|
|
InternalWindow *internal = windowAddedSpy.first().first().value<InternalWindow *>();
|
2018-05-01 14:21:12 +00:00
|
|
|
QVERIFY(internal->isInternal());
|
2022-04-28 12:00:38 +00:00
|
|
|
QVERIFY(internal->handle()->flags().testFlag(Qt::ToolTip));
|
2018-05-01 14:21:12 +00:00
|
|
|
|
|
|
|
// now send a key
|
|
|
|
quint32 timestamp = 0;
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(KEY_A, timestamp++);
|
2018-05-01 14:21:12 +00:00
|
|
|
QVERIFY(keyEvent.wait());
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyReleased(KEY_A, timestamp++);
|
2018-05-01 14:21:12 +00:00
|
|
|
QVERIFY(keyEvent.wait());
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
window->decoratedClient()->requestHideToolTip();
|
2023-04-21 20:28:48 +00:00
|
|
|
Test::waitForWindowClosed(internal);
|
2018-05-01 14:21:12 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 10:18:45 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 08:34:19 +00:00
|
|
|
WAYLANDTEST_MAIN(KWin::DecorationInputTest)
|
2016-02-04 10:18:45 +00:00
|
|
|
#include "decoration_input_test.moc"
|