2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2019-01-05 12:42:30 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
2019-01-05 12:42:30 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2019-01-05 12:42:30 +00:00
|
|
|
|
|
|
|
#include "kwin_wayland_test.h"
|
|
|
|
|
2023-11-20 14:53:25 +00:00
|
|
|
#include "effect/effecthandler.h"
|
2023-11-17 08:59:08 +00:00
|
|
|
#include "effect/effectloader.h"
|
2022-04-22 17:45:19 +00:00
|
|
|
#include "internalwindow.h"
|
2019-01-05 12:42:30 +00:00
|
|
|
#include "useractions.h"
|
|
|
|
#include "wayland_server.h"
|
2022-04-22 17:39:12 +00:00
|
|
|
#include "window.h"
|
2019-01-05 12:42:30 +00:00
|
|
|
#include "workspace.h"
|
|
|
|
|
|
|
|
#include "decorations/decoratedclient.h"
|
|
|
|
|
|
|
|
#include <KWayland/Client/surface.h>
|
|
|
|
|
|
|
|
#include <linux/input.h>
|
|
|
|
|
|
|
|
using namespace KWin;
|
|
|
|
|
|
|
|
static const QString s_socketName = QStringLiteral("wayland_test_effects_popup_open_close_animation-0");
|
|
|
|
|
|
|
|
class PopupOpenCloseAnimationTest : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
void init();
|
|
|
|
void cleanup();
|
|
|
|
|
|
|
|
void testAnimatePopups();
|
|
|
|
void testAnimateUserActionsPopup();
|
|
|
|
void testAnimateDecorationTooltips();
|
|
|
|
};
|
|
|
|
|
|
|
|
void PopupOpenCloseAnimationTest::initTestCase()
|
|
|
|
{
|
|
|
|
qputenv("XDG_DATA_DIRS", QCoreApplication::applicationDirPath().toUtf8());
|
|
|
|
|
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),
|
|
|
|
});
|
2019-01-05 12:42:30 +00:00
|
|
|
|
|
|
|
auto config = KSharedConfig::openConfig(QString(), KConfig::SimpleConfig);
|
|
|
|
KConfigGroup plugins(config, QStringLiteral("Plugins"));
|
2021-10-09 15:38:14 +00:00
|
|
|
const auto builtinNames = EffectLoader().listOfKnownEffects();
|
2019-01-05 12:42:30 +00:00
|
|
|
for (const QString &name : builtinNames) {
|
|
|
|
plugins.writeEntry(name + QStringLiteral("Enabled"), false);
|
|
|
|
}
|
|
|
|
config->sync();
|
|
|
|
kwinApp()->setConfig(config);
|
|
|
|
|
|
|
|
qputenv("KWIN_EFFECTS_FORCE_ANIMATIONS", QByteArrayLiteral("1"));
|
|
|
|
|
|
|
|
kwinApp()->start();
|
2020-07-07 09:32:29 +00:00
|
|
|
QVERIFY(applicationStartedSpy.wait());
|
2019-01-05 12:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PopupOpenCloseAnimationTest::init()
|
|
|
|
{
|
2021-05-11 05:26:51 +00:00
|
|
|
QVERIFY(Test::setupWaylandConnection(Test::AdditionalWaylandInterface::XdgDecorationV1));
|
2019-01-05 12:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PopupOpenCloseAnimationTest::cleanup()
|
|
|
|
{
|
2023-11-15 09:51:56 +00:00
|
|
|
QVERIFY(effects);
|
|
|
|
effects->unloadAllEffects();
|
|
|
|
QVERIFY(effects->loadedEffects().isEmpty());
|
2019-01-05 12:42:30 +00:00
|
|
|
|
|
|
|
Test::destroyWaylandConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PopupOpenCloseAnimationTest::testAnimatePopups()
|
|
|
|
{
|
|
|
|
// This test verifies that popup open/close animation effects try
|
|
|
|
// to animate popups(e.g. popup menus, tooltips, etc).
|
|
|
|
|
|
|
|
// Create the main window.
|
2022-08-01 21:29:02 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> mainWindowSurface(Test::createSurface());
|
|
|
|
QVERIFY(mainWindowSurface != nullptr);
|
|
|
|
std::unique_ptr<Test::XdgToplevel> mainWindowShellSurface(Test::createXdgToplevelSurface(mainWindowSurface.get()));
|
|
|
|
QVERIFY(mainWindowShellSurface != nullptr);
|
|
|
|
Window *mainWindow = Test::renderAndWaitForShown(mainWindowSurface.get(), QSize(100, 50), Qt::blue);
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(mainWindow);
|
|
|
|
|
|
|
|
// Load effect that will be tested.
|
2023-03-17 19:51:32 +00:00
|
|
|
const QString effectName = QStringLiteral("fadingpopups");
|
2023-11-15 09:51:56 +00:00
|
|
|
QVERIFY(effects->loadEffect(effectName));
|
|
|
|
QCOMPARE(effects->loadedEffects().count(), 1);
|
|
|
|
QCOMPARE(effects->loadedEffects().first(), effectName);
|
|
|
|
Effect *effect = effects->findEffect(effectName);
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(effect);
|
|
|
|
QVERIFY(!effect->isActive());
|
|
|
|
|
|
|
|
// Create a popup, it should be animated.
|
2022-08-01 21:29:02 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> popupSurface(Test::createSurface());
|
|
|
|
QVERIFY(popupSurface != nullptr);
|
|
|
|
std::unique_ptr<Test::XdgPositioner> positioner(Test::createXdgPositioner());
|
2021-05-11 05:26:51 +00:00
|
|
|
positioner->set_size(20, 20);
|
|
|
|
positioner->set_anchor_rect(0, 0, 10, 10);
|
|
|
|
positioner->set_gravity(Test::XdgPositioner::gravity_bottom_right);
|
|
|
|
positioner->set_anchor(Test::XdgPositioner::anchor_bottom_left);
|
2022-08-01 21:29:02 +00:00
|
|
|
std::unique_ptr<Test::XdgPopup> popupShellSurface(Test::createXdgPopupSurface(popupSurface.get(), mainWindowShellSurface->xdgSurface(), positioner.get()));
|
|
|
|
QVERIFY(popupShellSurface != nullptr);
|
|
|
|
Window *popup = Test::renderAndWaitForShown(popupSurface.get(), QSize(20, 20), Qt::red);
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(popup);
|
|
|
|
QVERIFY(popup->isPopupWindow());
|
|
|
|
QCOMPARE(popup->transientFor(), mainWindow);
|
|
|
|
QVERIFY(effect->isActive());
|
|
|
|
|
|
|
|
// Eventually, the animation will be complete.
|
|
|
|
QTRY_VERIFY(!effect->isActive());
|
|
|
|
|
|
|
|
// Destroy the popup, it should not be animated.
|
2023-03-13 19:21:11 +00:00
|
|
|
QSignalSpy popupClosedSpy(popup, &Window::closed);
|
2019-01-05 12:42:30 +00:00
|
|
|
popupShellSurface.reset();
|
|
|
|
popupSurface.reset();
|
|
|
|
QVERIFY(popupClosedSpy.wait());
|
|
|
|
QVERIFY(effect->isActive());
|
|
|
|
|
|
|
|
// Eventually, the animation will be complete.
|
|
|
|
QTRY_VERIFY(!effect->isActive());
|
|
|
|
|
|
|
|
// Destroy the main window.
|
|
|
|
mainWindowSurface.reset();
|
2023-04-21 20:28:48 +00:00
|
|
|
QVERIFY(Test::waitForWindowClosed(mainWindow));
|
2019-01-05 12:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PopupOpenCloseAnimationTest::testAnimateUserActionsPopup()
|
|
|
|
{
|
|
|
|
// This test verifies that popup open/close animation effects try
|
|
|
|
// to animate the user actions popup.
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
// Create the test window.
|
2022-08-01 21:29:02 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> surface(Test::createSurface());
|
|
|
|
QVERIFY(surface != nullptr);
|
|
|
|
std::unique_ptr<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.get()));
|
|
|
|
QVERIFY(shellSurface != nullptr);
|
|
|
|
Window *window = Test::renderAndWaitForShown(surface.get(), QSize(100, 50), Qt::blue);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
2019-01-05 12:42:30 +00:00
|
|
|
|
|
|
|
// Load effect that will be tested.
|
2023-03-17 19:51:32 +00:00
|
|
|
const QString effectName = QStringLiteral("fadingpopups");
|
2023-11-15 09:51:56 +00:00
|
|
|
QVERIFY(effects->loadEffect(effectName));
|
|
|
|
QCOMPARE(effects->loadedEffects().count(), 1);
|
|
|
|
QCOMPARE(effects->loadedEffects().first(), effectName);
|
|
|
|
Effect *effect = effects->findEffect(effectName);
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(effect);
|
|
|
|
QVERIFY(!effect->isActive());
|
|
|
|
|
|
|
|
// Show the user actions popup.
|
2022-04-23 19:51:16 +00:00
|
|
|
workspace()->showWindowMenu(QRect(), window);
|
2019-01-05 12:42:30 +00:00
|
|
|
auto userActionsMenu = workspace()->userActionsMenu();
|
|
|
|
QTRY_VERIFY(userActionsMenu->isShown());
|
2022-04-23 08:33:23 +00:00
|
|
|
QVERIFY(userActionsMenu->hasWindow());
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(effect->isActive());
|
|
|
|
|
|
|
|
// Eventually, the animation will be complete.
|
|
|
|
QTRY_VERIFY(!effect->isActive());
|
|
|
|
|
|
|
|
// Close the user actions popup.
|
2022-03-10 10:27:35 +00:00
|
|
|
Test::keyboardKeyPressed(KEY_ESC, 0);
|
|
|
|
Test::keyboardKeyReleased(KEY_ESC, 1);
|
2019-01-05 12:42:30 +00:00
|
|
|
QTRY_VERIFY(!userActionsMenu->isShown());
|
2022-04-23 08:33:23 +00:00
|
|
|
QVERIFY(!userActionsMenu->hasWindow());
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(effect->isActive());
|
|
|
|
|
|
|
|
// Eventually, the animation will be complete.
|
|
|
|
QTRY_VERIFY(!effect->isActive());
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
// Destroy the test window.
|
2019-01-05 12:42:30 +00:00
|
|
|
surface.reset();
|
2023-04-21 20:28:48 +00:00
|
|
|
QVERIFY(Test::waitForWindowClosed(window));
|
2019-01-05 12:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PopupOpenCloseAnimationTest::testAnimateDecorationTooltips()
|
|
|
|
{
|
|
|
|
// This test verifies that popup open/close animation effects try
|
|
|
|
// to animate decoration tooltips.
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
// Create the test window.
|
2022-08-01 21:29:02 +00:00
|
|
|
std::unique_ptr<KWayland::Client::Surface> surface(Test::createSurface());
|
|
|
|
QVERIFY(surface != nullptr);
|
|
|
|
std::unique_ptr<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.get(), Test::CreationSetup::CreateOnly));
|
|
|
|
QVERIFY(shellSurface != nullptr);
|
|
|
|
std::unique_ptr<Test::XdgToplevelDecorationV1> deco(Test::createXdgToplevelDecorationV1(shellSurface.get()));
|
|
|
|
QVERIFY(deco != nullptr);
|
wayland: Properly handle async xdg-decoration updates
Currently, if a window switches between SSD and CSD, it is possible to
encounter a "corrupted" state where the server-side decoration is wrapped
around the window while it still has the client-side decoration.
The xdg-decoration protocol fixes this problem by saying that decoration
updates are bound to xdg_surface configure events.
At the moment, kwin sort of applies decoration updates immediately. With
this change, decoration updates will be done according to the spec.
If the compositor wants to create a decoration, it will send a configure
event and apply the decoration when the configure event is acked by the
client. In order to send the configure event with a good window geometry
size, kwin will create the decoration to query the border size but not
assign it to the client yet. As is, KDecoration api doesn't make
querying the border size ahead of time easy. The decoration plugin can
assign arbitrary border sizes to windows as it pleases it. We could change
that, but it effectively means starting KDecoration3 and setting existing
window deco ecosystem around kwin on fire the second time, that's off the
table.
If the compositor wants to remove the decoration, it will send a
configure event. When the configure event is acked and the surface is
committed, the window decoration will be destroyed.
Sync'ing decoration updates to configure events ensures that we cannot
end up with having both client-side and server-side decoration. It also
helps us to fix a bunch of geometry related issues caused by creating
and destroying the decoration without any surface buffer attached yet.
BUG: 445259
2021-01-27 15:35:13 +00:00
|
|
|
|
|
|
|
QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested);
|
2021-05-11 05:26:51 +00:00
|
|
|
deco->set_mode(Test::XdgToplevelDecorationV1::mode_server_side);
|
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
|
|
|
surface->commit(KWayland::Client::Surface::CommitFlag::None);
|
|
|
|
QVERIFY(surfaceConfigureRequestedSpy.wait());
|
|
|
|
|
|
|
|
shellSurface->xdgSurface()->ack_configure(surfaceConfigureRequestedSpy.last().at(0).value<quint32>());
|
2022-08-01 21:29:02 +00:00
|
|
|
Window *window = Test::renderAndWaitForShown(surface.get(), QSize(100, 50), Qt::blue);
|
2022-04-23 19:51:16 +00:00
|
|
|
QVERIFY(window);
|
|
|
|
QVERIFY(window->isDecorated());
|
2019-01-05 12:42:30 +00:00
|
|
|
|
|
|
|
// Load effect that will be tested.
|
2023-03-17 19:51:32 +00:00
|
|
|
const QString effectName = QStringLiteral("fadingpopups");
|
2023-11-15 09:51:56 +00:00
|
|
|
QVERIFY(effects->loadEffect(effectName));
|
|
|
|
QCOMPARE(effects->loadedEffects().count(), 1);
|
|
|
|
QCOMPARE(effects->loadedEffects().first(), effectName);
|
|
|
|
Effect *effect = effects->findEffect(effectName);
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(effect);
|
|
|
|
QVERIFY(!effect->isActive());
|
|
|
|
|
|
|
|
// Show a decoration tooltip.
|
2023-03-13 11:54:38 +00:00
|
|
|
QSignalSpy tooltipAddedSpy(workspace(), &Workspace::windowAdded);
|
2022-04-23 19:51:16 +00:00
|
|
|
window->decoratedClient()->requestShowToolTip(QStringLiteral("KWin rocks!"));
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(tooltipAddedSpy.wait());
|
2022-04-22 17:45:19 +00:00
|
|
|
InternalWindow *tooltip = tooltipAddedSpy.first().first().value<InternalWindow *>();
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(tooltip->isInternal());
|
|
|
|
QVERIFY(tooltip->isPopupWindow());
|
2022-04-28 12:00:38 +00:00
|
|
|
QVERIFY(tooltip->handle()->flags().testFlag(Qt::ToolTip));
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(effect->isActive());
|
|
|
|
|
|
|
|
// Eventually, the animation will be complete.
|
|
|
|
QTRY_VERIFY(!effect->isActive());
|
|
|
|
|
|
|
|
// Hide the decoration tooltip.
|
2023-03-13 19:21:11 +00:00
|
|
|
QSignalSpy tooltipClosedSpy(tooltip, &InternalWindow::closed);
|
2022-04-23 19:51:16 +00:00
|
|
|
window->decoratedClient()->requestHideToolTip();
|
2019-01-05 12:42:30 +00:00
|
|
|
QVERIFY(tooltipClosedSpy.wait());
|
|
|
|
QVERIFY(effect->isActive());
|
|
|
|
|
|
|
|
// Eventually, the animation will be complete.
|
|
|
|
QTRY_VERIFY(!effect->isActive());
|
|
|
|
|
2022-04-23 19:51:16 +00:00
|
|
|
// Destroy the test window.
|
2019-01-05 12:42:30 +00:00
|
|
|
surface.reset();
|
2023-04-21 20:28:48 +00:00
|
|
|
QVERIFY(Test::waitForWindowClosed(window));
|
2019-01-05 12:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WAYLANDTEST_MAIN(PopupOpenCloseAnimationTest)
|
|
|
|
#include "popup_open_close_animation_test.moc"
|