Merge remote-tracking branch 'qt/5.7' into 5.7.0
Change-Id: I8396ea4fc9f656accd2e97e3c78570bff64928cd
This commit is contained in:
commit
9272efd271
@ -99,9 +99,6 @@ HEADERS += qwaylandintegration_p.h \
|
||||
qwaylandsubsurface_p.h \
|
||||
qwaylandtouch_p.h \
|
||||
qwaylandqtkey_p.h \
|
||||
../shared/qwaylandmimehelper.h \
|
||||
../shared/qwaylandxkb.h \
|
||||
../shared/qwaylandinputmethodeventbuilder.h \
|
||||
qwaylandabstractdecoration_p.h \
|
||||
qwaylanddecorationfactory_p.h \
|
||||
qwaylanddecorationplugin_p.h \
|
||||
@ -109,6 +106,11 @@ HEADERS += qwaylandintegration_p.h \
|
||||
qwaylandinputcontext_p.h \
|
||||
qwaylanddatadevice_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(shellintegration/shellintegration.pri)
|
||||
|
@ -43,8 +43,6 @@
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace QtWaylandClient {
|
||||
|
||||
QWaylandClientExtensionPrivate::QWaylandClientExtensionPrivate()
|
||||
: QObjectPrivate()
|
||||
, waylandIntegration(NULL)
|
||||
@ -57,7 +55,7 @@ QWaylandClientExtensionPrivate::QWaylandClientExtensionPrivate()
|
||||
if (QGuiApplication::platformNativeInterface()) {
|
||||
waylandDisplay = static_cast<struct ::wl_display*>(QGuiApplication::platformNativeInterface()->nativeResourceForIntegration("wl_display"));
|
||||
} else {
|
||||
waylandIntegration = new QWaylandIntegration();
|
||||
waylandIntegration = new QtWaylandClient::QWaylandIntegration();
|
||||
waylandDisplay = waylandIntegration->display()->wl_display();
|
||||
}
|
||||
|
||||
@ -84,7 +82,7 @@ QWaylandClientExtension::QWaylandClientExtension(const int ver)
|
||||
d->version = ver;
|
||||
}
|
||||
|
||||
QWaylandIntegration *QWaylandClientExtension::integration() const
|
||||
QtWaylandClient::QWaylandIntegration *QWaylandClientExtension::integration() const
|
||||
{
|
||||
Q_D(const QWaylandClientExtension);
|
||||
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);
|
||||
return d->active;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
@ -39,13 +39,14 @@
|
||||
|
||||
#include <QObject>
|
||||
#include <qpa/qwindowsysteminterface.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace QtWaylandClient {
|
||||
|
||||
class QWaylandIntegration;
|
||||
}
|
||||
|
||||
class QWaylandClientExtensionPrivate;
|
||||
class QWaylandClientExtensionTemplatePrivate;
|
||||
|
||||
@ -54,13 +55,13 @@ class Q_WAYLAND_CLIENT_EXPORT QWaylandClientExtension : public QObject
|
||||
Q_OBJECT
|
||||
Q_DECLARE_PRIVATE(QWaylandClientExtension)
|
||||
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:
|
||||
QWaylandClientExtension(const int version);
|
||||
|
||||
QWaylandIntegration *integration() const;
|
||||
QtWaylandClient::QWaylandIntegration *integration() const;
|
||||
int version() const;
|
||||
bool active() const;
|
||||
bool isActive() const;
|
||||
|
||||
virtual const struct wl_interface *extensionInterface() const = 0;
|
||||
virtual void bind(struct ::wl_registry *registry, int id, int version) = 0;
|
||||
@ -101,8 +102,6 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif // QWAYLANDCLIENTEXTENSION_H
|
||||
|
@ -55,15 +55,13 @@
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace QtWaylandClient {
|
||||
|
||||
class Q_WAYLAND_CLIENT_EXPORT QWaylandClientExtensionPrivate : public QObjectPrivate, public QtWayland::wl_registry
|
||||
{
|
||||
Q_DECLARE_PUBLIC(QWaylandClientExtension)
|
||||
public:
|
||||
QWaylandClientExtensionPrivate();
|
||||
|
||||
QWaylandIntegration *waylandIntegration;
|
||||
QtWaylandClient::QWaylandIntegration *waylandIntegration;
|
||||
int version;
|
||||
bool active;
|
||||
|
||||
@ -79,8 +77,6 @@ public:
|
||||
{ }
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
QT_END_NAMESPACE
|
||||
|
||||
#endif /*QWAYLANDCLIENTEXTENSION_P_H*/
|
||||
|
@ -52,7 +52,7 @@
|
||||
//
|
||||
|
||||
#include <QtCore/qglobal.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtCore/QStringList>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
#include <QtCore/qplugin.h>
|
||||
#include <QtCore/qfactoryinterface.h>
|
||||
|
@ -52,7 +52,7 @@
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-hardware-integration.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -55,7 +55,7 @@
|
||||
#include <QtGui/qopengl.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-server-buffer-extension.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtCore/QStringList>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
#include <QtCore/qplugin.h>
|
||||
#include <QtCore/qfactoryinterface.h>
|
||||
|
@ -52,7 +52,7 @@
|
||||
//
|
||||
|
||||
#include <QtCore/qglobal.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtCore/QStringList>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
#include <QtCore/qplugin.h>
|
||||
#include <QtCore/qfactoryinterface.h>
|
||||
|
@ -59,7 +59,7 @@
|
||||
#include <QtGui/QColor>
|
||||
#include <QtGui/QStaticText>
|
||||
#include <QtGui/QImage>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
#include <wayland-client.h>
|
||||
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
#include <QtCore/QSize>
|
||||
#include <QtCore/QRect>
|
||||
|
@ -54,7 +54,7 @@
|
||||
#include <qpa/qplatformclipboard.h>
|
||||
#include <QtCore/QVariant>
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -53,7 +53,7 @@
|
||||
|
||||
#include <qpa/qplatformcursor.h>
|
||||
#include <QtCore/QMap>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
struct wl_cursor;
|
||||
struct wl_cursor_image;
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -53,7 +53,7 @@
|
||||
|
||||
#include <QtGui/private/qdnd_p.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -41,7 +41,7 @@
|
||||
#include "qwaylanddataoffer_p.h"
|
||||
#include "qwaylanddatadevicemanager_p.h"
|
||||
#include "qwaylandinputdevice_p.h"
|
||||
#include "qwaylandmimehelper.h"
|
||||
#include "qwaylandmimehelper_p.h"
|
||||
|
||||
#include <QtCore/QFile>
|
||||
|
||||
|
@ -54,7 +54,7 @@
|
||||
#include <QObject>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtCore/QStringList>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
#include <QtCore/qplugin.h>
|
||||
#include <QtCore/qfactoryinterface.h>
|
||||
|
@ -60,7 +60,7 @@
|
||||
#include <wayland-client.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/qwaylandshm_p.h>
|
||||
|
||||
|
@ -57,7 +57,7 @@
|
||||
#include <QtGui/QDrag>
|
||||
#include <QtCore/QMimeData>
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -54,7 +54,7 @@
|
||||
#include <QtCore/QString>
|
||||
#include <QtCore/QVariant>
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
#include <wayland-client.h>
|
||||
#include <QtWaylandClient/private/qwayland-surface-extension.h>
|
||||
|
@ -48,9 +48,9 @@
|
||||
|
||||
#include "qwaylanddisplay_p.h"
|
||||
#include "qwaylandinputdevice_p.h"
|
||||
#include "qwaylandinputmethodeventbuilder.h"
|
||||
#include "qwaylandinputmethodeventbuilder_p.h"
|
||||
#include "qwaylandwindow_p.h"
|
||||
#include "qwaylandxkb.h"
|
||||
#include "qwaylandxkb_p.h"
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -60,7 +60,7 @@
|
||||
#include <QVector>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-text-input-unstable-v2.h>
|
||||
#include <qwaylandinputmethodeventbuilder.h>
|
||||
#include <qwaylandinputmethodeventbuilder_p.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -49,7 +49,7 @@
|
||||
#include "qwaylandcursor_p.h"
|
||||
#include "qwaylanddisplay_p.h"
|
||||
#include "qwaylandshmbackingstore_p.h"
|
||||
#include "../shared/qwaylandxkb.h"
|
||||
#include "../shared/qwaylandxkb_p.h"
|
||||
#include "qwaylandinputcontext_p.h"
|
||||
|
||||
#include <QtGui/private/qpixmap_raster_p.h>
|
||||
|
@ -53,7 +53,7 @@
|
||||
|
||||
#include <qpa/qplatformintegration.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
namespace QtWaylandClient {
|
||||
|
@ -54,7 +54,7 @@
|
||||
#include <QVariantMap>
|
||||
#include <qpa/qplatformnativeinterface.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -53,7 +53,7 @@
|
||||
|
||||
#include <qpa/qwindowsysteminterface.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtWaylandClient/private/qwayland-qtkey-extension.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -52,7 +52,7 @@
|
||||
//
|
||||
|
||||
#include <qpa/qplatformscreen.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||
|
||||
|
@ -57,7 +57,7 @@
|
||||
#include <wayland-client.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -39,7 +39,7 @@
|
||||
#include <QtWaylandClient/private/qwaylandshm_p.h>
|
||||
#include <QtWaylandClient/private/qwaylanddisplay_p.h>
|
||||
|
||||
#include "qwaylandshmformathelper.h"
|
||||
#include "qwaylandshmformathelper_p.h"
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -54,7 +54,7 @@
|
||||
#include <QVector>
|
||||
#include <QImage>
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -60,6 +60,7 @@ QWaylandSubSurface::QWaylandSubSurface(QWaylandWindow *window, QWaylandWindow *p
|
||||
QWaylandSubSurface::~QWaylandSubSurface()
|
||||
{
|
||||
m_parent->mChildren.removeOne(this);
|
||||
destroy();
|
||||
}
|
||||
|
||||
void QWaylandSubSurface::setSync()
|
||||
|
@ -56,7 +56,7 @@
|
||||
#include <QtCore/qglobal.h>
|
||||
#include <QtCore/qmutex.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -54,7 +54,7 @@
|
||||
#include <qpa/qwindowsysteminterface.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-touch-extension.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -207,7 +207,7 @@ bool QWaylandWindow::shouldCreateShellSurface() const
|
||||
return false;
|
||||
|
||||
if (qEnvironmentVariableIsSet("QT_WAYLAND_USE_BYPASSWINDOWMANAGERHINT"))
|
||||
return window()->flags() & Qt::BypassWindowManagerHint;
|
||||
return !(window()->flags() & Qt::BypassWindowManagerHint);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -59,7 +59,7 @@
|
||||
#include <qpa/qplatformwindow.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
struct wl_egl_window;
|
||||
|
||||
|
@ -58,7 +58,7 @@
|
||||
#include <QtPlatformSupport/private/qgenericunixservices_p.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-windowmanager.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -56,7 +56,7 @@
|
||||
#include <wayland-client.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-wayland.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include "qwaylandshellsurface_p.h"
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -56,7 +56,7 @@
|
||||
#include <wayland-client.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-xdg-shell.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include "qwaylandshellsurface_p.h"
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -57,7 +57,7 @@
|
||||
#include <wayland-client.h>
|
||||
|
||||
#include <QtWaylandClient/private/qwayland-xdg-shell.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include "qwaylandshellsurface_p.h"
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -37,7 +37,7 @@
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#include "qwaylandinputmethodeventbuilder.h"
|
||||
#include "qwaylandinputmethodeventbuilder_p.h"
|
||||
|
||||
#include <QInputMethod>
|
||||
#include <QTextCharFormat>
|
||||
|
@ -37,7 +37,7 @@
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#include "qwaylandmimehelper.h"
|
||||
#include "qwaylandmimehelper_p.h"
|
||||
#include <QImage>
|
||||
#include <QColor>
|
||||
#include <QUrl>
|
||||
|
@ -38,7 +38,7 @@
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#include "qwaylandxkb.h"
|
||||
#include "qwaylandxkb_p.h"
|
||||
|
||||
#include <QKeyEvent>
|
||||
#include <QString>
|
||||
|
@ -52,7 +52,7 @@
|
||||
//
|
||||
|
||||
#include <QtCore/qglobal.h>
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
#include <QtCore/QStringList>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
|
@ -51,7 +51,7 @@
|
||||
// We mean it.
|
||||
//
|
||||
|
||||
#include <QtWaylandClient/private/qwaylandclientexport_p.h>
|
||||
#include <QtWaylandClient/qwaylandclientexport.h>
|
||||
|
||||
#include <QtCore/qplugin.h>
|
||||
#include <QtCore/qfactoryinterface.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user