From 03e171010ae11a07fd492a08dbd598f122e4a69f Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: May 25 2015 14:08:54 +0000 Subject: QWidget::setWindowRole does nothing (QTBUG-45484) --- diff --git a/qt5-qtbase.spec b/qt5-qtbase.spec index 63e574b..b9d0721 100644 --- a/qt5-qtbase.spec +++ b/qt5-qtbase.spec @@ -42,7 +42,7 @@ Summary: Qt5 - QtBase components Name: qt5-qtbase Version: 5.4.1 -Release: 18%{?dist} +Release: 19%{?dist} # See LGPL_EXCEPTIONS.txt, for exception details License: LGPLv2 with exceptions or GPLv3 with exceptions @@ -100,6 +100,11 @@ Patch51: qtbase-opensource-src-5.4.0-QTBUG-42985.patch # https://codereview.qt-project.org/#/c/95219/ Patch52: qtbase-opensource-src-5.4.1-QTBUG-33093.patch +# https://bugreports.qt.io/browse/QTBUG-45484 +# QWidget::setWindowRole does nothing +# adapted to apply on top of patch51 +Patch53: qtbase-opensource-src-5.4.1-QTBUG-45484.patch + ## upstream patches # workaround https://bugreports.qt-project.org/browse/QTBUG-43057 # 'make docs' crash on el6, use qSort instead of std::sort @@ -383,6 +388,7 @@ rm -fv mkspecs/linux-g++*/qmake.conf.multilib-optflags #patch50 -p1 -b .poll %patch51 -p1 -b .QTBUG-42985 %patch52 -p1 -b .QTBUG-33093 +%patch53 -p1 -b .QTBUG-45484 %if 0%{?rhel} == 6 %patch100 -p1 -b .QTBUG-43057 @@ -928,6 +934,9 @@ fi %changelog +* Mon May 25 2015 Rex Dieter 5.4.1-19 +- QWidget::setWindowRole does nothing (QTBUG-45484) + * Wed May 20 2015 Rex Dieter 5.4.1-18 - own /etc/xdg/QtProject - Requires: qt-settings (f22+) diff --git a/qtbase-opensource-src-5.4.1-QTBUG-45484.patch b/qtbase-opensource-src-5.4.1-QTBUG-45484.patch new file mode 100644 index 0000000..39557fc --- /dev/null +++ b/qtbase-opensource-src-5.4.1-QTBUG-45484.patch @@ -0,0 +1,127 @@ +diff -up qtbase-opensource-src-5.4.1/src/gui/kernel/qplatformwindow.cpp.QTBUG-45484 qtbase-opensource-src-5.4.1/src/gui/kernel/qplatformwindow.cpp +--- qtbase-opensource-src-5.4.1/src/gui/kernel/qplatformwindow.cpp.QTBUG-45484 2015-02-16 22:56:48.000000000 -0600 ++++ qtbase-opensource-src-5.4.1/src/gui/kernel/qplatformwindow.cpp 2015-05-25 08:45:55.305771441 -0500 +@@ -286,6 +286,16 @@ void QPlatformWindow::setWindowFilePath( + void QPlatformWindow::setWindowIcon(const QIcon &icon) { Q_UNUSED(icon); } + + /*! ++ Reimplement to set the window role to \a role ++*/ ++void QPlatformWindow::setWindowRole(const QString &role) { Q_UNUSED(role); } ++ ++/*! ++ Reimplement to get the window role ++*/ ++QString QPlatformWindow::windowRole() const { return QString(); } ++ ++/*! + Reimplement to be able to let Qt raise windows to the top of the desktop + */ + void QPlatformWindow::raise() { qWarning("This plugin does not support raise()"); } +diff -up qtbase-opensource-src-5.4.1/src/gui/kernel/qplatformwindow.h.QTBUG-45484 qtbase-opensource-src-5.4.1/src/gui/kernel/qplatformwindow.h +--- qtbase-opensource-src-5.4.1/src/gui/kernel/qplatformwindow.h.QTBUG-45484 2015-02-16 22:56:48.000000000 -0600 ++++ qtbase-opensource-src-5.4.1/src/gui/kernel/qplatformwindow.h 2015-05-25 08:45:55.305771441 -0500 +@@ -90,9 +90,12 @@ public: + virtual void setWindowTitle(const QString &title); + virtual void setWindowFilePath(const QString &title); + virtual void setWindowIcon(const QIcon &icon); ++ virtual void setWindowRole(const QString &role); + virtual void raise(); + virtual void lower(); + ++ virtual QString windowRole() const; ++ + virtual bool isExposed() const; + virtual bool isActive() const; + virtual bool isEmbedded(const QPlatformWindow *parentWindow) const; +diff -up qtbase-opensource-src-5.4.1/src/plugins/platforms/xcb/qxcbwindow.cpp.QTBUG-45484 qtbase-opensource-src-5.4.1/src/plugins/platforms/xcb/qxcbwindow.cpp +--- qtbase-opensource-src-5.4.1/src/plugins/platforms/xcb/qxcbwindow.cpp.QTBUG-45484 2015-05-25 08:45:55.258771302 -0500 ++++ qtbase-opensource-src-5.4.1/src/plugins/platforms/xcb/qxcbwindow.cpp 2015-05-25 09:07:12.608572492 -0500 +@@ -256,6 +256,7 @@ QXcbWindow::QXcbWindow(QWindow *window) + , m_lastWindowStateEvent(-1) + , m_syncState(NoSyncNeeded) + , m_pendingSyncRequest(0) ++ , m_windowRole() + { + setConnection(xcbscreen()->connection()); + +@@ -1455,6 +1456,20 @@ void QXcbWindow::setWindowIcon(const QIc + } + } + ++void QXcbWindow::setWindowRole(const QString &role) ++{ ++ const QByteArray ba = role.toLatin1(); ++ Q_XCB_CALL(xcb_change_property(xcb_connection(), ++ XCB_PROP_MODE_REPLACE, ++ m_window, ++ atom(QXcbAtom::WM_WINDOW_ROLE), ++ XCB_ATOM_STRING, ++ 8, ++ ba.length(), ++ ba.constData())); ++ m_windowRole = role; ++} ++ + void QXcbWindow::raise() + { + const quint32 mask = XCB_CONFIG_WINDOW_STACK_MODE; +diff -up qtbase-opensource-src-5.4.1/src/plugins/platforms/xcb/qxcbwindow.h.QTBUG-45484 qtbase-opensource-src-5.4.1/src/plugins/platforms/xcb/qxcbwindow.h +--- qtbase-opensource-src-5.4.1/src/plugins/platforms/xcb/qxcbwindow.h.QTBUG-45484 2015-05-25 08:45:55.258771302 -0500 ++++ qtbase-opensource-src-5.4.1/src/plugins/platforms/xcb/qxcbwindow.h 2015-05-25 08:45:55.306771444 -0500 +@@ -88,8 +88,12 @@ public: + + void setWindowTitle(const QString &title); + void setWindowIcon(const QIcon &icon); ++ void setWindowRole(const QString &role); + void raise(); + void lower(); ++ ++ QString windowRole() const Q_DECL_OVERRIDE { return m_windowRole; } ++ + void propagateSizeHints(); + + void requestActivateWindow(); +@@ -234,6 +238,8 @@ private: + SyncState m_syncState; + + QXcbSyncWindowRequest *m_pendingSyncRequest; ++ ++ QString m_windowRole; + }; + + QT_END_NAMESPACE +diff -up qtbase-opensource-src-5.4.1/src/widgets/kernel/qwidget.cpp.QTBUG-45484 qtbase-opensource-src-5.4.1/src/widgets/kernel/qwidget.cpp +--- qtbase-opensource-src-5.4.1/src/widgets/kernel/qwidget.cpp.QTBUG-45484 2015-02-16 22:56:40.000000000 -0600 ++++ qtbase-opensource-src-5.4.1/src/widgets/kernel/qwidget.cpp 2015-05-25 08:45:55.309771453 -0500 +@@ -6226,8 +6226,11 @@ void QWidgetPrivate::setWindowFilePath_s + + QString QWidget::windowRole() const + { +- Q_D(const QWidget); +- return (d->extra && d->extra->topextra) ? d->extra->topextra->role : QString(); ++ if (const QWindow *window = windowHandle()) ++ if (QPlatformWindow *platformWindow = window->handle()) ++ return platformWindow->windowRole(); ++ ++ return QString(); + } + + /*! +@@ -6236,13 +6239,9 @@ QString QWidget::windowRole() const + */ + void QWidget::setWindowRole(const QString &role) + { +-#if defined(Q_WS_X11) +- Q_D(QWidget); +- d->topData()->role = role; +- d->setWindowRole(); +-#else +- Q_UNUSED(role) +-#endif ++ if (const QWindow *window = windowHandle()) ++ if (QPlatformWindow *platformWindow = window->handle()) ++ return platformWindow->setWindowRole(role); + } + + /*!