Merge remote-tracking branch 'qt/5.7' into 5.7.0

Change-Id: I8396ea4fc9f656accd2e97e3c78570bff64928cd
This commit is contained in:
Paul Olav Tvete 2016-05-20 14:35:43 +02:00
commit 9272efd271
57 changed files with 64 additions and 70 deletions

View File

@ -99,9 +99,6 @@ HEADERS += qwaylandintegration_p.h \
qwaylandsubsurface_p.h \ qwaylandsubsurface_p.h \
qwaylandtouch_p.h \ qwaylandtouch_p.h \
qwaylandqtkey_p.h \ qwaylandqtkey_p.h \
../shared/qwaylandmimehelper.h \
../shared/qwaylandxkb.h \
../shared/qwaylandinputmethodeventbuilder.h \
qwaylandabstractdecoration_p.h \ qwaylandabstractdecoration_p.h \
qwaylanddecorationfactory_p.h \ qwaylanddecorationfactory_p.h \
qwaylanddecorationplugin_p.h \ qwaylanddecorationplugin_p.h \
@ -109,6 +106,11 @@ HEADERS += qwaylandintegration_p.h \
qwaylandinputcontext_p.h \ qwaylandinputcontext_p.h \
qwaylanddatadevice_p.h \ qwaylanddatadevice_p.h \
qwaylandshm_p.h \ qwaylandshm_p.h \
qwaylandclientexport.h \
../shared/qwaylandinputmethodeventbuilder_p.h \
../shared/qwaylandmimehelper_p.h \
../shared/qwaylandxkb_p.h \
../shared/qwaylandshmformathelper_p.h
include(hardwareintegration/hardwareintegration.pri) include(hardwareintegration/hardwareintegration.pri)
include(shellintegration/shellintegration.pri) include(shellintegration/shellintegration.pri)

View File

@ -43,8 +43,6 @@
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
namespace QtWaylandClient {
QWaylandClientExtensionPrivate::QWaylandClientExtensionPrivate() QWaylandClientExtensionPrivate::QWaylandClientExtensionPrivate()
: QObjectPrivate() : QObjectPrivate()
, waylandIntegration(NULL) , waylandIntegration(NULL)
@ -57,7 +55,7 @@ QWaylandClientExtensionPrivate::QWaylandClientExtensionPrivate()
if (QGuiApplication::platformNativeInterface()) { if (QGuiApplication::platformNativeInterface()) {
waylandDisplay = static_cast<struct ::wl_display*>(QGuiApplication::platformNativeInterface()->nativeResourceForIntegration("wl_display")); waylandDisplay = static_cast<struct ::wl_display*>(QGuiApplication::platformNativeInterface()->nativeResourceForIntegration("wl_display"));
} else { } else {
waylandIntegration = new QWaylandIntegration(); waylandIntegration = new QtWaylandClient::QWaylandIntegration();
waylandDisplay = waylandIntegration->display()->wl_display(); waylandDisplay = waylandIntegration->display()->wl_display();
} }
@ -84,7 +82,7 @@ QWaylandClientExtension::QWaylandClientExtension(const int ver)
d->version = ver; d->version = ver;
} }
QWaylandIntegration *QWaylandClientExtension::integration() const QtWaylandClient::QWaylandIntegration *QWaylandClientExtension::integration() const
{ {
Q_D(const QWaylandClientExtension); Q_D(const QWaylandClientExtension);
return d->waylandIntegration; return d->waylandIntegration;
@ -105,12 +103,10 @@ void QWaylandClientExtension::setVersion(const int ver)
} }
} }
bool QWaylandClientExtension::active() const bool QWaylandClientExtension::isActive() const
{ {
Q_D(const QWaylandClientExtension); Q_D(const QWaylandClientExtension);
return d->active; return d->active;
} }
}
QT_END_NAMESPACE QT_END_NAMESPACE

View File

