2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2015-10-14 07:58:16 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2015-10-14 07:58:16 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2015-10-14 07:58:16 +00:00
|
|
|
#include "kwin_wayland_test.h"
|
2022-03-23 10:13:38 +00:00
|
|
|
|
2016-01-29 08:54:07 +00:00
|
|
|
#include "cursor.h"
|
2019-06-11 13:24:24 +00:00
|
|
|
#include "decorations/decorationbridge.h"
|
|
|
|
#include "decorations/settings.h"
|
2022-04-14 12:33:28 +00:00
|
|
|
#include "output.h"
|
2022-03-23 10:13:38 +00:00
|
|
|
#include "platform.h"
|
|
|
|
#include "scripting/scripting.h"
|
2015-10-14 07:58:16 +00:00
|
|
|
#include "wayland_server.h"
|
2022-04-22 17:39:12 +00:00
|
|
|
#include "window.h"
|
2015-10-14 07:58:16 +00:00
|
|
|
#include "workspace.h"
|
2022-04-22 17:54:31 +00:00
|
|
|
#include "x11window.h"
|
2015-10-14 07:58:16 +00:00
|
|
|
|
2019-06-11 13:24:24 +00:00
|
|
|
#include <KDecoration2/DecoratedClient>
|
2018-02-10 20:01:28 +00:00
|
|
|
#include <KDecoration2/Decoration>
|
2019-06-11 13:24:24 +00:00
|
|
|
#include <KDecoration2/DecorationSettings>
|
2018-02-10 20:01:28 +00:00
|
|
|
|
2015-10-14 07:58:16 +00:00
|
|
|
#include <KWayland/Client/compositor.h>
|
2022-03-23 10:13:38 +00:00
|
|
|
#include <KWayland/Client/connection_thread.h>
|
2018-02-10 20:01:28 +00:00
|
|
|
#include <KWayland/Client/server_decoration.h>
|
2015-10-14 07:58:16 +00:00
|
|
|
#include <KWayland/Client/surface.h>
|
|
|
|
|
2017-07-18 19:11:06 +00:00
|
|
|
#include <QDBusConnection>
|
|
|
|
#include <QDBusMessage>
|
|
|
|
#include <QDBusPendingCall>
|
|
|
|
#include <QTemporaryFile>
|
|
|
|
#include <QTextStream>
|
|
|
|
|
2017-02-14 06:29:38 +00:00
|
|
|
#include <netwm.h>
|
|
|
|
#include <xcb/xcb_icccm.h>
|
|
|
|
|
2016-01-29 08:54:07 +00:00
|
|
|
#include <linux/input.h>
|
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
Q_DECLARE_METATYPE(KWin::QuickTileMode)
|
2015-10-14 10:11:56 +00:00
|
|
|
Q_DECLARE_METATYPE(KWin::MaximizeMode)
|
2015-10-14 07:58:16 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_kwin_quick_tiling-0");
|
|
|
|
|
|
|
|
class QuickTilingTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void init();
|
|
|
|
void cleanup();
|
|
|
|
void testQuickTiling_data();
|
|
|
|
void testQuickTiling();
|
2015-10-14 10:11:56 +00:00
|
|
|
void testQuickMaximizing_data();
|
|
|
|
void testQuickMaximizing();
|
2016-01-29 08:54:07 +00:00
|
|
|
void testQuickTilingKeyboardMove_data();
|
|
|
|
void testQuickTilingKeyboardMove();
|
2016-02-01 08:28:06 +00:00
|
|
|
void testQuickTilingPointerMove_data();
|
|
|
|
void testQuickTilingPointerMove();
|
2019-08-27 15:01:14 +00:00
|
|
|
void testQuickTilingTouchMove_data();
|
|
|
|
void testQuickTilingTouchMove();
|
2017-02-14 06:29:38 +00:00
|
|
|
void testX11QuickTiling_data();
|
|
|
|
void testX11QuickTiling();
|
|
|
|
void testX11QuickTilingAfterVertMaximize_data();
|
|
|
|
void testX11QuickTilingAfterVertMaximize();
|
2017-07-18 19:11:06 +00:00
|
|
|
void testShortcut_data();
|
|
|
|
void testShortcut();
|
|
|
|
void testScript_data();
|
|
|
|
void testScript();
|
2015-10-14 07:58:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
KWayland::Client::ConnectionThread *m_connection = nullptr;
|
|
|
|
KWayland::Client::Compositor *m_compositor = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
void QuickTilingTest::initTestCase()
|
|
|
|
{
|
2022-04-22 17:39:12 +00:00
|
|
|
qRegisterMetaType<KWin::Window *>();
|
2015-10-14 10:11:56 +00:00
|
|
|
qRegisterMetaType<KWin::MaximizeMode>("MaximizeMode");
|
2020-07-07 09:32:29 +00:00
|
|
|
QSignalSpy applicationStartedSpy(kwinApp(), &Application::started);
|
|
|
|
QVERIFY(applicationStartedSpy.isValid());
|
2016-04-07 06:28:35 +00:00
|
|
|
kwinApp()->platform()->setInitialWindowSize(QSize(1280, 1024));
|
2020-12-09 13:06:15 +00:00
|
|
|
QVERIFY(waylandServer()->init(s_socketName));
|
2019-08-26 21:16:53 +00:00
|
|
|
QMetaObject::invokeMethod(kwinApp()->platform(), "setVirtualOutputs", Qt::DirectConnection, Q_ARG(int, 2));
|
2016-01-29 08:54:07 +00:00
|
|
|
|
|
|
|
// set custom config which disables the Outline
|
|
|
|
KSharedConfig::Ptr config = KSharedConfig::openConfig(QString(), KConfig::SimpleConfig);
|
|
|
|
KConfigGroup group = config->group("Outline");
|
|
|
|
group.writeEntry(QStringLiteral("QmlPath"), QString("/does/not/exist.qml"));
|
|
|
|
group.sync();
|
|
|
|
|
|
|
|
kwinApp()->setConfig(config);
|
|
|
|
|
2017-09-18 19:05:34 +00:00
|
|
|
qputenv("XKB_DEFAULT_RULES", "evdev");
|
|
|
|
|
2015-10-14 07:58:16 +00:00
|
|
|
kwinApp()->start();
|
2020-07-07 09:32:29 +00:00
|
|
|
QVERIFY(applicationStartedSpy.wait());
|
2021-08-31 07:03:05 +00:00
|
|
|
|
|
|
|
const auto outputs = kwinApp()->platform()->enabledOutputs();
|
|
|
|
QCOMPARE(outputs.count(), 2);
|
|
|
|
QCOMPARE(outputs[0]->geometry(), QRect(0, 0, 1280, 1024));
|
|
|
|
QCOMPARE(outputs[1]->geometry(), QRect(1280, 0, 1280, 1024));
|
2015-10-14 07:58:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::init()
|
|
|
|
{
|
2018-02-10 20:01:28 +00:00
|
|
|
QVERIFY(Test::setupWaylandConnection(Test::AdditionalWaylandInterface::Decoration));
|
2016-06-30 11:32:54 +00:00
|
|
|
m_connection = Test::waylandConnection();
|
|
|
|
m_compositor = Test::waylandCompositor();
|
2015-10-14 14:32:43 +00:00
|
|
|
|
2021-08-28 18:58:29 +00:00
|
|
|
workspace()->setActiveOutput(QPoint(640, 512));
|
2020-12-03 09:53:40 +00:00
|
|
|
Cursors::self()->mouse()->setPos(QPoint(640, 512));
|
2015-10-14 07:58:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::cleanup()
|
|
|
|
{
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::destroyWaylandConnection();
|
2015-10-14 07:58:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::testQuickTiling_data()
|
|
|
|
{
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::addColumn<QuickTileMode>("mode");
|
2015-10-14 07:58:16 +00:00
|
|
|
QTest::addColumn<QRect>("expectedGeometry");
|
2015-10-14 14:34:19 +00:00
|
|
|
QTest::addColumn<QRect>("secondScreen");
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::addColumn<QuickTileMode>("expectedModeAfterToggle");
|
2015-10-14 07:58:16 +00:00
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
#define FLAG(name) QuickTileMode(QuickTileFlag::name)
|
2015-10-14 07:58:16 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("left") << FLAG(Left) << QRect(0, 0, 640, 1024) << QRect(1280, 0, 640, 1024) << FLAG(Right);
|
|
|
|
QTest::newRow("top") << FLAG(Top) << QRect(0, 0, 1280, 512) << QRect(1280, 0, 1280, 512) << FLAG(Top);
|
|
|
|
QTest::newRow("right") << FLAG(Right) << QRect(640, 0, 640, 1024) << QRect(1920, 0, 640, 1024) << QuickTileMode();
|
2017-07-15 06:55:49 +00:00
|
|
|
QTest::newRow("bottom") << FLAG(Bottom) << QRect(0, 512, 1280, 512) << QRect(1280, 512, 1280, 512) << FLAG(Bottom);
|
2015-10-14 07:58:16 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("top left") << (FLAG(Left) | FLAG(Top)) << QRect(0, 0, 640, 512) << QRect(1280, 0, 640, 512) << (FLAG(Right) | FLAG(Top));
|
|
|
|
QTest::newRow("top right") << (FLAG(Right) | FLAG(Top)) << QRect(640, 0, 640, 512) << QRect(1920, 0, 640, 512) << QuickTileMode();
|
|
|
|
QTest::newRow("bottom left") << (FLAG(Left) | FLAG(Bottom)) << QRect(0, 512, 640, 512) << QRect(1280, 512, 640, 512) << (FLAG(Right) | FLAG(Bottom));
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::newRow("bottom right") << (FLAG(Right) | FLAG(Bottom)) << QRect(640, 512, 640, 512) << QRect(1920, 512, 640, 512) << QuickTileMode();
|
2015-10-14 07:58:16 +00:00
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::newRow("maximize") << FLAG(Maximize) << QRect(0, 0, 1280, 1024) << QRect(1280, 0, 1280, 1024) << QuickTileMode();
|
2015-10-14 10:11:56 +00:00
|
|
|
|
2015-10-14 07:58:16 +00:00
|
|
|
#undef FLAG
|
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::testQuickTiling()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
QScopedPointer<KWayland::Client::Surface> surface(Test::createSurface());
|
2015-10-14 07:58:16 +00:00
|
|
|
QVERIFY(!surface.isNull());
|
2021-05-11 05:26:51 +00:00
|
|
|
QScopedPointer<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.data()));
|
2015-10-14 07:58:16 +00:00
|
|
|
QVERIFY(!shellSurface.isNull());
|
|
|
|
|
2019-08-27 15:01:14 +00:00
|
|
|
// Map the client.
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
2015-10-14 07:58:16 +00:00
|
|
|
QVERIFY(c);
|
2016-07-01 07:54:44 +00:00
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2017-07-18 19:12:37 +00:00
|
|
|
QCOMPARE(c->quickTileMode(), QuickTileMode(QuickTileFlag::None));
|
2019-08-27 15:01:14 +00:00
|
|
|
|
|
|
|
// We have to receive a configure event when the client becomes active.
|
2021-05-11 05:26:51 +00:00
|
|
|
QSignalSpy toplevelConfigureRequestedSpy(shellSurface.data(), &Test::XdgToplevel::configureRequested);
|
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested);
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.isValid());
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 1);
|
2019-08-27 15:01:14 +00:00
|
|
|
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy quickTileChangedSpy(c, &Window::quickTileModeChanged);
|
2015-10-14 07:58:16 +00:00
|
|
|
QVERIFY(quickTileChangedSpy.isValid());
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy frameGeometryChangedSpy(c, &Window::frameGeometryChanged);
|
2020-02-05 09:28:50 +00:00
|
|
|
QVERIFY(frameGeometryChangedSpy.isValid());
|
2015-10-14 07:58:16 +00:00
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
QFETCH(QuickTileMode, mode);
|
2015-10-14 07:58:16 +00:00
|
|
|
QFETCH(QRect, expectedGeometry);
|
|
|
|
c->setQuickTileMode(mode, true);
|
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 1);
|
|
|
|
// at this point the geometry did not yet change
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2015-10-14 07:58:16 +00:00
|
|
|
// but quick tile mode already changed
|
|
|
|
QCOMPARE(c->quickTileMode(), mode);
|
|
|
|
|
|
|
|
// but we got requested a new geometry
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 2);
|
|
|
|
QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).toSize(), expectedGeometry.size());
|
2015-10-14 07:58:16 +00:00
|
|
|
|
|
|
|
// attach a new image
|
2021-05-11 05:26:51 +00:00
|
|
|
shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last().at(0).value<quint32>());
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::render(surface.data(), expectedGeometry.size(), Qt::red);
|
2015-10-14 07:58:16 +00:00
|
|
|
|
2020-02-05 09:28:50 +00:00
|
|
|
QVERIFY(frameGeometryChangedSpy.wait());
|
|
|
|
QCOMPARE(frameGeometryChangedSpy.count(), 1);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), expectedGeometry);
|
2015-10-14 14:34:19 +00:00
|
|
|
|
|
|
|
// send window to other screen
|
2022-04-14 12:33:28 +00:00
|
|
|
QVector<Output *> outputs = kwinApp()->platform()->enabledOutputs();
|
2021-08-28 14:51:00 +00:00
|
|
|
QCOMPARE(c->output(), outputs[0]);
|
|
|
|
c->sendToOutput(outputs[1]);
|
|
|
|
QCOMPARE(c->output(), outputs[1]);
|
2015-10-14 14:34:19 +00:00
|
|
|
// quick tile should not be changed
|
|
|
|
QCOMPARE(c->quickTileMode(), mode);
|
2019-09-27 10:01:10 +00:00
|
|
|
QTEST(c->frameGeometry(), "secondScreen");
|
2017-07-15 06:55:49 +00:00
|
|
|
|
|
|
|
// now try to toggle again
|
|
|
|
c->setQuickTileMode(mode, true);
|
|
|
|
QTEST(c->quickTileMode(), "expectedModeAfterToggle");
|
2015-10-14 07:58:16 +00:00
|
|
|
}
|
|
|
|
|
2015-10-14 10:11:56 +00:00
|
|
|
void QuickTilingTest::testQuickMaximizing_data()
|
|
|
|
{
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::addColumn<QuickTileMode>("mode");
|
2015-10-14 10:11:56 +00:00
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
#define FLAG(name) QuickTileMode(QuickTileFlag::name)
|
2015-10-14 10:11:56 +00:00
|
|
|
|
|
|
|
QTest::newRow("maximize") << FLAG(Maximize);
|
|
|
|
QTest::newRow("none") << FLAG(None);
|
|
|
|
|
|
|
|
#undef FLAG
|
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::testQuickMaximizing()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
QScopedPointer<KWayland::Client::Surface> surface(Test::createSurface());
|
2015-10-14 10:11:56 +00:00
|
|
|
QVERIFY(!surface.isNull());
|
2021-05-11 05:26:51 +00:00
|
|
|
QScopedPointer<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.data()));
|
2015-10-14 10:11:56 +00:00
|
|
|
QVERIFY(!shellSurface.isNull());
|
|
|
|
|
2019-08-27 15:01:14 +00:00
|
|
|
// Map the client.
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
2015-10-14 10:11:56 +00:00
|
|
|
QVERIFY(c);
|
2016-07-01 07:54:44 +00:00
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2017-07-18 19:12:37 +00:00
|
|
|
QCOMPARE(c->quickTileMode(), QuickTileMode(QuickTileFlag::None));
|
2015-10-14 10:11:56 +00:00
|
|
|
QCOMPARE(c->maximizeMode(), MaximizeRestore);
|
2019-08-27 15:01:14 +00:00
|
|
|
|
|
|
|
// We have to receive a configure event upon becoming active.
|
2021-05-11 05:26:51 +00:00
|
|
|
QSignalSpy toplevelConfigureRequestedSpy(shellSurface.data(), &Test::XdgToplevel::configureRequested);
|
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested);
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.isValid());
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 1);
|
2019-08-27 15:01:14 +00:00
|
|
|
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy quickTileChangedSpy(c, &Window::quickTileModeChanged);
|
2015-10-14 10:11:56 +00:00
|
|
|
QVERIFY(quickTileChangedSpy.isValid());
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy frameGeometryChangedSpy(c, &Window::frameGeometryChanged);
|
2020-02-05 09:28:50 +00:00
|
|
|
QVERIFY(frameGeometryChangedSpy.isValid());
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy maximizeChangedSpy1(c, qOverload<Window *, MaximizeMode>(&Window::clientMaximizedStateChanged));
|
2015-10-14 10:11:56 +00:00
|
|
|
QVERIFY(maximizeChangedSpy1.isValid());
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy maximizeChangedSpy2(c, qOverload<Window *, bool, bool>(&Window::clientMaximizedStateChanged));
|
2015-10-14 10:11:56 +00:00
|
|
|
QVERIFY(maximizeChangedSpy2.isValid());
|
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
c->setQuickTileMode(QuickTileFlag::Maximize, true);
|
2015-10-14 10:11:56 +00:00
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 1);
|
2018-11-08 01:33:44 +00:00
|
|
|
|
2015-10-14 10:11:56 +00:00
|
|
|
// at this point the geometry did not yet change
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2015-10-14 10:11:56 +00:00
|
|
|
// but quick tile mode already changed
|
2017-07-18 19:12:37 +00:00
|
|
|
QCOMPARE(c->quickTileMode(), QuickTileFlag::Maximize);
|
2022-01-14 10:34:48 +00:00
|
|
|
QCOMPARE(c->geometryRestore(), QRect(0, 0, 100, 50));
|
2015-10-14 10:11:56 +00:00
|
|
|
|
|
|
|
// but we got requested a new geometry
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 2);
|
|
|
|
QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).toSize(), QSize(1280, 1024));
|
2015-10-14 10:11:56 +00:00
|
|
|
|
|
|
|
// attach a new image
|
2021-05-11 05:26:51 +00:00
|
|
|
shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last().at(0).value<quint32>());
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::render(surface.data(), QSize(1280, 1024), Qt::red);
|
2015-10-14 10:11:56 +00:00
|
|
|
|
2020-02-05 09:28:50 +00:00
|
|
|
QVERIFY(frameGeometryChangedSpy.wait());
|
|
|
|
QCOMPARE(frameGeometryChangedSpy.count(), 1);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 1280, 1024));
|
2022-01-14 10:34:48 +00:00
|
|
|
QCOMPARE(c->geometryRestore(), QRect(0, 0, 100, 50));
|
2015-10-14 10:11:56 +00:00
|
|
|
|
2018-11-08 01:33:44 +00:00
|
|
|
// client is now set to maximised
|
|
|
|
QCOMPARE(maximizeChangedSpy1.count(), 1);
|
2022-04-22 17:39:12 +00:00
|
|
|
QCOMPARE(maximizeChangedSpy1.first().first().value<KWin::Window *>(), c);
|
2018-11-08 01:33:44 +00:00
|
|
|
QCOMPARE(maximizeChangedSpy1.first().last().value<KWin::MaximizeMode>(), MaximizeFull);
|
|
|
|
QCOMPARE(maximizeChangedSpy2.count(), 1);
|
2022-04-22 17:39:12 +00:00
|
|
|
QCOMPARE(maximizeChangedSpy2.first().first().value<KWin::Window *>(), c);
|
2018-11-08 01:33:44 +00:00
|
|
|
QCOMPARE(maximizeChangedSpy2.first().at(1).toBool(), true);
|
|
|
|
QCOMPARE(maximizeChangedSpy2.first().at(2).toBool(), true);
|
|
|
|
QCOMPARE(c->maximizeMode(), MaximizeFull);
|
|
|
|
|
2015-10-14 10:11:56 +00:00
|
|
|
// go back to quick tile none
|
2017-07-18 19:12:37 +00:00
|
|
|
QFETCH(QuickTileMode, mode);
|
2015-10-14 10:11:56 +00:00
|
|
|
c->setQuickTileMode(mode, true);
|
2017-07-18 19:12:37 +00:00
|
|
|
QCOMPARE(c->quickTileMode(), QuickTileMode(QuickTileFlag::None));
|
2018-11-08 01:33:44 +00:00
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 2);
|
2015-10-14 10:11:56 +00:00
|
|
|
// geometry not yet changed
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 1280, 1024));
|
2022-01-14 10:34:48 +00:00
|
|
|
QCOMPARE(c->geometryRestore(), QRect(0, 0, 100, 50));
|
2015-10-14 10:11:56 +00:00
|
|
|
// we got requested a new geometry
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 3);
|
2022-01-14 10:34:48 +00:00
|
|
|
QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).toSize(), QSize(100, 50));
|
2015-10-14 10:11:56 +00:00
|
|
|
|
|
|
|
// render again
|
2021-05-11 05:26:51 +00:00
|
|
|
shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last().at(0).value<quint32>());
|
2016-06-30 11:32:54 +00:00
|
|
|
Test::render(surface.data(), QSize(100, 50), Qt::yellow);
|
2015-10-14 10:11:56 +00:00
|
|
|
|
2020-02-05 09:28:50 +00:00
|
|
|
QVERIFY(frameGeometryChangedSpy.wait());
|
|
|
|
QCOMPARE(frameGeometryChangedSpy.count(), 2);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2022-01-14 10:34:48 +00:00
|
|
|
QCOMPARE(c->geometryRestore(), QRect(0, 0, 100, 50));
|
2018-11-08 01:33:44 +00:00
|
|
|
QCOMPARE(maximizeChangedSpy1.count(), 2);
|
2022-04-22 17:39:12 +00:00
|
|
|
QCOMPARE(maximizeChangedSpy1.last().first().value<KWin::Window *>(), c);
|
2018-11-08 01:33:44 +00:00
|
|
|
QCOMPARE(maximizeChangedSpy1.last().last().value<KWin::MaximizeMode>(), MaximizeRestore);
|
|
|
|
QCOMPARE(maximizeChangedSpy2.count(), 2);
|
2022-04-22 17:39:12 +00:00
|
|
|
QCOMPARE(maximizeChangedSpy2.last().first().value<KWin::Window *>(), c);
|
2018-11-08 01:33:44 +00:00
|
|
|
QCOMPARE(maximizeChangedSpy2.last().at(1).toBool(), false);
|
|
|
|
QCOMPARE(maximizeChangedSpy2.last().at(2).toBool(), false);
|
2015-10-14 10:11:56 +00:00
|
|
|
}
|
|
|
|
|
2016-01-29 08:54:07 +00:00
|
|
|
void QuickTilingTest::testQuickTilingKeyboardMove_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QPoint>("targetPos");
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::addColumn<QuickTileMode>("expectedMode");
|
|
|
|
|
|
|
|
QTest::newRow("topRight") << QPoint(2559, 24) << QuickTileMode(QuickTileFlag::Top | QuickTileFlag::Right);
|
|
|
|
QTest::newRow("right") << QPoint(2559, 512) << QuickTileMode(QuickTileFlag::Right);
|
|
|
|
QTest::newRow("bottomRight") << QPoint(2559, 1023) << QuickTileMode(QuickTileFlag::Bottom | QuickTileFlag::Right);
|
|
|
|
QTest::newRow("bottomLeft") << QPoint(0, 1023) << QuickTileMode(QuickTileFlag::Bottom | QuickTileFlag::Left);
|
|
|
|
QTest::newRow("Left") << QPoint(0, 512) << QuickTileMode(QuickTileFlag::Left);
|
|
|
|
QTest::newRow("topLeft") << QPoint(0, 24) << QuickTileMode(QuickTileFlag::Top | QuickTileFlag::Left);
|
2016-01-29 08:54:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::testQuickTilingKeyboardMove()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
QScopedPointer<KWayland::Client::Surface> surface(Test::createSurface());
|
2016-01-29 08:54:07 +00:00
|
|
|
QVERIFY(!surface.isNull());
|
|
|
|
|
2021-05-11 05:26:51 +00:00
|
|
|
QScopedPointer<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.data()));
|
2016-01-29 08:54:07 +00:00
|
|
|
QVERIFY(!shellSurface.isNull());
|
|
|
|
// let's render
|
2016-07-01 07:54:44 +00:00
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
2016-01-29 08:54:07 +00:00
|
|
|
|
|
|
|
QVERIFY(c);
|
2016-07-01 07:54:44 +00:00
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2017-07-18 19:12:37 +00:00
|
|
|
QCOMPARE(c->quickTileMode(), QuickTileMode(QuickTileFlag::None));
|
2016-01-29 08:54:07 +00:00
|
|
|
QCOMPARE(c->maximizeMode(), MaximizeRestore);
|
|
|
|
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy quickTileChangedSpy(c, &Window::quickTileModeChanged);
|
2016-01-29 08:54:07 +00:00
|
|
|
QVERIFY(quickTileChangedSpy.isValid());
|
|
|
|
|
|
|
|
workspace()->performWindowOperation(c, Options::UnrestrictedMoveOp);
|
2019-04-18 12:28:11 +00:00
|
|
|
QCOMPARE(c, workspace()->moveResizeClient());
|
2020-04-02 16:18:01 +00:00
|
|
|
QCOMPARE(Cursors::self()->mouse()->pos(), QPoint(49, 24));
|
2016-01-29 08:54:07 +00:00
|
|
|
|
|
|
|
QFETCH(QPoint, targetPos);
|
|
|
|
quint32 timestamp = 1;
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(KEY_LEFTCTRL, timestamp++);
|
2020-04-02 16:18:01 +00:00
|
|
|
while (Cursors::self()->mouse()->pos().x() > targetPos.x()) {
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(KEY_LEFT, timestamp++);
|
|
|
|
Test::keyboardKeyReleased(KEY_LEFT, timestamp++);
|
2016-01-29 08:54:07 +00:00
|
|
|
}
|
2020-04-02 16:18:01 +00:00
|
|
|
while (Cursors::self()->mouse()->pos().x() < targetPos.x()) {
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(KEY_RIGHT, timestamp++);
|
|
|
|
Test::keyboardKeyReleased(KEY_RIGHT, timestamp++);
|
2016-01-29 08:54:07 +00:00
|
|
|
}
|
2020-04-02 16:18:01 +00:00
|
|
|
while (Cursors::self()->mouse()->pos().y() < targetPos.y()) {
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(KEY_DOWN, timestamp++);
|
|
|
|
Test::keyboardKeyReleased(KEY_DOWN, timestamp++);
|
2016-01-29 08:54:07 +00:00
|
|
|
}
|
2020-04-02 16:18:01 +00:00
|
|
|
while (Cursors::self()->mouse()->pos().y() > targetPos.y()) {
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(KEY_UP, timestamp++);
|
|
|
|
Test::keyboardKeyReleased(KEY_UP, timestamp++);
|
2016-01-29 08:54:07 +00:00
|
|
|
}
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyReleased(KEY_LEFTCTRL, timestamp++);
|
|
|
|
Test::keyboardKeyPressed(KEY_ENTER, timestamp++);
|
|
|
|
Test::keyboardKeyReleased(KEY_ENTER, timestamp++);
|
2020-04-02 16:18:01 +00:00
|
|
|
QCOMPARE(Cursors::self()->mouse()->pos(), targetPos);
|
2019-04-18 12:28:11 +00:00
|
|
|
QVERIFY(!workspace()->moveResizeClient());
|
2016-01-29 08:54:07 +00:00
|
|
|
|
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 1);
|
|
|
|
QTEST(c->quickTileMode(), "expectedMode");
|
|
|
|
}
|
|
|
|
|
2016-02-01 08:28:06 +00:00
|
|
|
void QuickTilingTest::testQuickTilingPointerMove_data()
|
|
|
|
{
|
2022-02-02 20:34:01 +00:00
|
|
|
QTest::addColumn<QPoint>("pointerPos");
|
|
|
|
QTest::addColumn<QSize>("tileSize");
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::addColumn<QuickTileMode>("expectedMode");
|
|
|
|
|
2022-02-02 20:34:01 +00:00
|
|
|
QTest::newRow("topRight") << QPoint(2559, 24) << QSize(640, 512) << QuickTileMode(QuickTileFlag::Top | QuickTileFlag::Right);
|
|
|
|
QTest::newRow("right") << QPoint(2559, 512) << QSize(640, 1024) << QuickTileMode(QuickTileFlag::Right);
|
|
|
|
QTest::newRow("bottomRight") << QPoint(2559, 1023) << QSize(640, 512) << QuickTileMode(QuickTileFlag::Bottom | QuickTileFlag::Right);
|
|
|
|
QTest::newRow("bottomLeft") << QPoint(0, 1023) << QSize(640, 512) << QuickTileMode(QuickTileFlag::Bottom | QuickTileFlag::Left);
|
|
|
|
QTest::newRow("Left") << QPoint(0, 512) << QSize(640, 1024) << QuickTileMode(QuickTileFlag::Left);
|
|
|
|
QTest::newRow("topLeft") << QPoint(0, 24) << QSize(640, 512) << QuickTileMode(QuickTileFlag::Top | QuickTileFlag::Left);
|
2016-02-01 08:28:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::testQuickTilingPointerMove()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
QScopedPointer<KWayland::Client::Surface> surface(Test::createSurface());
|
2022-02-02 20:34:01 +00:00
|
|
|
QScopedPointer<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.data()));
|
2019-02-26 13:41:07 +00:00
|
|
|
|
2018-01-21 10:13:28 +00:00
|
|
|
// let's render
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
|
|
|
QVERIFY(c);
|
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2018-01-21 10:13:28 +00:00
|
|
|
QCOMPARE(c->quickTileMode(), QuickTileMode(QuickTileFlag::None));
|
|
|
|
QCOMPARE(c->maximizeMode(), MaximizeRestore);
|
2019-02-26 13:41:07 +00:00
|
|
|
|
|
|
|
// we have to receive a configure event when the client becomes active
|
2022-02-02 20:34:01 +00:00
|
|
|
QSignalSpy toplevelConfigureRequestedSpy(shellSurface.data(), &Test::XdgToplevel::configureRequested);
|
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested);
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
2022-02-02 20:34:01 +00:00
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 1);
|
2018-01-21 10:13:28 +00:00
|
|
|
|
2022-02-02 20:34:01 +00:00
|
|
|
// verify that basic quick tile mode works as expected, i.e. the window is going to be
|
|
|
|
// tiled if the user drags it to a screen edge or a corner
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy quickTileChangedSpy(c, &Window::quickTileModeChanged);
|
2018-01-21 10:13:28 +00:00
|
|
|
workspace()->performWindowOperation(c, Options::UnrestrictedMoveOp);
|
2019-04-18 12:28:11 +00:00
|
|
|
QCOMPARE(c, workspace()->moveResizeClient());
|
2020-04-02 16:18:01 +00:00
|
|
|
QCOMPARE(Cursors::self()->mouse()->pos(), QPoint(49, 24));
|
2018-01-21 10:13:28 +00:00
|
|
|
|
2022-02-02 20:34:01 +00:00
|
|
|
QFETCH(QPoint, pointerPos);
|
|
|
|
QFETCH(QSize, tileSize);
|
2018-01-21 10:13:28 +00:00
|
|
|
quint32 timestamp = 1;
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::pointerButtonPressed(BTN_LEFT, timestamp++);
|
|
|
|
Test::pointerMotion(pointerPos, timestamp++);
|
|
|
|
Test::pointerButtonReleased(BTN_LEFT, timestamp++);
|
2018-01-21 10:13:28 +00:00
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 1);
|
|
|
|
QTEST(c->quickTileMode(), "expectedMode");
|
2022-02-02 20:34:01 +00:00
|
|
|
QCOMPARE(c->geometryRestore(), QRect(0, 0, 100, 50));
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 2);
|
|
|
|
QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).toSize(), tileSize);
|
|
|
|
|
|
|
|
// verify that geometry restore is correct after user untiles the window, but changes
|
|
|
|
// their mind and tiles the window again while still holding left button
|
|
|
|
workspace()->performWindowOperation(c, Options::UnrestrictedMoveOp);
|
|
|
|
QCOMPARE(c, workspace()->moveResizeClient());
|
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::pointerButtonPressed(BTN_LEFT, timestamp++); // untile the window
|
|
|
|
Test::pointerMotion(QPoint(1280, 1024) / 2, timestamp++);
|
2022-02-02 20:34:01 +00:00
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 2);
|
|
|
|
QCOMPARE(c->quickTileMode(), QuickTileMode(QuickTileFlag::None));
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
2022-01-14 10:44:46 +00:00
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 3);
|
2022-02-02 20:34:01 +00:00
|
|
|
QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).toSize(), QSize(100, 50));
|
|
|
|
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::pointerMotion(pointerPos, timestamp++); // tile the window again
|
|
|
|
Test::pointerButtonReleased(BTN_LEFT, timestamp++);
|
2022-02-02 20:34:01 +00:00
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 3);
|
|
|
|
QTEST(c->quickTileMode(), "expectedMode");
|
|
|
|
QCOMPARE(c->geometryRestore(), QRect(0, 0, 100, 50));
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 4);
|
|
|
|
QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).toSize(), tileSize);
|
2016-02-01 08:28:06 +00:00
|
|
|
}
|
|
|
|
|
2019-08-27 15:01:14 +00:00
|
|
|
void QuickTilingTest::testQuickTilingTouchMove_data()
|
2018-02-10 20:01:28 +00:00
|
|
|
{
|
|
|
|
QTest::addColumn<QPoint>("targetPos");
|
|
|
|
QTest::addColumn<QuickTileMode>("expectedMode");
|
|
|
|
|
|
|
|
QTest::newRow("topRight") << QPoint(2559, 24) << QuickTileMode(QuickTileFlag::Top | QuickTileFlag::Right);
|
|
|
|
QTest::newRow("right") << QPoint(2559, 512) << QuickTileMode(QuickTileFlag::Right);
|
|
|
|
QTest::newRow("bottomRight") << QPoint(2559, 1023) << QuickTileMode(QuickTileFlag::Bottom | QuickTileFlag::Right);
|
|
|
|
QTest::newRow("bottomLeft") << QPoint(0, 1023) << QuickTileMode(QuickTileFlag::Bottom | QuickTileFlag::Left);
|
|
|
|
QTest::newRow("Left") << QPoint(0, 512) << QuickTileMode(QuickTileFlag::Left);
|
|
|
|
QTest::newRow("topLeft") << QPoint(0, 24) << QuickTileMode(QuickTileFlag::Top | QuickTileFlag::Left);
|
|
|
|
}
|
|
|
|
|
2019-08-27 15:01:14 +00:00
|
|
|
void QuickTilingTest::testQuickTilingTouchMove()
|
2018-02-10 20:01:28 +00:00
|
|
|
{
|
|
|
|
// test verifies that touch on decoration also allows quick tiling
|
|
|
|
// see BUG: 390113
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
QScopedPointer<KWayland::Client::Surface> surface(Test::createSurface());
|
2018-02-10 20:01:28 +00:00
|
|
|
QVERIFY(!surface.isNull());
|
|
|
|
QScopedPointer<ServerSideDecoration> deco(Test::waylandServerSideDecoration()->create(surface.data()));
|
|
|
|
|
2021-12-09 07:47:55 +00:00
|
|
|
QScopedPointer<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.data(), Test::CreationSetup::CreateOnly));
|
2018-02-10 20:01:28 +00:00
|
|
|
QVERIFY(!shellSurface.isNull());
|
2019-02-26 13:41:07 +00:00
|
|
|
|
|
|
|
// wait for the initial configure event
|
2021-05-11 05:26:51 +00:00
|
|
|
QSignalSpy toplevelConfigureRequestedSpy(shellSurface.data(), &Test::XdgToplevel::configureRequested);
|
|
|
|
QVERIFY(toplevelConfigureRequestedSpy.isValid());
|
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested);
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.isValid());
|
2021-09-03 17:54:03 +00:00
|
|
|
surface->commit(KWayland::Client::Surface::CommitFlag::None);
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 1);
|
2019-02-26 13:41:07 +00:00
|
|
|
|
2018-02-10 20:01:28 +00:00
|
|
|
// let's render
|
2021-05-11 05:26:51 +00:00
|
|
|
shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last().at(0).value<quint32>());
|
2018-02-10 20:01:28 +00:00
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(1000, 50), Qt::blue);
|
|
|
|
|
|
|
|
QVERIFY(c);
|
|
|
|
QVERIFY(c->isDecorated());
|
|
|
|
const auto decoration = c->decoration();
|
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
2022-03-23 10:13:38 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(-decoration->borderLeft(), 0, 1000 + decoration->borderLeft() + decoration->borderRight(), 50 + decoration->borderTop() + decoration->borderBottom()));
|
2018-02-10 20:01:28 +00:00
|
|
|
QCOMPARE(c->quickTileMode(), QuickTileMode(QuickTileFlag::None));
|
|
|
|
QCOMPARE(c->maximizeMode(), MaximizeRestore);
|
2019-02-26 13:41:07 +00:00
|
|
|
|
|
|
|
// we have to receive a configure event when the client becomes active
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QTRY_COMPARE(surfaceConfigureRequestedSpy.count(), 2);
|
2018-02-10 20:01:28 +00:00
|
|
|
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy quickTileChangedSpy(c, &Window::quickTileModeChanged);
|
2018-02-10 20:01:28 +00:00
|
|
|
QVERIFY(quickTileChangedSpy.isValid());
|
|
|
|
|
2022-01-14 10:44:46 +00:00
|
|
|
// Note that interactive move will be started with a delay.
|
2018-02-10 20:01:28 +00:00
|
|
|
quint32 timestamp = 1;
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy clientStartUserMovedResizedSpy(c, &Window::clientStartUserMovedResized);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchDown(0, QPointF(c->frameGeometry().center().x(), c->frameGeometry().y() + decoration->borderTop() / 2), timestamp++);
|
2022-01-14 10:44:46 +00:00
|
|
|
QVERIFY(clientStartUserMovedResizedSpy.wait());
|
2019-04-18 12:28:11 +00:00
|
|
|
QCOMPARE(c, workspace()->moveResizeClient());
|
2018-02-10 20:01:28 +00:00
|
|
|
|
|
|
|
QFETCH(QPoint, targetPos);
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::touchMotion(0, targetPos, timestamp++);
|
|
|
|
Test::touchUp(0, timestamp++);
|
2019-04-18 12:28:11 +00:00
|
|
|
QVERIFY(!workspace()->moveResizeClient());
|
2018-02-10 20:01:28 +00:00
|
|
|
|
2019-06-11 13:24:24 +00:00
|
|
|
// When there are no borders, there is no change to them when quick-tiling.
|
|
|
|
// TODO: we should test both cases with fixed fake decoration for autotests.
|
|
|
|
const bool hasBorders = Decoration::DecorationBridge::self()->settings()->borderSize() != KDecoration2::BorderSize::None;
|
|
|
|
|
2018-02-10 20:01:28 +00:00
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 1);
|
|
|
|
QTEST(c->quickTileMode(), "expectedMode");
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
2022-01-14 10:44:46 +00:00
|
|
|
QTRY_COMPARE(surfaceConfigureRequestedSpy.count(), hasBorders ? 4 : 3);
|
2021-05-11 05:26:51 +00:00
|
|
|
QCOMPARE(false, toplevelConfigureRequestedSpy.last().first().toSize().isEmpty());
|
2018-02-10 20:01:28 +00:00
|
|
|
}
|
|
|
|
|
2017-02-14 06:29:38 +00:00
|
|
|
struct XcbConnectionDeleter
|
|
|
|
{
|
|
|
|
static inline void cleanup(xcb_connection_t *pointer)
|
|
|
|
{
|
|
|
|
xcb_disconnect(pointer);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void QuickTilingTest::testX11QuickTiling_data()
|
|
|
|
{
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::addColumn<QuickTileMode>("mode");
|
2017-02-14 06:29:38 +00:00
|
|
|
QTest::addColumn<QRect>("expectedGeometry");
|
2021-09-29 10:51:02 +00:00
|
|
|
QTest::addColumn<int>("screenId");
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::addColumn<QuickTileMode>("modeAfterToggle");
|
2017-02-14 06:29:38 +00:00
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
#define FLAG(name) QuickTileMode(QuickTileFlag::name)
|
2017-02-14 06:29:38 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("left") << FLAG(Left) << QRect(0, 0, 640, 1024) << 0 << QuickTileMode();
|
|
|
|
QTest::newRow("top") << FLAG(Top) << QRect(0, 0, 1280, 512) << 1 << FLAG(Top);
|
|
|
|
QTest::newRow("right") << FLAG(Right) << QRect(640, 0, 640, 1024) << 1 << FLAG(Left);
|
2017-07-15 06:55:49 +00:00
|
|
|
QTest::newRow("bottom") << FLAG(Bottom) << QRect(0, 512, 1280, 512) << 1 << FLAG(Bottom);
|
2017-02-14 06:29:38 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("top left") << (FLAG(Left) | FLAG(Top)) << QRect(0, 0, 640, 512) << 0 << QuickTileMode();
|
|
|
|
QTest::newRow("top right") << (FLAG(Right) | FLAG(Top)) << QRect(640, 0, 640, 512) << 1 << (FLAG(Left) | FLAG(Top));
|
|
|
|
QTest::newRow("bottom left") << (FLAG(Left) | FLAG(Bottom)) << QRect(0, 512, 640, 512) << 0 << QuickTileMode();
|
2017-07-15 06:55:49 +00:00
|
|
|
QTest::newRow("bottom right") << (FLAG(Right) | FLAG(Bottom)) << QRect(640, 512, 640, 512) << 1 << (FLAG(Left) | FLAG(Bottom));
|
2017-02-14 06:29:38 +00:00
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::newRow("maximize") << FLAG(Maximize) << QRect(0, 0, 1280, 1024) << 0 << QuickTileMode();
|
2017-02-14 06:29:38 +00:00
|
|
|
|
|
|
|
#undef FLAG
|
|
|
|
}
|
|
|
|
void QuickTilingTest::testX11QuickTiling()
|
|
|
|
{
|
|
|
|
QScopedPointer<xcb_connection_t, XcbConnectionDeleter> c(xcb_connect(nullptr, nullptr));
|
|
|
|
QVERIFY(!xcb_connection_has_error(c.data()));
|
|
|
|
const QRect windowGeometry(0, 0, 100, 200);
|
|
|
|
xcb_window_t w = xcb_generate_id(c.data());
|
|
|
|
xcb_create_window(c.data(), XCB_COPY_FROM_PARENT, w, rootWindow(),
|
|
|
|
windowGeometry.x(),
|
|
|
|
windowGeometry.y(),
|
|
|
|
windowGeometry.width(),
|
|
|
|
windowGeometry.height(),
|
|
|
|
0, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_COPY_FROM_PARENT, 0, nullptr);
|
|
|
|
xcb_size_hints_t hints;
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
xcb_icccm_size_hints_set_position(&hints, 1, windowGeometry.x(), windowGeometry.y());
|
|
|
|
xcb_icccm_size_hints_set_size(&hints, 1, windowGeometry.width(), windowGeometry.height());
|
|
|
|
xcb_icccm_set_wm_normal_hints(c.data(), w, &hints);
|
|
|
|
xcb_map_window(c.data(), w);
|
|
|
|
xcb_flush(c.data());
|
|
|
|
|
|
|
|
// we should get a client for it
|
|
|
|
QSignalSpy windowCreatedSpy(workspace(), &Workspace::clientAdded);
|
|
|
|
QVERIFY(windowCreatedSpy.isValid());
|
|
|
|
QVERIFY(windowCreatedSpy.wait());
|
2022-04-22 17:54:31 +00:00
|
|
|
X11Window *client = windowCreatedSpy.first().first().value<X11Window *>();
|
2017-02-14 06:29:38 +00:00
|
|
|
QVERIFY(client);
|
|
|
|
QCOMPARE(client->window(), w);
|
|
|
|
|
|
|
|
// now quick tile
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy quickTileChangedSpy(client, &Window::quickTileModeChanged);
|
2017-02-14 06:29:38 +00:00
|
|
|
QVERIFY(quickTileChangedSpy.isValid());
|
2019-09-27 10:01:10 +00:00
|
|
|
const QRect origGeo = client->frameGeometry();
|
2017-07-18 19:12:37 +00:00
|
|
|
QFETCH(QuickTileMode, mode);
|
2017-02-14 06:29:38 +00:00
|
|
|
client->setQuickTileMode(mode, true);
|
|
|
|
QCOMPARE(client->quickTileMode(), mode);
|
2019-09-27 10:01:10 +00:00
|
|
|
QTEST(client->frameGeometry(), "expectedGeometry");
|
2017-02-14 06:29:38 +00:00
|
|
|
QCOMPARE(client->geometryRestore(), origGeo);
|
|
|
|
QEXPECT_FAIL("maximize", "For maximize we get two changed signals", Continue);
|
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 1);
|
|
|
|
|
2017-07-15 06:55:49 +00:00
|
|
|
// quick tile to same edge again should also act like send to screen
|
2021-09-29 10:51:02 +00:00
|
|
|
const auto outputs = kwinApp()->platform()->enabledOutputs();
|
|
|
|
QCOMPARE(client->output(), outputs[0]);
|
2017-07-15 06:55:49 +00:00
|
|
|
client->setQuickTileMode(mode, true);
|
2021-09-29 10:51:02 +00:00
|
|
|
QFETCH(int, screenId);
|
|
|
|
QCOMPARE(client->output(), outputs[screenId]);
|
2017-07-15 06:55:49 +00:00
|
|
|
QTEST(client->quickTileMode(), "modeAfterToggle");
|
|
|
|
QCOMPARE(client->geometryRestore(), origGeo);
|
|
|
|
|
2017-02-14 06:29:38 +00:00
|
|
|
// and destroy the window again
|
|
|
|
xcb_unmap_window(c.data(), w);
|
|
|
|
xcb_destroy_window(c.data(), w);
|
|
|
|
xcb_flush(c.data());
|
|
|
|
c.reset();
|
|
|
|
|
2022-04-22 17:54:31 +00:00
|
|
|
QSignalSpy windowClosedSpy(client, &X11Window::windowClosed);
|
2017-02-14 06:29:38 +00:00
|
|
|
QVERIFY(windowClosedSpy.isValid());
|
|
|
|
QVERIFY(windowClosedSpy.wait());
|
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::testX11QuickTilingAfterVertMaximize_data()
|
|
|
|
{
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::addColumn<QuickTileMode>("mode");
|
2017-02-14 06:29:38 +00:00
|
|
|
QTest::addColumn<QRect>("expectedGeometry");
|
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
#define FLAG(name) QuickTileMode(QuickTileFlag::name)
|
2017-02-14 06:29:38 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("left") << FLAG(Left) << QRect(0, 0, 640, 1024);
|
|
|
|
QTest::newRow("top") << FLAG(Top) << QRect(0, 0, 1280, 512);
|
|
|
|
QTest::newRow("right") << FLAG(Right) << QRect(640, 0, 640, 1024);
|
2017-02-14 06:29:38 +00:00
|
|
|
QTest::newRow("bottom") << FLAG(Bottom) << QRect(0, 512, 1280, 512);
|
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
QTest::newRow("top left") << (FLAG(Left) | FLAG(Top)) << QRect(0, 0, 640, 512);
|
|
|
|
QTest::newRow("top right") << (FLAG(Right) | FLAG(Top)) << QRect(640, 0, 640, 512);
|
|
|
|
QTest::newRow("bottom left") << (FLAG(Left) | FLAG(Bottom)) << QRect(0, 512, 640, 512);
|
2017-02-14 06:29:38 +00:00
|
|
|
QTest::newRow("bottom right") << (FLAG(Right) | FLAG(Bottom)) << QRect(640, 512, 640, 512);
|
|
|
|
|
|
|
|
QTest::newRow("maximize") << FLAG(Maximize) << QRect(0, 0, 1280, 1024);
|
|
|
|
|
|
|
|
#undef FLAG
|
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::testX11QuickTilingAfterVertMaximize()
|
|
|
|
{
|
|
|
|
QScopedPointer<xcb_connection_t, XcbConnectionDeleter> c(xcb_connect(nullptr, nullptr));
|
|
|
|
QVERIFY(!xcb_connection_has_error(c.data()));
|
|
|
|
const QRect windowGeometry(0, 0, 100, 200);
|
|
|
|
xcb_window_t w = xcb_generate_id(c.data());
|
|
|
|
xcb_create_window(c.data(), XCB_COPY_FROM_PARENT, w, rootWindow(),
|
|
|
|
windowGeometry.x(),
|
|
|
|
windowGeometry.y(),
|
|
|
|
windowGeometry.width(),
|
|
|
|
windowGeometry.height(),
|
|
|
|
0, XCB_WINDOW_CLASS_INPUT_OUTPUT, XCB_COPY_FROM_PARENT, 0, nullptr);
|
|
|
|
xcb_size_hints_t hints;
|
|
|
|
memset(&hints, 0, sizeof(hints));
|
|
|
|
xcb_icccm_size_hints_set_position(&hints, 1, windowGeometry.x(), windowGeometry.y());
|
|
|
|
xcb_icccm_size_hints_set_size(&hints, 1, windowGeometry.width(), windowGeometry.height());
|
|
|
|
xcb_icccm_set_wm_normal_hints(c.data(), w, &hints);
|
|
|
|
xcb_map_window(c.data(), w);
|
|
|
|
xcb_flush(c.data());
|
|
|
|
|
|
|
|
// we should get a client for it
|
|
|
|
QSignalSpy windowCreatedSpy(workspace(), &Workspace::clientAdded);
|
|
|
|
QVERIFY(windowCreatedSpy.isValid());
|
|
|
|
QVERIFY(windowCreatedSpy.wait());
|
2022-04-22 17:54:31 +00:00
|
|
|
X11Window *client = windowCreatedSpy.first().first().value<X11Window *>();
|
2017-02-14 06:29:38 +00:00
|
|
|
QVERIFY(client);
|
|
|
|
QCOMPARE(client->window(), w);
|
|
|
|
|
2019-09-27 10:01:10 +00:00
|
|
|
const QRect origGeo = client->frameGeometry();
|
2017-02-14 06:29:38 +00:00
|
|
|
QCOMPARE(client->maximizeMode(), MaximizeRestore);
|
|
|
|
// vertically maximize the window
|
|
|
|
client->maximize(client->maximizeMode() ^ MaximizeVertical);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(client->frameGeometry().width(), origGeo.width());
|
2021-09-29 10:51:02 +00:00
|
|
|
QCOMPARE(client->height(), client->output()->geometry().height());
|
2017-02-14 06:29:38 +00:00
|
|
|
QCOMPARE(client->geometryRestore(), origGeo);
|
|
|
|
|
|
|
|
// now quick tile
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy quickTileChangedSpy(client, &Window::quickTileModeChanged);
|
2017-02-14 06:29:38 +00:00
|
|
|
QVERIFY(quickTileChangedSpy.isValid());
|
2017-07-18 19:12:37 +00:00
|
|
|
QFETCH(QuickTileMode, mode);
|
2017-02-14 06:29:38 +00:00
|
|
|
client->setQuickTileMode(mode, true);
|
|
|
|
QCOMPARE(client->quickTileMode(), mode);
|
2019-09-27 10:01:10 +00:00
|
|
|
QTEST(client->frameGeometry(), "expectedGeometry");
|
2017-02-14 06:29:38 +00:00
|
|
|
QEXPECT_FAIL("", "We get two changed events", Continue);
|
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 1);
|
|
|
|
|
|
|
|
// and destroy the window again
|
|
|
|
xcb_unmap_window(c.data(), w);
|
|
|
|
xcb_destroy_window(c.data(), w);
|
|
|
|
xcb_flush(c.data());
|
|
|
|
c.reset();
|
|
|
|
|
2022-04-22 17:54:31 +00:00
|
|
|
QSignalSpy windowClosedSpy(client, &X11Window::windowClosed);
|
2017-02-14 06:29:38 +00:00
|
|
|
QVERIFY(windowClosedSpy.isValid());
|
|
|
|
QVERIFY(windowClosedSpy.wait());
|
|
|
|
}
|
|
|
|
|
2017-07-18 19:11:06 +00:00
|
|
|
void QuickTilingTest::testShortcut_data()
|
|
|
|
{
|
2020-06-12 13:50:24 +00:00
|
|
|
QTest::addColumn<QStringList>("shortcutList");
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::addColumn<QuickTileMode>("expectedMode");
|
2017-07-18 19:11:06 +00:00
|
|
|
QTest::addColumn<QRect>("expectedGeometry");
|
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
#define FLAG(name) QuickTileMode(QuickTileFlag::name)
|
2020-06-12 13:50:24 +00:00
|
|
|
QTest::newRow("top") << QStringList{QStringLiteral("Window Quick Tile Top")} << FLAG(Top) << QRect(0, 0, 1280, 512);
|
|
|
|
QTest::newRow("bottom") << QStringList{QStringLiteral("Window Quick Tile Bottom")} << FLAG(Bottom) << QRect(0, 512, 1280, 512);
|
|
|
|
QTest::newRow("top right") << QStringList{QStringLiteral("Window Quick Tile Top Right")} << (FLAG(Top) | FLAG(Right)) << QRect(640, 0, 640, 512);
|
|
|
|
QTest::newRow("top left") << QStringList{QStringLiteral("Window Quick Tile Top Left")} << (FLAG(Top) | FLAG(Left)) << QRect(0, 0, 640, 512);
|
|
|
|
QTest::newRow("bottom right") << QStringList{QStringLiteral("Window Quick Tile Bottom Right")} << (FLAG(Bottom) | FLAG(Right)) << QRect(640, 512, 640, 512);
|
|
|
|
QTest::newRow("bottom left") << QStringList{QStringLiteral("Window Quick Tile Bottom Left")} << (FLAG(Bottom) | FLAG(Left)) << QRect(0, 512, 640, 512);
|
|
|
|
QTest::newRow("left") << QStringList{QStringLiteral("Window Quick Tile Left")} << FLAG(Left) << QRect(0, 0, 640, 1024);
|
|
|
|
QTest::newRow("right") << QStringList{QStringLiteral("Window Quick Tile Right")} << FLAG(Right) << QRect(640, 0, 640, 1024);
|
|
|
|
|
|
|
|
// Test combined actions for corner tiling
|
|
|
|
QTest::newRow("top left combined") << QStringList{QStringLiteral("Window Quick Tile Left"), QStringLiteral("Window Quick Tile Top")} << (FLAG(Top) | FLAG(Left)) << QRect(0, 0, 640, 512);
|
|
|
|
QTest::newRow("top right combined") << QStringList{QStringLiteral("Window Quick Tile Right"), QStringLiteral("Window Quick Tile Top")} << (FLAG(Top) | FLAG(Right)) << QRect(640, 0, 640, 512);
|
|
|
|
QTest::newRow("bottom left combined") << QStringList{QStringLiteral("Window Quick Tile Left"), QStringLiteral("Window Quick Tile Bottom")} << (FLAG(Bottom) | FLAG(Left)) << QRect(0, 512, 640, 512);
|
|
|
|
QTest::newRow("bottom right combined") << QStringList{QStringLiteral("Window Quick Tile Right"), QStringLiteral("Window Quick Tile Bottom")} << (FLAG(Bottom) | FLAG(Right)) << QRect(640, 512, 640, 512);
|
2017-07-18 19:11:06 +00:00
|
|
|
#undef FLAG
|
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::testShortcut()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
QScopedPointer<KWayland::Client::Surface> surface(Test::createSurface());
|
2017-07-18 19:11:06 +00:00
|
|
|
QVERIFY(!surface.isNull());
|
2021-05-11 05:26:51 +00:00
|
|
|
QScopedPointer<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.data()));
|
2017-07-18 19:11:06 +00:00
|
|
|
QVERIFY(!shellSurface.isNull());
|
|
|
|
|
2019-08-27 15:01:14 +00:00
|
|
|
// Map the client.
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
2017-07-18 19:11:06 +00:00
|
|
|
QVERIFY(c);
|
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2017-07-18 19:12:37 +00:00
|
|
|
QCOMPARE(c->quickTileMode(), QuickTileMode(QuickTileFlag::None));
|
2019-08-27 15:01:14 +00:00
|
|
|
|
|
|
|
// We have to receive a configure event when the client becomes active.
|
2021-05-11 05:26:51 +00:00
|
|
|
QSignalSpy toplevelConfigureRequestedSpy(shellSurface.data(), &Test::XdgToplevel::configureRequested);
|
|
|
|
QVERIFY(toplevelConfigureRequestedSpy.isValid());
|
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested);
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.isValid());
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 1);
|
2017-07-18 19:11:06 +00:00
|
|
|
|
2020-06-12 13:50:24 +00:00
|
|
|
QFETCH(QStringList, shortcutList);
|
2017-07-18 19:11:06 +00:00
|
|
|
QFETCH(QRect, expectedGeometry);
|
|
|
|
|
2020-06-12 13:50:24 +00:00
|
|
|
const int numberOfQuickTileActions = shortcutList.count();
|
|
|
|
|
|
|
|
if (numberOfQuickTileActions > 1) {
|
|
|
|
QTest::qWait(1001);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (QString shortcut : shortcutList) {
|
|
|
|
// invoke global shortcut through dbus
|
|
|
|
auto msg = QDBusMessage::createMethodCall(
|
|
|
|
QStringLiteral("org.kde.kglobalaccel"),
|
|
|
|
QStringLiteral("/component/kwin"),
|
|
|
|
QStringLiteral("org.kde.kglobalaccel.Component"),
|
|
|
|
QStringLiteral("invokeShortcut"));
|
|
|
|
msg.setArguments(QList<QVariant>{shortcut});
|
|
|
|
QDBusConnection::sessionBus().asyncCall(msg);
|
|
|
|
}
|
2017-07-18 19:11:06 +00:00
|
|
|
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy quickTileChangedSpy(c, &Window::quickTileModeChanged);
|
2019-08-27 15:01:14 +00:00
|
|
|
QVERIFY(quickTileChangedSpy.isValid());
|
2020-06-18 23:06:04 +00:00
|
|
|
QTRY_COMPARE(quickTileChangedSpy.count(), numberOfQuickTileActions);
|
2017-07-18 19:11:06 +00:00
|
|
|
// at this point the geometry did not yet change
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2017-07-18 19:11:06 +00:00
|
|
|
// but quick tile mode already changed
|
2019-08-27 15:01:14 +00:00
|
|
|
QTEST(c->quickTileMode(), "expectedMode");
|
2017-07-18 19:11:06 +00:00
|
|
|
|
|
|
|
// but we got requested a new geometry
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 2);
|
|
|
|
QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).toSize(), expectedGeometry.size());
|
2017-07-18 19:11:06 +00:00
|
|
|
|
|
|
|
// attach a new image
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy frameGeometryChangedSpy(c, &Window::frameGeometryChanged);
|
2020-02-05 09:28:50 +00:00
|
|
|
QVERIFY(frameGeometryChangedSpy.isValid());
|
2021-05-11 05:26:51 +00:00
|
|
|
shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last().at(0).value<quint32>());
|
2017-07-18 19:11:06 +00:00
|
|
|
Test::render(surface.data(), expectedGeometry.size(), Qt::red);
|
|
|
|
|
2020-02-05 09:28:50 +00:00
|
|
|
QVERIFY(frameGeometryChangedSpy.wait());
|
2017-07-18 19:11:06 +00:00
|
|
|
QEXPECT_FAIL("maximize", "Geometry changed called twice for maximize", Continue);
|
2020-02-05 09:28:50 +00:00
|
|
|
QCOMPARE(frameGeometryChangedSpy.count(), 1);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), expectedGeometry);
|
2017-07-18 19:11:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::testScript_data()
|
|
|
|
{
|
|
|
|
QTest::addColumn<QString>("action");
|
2017-07-18 19:12:37 +00:00
|
|
|
QTest::addColumn<QuickTileMode>("expectedMode");
|
2017-07-18 19:11:06 +00:00
|
|
|
QTest::addColumn<QRect>("expectedGeometry");
|
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
#define FLAG(name) QuickTileMode(QuickTileFlag::name)
|
2017-07-18 19:11:06 +00:00
|
|
|
QTest::newRow("top") << QStringLiteral("Top") << FLAG(Top) << QRect(0, 0, 1280, 512);
|
|
|
|
QTest::newRow("bottom") << QStringLiteral("Bottom") << FLAG(Bottom) << QRect(0, 512, 1280, 512);
|
|
|
|
QTest::newRow("top right") << QStringLiteral("TopRight") << (FLAG(Top) | FLAG(Right)) << QRect(640, 0, 640, 512);
|
|
|
|
QTest::newRow("top left") << QStringLiteral("TopLeft") << (FLAG(Top) | FLAG(Left)) << QRect(0, 0, 640, 512);
|
|
|
|
QTest::newRow("bottom right") << QStringLiteral("BottomRight") << (FLAG(Bottom) | FLAG(Right)) << QRect(640, 512, 640, 512);
|
|
|
|
QTest::newRow("bottom left") << QStringLiteral("BottomLeft") << (FLAG(Bottom) | FLAG(Left)) << QRect(0, 512, 640, 512);
|
2020-06-12 13:50:24 +00:00
|
|
|
QTest::newRow("left") << QStringLiteral("Left") << FLAG(Left) << QRect(0, 0, 640, 1024);
|
|
|
|
QTest::newRow("right") << QStringLiteral("Right") << FLAG(Right) << QRect(640, 0, 640, 1024);
|
2017-07-18 19:11:06 +00:00
|
|
|
#undef FLAG
|
|
|
|
}
|
|
|
|
|
|
|
|
void QuickTilingTest::testScript()
|
|
|
|
{
|
|
|
|
using namespace KWayland::Client;
|
|
|
|
|
2021-09-03 17:54:03 +00:00
|
|
|
QScopedPointer<KWayland::Client::Surface> surface(Test::createSurface());
|
2017-07-18 19:11:06 +00:00
|
|
|
QVERIFY(!surface.isNull());
|
2021-05-11 05:26:51 +00:00
|
|
|
QScopedPointer<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.data()));
|
2017-07-18 19:11:06 +00:00
|
|
|
QVERIFY(!shellSurface.isNull());
|
|
|
|
|
2019-08-27 15:01:14 +00:00
|
|
|
// Map the client.
|
|
|
|
auto c = Test::renderAndWaitForShown(surface.data(), QSize(100, 50), Qt::blue);
|
2017-07-18 19:11:06 +00:00
|
|
|
QVERIFY(c);
|
|
|
|
QCOMPARE(workspace()->activeClient(), c);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2017-07-18 19:12:37 +00:00
|
|
|
QCOMPARE(c->quickTileMode(), QuickTileMode(QuickTileFlag::None));
|
2019-08-27 15:01:14 +00:00
|
|
|
|
|
|
|
// We have to receive a configure event upon the client becoming active.
|
2021-05-11 05:26:51 +00:00
|
|
|
QSignalSpy toplevelConfigureRequestedSpy(shellSurface.data(), &Test::XdgToplevel::configureRequested);
|
|
|
|
QVERIFY(toplevelConfigureRequestedSpy.isValid());
|
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested);
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.isValid());
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 1);
|
2019-08-27 15:01:14 +00:00
|
|
|
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy quickTileChangedSpy(c, &Window::quickTileModeChanged);
|
2017-07-18 19:11:06 +00:00
|
|
|
QVERIFY(quickTileChangedSpy.isValid());
|
2022-04-22 17:39:12 +00:00
|
|
|
QSignalSpy frameGeometryChangedSpy(c, &Window::frameGeometryChanged);
|
2020-02-05 09:28:50 +00:00
|
|
|
QVERIFY(frameGeometryChangedSpy.isValid());
|
2017-07-18 19:11:06 +00:00
|
|
|
|
|
|
|
QVERIFY(Scripting::self());
|
|
|
|
QTemporaryFile tmpFile;
|
|
|
|
QVERIFY(tmpFile.open());
|
|
|
|
QTextStream out(&tmpFile);
|
|
|
|
|
|
|
|
QFETCH(QString, action);
|
|
|
|
out << "workspace.slotWindowQuickTile" << action << "()";
|
|
|
|
out.flush();
|
|
|
|
|
2017-07-18 19:12:37 +00:00
|
|
|
QFETCH(QuickTileMode, expectedMode);
|
2017-07-18 19:11:06 +00:00
|
|
|
QFETCH(QRect, expectedGeometry);
|
|
|
|
|
|
|
|
const int id = Scripting::self()->loadScript(tmpFile.fileName());
|
|
|
|
QVERIFY(id != -1);
|
|
|
|
QVERIFY(Scripting::self()->isScriptLoaded(tmpFile.fileName()));
|
|
|
|
auto s = Scripting::self()->findScript(tmpFile.fileName());
|
|
|
|
QVERIFY(s);
|
|
|
|
QSignalSpy runningChangedSpy(s, &AbstractScript::runningChanged);
|
|
|
|
QVERIFY(runningChangedSpy.isValid());
|
|
|
|
s->run();
|
|
|
|
|
|
|
|
QVERIFY(quickTileChangedSpy.wait());
|
|
|
|
QCOMPARE(quickTileChangedSpy.count(), 1);
|
|
|
|
|
|
|
|
QCOMPARE(runningChangedSpy.count(), 1);
|
|
|
|
QCOMPARE(runningChangedSpy.first().first().toBool(), true);
|
|
|
|
|
|
|
|
// at this point the geometry did not yet change
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), QRect(0, 0, 100, 50));
|
2017-07-18 19:11:06 +00:00
|
|
|
// but quick tile mode already changed
|
|
|
|
QCOMPARE(c->quickTileMode(), expectedMode);
|
|
|
|
|
|
|
|
// but we got requested a new geometry
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
QCOMPARE(surfaceConfigureRequestedSpy.count(), 2);
|
|
|
|
QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).toSize(), expectedGeometry.size());
|
2017-07-18 19:11:06 +00:00
|
|
|
|
|
|
|
// attach a new image
|
2021-05-11 05:26:51 +00:00
|
|
|
shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last().at(0).value<quint32>());
|
2017-07-18 19:11:06 +00:00
|
|
|
Test::render(surface.data(), expectedGeometry.size(), Qt::red);
|
|
|
|
|
2020-02-05 09:28:50 +00:00
|
|
|
QVERIFY(frameGeometryChangedSpy.wait());
|
2017-07-18 19:11:06 +00:00
|
|
|
QEXPECT_FAIL("maximize", "Geometry changed called twice for maximize", Continue);
|
2020-02-05 09:28:50 +00:00
|
|
|
QCOMPARE(frameGeometryChangedSpy.count(), 1);
|
2019-09-27 10:01:10 +00:00
|
|
|
QCOMPARE(c->frameGeometry(), expectedGeometry);
|
2017-07-18 19:11:06 +00:00
|
|
|
}
|
|
|
|
|
2015-10-14 07:58:16 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 08:34:19 +00:00
|
|
|
WAYLANDTEST_MAIN(KWin::QuickTilingTest)
|
2015-10-14 07:58:16 +00:00
|
|
|
#include "quick_tiling_test.moc"
|