- Add patch from upstream 5.13 branch to fix crashes: * 0001-Don-t-crash-if-we-start-a-drag-without-dragFocus.patch - Add patch from upstream 5.12 branch to improve performance: * 0002-Client-Fix-stuttering-when-the-GUI-thread-is-busy.patch - Add patches from upstream code reviews to fix various issues: * 0003-Client-Don-t-send-fake-SurfaceCreated-Destroyed-even.patch * 0004-Client-Make-handleUpdate-aware-of-exposure-changes.patch * 0005-Client-Reset-frame-callback-timer-when-hiding-a-wind.patch OBS-URL: https://build.opensuse.org/request/show/713204 OBS-URL: https://build.opensuse.org/package/show/KDE:Qt:5.13/libqt5-qtwayland?expand=0&rev=10
94 lines
3.6 KiB
Diff
94 lines
3.6 KiB
Diff
From 20ddfe8dffc3be253d799bc3f939a1b0e388ed73 Mon Sep 17 00:00:00 2001
|
|
From: David Edmundson <davidedmundson@kde.org>
|
|
Date: Sun, 23 Jun 2019 15:09:51 +0200
|
|
Subject: [PATCH 3/5] Client: Don't send fake SurfaceCreated/Destroyed events
|
|
|
|
QPlatformSurface relates to the backing store. Not the wl_surface.
|
|
They are emitted by QPlatformWindow.
|
|
|
|
Due to a previously incorrect usage by KDE developers it was faked to
|
|
emit the events when the wl_surface is created/hidden to keep behavior.
|
|
|
|
With QtBase a9246c7132a2c8864d3ae6cebd260bb9ee711fcb this now causes an
|
|
issue as now QWidgets react to this event in a breaking way.
|
|
|
|
Change-Id: I2f003bc9da85f032a0053677fd281152099fc9eb
|
|
---
|
|
.../custom-extension/client-common/customextension.cpp | 9 +++++++--
|
|
src/client/qwaylandwindow.cpp | 10 ++--------
|
|
src/client/qwaylandwindow_p.h | 2 +-
|
|
3 files changed, 10 insertions(+), 11 deletions(-)
|
|
|
|
diff --git a/examples/wayland/custom-extension/client-common/customextension.cpp b/examples/wayland/custom-extension/client-common/customextension.cpp
|
|
index aa0cb58a..16f18fd7 100644
|
|
--- a/examples/wayland/custom-extension/client-common/customextension.cpp
|
|
+++ b/examples/wayland/custom-extension/client-common/customextension.cpp
|
|
@@ -81,8 +81,13 @@ QWindow *CustomExtension::windowForSurface(struct ::wl_surface *surface)
|
|
|
|
bool CustomExtension::eventFilter(QObject *object, QEvent *event)
|
|
{
|
|
- if (event->type() == QEvent::PlatformSurface
|
|
- && static_cast<QPlatformSurfaceEvent*>(event)->surfaceEventType() == QPlatformSurfaceEvent::SurfaceCreated) {
|
|
+ if (event->type() == QEvent::Expose) {
|
|
+ auto ee = static_cast<QExposeEvent*>(event);
|
|
+
|
|
+ if ((ee->region().isNull())) {
|
|
+ return false;
|
|
+ }
|
|
+
|
|
QWindow *window = qobject_cast<QWindow*>(object);
|
|
Q_ASSERT(window);
|
|
window->removeEventFilter(this);
|
|
diff --git a/src/client/qwaylandwindow.cpp b/src/client/qwaylandwindow.cpp
|
|
index 7fca9783..76975b27 100644
|
|
--- a/src/client/qwaylandwindow.cpp
|
|
+++ b/src/client/qwaylandwindow.cpp
|
|
@@ -91,7 +91,7 @@ QWaylandWindow::~QWaylandWindow()
|
|
delete mWindowDecoration;
|
|
|
|
if (isInitialized())
|
|
- reset(false);
|
|
+ reset();
|
|
|
|
const QWindow *parent = window();
|
|
foreach (QWindow *w, QGuiApplication::topLevelWindows()) {
|
|
@@ -117,8 +117,6 @@ void QWaylandWindow::initWindow()
|
|
|
|
if (!isInitialized()) {
|
|
initializeWlSurface();
|
|
- QPlatformSurfaceEvent e(QPlatformSurfaceEvent::SurfaceCreated);
|
|
- QGuiApplication::sendEvent(window(), &e);
|
|
}
|
|
|
|
if (shouldCreateSubSurface()) {
|
|
@@ -224,12 +222,8 @@ bool QWaylandWindow::shouldCreateSubSurface() const
|
|
return QPlatformWindow::parent() != nullptr;
|
|
}
|
|
|
|
-void QWaylandWindow::reset(bool sendDestroyEvent)
|
|
+void QWaylandWindow::reset()
|
|
{
|
|
- if (isInitialized() && sendDestroyEvent) {
|
|
- QPlatformSurfaceEvent e(QPlatformSurfaceEvent::SurfaceAboutToBeDestroyed);
|
|
- QGuiApplication::sendEvent(window(), &e);
|
|
- }
|
|
delete mShellSurface;
|
|
mShellSurface = nullptr;
|
|
delete mSubSurfaceWindow;
|
|
diff --git a/src/client/qwaylandwindow_p.h b/src/client/qwaylandwindow_p.h
|
|
index 86139243..fe24224f 100644
|
|
--- a/src/client/qwaylandwindow_p.h
|
|
+++ b/src/client/qwaylandwindow_p.h
|
|
@@ -261,7 +261,7 @@ private:
|
|
void initializeWlSurface();
|
|
bool shouldCreateShellSurface() const;
|
|
bool shouldCreateSubSurface() const;
|
|
- void reset(bool sendDestroyEvent = true);
|
|
+ void reset();
|
|
void sendExposeEvent(const QRect &rect);
|
|
static void closePopups(QWaylandWindow *parent);
|
|
QWaylandScreen *calculateScreenFromSurfaceEvents() const;
|
|
--
|
|
2.22.0
|
|
|