@ -39,13 +39,14 @@
#include <QObject> #include <QObject>
#include <qpa/qwindowsysteminterface.h> #include <qpa/qwindowsysteminterface.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
namespace QtWaylandClient { namespace QtWaylandClient {
class QWaylandIntegration; class QWaylandIntegration;
}
class QWaylandClientExtensionPrivate; class QWaylandClientExtensionPrivate;
class QWaylandClientExtensionTemplatePrivate; class QWaylandClientExtensionTemplatePrivate;
@ -54,13 +55,13 @@ class Q_WAYLAND_CLIENT_EXPORT QWaylandClientExtension : public QObject
Q_OBJECT Q_OBJECT
Q_DECLARE_PRIVATE(QWaylandClientExtension) Q_DECLARE_PRIVATE(QWaylandClientExtension)
Q_PROPERTY(int protocolVersion READ version NOTIFY versionChanged) Q_PROPERTY(int protocolVersion READ version NOTIFY versionChanged)
Q_PROPERTY(bool active READ active NOTIFY activeChanged) Q_PROPERTY(bool active READ isActive NOTIFY activeChanged)
public: public:
QWaylandClientExtension(const int version); QWaylandClientExtension(const int version);
QWaylandIntegration *integration() const; QtWaylandClient::QWaylandIntegration *integration() const;
int version() const; int version() const;
bool active() const; bool isActive() const;
virtual const struct wl_interface *extensionInterface() const = 0; virtual const struct wl_interface *extensionInterface() const = 0;
virtual void bind(struct ::wl_registry *registry, int id, int version) = 0; virtual void bind(struct ::wl_registry *registry, int id, int version) = 0;
@ -101,8 +102,6 @@ public:
} }
}; };
}
QT_END_NAMESPACE QT_END_NAMESPACE
#endif // QWAYLANDCLIENTEXTENSION_H #endif // QWAYLANDCLIENTEXTENSION_H

View File

@ -55,15 +55,13 @@
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
namespace QtWaylandClient {
class Q_WAYLAND_CLIENT_EXPORT QWaylandClientExtensionPrivate : public QObjectPrivate, public QtWayland::wl_registry class Q_WAYLAND_CLIENT_EXPORT QWaylandClientExtensionPrivate : public QObjectPrivate, public QtWayland::wl_registry
{ {
Q_DECLARE_PUBLIC(QWaylandClientExtension) Q_DECLARE_PUBLIC(QWaylandClientExtension)
public: public:
QWaylandClientExtensionPrivate(); QWaylandClientExtensionPrivate();
QWaylandIntegration *waylandIntegration; QtWaylandClient::QWaylandIntegration *waylandIntegration;
int version; int version;
bool active; bool active;
@ -79,8 +77,6 @@ public:
{ } { }
}; };
}
QT_END_NAMESPACE QT_END_NAMESPACE
#endif /*QWAYLANDCLIENTEXTENSION_P_H*/ #endif /*QWAYLANDCLIENTEXTENSION_P_H*/

View File

@ -52,7 +52,7 @@
// //
#include <QtCore/qglobal.h> #include <QtCore/qglobal.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/QStringList> #include <QtCore/QStringList>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/qplugin.h> #include <QtCore/qplugin.h>
#include <QtCore/qfactoryinterface.h> #include <QtCore/qfactoryinterface.h>

View File

@ -52,7 +52,7 @@
// //
#include <QtWaylandClient/private/qwayland-hardware-integration.h> #include <QtWaylandClient/private/qwayland-hardware-integration.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -55,7 +55,7 @@
#include <QtGui/qopengl.h> #include <QtGui/qopengl.h>
#include <QtWaylandClient/private/qwayland-server-buffer-extension.h> #include <QtWaylandClient/private/qwayland-server-buffer-extension.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/QStringList> #include <QtCore/QStringList>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/qplugin.h> #include <QtCore/qplugin.h>
#include <QtCore/qfactoryinterface.h> #include <QtCore/qfactoryinterface.h>

View File

@ -52,7 +52,7 @@
// //
#include <QtCore/qglobal.h> #include <QtCore/qglobal.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <stdint.h> #include <stdint.h>

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/QStringList> #include <QtCore/QStringList>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/qplugin.h> #include <QtCore/qplugin.h>
#include <QtCore/qfactoryinterface.h> #include <QtCore/qfactoryinterface.h>

View File

@ -59,7 +59,7 @@
#include <QtGui/QColor> #include <QtGui/QColor>
#include <QtGui/QStaticText> #include <QtGui/QStaticText>
#include <QtGui/QImage> #include <QtGui/QImage>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <wayland-client.h> #include <wayland-client.h>

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/QSize> #include <QtCore/QSize>
#include <QtCore/QRect> #include <QtCore/QRect>

View File

