2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2016-02-11 09:47:21 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
2016-02-11 09:47:21 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2016-02-11 09:47:21 +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"
|
2022-11-05 10:43:41 +00:00
|
|
|
#include "core/outputbackend.h"
|
2023-03-23 11:39:20 +00:00
|
|
|
#include "libkwineffects/kwineffects.h"
|
2023-02-09 13:07:56 +00:00
|
|
|
#include "pointer_input.h"
|
2022-04-22 09:27:33 +00:00
|
|
|
#include "wayland/seat_interface.h"
|
2016-02-11 09:47:21 +00:00
|
|
|
#include "wayland_server.h"
|
2022-04-22 17:39:12 +00:00
|
|
|
#include "window.h"
|
2016-02-11 09:47:21 +00:00
|
|
|
#include "workspace.h"
|
|
|
|
|
|
|
|
#include <KWayland/Client/compositor.h>
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <KWayland/Client/connection_thread.h>
|
2016-02-11 09:47:21 +00:00
|
|
|
#include <KWayland/Client/event_queue.h>
|
|
|
|
#include <KWayland/Client/pointer.h>
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <KWayland/Client/registry.h>
|
2016-02-11 09:47:21 +00:00
|
|
|
#include <KWayland/Client/seat.h>
|
|
|
|
#include <KWayland/Client/shm_pool.h>
|
|
|
|
#include <KWayland/Client/surface.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_input_stacking_order-0");
|
|
|
|
|
|
|
|
class InputStackingOrderTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void init();
|
|
|
|
void cleanup();
|
|
|
|
void testPointerFocusUpdatesOnStackingOrderChange();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void render(KWayland::Client::Surface *surface);
|
|
|
|
};
|
|
|
|
|
|
|
|
void InputStackingOrderTest::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));
|
2022-11-16 21:03:50 +00:00
|
|
|
QMetaObject::invokeMethod(kwinApp()->outputBackend(), "setVirtualOutputs", Qt::DirectConnection, Q_ARG(QVector<QRect>, QVector<QRect>() << QRect(0, 0, 1280, 1024) << QRect(1280, 0, 1280, 1024)));
|
2016-02-11 09:47:21 +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-11 09:47:21 +00:00
|
|
|
setenv("QT_QPA_PLATFORM", "wayland", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InputStackingOrderTest::init()
|
|
|
|
{
|
2016-12-03 13:31:14 +00:00
|
|
|
QVERIFY(Test::setupWaylandConnection(Test::AdditionalWaylandInterface::Seat));
|
2016-06-30 11:32:54 +00:00
|
|
|
QVERIFY(Test::waitForWaylandPointer());
|
2016-02-11 09:47:21 +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-11 09:47:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InputStackingOrderTest::cleanup()
|
|
|
|
{
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::destroyWaylandConnection();
|
2016-02-11 09:47:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InputStackingOrderTest::render(KWayland::Client::Surface *surface)
|
|
|
|
{
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::render(surface, QSize(100, 50), Qt::blue);
|
|
|
|
Test::flushWaylandConnection();
|
2016-02-11 09:47:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void InputStackingOrderTest::testPointerFocusUpdatesOnStackingOrderChange()
|
|
|
|
{
|
|
|
|
// this test creates two windows which overlap
|
|
|
|
// the pointer is in the overlapping area which means the top most window has focus
|
|
|
|
// as soon as the top most window gets lowered the window should lose focus and the
|
|
|
|
// other window should gain focus without a mouse event in between
|
2022-11-07 21:33:00 +00:00
|
|
|
|
2016-02-11 09:47:21 +00:00
|
|
|
// create pointer and signal spy for enter and leave signals
|
2016-06-30 11:32:54 +00:00
|
|
|
auto pointer = Test::waylandSeat()->createPointer(Test::waylandSeat());
|
2016-02-11 09:47:21 +00:00
|
|
|
QVERIFY(pointer);
|
|
|
|
QVERIFY(pointer->isValid());
|
2022-11-07 21:33:00 +00:00
|
|
|
QSignalSpy enteredSpy(pointer, &KWayland::Client::Pointer::entered);
|
|
|
|
QSignalSpy leftSpy(pointer, &KWayland::Client::Pointer::left);
|
2016-02-11 09:47:21 +00:00
|
|
|
|
|
|
|
// now create the two windows and make them overlap
|
2022-04-23 08:33:23 +00:00
|
|
|
QSignalSpy windowAddedSpy(workspace(), &Workspace::windowAdded);
|
2022-08-16 11:43:33 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> surface1 = Test::createSurface();
|
2016-02-11 09:47:21 +00:00
|
|
|
QVERIFY(surface1);
|
2022-08-16 11:43:33 +00:00
|
|
|
Test::XdgToplevel *shellSurface1 = Test::createXdgToplevelSurface(surface1.get(), surface1.get());
|
2016-02-11 09:47:21 +00:00
|
|
|
QVERIFY(shellSurface1);
|
2022-08-16 11:43:33 +00:00
|
|
|
render(surface1.get());
|
2022-04-23 08:33:23 +00:00
|
|
|
QVERIFY(windowAddedSpy.wait());
|
|
|
|
Window *window1 = workspace()->activeWindow();
|
2016-02-11 09:47:21 +00:00
|
|
|
QVERIFY(window1);
|
|
|
|
|
2022-08-16 11:43:33 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> surface2 = Test::createSurface();
|
2016-02-11 09:47:21 +00:00
|
|
|
QVERIFY(surface2);
|
2022-08-16 11:43:33 +00:00
|
|
|
Test::XdgToplevel *shellSurface2 = Test::createXdgToplevelSurface(surface2.get(), surface2.get());
|
2016-02-11 09:47:21 +00:00
|
|
|
QVERIFY(shellSurface2);
|
2022-08-16 11:43:33 +00:00
|
|
|
render(surface2.get());
|
2022-04-23 08:33:23 +00:00
|
|
|
QVERIFY(windowAddedSpy.wait());
|
2016-02-11 09:47:21 +00:00
|
|
|
|
2022-04-23 08:33:23 +00:00
|
|
|
Window *window2 = workspace()->activeWindow();
|
2016-02-11 09:47:21 +00:00
|
|
|
QVERIFY(window2);
|
|
|
|
QVERIFY(window1 != window2);
|
|
|
|
|
|
|
|
// now make windows overlap
|
|
|
|
window2->move(window1->pos());
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(window1->frameGeometry(), window2->frameGeometry());
|
2016-02-11 09:47:21 +00:00
|
|
|
|
|
|
|
// enter
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::pointerMotion(QPointF(25, 25), 1);
|
2016-02-11 09:47:21 +00:00
|
|
|
QVERIFY(enteredSpy.wait());
|
|
|
|
QCOMPARE(enteredSpy.count(), 1);
|
|
|
|
// window 2 should have focus
|
2022-08-16 11:43:33 +00:00
|
|
|
QCOMPARE(pointer->enteredSurface(), surface2.get());
|
2016-02-11 09:47:21 +00:00
|
|
|
// also on the server
|
|
|
|
QCOMPARE(waylandServer()->seat()->focusedPointerSurface(), window2->surface());
|
|
|
|
|
|
|
|
// raise window 1 above window 2
|
|
|
|
QVERIFY(leftSpy.isEmpty());
|
2022-04-23 08:33:23 +00:00
|
|
|
workspace()->raiseWindow(window1);
|
2016-02-11 09:47:21 +00:00
|
|
|
// should send leave to window2
|
|
|
|
QVERIFY(leftSpy.wait());
|
|
|
|
QCOMPARE(leftSpy.count(), 1);
|
|
|
|
// and an enter to window1
|
|
|
|
QCOMPARE(enteredSpy.count(), 2);
|
2022-08-16 11:43:33 +00:00
|
|
|
QCOMPARE(pointer->enteredSurface(), surface1.get());
|
2016-02-11 09:47:21 +00:00
|
|
|
QCOMPARE(waylandServer()->seat()->focusedPointerSurface(), window1->surface());
|
|
|
|
|
|
|
|
// let's destroy window1, that should pass focus to window2 again
|
2023-03-13 19:21:11 +00:00
|
|
|
QSignalSpy windowClosedSpy(window1, &Window::closed);
|
2022-08-16 11:43:33 +00:00
|
|
|
surface1.reset();
|
2016-02-11 09:47:21 +00:00
|
|
|
QVERIFY(windowClosedSpy.wait());
|
|
|
|
QVERIFY(enteredSpy.wait());
|
|
|
|
QCOMPARE(enteredSpy.count(), 3);
|
2022-08-16 11:43:33 +00:00
|
|
|
QCOMPARE(pointer->enteredSurface(), surface2.get());
|
2016-02-11 09:47:21 +00:00
|
|
|
QCOMPARE(waylandServer()->seat()->focusedPointerSurface(), window2->surface());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
WAYLANDTEST_MAIN(KWin::InputStackingOrderTest)
|
|
|
|
#include "input_stacking_order.moc"
|