diff options
author | 2021-12-10 15:12:32 +0100 | |
---|---|---|
committer | 2021-12-10 15:58:21 +0100 | |
commit | fdc345a74e390b0a01204a77f8f4827610d3b238 (patch) | |
tree | 29e0051a5aea4a5154c7af252191763ba766f31c /kde-plasma/kwin/files | |
parent | profiles/package.mask: mask games-action/multimc for removal (diff) | |
download | gentoo-fdc345a74e390b0a01204a77f8f4827610d3b238.tar.gz gentoo-fdc345a74e390b0a01204a77f8f4827610d3b238.tar.bz2 gentoo-fdc345a74e390b0a01204a77f8f4827610d3b238.zip |
kde-plasma/kwin: wayland: fix client window size, input; scripting
Upstream commit 6a84b9454c869a16c2fa5fd49a8fac4a9497f30f
KDE-bug: https://bugs.kde.org/show_bug.cgi?id=444962
Upstream commit 8a0036fdee0eaa7dc5808dfe2dfc516fc32dfd8e
KDE-bug: https://bugs.kde.org/show_bug.cgi?id=446699
Scripting fix:
Upstream commit fd8d01d9892f12c48a82c6e2ab675396bf6ec113
See also: https://invent.kde.org/plasma/kwin/-/merge_requests/1762
Package-Manager: Portage-3.0.29, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-plasma/kwin/files')
3 files changed, 164 insertions, 0 deletions
diff --git a/kde-plasma/kwin/files/kwin-5.23.4-drm-remove-dpms-filter-when-outputs-are-added.patch b/kde-plasma/kwin/files/kwin-5.23.4-drm-remove-dpms-filter-when-outputs-are-added.patch new file mode 100644 index 000000000000..cc323e4540f6 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.23.4-drm-remove-dpms-filter-when-outputs-are-added.patch @@ -0,0 +1,30 @@ +From 8a0036fdee0eaa7dc5808dfe2dfc516fc32dfd8e Mon Sep 17 00:00:00 2001 +From: Xaver Hugl <xaver.hugl@gmail.com> +Date: Thu, 9 Dec 2021 12:51:55 +0100 +Subject: [PATCH] platforms/drm: remove the dpms filter when outputs are added + +When the dpms filter is active and an output is hotunplugged, or +is momentarily detected as hotunplugged, adding a new output should +remove the dpms filter again. + +BUG: 446699 +FIXED-IN: 5.23.5 +--- + src/plugins/platforms/drm/drm_backend.cpp | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/plugins/platforms/drm/drm_backend.cpp b/src/plugins/platforms/drm/drm_backend.cpp +index a99b720177..d7908f6332 100644 +--- a/src/plugins/platforms/drm/drm_backend.cpp ++++ b/src/plugins/platforms/drm/drm_backend.cpp +@@ -321,6 +321,7 @@ void DrmBackend::addOutput(DrmAbstractOutput *o) + primaryGpu()->removeVirtualOutput(m_placeHolderOutput); + m_placeHolderOutput = nullptr; + } ++ checkOutputsAreOn(); + } + + void DrmBackend::removeOutput(DrmAbstractOutput *o) +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-5.23.4-scripting-fix-KWinComponents-Workspace-type.patch b/kde-plasma/kwin/files/kwin-5.23.4-scripting-fix-KWinComponents-Workspace-type.patch new file mode 100644 index 000000000000..6ec6a59cd59f --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.23.4-scripting-fix-KWinComponents-Workspace-type.patch @@ -0,0 +1,34 @@ +From fd8d01d9892f12c48a82c6e2ab675396bf6ec113 Mon Sep 17 00:00:00 2001 +From: Vlad Zahorodnii <vlad.zahorodnii@kde.org> +Date: Sun, 5 Dec 2021 18:24:35 +0200 +Subject: [PATCH] scripting: Fix type of KWinComponents.Workspace + +Currently, the workspace.clients property doesn't work in declarative +scripts because wrong workspace wrapper is used. + + +(cherry picked from commit 29a85e830cdca5ae483b411e942e7a5bf85f6140) +--- + src/scripting/scripting.cpp | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/src/scripting/scripting.cpp b/src/scripting/scripting.cpp +index b901db7455..929c94afab 100644 +--- a/src/scripting/scripting.cpp ++++ b/src/scripting/scripting.cpp +@@ -650,10 +650,10 @@ void KWin::Scripting::init() + qmlRegisterType<ScriptingModels::V3::ClientModel>("org.kde.kwin", 3, 0, "ClientModel"); + qmlRegisterType<ScriptingModels::V3::ClientFilterModel>("org.kde.kwin", 3, 0, "ClientFilterModel"); + +- qmlRegisterSingletonType<QtScriptWorkspaceWrapper>("org.kde.kwin", 3, 0, "Workspace", [](QQmlEngine *qmlEngine, QJSEngine *jsEngine) { ++ qmlRegisterSingletonType<DeclarativeScriptWorkspaceWrapper>("org.kde.kwin", 3, 0, "Workspace", [](QQmlEngine *qmlEngine, QJSEngine *jsEngine) { + Q_UNUSED(qmlEngine) + Q_UNUSED(jsEngine) +- return new QtScriptWorkspaceWrapper(); ++ return new DeclarativeScriptWorkspaceWrapper(); + }); + + qmlRegisterType<KWin::AbstractClient>(); +-- +GitLab + diff --git a/kde-plasma/kwin/files/kwin-5.23.4-wayland-resize-to-last-requested-client-size.patch b/kde-plasma/kwin/files/kwin-5.23.4-wayland-resize-to-last-requested-client-size.patch new file mode 100644 index 000000000000..7846681ed528 --- /dev/null +++ b/kde-plasma/kwin/files/kwin-5.23.4-wayland-resize-to-last-requested-client-size.patch @@ -0,0 +1,100 @@ +From 6a84b9454c869a16c2fa5fd49a8fac4a9497f30f Mon Sep 17 00:00:00 2001 +From: Vlad Zahorodnii <vlad.zahorodnii@kde.org> +Date: Tue, 7 Dec 2021 09:32:33 +0200 +Subject: [PATCH] wayland: Resize the client to last requested client size if + decoration is destroyed + +If the decoration is destroyed before the window is mapped, kwin can +respond with a configure event that has 0x0 size. New tests check that +problematic case. + +BUG: 444962 +(cherry picked from commit 9cc80d7468c92a2800daf98319e626e022ff1045) +--- + autotests/integration/xdgshellclient_test.cpp | 48 +++++++++++++++++++ + src/abstract_client.cpp | 3 +- + 2 files changed, 50 insertions(+), 1 deletion(-) + +diff --git a/autotests/integration/xdgshellclient_test.cpp b/autotests/integration/xdgshellclient_test.cpp +index c00e4ebb2d..eabed754dd 100644 +--- a/autotests/integration/xdgshellclient_test.cpp ++++ b/autotests/integration/xdgshellclient_test.cpp +@@ -104,6 +104,8 @@ private Q_SLOTS: + void testPointerInputTransform(); + void testReentrantSetFrameGeometry(); + void testDoubleMaximize(); ++ void testMaximizeAndChangeDecorationModeAfterInitialCommit(); ++ void testFullScreenAndChangeDecorationModeAfterInitialCommit(); + }; + + void TestXdgShellClient::testXdgWindowReactive() +@@ -1839,5 +1841,51 @@ void TestXdgShellClient::testMaximizeFull() + QVERIFY(Test::waitForWindowDestroyed(client)); + } + ++void TestXdgShellClient::testMaximizeAndChangeDecorationModeAfterInitialCommit() ++{ ++ // Ideally, the app would initialize the xdg-toplevel surface before the initial commit, but ++ // many don't do it. They initialize the surface after the first commit. ++ // This test verifies that the client will receive a configure event with correct size ++ // if an xdg-toplevel surface is set maximized and decoration mode changes after initial commit. ++ ++ QScopedPointer<KWayland::Client::Surface> surface(Test::createSurface()); ++ QScopedPointer<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.data())); // will wait for the first configure event ++ QScopedPointer<Test::XdgToplevelDecorationV1> decoration(Test::createXdgToplevelDecorationV1(shellSurface.data())); ++ QSignalSpy toplevelConfigureRequestedSpy(shellSurface.data(), &Test::XdgToplevel::configureRequested); ++ QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested); ++ ++ // Request maximized mode and set decoration mode, i.e. perform late initialization. ++ shellSurface->set_maximized(); ++ decoration->set_mode(Test::XdgToplevelDecorationV1::mode_client_side); ++ ++ // The compositor will respond with a new configure event, which should contain maximized state. ++ QVERIFY(surfaceConfigureRequestedSpy.wait()); ++ QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).value<QSize>(), QSize(1280, 1024)); ++ QCOMPARE(toplevelConfigureRequestedSpy.last().at(1).value<Test::XdgToplevel::States>(), Test::XdgToplevel::State::Maximized); ++} ++ ++void TestXdgShellClient::testFullScreenAndChangeDecorationModeAfterInitialCommit() ++{ ++ // Ideally, the app would initialize the xdg-toplevel surface before the initial commit, but ++ // many don't do it. They initialize the surface after the first commit. ++ // This test verifies that the client will receive a configure event with correct size ++ // if an xdg-toplevel surface is set fullscreen and decoration mode changes after initial commit. ++ ++ QScopedPointer<KWayland::Client::Surface> surface(Test::createSurface()); ++ QScopedPointer<Test::XdgToplevel> shellSurface(Test::createXdgToplevelSurface(surface.data())); // will wait for the first configure event ++ QScopedPointer<Test::XdgToplevelDecorationV1> decoration(Test::createXdgToplevelDecorationV1(shellSurface.data())); ++ QSignalSpy toplevelConfigureRequestedSpy(shellSurface.data(), &Test::XdgToplevel::configureRequested); ++ QSignalSpy surfaceConfigureRequestedSpy(shellSurface->xdgSurface(), &Test::XdgSurface::configureRequested); ++ ++ // Request fullscreen mode and set decoration mode, i.e. perform late initialization. ++ shellSurface->set_fullscreen(nullptr); ++ decoration->set_mode(Test::XdgToplevelDecorationV1::mode_client_side); ++ ++ // The compositor will respond with a new configure event, which should contain fullscreen state. ++ QVERIFY(surfaceConfigureRequestedSpy.wait()); ++ QCOMPARE(toplevelConfigureRequestedSpy.last().at(0).value<QSize>(), QSize(1280, 1024)); ++ QCOMPARE(toplevelConfigureRequestedSpy.last().at(1).value<Test::XdgToplevel::States>(), Test::XdgToplevel::State::Fullscreen); ++} ++ + WAYLANDTEST_MAIN(TestXdgShellClient) + #include "xdgshellclient_test.moc" +diff --git a/src/abstract_client.cpp b/src/abstract_client.cpp +index 79c079109a..95576de0b1 100644 +--- a/src/abstract_client.cpp ++++ b/src/abstract_client.cpp +@@ -2361,8 +2361,9 @@ void AbstractClient::createDecoration(const QRect &oldGeometry) + + void AbstractClient::destroyDecoration() + { ++ const QSize clientSize = frameSizeToClientSize(moveResizeGeometry().size()); + setDecoration(nullptr); +- resize(clientSizeToFrameSize(clientSize())); ++ resize(clientSize); + } + + void AbstractClient::setDecoration(KDecoration2::Decoration *decoration) +-- +GitLab + |