@ -54,7 +54,7 @@
#include <qpa/qplatformclipboard.h> #include <qpa/qplatformclipboard.h>
#include <QtCore/QVariant> #include <QtCore/QVariant>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -53,7 +53,7 @@
#include <qpa/qplatformcursor.h> #include <qpa/qplatformcursor.h>
#include <QtCore/QMap> #include <QtCore/QMap>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
struct wl_cursor; struct wl_cursor;
struct wl_cursor_image; struct wl_cursor_image;

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -53,7 +53,7 @@
#include <QtGui/private/qdnd_p.h> #include <QtGui/private/qdnd_p.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -41,7 +41,7 @@
#include "qwaylanddataoffer_p.h" #include "qwaylanddataoffer_p.h"
#include "qwaylanddatadevicemanager_p.h" #include "qwaylanddatadevicemanager_p.h"
#include "qwaylandinputdevice_p.h" #include "qwaylandinputdevice_p.h"
#include "qwaylandmimehelper.h" #include "qwaylandmimehelper_p.h"
#include <QtCore/QFile> #include <QtCore/QFile>

View File

@ -54,7 +54,7 @@
#include <QObject> #include <QObject>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/QStringList> #include <QtCore/QStringList>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/qplugin.h> #include <QtCore/qplugin.h>
#include <QtCore/qfactoryinterface.h> #include <QtCore/qfactoryinterface.h>

View File

@ -60,7 +60,7 @@
#include <wayland-client.h> #include <wayland-client.h>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtWaylandClient/private/qwayland-xdg-shell.h> #include <QtWaylandClient/private/qwayland-xdg-shell.h>
#include <QtWaylandClient/private/qwaylandshm_p.h> #include <QtWaylandClient/private/qwaylandshm_p.h>

View File

@ -57,7 +57,7 @@
#include <QtGui/QDrag> #include <QtGui/QDrag>
#include <QtCore/QMimeData> #include <QtCore/QMimeData>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -54,7 +54,7 @@
#include <QtCore/QString> #include <QtCore/QString>
#include <QtCore/QVariant> #include <QtCore/QVariant>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <wayland-client.h> #include <wayland-client.h>
#include <QtWaylandClient/private/qwayland-surface-extension.h> #include <QtWaylandClient/private/qwayland-surface-extension.h>

View File

@ -48,9 +48,9 @@
#include "qwaylanddisplay_p.h" #include "qwaylanddisplay_p.h"
#include "qwaylandinputdevice_p.h" #include "qwaylandinputdevice_p.h"
#include "qwaylandinputmethodeventbuilder.h" #include "qwaylandinputmethodeventbuilder_p.h"
#include "qwaylandwindow_p.h" #include "qwaylandwindow_p.h"
#include "qwaylandxkb.h" #include "qwaylandxkb_p.h"
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -60,7 +60,7 @@
#include <QVector> #include <QVector>
#include <QtWaylandClient/private/qwayland-text-input-unstable-v2.h> #include <QtWaylandClient/private/qwayland-text-input-unstable-v2.h>
#include <qwaylandinputmethodeventbuilder.h> #include <qwaylandinputmethodeventbuilder_p.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -49,7 +49,7 @@
#include "qwaylandcursor_p.h" #include "qwaylandcursor_p.h"
#include "qwaylanddisplay_p.h" #include "qwaylanddisplay_p.h"
#include "qwaylandshmbackingstore_p.h" #include "qwaylandshmbackingstore_p.h"
#include "../shared/qwaylandxkb.h" #include "../shared/qwaylandxkb_p.h"
#include "qwaylandinputcontext_p.h" #include "qwaylandinputcontext_p.h"
#include <QtGui/private/qpixmap_raster_p.h> #include <QtGui/private/qpixmap_raster_p.h>

View File

@ -53,7 +53,7 @@
#include <qpa/qplatformintegration.h> #include <qpa/qplatformintegration.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE
namespace QtWaylandClient { namespace QtWaylandClient {

View File

@ -54,7 +54,7 @@
#include <QVariantMap> #include <QVariantMap>
#include <qpa/qplatformnativeinterface.h> #include <qpa/qplatformnativeinterface.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -53,7 +53,7 @@
#include <qpa/qwindowsysteminterface.h> #include <qpa/qwindowsysteminterface.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtWaylandClient/private/qwayland-qtkey-extension.h> #include <QtWaylandClient/private/qwayland-qtkey-extension.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -52,7 +52,7 @@
// //
#include <qpa/qplatformscreen.h> #include <qpa/qplatformscreen.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>

View File

@ -57,7 +57,7 @@
#include <wayland-client.h> #include <wayland-client.h>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -39,7 +39,7 @@
#include <QtWaylandClient/private/qwaylandshm_p.h> #include <QtWaylandClient/private/qwaylandshm_p.h>
#include <QtWaylandClient/private/qwaylanddisplay_p.h> #include <QtWaylandClient/private/qwaylanddisplay_p.h>
#include "qwaylandshmformathelper.h" #include "qwaylandshmformathelper_p.h"
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -54,7 +54,7 @@
#include <QVector> #include <QVector>
#include <QImage> #include <QImage>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -60,6 +60,7 @@ QWaylandSubSurface::QWaylandSubSurface(QWaylandWindow *window, QWaylandWindow *p
QWaylandSubSurface::~QWaylandSubSurface() QWaylandSubSurface::~QWaylandSubSurface()
{ {
m_parent->mChildren.removeOne(this); m_parent->mChildren.removeOne(this);
destroy();
} }
void QWaylandSubSurface::setSync() void QWaylandSubSurface::setSync()

View File

@ -56,7 +56,7 @@
#include <QtCore/qglobal.h> #include <QtCore/qglobal.h>
#include <QtCore/qmutex.h> #include <QtCore/qmutex.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -54,7 +54,7 @@
#include <qpa/qwindowsysteminterface.h> #include <qpa/qwindowsysteminterface.h>
#include <QtWaylandClient/private/qwayland-touch-extension.h> #include <QtWaylandClient/private/qwayland-touch-extension.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -207,7 +207,7 @@ bool QWaylandWindow::shouldCreateShellSurface() const
return false; return false;
if (qEnvironmentVariableIsSet("QT_WAYLAND_USE_BYPASSWINDOWMANAGERHINT")) if (qEnvironmentVariableIsSet("QT_WAYLAND_USE_BYPASSWINDOWMANAGERHINT"))
return window()->flags() & Qt::BypassWindowManagerHint; return !(window()->flags() & Qt::BypassWindowManagerHint);
return true; return true;
} }

View File

@ -59,7 +59,7 @@
#include <qpa/qplatformwindow.h> #include <qpa/qplatformwindow.h>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
struct wl_egl_window; struct wl_egl_window;

View File

@ -58,7 +58,7 @@
#include <QtPlatformSupport/private/qgenericunixservices_p.h> #include <QtPlatformSupport/private/qgenericunixservices_p.h>
#include <QtWaylandClient/private/qwayland-windowmanager.h> #include <QtWaylandClient/private/qwayland-windowmanager.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -56,7 +56,7 @@
#include <wayland-client.h> #include <wayland-client.h>
#include <QtWaylandClient/private/qwayland-wayland.h> #include <QtWaylandClient/private/qwayland-wayland.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include "qwaylandshellsurface_p.h" #include "qwaylandshellsurface_p.h"
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -56,7 +56,7 @@
#include <wayland-client.h> #include <wayland-client.h>
#include <QtWaylandClient/private/qwayland-xdg-shell.h> #include <QtWaylandClient/private/qwayland-xdg-shell.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include "qwaylandshellsurface_p.h" #include "qwaylandshellsurface_p.h"
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -57,7 +57,7 @@
#include <wayland-client.h> #include <wayland-client.h>
#include <QtWaylandClient/private/qwayland-xdg-shell.h> #include <QtWaylandClient/private/qwayland-xdg-shell.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include "qwaylandshellsurface_p.h" #include "qwaylandshellsurface_p.h"
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -37,7 +37,7 @@
** **
****************************************************************************/ ****************************************************************************/
#include "qwaylandinputmethodeventbuilder.h" #include "qwaylandinputmethodeventbuilder_p.h"
#include <QInputMethod> #include <QInputMethod>
#include <QTextCharFormat> #include <QTextCharFormat>

View File

@ -37,7 +37,7 @@
** **
****************************************************************************/ ****************************************************************************/
#include "qwaylandmimehelper.h" #include "qwaylandmimehelper_p.h"
#include <QImage> #include <QImage>
#include <QColor> #include <QColor>
#include <QUrl> #include <QUrl>

View File

@ -38,7 +38,7 @@
** **
****************************************************************************/ ****************************************************************************/
#include "qwaylandxkb.h" #include "qwaylandxkb_p.h"
#include <QKeyEvent> #include <QKeyEvent>
#include <QString> #include <QString>

View File

@ -52,7 +52,7 @@
// //
#include <QtCore/qglobal.h> #include <QtCore/qglobal.h>
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/QStringList> #include <QtCore/QStringList>
QT_BEGIN_NAMESPACE QT_BEGIN_NAMESPACE

View File

@ -51,7 +51,7 @@
// We mean it. // We mean it.
// //
#include <QtWaylandClient/private/qwaylandclientexport_p.h> #include <QtWaylandClient/qwaylandclientexport.h>
#include <QtCore/qplugin.h> #include <QtCore/qplugin.h>
#include <QtCore/qfactoryinterface.h> #include <QtCore/qfactoryinterface.h>