Move the UNIX event dispatchers into QtGui
Task-number: QTBUG-83255 Change-Id: I7d32eb1ec01784c9ed6bf5fc4913ffc5b3a34a49 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
This commit is contained in:
parent
732c670590
commit
7ec12b2902
@ -643,6 +643,20 @@ qt_extend_target(Gui CONDITION WASM
|
|||||||
platform/wasm/qwasmlocalfileaccess.cpp platform/wasm/qwasmlocalfileaccess_p.h
|
platform/wasm/qwasmlocalfileaccess.cpp platform/wasm/qwasmlocalfileaccess_p.h
|
||||||
)
|
)
|
||||||
|
|
||||||
|
qt_extend_target(Gui CONDITION UNIX
|
||||||
|
SOURCES
|
||||||
|
platform/unix/qgenericunixeventdispatcher.cpp platform/unix/qgenericunixeventdispatcher_p.h
|
||||||
|
platform/unix/qunixeventdispatcher.cpp
|
||||||
|
platform/unix/qunixeventdispatcher_qpa_p.h
|
||||||
|
)
|
||||||
|
|
||||||
|
qt_extend_target(Gui CONDITION QT_FEATURE_glib AND UNIX
|
||||||
|
SOURCES
|
||||||
|
platform/unix/qeventdispatcher_glib.cpp platform/unix/qeventdispatcher_glib_p.h
|
||||||
|
LIBRARIES
|
||||||
|
GLIB2::GLIB2
|
||||||
|
)
|
||||||
|
|
||||||
qt_extend_target(Gui CONDITION IOS OR MACOS
|
qt_extend_target(Gui CONDITION IOS OR MACOS
|
||||||
SOURCES
|
SOURCES
|
||||||
rhi/qrhimetal.mm rhi/qrhimetal_p.h
|
rhi/qrhimetal.mm rhi/qrhimetal_p.h
|
||||||
|
@ -791,6 +791,20 @@ qt_extend_target(Gui CONDITION WASM
|
|||||||
platform/wasm/qwasmlocalfileaccess.cpp platform/wasm/qwasmlocalfileaccess_p.h
|
platform/wasm/qwasmlocalfileaccess.cpp platform/wasm/qwasmlocalfileaccess_p.h
|
||||||
)
|
)
|
||||||
|
|
||||||
|
qt_extend_target(Gui CONDITION UNIX
|
||||||
|
SOURCES
|
||||||
|
platform/unix/qgenericunixeventdispatcher.cpp platform/unix/qgenericunixeventdispatcher_p.h
|
||||||
|
platform/unix/qunixeventdispatcher.cpp
|
||||||
|
platform/unix/qunixeventdispatcher_qpa_p.h
|
||||||
|
)
|
||||||
|
|
||||||
|
qt_extend_target(Gui CONDITION QT_FEATURE_glib AND UNIX
|
||||||
|
SOURCES
|
||||||
|
platform/unix/qeventdispatcher_glib.cpp platform/unix/qeventdispatcher_glib_p.h
|
||||||
|
LIBRARIES
|
||||||
|
GLIB2::GLIB2
|
||||||
|
)
|
||||||
|
|
||||||
qt_extend_target(Gui CONDITION IOS OR MACOS
|
qt_extend_target(Gui CONDITION IOS OR MACOS
|
||||||
SOURCES
|
SOURCES
|
||||||
rhi/qrhimetal.mm rhi/qrhimetal_p.h
|
rhi/qrhimetal.mm rhi/qrhimetal_p.h
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
wasm:include(wasm/wasm.pri)
|
wasm:include(wasm/wasm.pri)
|
||||||
darwin:include(darwin/darwin.pri)
|
darwin:include(darwin/darwin.pri)
|
||||||
win32:include(windows/windows.pri)
|
win32:include(windows/windows.pri)
|
||||||
|
unix:include(unix/unix.pri)
|
||||||
|
@ -52,13 +52,14 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
#include <QtCore/private/qeventdispatcher_glib_p.h>
|
#include <QtCore/private/qeventdispatcher_glib_p.h>
|
||||||
|
#include <QtGui/qtguiglobal.h>
|
||||||
|
|
||||||
typedef struct _GMainContext GMainContext;
|
typedef struct _GMainContext GMainContext;
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QPAEventDispatcherGlibPrivate;
|
class QPAEventDispatcherGlibPrivate;
|
||||||
|
|
||||||
class QPAEventDispatcherGlib : public QEventDispatcherGlib
|
class Q_GUI_EXPORT QPAEventDispatcherGlib : public QEventDispatcherGlib
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_DECLARE_PRIVATE(QPAEventDispatcherGlib)
|
Q_DECLARE_PRIVATE(QPAEventDispatcherGlib)
|
@ -41,8 +41,8 @@
|
|||||||
// W A R N I N G
|
// W A R N I N G
|
||||||
// -------------
|
// -------------
|
||||||
//
|
//
|
||||||
// This file is not part of the Qt API. It exists for the convenience
|
// This file is not part of the Qt API. It exists for the convenience
|
||||||
// of other Qt classes. This header file may change from version to
|
// of other Qt classes. This header file may change from version to
|
||||||
// version without notice, or even be removed.
|
// version without notice, or even be removed.
|
||||||
//
|
//
|
||||||
// We mean it.
|
// We mean it.
|
||||||
@ -51,13 +51,13 @@
|
|||||||
#ifndef QGENERICUNIXEVENTDISPATCHER_P_H
|
#ifndef QGENERICUNIXEVENTDISPATCHER_P_H
|
||||||
#define QGENERICUNIXEVENTDISPATCHER_P_H
|
#define QGENERICUNIXEVENTDISPATCHER_P_H
|
||||||
|
|
||||||
#include <qglobal.h>
|
#include <QtGui/qtguiglobal.h>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
class QAbstractEventDispatcher;
|
class QAbstractEventDispatcher;
|
||||||
namespace QtGenericUnixDispatcher {
|
namespace QtGenericUnixDispatcher {
|
||||||
QAbstractEventDispatcher* createUnixEventDispatcher();
|
Q_GUI_EXPORT QAbstractEventDispatcher *createUnixEventDispatcher();
|
||||||
}
|
}
|
||||||
using QtGenericUnixDispatcher::createUnixEventDispatcher;
|
using QtGenericUnixDispatcher::createUnixEventDispatcher;
|
||||||
|
|
@ -44,19 +44,19 @@
|
|||||||
// W A R N I N G
|
// W A R N I N G
|
||||||
// -------------
|
// -------------
|
||||||
//
|
//
|
||||||
// This file is not part of the Qt API. It exists purely as an
|
// This file is not part of the Qt API. It exists purely as an
|
||||||
// implementation detail. This header file may change from version to
|
// implementation detail. This header file may change from version to
|
||||||
// version without notice, or even be removed.
|
// version without notice, or even be removed.
|
||||||
//
|
//
|
||||||
// We mean it.
|
// We mean it.
|
||||||
//
|
//
|
||||||
|
|
||||||
#include <QtCore/qglobal.h>
|
#include <QtGui/qtguiglobal.h>
|
||||||
#include <QtCore/private/qeventdispatcher_unix_p.h>
|
#include <QtCore/private/qeventdispatcher_unix_p.h>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
class QUnixEventDispatcherQPA : public QEventDispatcherUNIX
|
class Q_GUI_EXPORT QUnixEventDispatcherQPA : public QEventDispatcherUNIX
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
13
src/gui/platform/unix/unix.pri
Normal file
13
src/gui/platform/unix/unix.pri
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
SOURCES += \
|
||||||
|
platform/unix/qunixeventdispatcher.cpp \
|
||||||
|
platform/unix/qgenericunixeventdispatcher.cpp
|
||||||
|
|
||||||
|
HEADERS += \
|
||||||
|
platform/unix/qunixeventdispatcher_qpa_p.h \
|
||||||
|
platform/unix/qgenericunixeventdispatcher_p.h
|
||||||
|
|
||||||
|
qtConfig(glib) {
|
||||||
|
SOURCES += platform/unix/qeventdispatcher_glib.cpp
|
||||||
|
HEADERS += platform/unix/qeventdispatcher_glib_p.h
|
||||||
|
QMAKE_USE_PRIVATE += glib
|
||||||
|
}
|
@ -1,11 +1,12 @@
|
|||||||
# Generated from platformsupport.pro.
|
# Generated from platformsupport.pro.
|
||||||
|
|
||||||
add_subdirectory(edid)
|
add_subdirectory(edid)
|
||||||
add_subdirectory(eventdispatchers)
|
|
||||||
add_subdirectory(devicediscovery)
|
add_subdirectory(devicediscovery)
|
||||||
add_subdirectory(fbconvenience)
|
add_subdirectory(fbconvenience)
|
||||||
add_subdirectory(themes)
|
|
||||||
add_subdirectory(linuxofono)
|
add_subdirectory(linuxofono)
|
||||||
|
if(QT_FEATURE_xcb OR (UNIX AND NOT MACOS AND NOT UIKIT))
|
||||||
|
add_subdirectory(themes)
|
||||||
|
endif()
|
||||||
if(WIN32 OR (QT_FEATURE_freetype AND NOT APPLE))
|
if(WIN32 OR (QT_FEATURE_freetype AND NOT APPLE))
|
||||||
add_subdirectory(fontdatabases)
|
add_subdirectory(fontdatabases)
|
||||||
endif()
|
endif()
|
||||||
@ -24,9 +25,6 @@ endif()
|
|||||||
if(QT_FEATURE_kms)
|
if(QT_FEATURE_kms)
|
||||||
add_subdirectory(kmsconvenience)
|
add_subdirectory(kmsconvenience)
|
||||||
endif()
|
endif()
|
||||||
if(QT_FEATURE_accessibility)
|
|
||||||
add_subdirectory(accessibility)
|
|
||||||
endif()
|
|
||||||
if(QT_FEATURE_accessibility AND QT_FEATURE_accessibility_atspi_bridge)
|
if(QT_FEATURE_accessibility AND QT_FEATURE_accessibility_atspi_bridge)
|
||||||
add_subdirectory(linuxaccessibility)
|
add_subdirectory(linuxaccessibility)
|
||||||
endif()
|
endif()
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
# Generated from platformsupport.pro.
|
# Generated from platformsupport.pro.
|
||||||
|
|
||||||
add_subdirectory(edid)
|
add_subdirectory(edid)
|
||||||
add_subdirectory(eventdispatchers)
|
|
||||||
add_subdirectory(devicediscovery)
|
add_subdirectory(devicediscovery)
|
||||||
add_subdirectory(fbconvenience)
|
add_subdirectory(fbconvenience)
|
||||||
# special case begin
|
# special case begin
|
||||||
|
@ -1,37 +0,0 @@
|
|||||||
# Generated from eventdispatchers.pro.
|
|
||||||
|
|
||||||
#####################################################################
|
|
||||||
## EventDispatcherSupport Module:
|
|
||||||
#####################################################################
|
|
||||||
|
|
||||||
qt_add_module(EventDispatcherSupport
|
|
||||||
STATIC
|
|
||||||
INTERNAL_MODULE
|
|
||||||
DEFINES
|
|
||||||
QT_NO_CAST_FROM_ASCII
|
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PRECOMPILED_HEADER
|
|
||||||
"../../corelib/global/qt_pch.h"
|
|
||||||
)
|
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:eventdispatchers.pro:<TRUE>:
|
|
||||||
# MODULE = "eventdispatcher_support"
|
|
||||||
|
|
||||||
## Scopes:
|
|
||||||
#####################################################################
|
|
||||||
|
|
||||||
qt_extend_target(EventDispatcherSupport CONDITION UNIX
|
|
||||||
SOURCES
|
|
||||||
qgenericunixeventdispatcher.cpp qgenericunixeventdispatcher_p.h
|
|
||||||
qunixeventdispatcher.cpp
|
|
||||||
qunixeventdispatcher_qpa_p.h
|
|
||||||
)
|
|
||||||
|
|
||||||
qt_extend_target(EventDispatcherSupport CONDITION QT_FEATURE_glib
|
|
||||||
SOURCES
|
|
||||||
qeventdispatcher_glib.cpp qeventdispatcher_glib_p.h
|
|
||||||
LIBRARIES
|
|
||||||
GLIB2::GLIB2
|
|
||||||
)
|
|
@ -1,39 +0,0 @@
|
|||||||
# Generated from eventdispatchers.pro.
|
|
||||||
|
|
||||||
qt_find_package(GLIB2) # special case
|
|
||||||
|
|
||||||
#####################################################################
|
|
||||||
## EventDispatcherSupport Module:
|
|
||||||
#####################################################################
|
|
||||||
|
|
||||||
qt_add_module(EventDispatcherSupport
|
|
||||||
STATIC
|
|
||||||
INTERNAL_MODULE
|
|
||||||
DEFINES
|
|
||||||
QT_NO_CAST_FROM_ASCII
|
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
|
||||||
PRECOMPILED_HEADER
|
|
||||||
"../../corelib/global/qt_pch.h"
|
|
||||||
)
|
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:eventdispatchers.pro:<TRUE>:
|
|
||||||
# MODULE = "eventdispatcher_support"
|
|
||||||
|
|
||||||
## Scopes:
|
|
||||||
#####################################################################
|
|
||||||
|
|
||||||
qt_extend_target(EventDispatcherSupport CONDITION UNIX
|
|
||||||
SOURCES
|
|
||||||
qgenericunixeventdispatcher.cpp qgenericunixeventdispatcher_p.h
|
|
||||||
qunixeventdispatcher.cpp
|
|
||||||
qunixeventdispatcher_qpa_p.h
|
|
||||||
)
|
|
||||||
|
|
||||||
qt_extend_target(EventDispatcherSupport CONDITION QT_FEATURE_glib
|
|
||||||
SOURCES
|
|
||||||
qeventdispatcher_glib.cpp qeventdispatcher_glib_p.h
|
|
||||||
LIBRARIES
|
|
||||||
GLIB2::GLIB2
|
|
||||||
)
|
|
@ -1,26 +0,0 @@
|
|||||||
TARGET = QtEventDispatcherSupport
|
|
||||||
MODULE = eventdispatcher_support
|
|
||||||
|
|
||||||
QT = core-private gui-private
|
|
||||||
CONFIG += static internal_module
|
|
||||||
|
|
||||||
DEFINES += QT_NO_CAST_FROM_ASCII
|
|
||||||
PRECOMPILED_HEADER = ../../corelib/global/qt_pch.h
|
|
||||||
|
|
||||||
unix {
|
|
||||||
SOURCES += \
|
|
||||||
qunixeventdispatcher.cpp \
|
|
||||||
qgenericunixeventdispatcher.cpp
|
|
||||||
|
|
||||||
HEADERS += \
|
|
||||||
qunixeventdispatcher_qpa_p.h \
|
|
||||||
qgenericunixeventdispatcher_p.h
|
|
||||||
}
|
|
||||||
|
|
||||||
qtConfig(glib) {
|
|
||||||
SOURCES += qeventdispatcher_glib.cpp
|
|
||||||
HEADERS += qeventdispatcher_glib_p.h
|
|
||||||
QMAKE_USE_PRIVATE += glib
|
|
||||||
}
|
|
||||||
|
|
||||||
load(qt_module)
|
|
@ -3,7 +3,6 @@ QT_FOR_CONFIG += gui-private
|
|||||||
|
|
||||||
SUBDIRS = \
|
SUBDIRS = \
|
||||||
edid \
|
edid \
|
||||||
eventdispatchers \
|
|
||||||
devicediscovery \
|
devicediscovery \
|
||||||
fbconvenience
|
fbconvenience
|
||||||
|
|
||||||
|
@ -43,11 +43,9 @@ qt_internal_add_plugin(QAndroidIntegrationPlugin
|
|||||||
${CMAKE_CURRENT_SOURCE_DIR}
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
${QT_SOURCE_TREE}/src/3rdparty/android
|
${QT_SOURCE_TREE}/src/3rdparty/android
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::AccessibilitySupportPrivate
|
|
||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::EglSupportPrivate
|
Qt::EglSupportPrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
android
|
android
|
||||||
|
@ -47,7 +47,6 @@ qt_internal_add_plugin(QAndroidIntegrationPlugin
|
|||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::EglSupportPrivate
|
Qt::EglSupportPrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
android
|
android
|
||||||
|
@ -4,7 +4,6 @@ LIBS += -ljnigraphics -landroid
|
|||||||
|
|
||||||
QT += \
|
QT += \
|
||||||
core-private gui-private \
|
core-private gui-private \
|
||||||
eventdispatcher_support-private \
|
|
||||||
egl_support-private
|
egl_support-private
|
||||||
|
|
||||||
qtConfig(opengl): QT += opengl-private
|
qtConfig(opengl): QT += opengl-private
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
|
|
||||||
#include <QtCore/QMutex>
|
#include <QtCore/QMutex>
|
||||||
#include <QtCore/QSemaphore>
|
#include <QtCore/QSemaphore>
|
||||||
#include <QtEventDispatcherSupport/private/qunixeventdispatcher_qpa_p.h>
|
#include <QtGui/private/qunixeventdispatcher_qpa_p.h>
|
||||||
|
|
||||||
class QAndroidEventDispatcher : public QUnixEventDispatcherQPA
|
class QAndroidEventDispatcher : public QUnixEventDispatcherQPA
|
||||||
{
|
{
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qbsdfb
|
|||||||
|
|
||||||
QT += \
|
QT += \
|
||||||
core-private gui-private \
|
core-private gui-private \
|
||||||
service_support-private eventdispatcher_support-private \
|
service_support-private \
|
||||||
fontdatabase_support-private fb_support-private
|
fontdatabase_support-private fb_support-private
|
||||||
|
|
||||||
qtHaveModule(input_support-private): \
|
qtHaveModule(input_support-private): \
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
||||||
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
|
|
||||||
#include <QtFbSupport/private/qfbvthandler_p.h>
|
#include <QtFbSupport/private/qfbvthandler_p.h>
|
||||||
#include <QtFbSupport/private/qfbbackingstore_p.h>
|
#include <QtFbSupport/private/qfbbackingstore_p.h>
|
||||||
|
@ -22,7 +22,6 @@ qt_internal_add_plugin(QDirectFbIntegrationPlugin
|
|||||||
PkgConfig::DirectFB
|
PkgConfig::DirectFB
|
||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
|
@ -26,7 +26,6 @@ qt_internal_add_plugin(QDirectFbIntegrationPlugin
|
|||||||
PkgConfig::DirectFB
|
PkgConfig::DirectFB
|
||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qdirectfb
|
|||||||
|
|
||||||
QT += \
|
QT += \
|
||||||
core-private gui-private \
|
core-private gui-private \
|
||||||
eventdispatcher_support-private service_support-private \
|
service_support-private \
|
||||||
fontdatabase_support-private
|
fontdatabase_support-private
|
||||||
|
|
||||||
QMAKE_USE += directfb
|
QMAKE_USE += directfb
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
#include "qdirectfbwindow.h"
|
#include "qdirectfbwindow.h"
|
||||||
|
|
||||||
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
||||||
|
|
||||||
#include <QtGui/private/qpixmap_blitter_p.h>
|
#include <QtGui/private/qpixmap_blitter_p.h>
|
||||||
|
@ -23,7 +23,6 @@ qt_add_module(EglFSDeviceIntegration
|
|||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::DeviceDiscoverySupportPrivate
|
Qt::DeviceDiscoverySupportPrivate
|
||||||
Qt::EglSupportPrivate
|
Qt::EglSupportPrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::FbSupportPrivate
|
Qt::FbSupportPrivate
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
|
@ -24,7 +24,6 @@ qt_add_module(EglFSDeviceIntegration
|
|||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::DeviceDiscoverySupportPrivate
|
Qt::DeviceDiscoverySupportPrivate
|
||||||
Qt::EglSupportPrivate
|
Qt::EglSupportPrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::FbSupportPrivate
|
Qt::FbSupportPrivate
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
|
@ -70,7 +70,7 @@
|
|||||||
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
||||||
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
||||||
#include <QtThemeSupport/private/qgenericunixthemes_p.h>
|
#include <QtThemeSupport/private/qgenericunixthemes_p.h>
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
#include <QtFbSupport/private/qfbvthandler_p.h>
|
#include <QtFbSupport/private/qfbvthandler_p.h>
|
||||||
#ifndef QT_NO_OPENGL
|
#ifndef QT_NO_OPENGL
|
||||||
# include <QtOpenGL/private/qopenglcompositorbackingstore_p.h>
|
# include <QtOpenGL/private/qopenglcompositorbackingstore_p.h>
|
||||||
|
@ -10,7 +10,7 @@ MODULE = eglfsdeviceintegration
|
|||||||
|
|
||||||
QT += \
|
QT += \
|
||||||
core-private gui-private \
|
core-private gui-private \
|
||||||
devicediscovery_support-private eventdispatcher_support-private \
|
devicediscovery_support-private \
|
||||||
service_support-private theme_support-private fontdatabase_support-private \
|
service_support-private theme_support-private fontdatabase_support-private \
|
||||||
fb_support-private egl_support-private
|
fb_support-private egl_support-private
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
TARGET = qhaiku
|
TARGET = qhaiku
|
||||||
|
|
||||||
QT += core-private gui-private eventdispatcher_support-private
|
QT += core-private gui-private
|
||||||
|
|
||||||
SOURCES = \
|
SOURCES = \
|
||||||
main.cpp \
|
main.cpp \
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <qpa/qplatformwindow.h>
|
#include <qpa/qplatformwindow.h>
|
||||||
#include <qpa/qwindowsysteminterface.h>
|
#include <qpa/qwindowsysteminterface.h>
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
|
|
||||||
#include <Application.h>
|
#include <Application.h>
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ TARGET = integrityfb
|
|||||||
|
|
||||||
QT += \
|
QT += \
|
||||||
core-private gui-private \
|
core-private gui-private \
|
||||||
eventdispatcher_support-private service_support-private \
|
service_support-private \
|
||||||
fontdatabase_support-private fb_support-private
|
fontdatabase_support-private fb_support-private
|
||||||
|
|
||||||
SOURCES = \
|
SOURCES = \
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
||||||
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
|
|
||||||
#include <QtFbSupport/private/qfbbackingstore_p.h>
|
#include <QtFbSupport/private/qfbbackingstore_p.h>
|
||||||
#include <QtFbSupport/private/qfbwindow_p.h>
|
#include <QtFbSupport/private/qfbwindow_p.h>
|
||||||
|
@ -16,7 +16,6 @@ qt_internal_add_plugin(QLinuxFbIntegrationPlugin
|
|||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::FbSupportPrivate
|
Qt::FbSupportPrivate
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
@ -17,7 +17,6 @@ qt_internal_add_plugin(QLinuxFbIntegrationPlugin
|
|||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::FbSupportPrivate
|
Qt::FbSupportPrivate
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
@ -4,7 +4,7 @@ DEFINES += QT_NO_FOREACH
|
|||||||
|
|
||||||
QT += \
|
QT += \
|
||||||
core-private gui-private \
|
core-private gui-private \
|
||||||
service_support-private eventdispatcher_support-private \
|
service_support-private \
|
||||||
fontdatabase_support-private fb_support-private
|
fontdatabase_support-private fb_support-private
|
||||||
|
|
||||||
qtHaveModule(input_support-private): \
|
qtHaveModule(input_support-private): \
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
|
|
||||||
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
||||||
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
|
|
||||||
#include <QtFbSupport/private/qfbvthandler_p.h>
|
#include <QtFbSupport/private/qfbvthandler_p.h>
|
||||||
#include <QtFbSupport/private/qfbbackingstore_p.h>
|
#include <QtFbSupport/private/qfbbackingstore_p.h>
|
||||||
|
@ -26,11 +26,6 @@ qt_internal_add_plugin(QMinimalIntegrationPlugin
|
|||||||
## Scopes:
|
## Scopes:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
qt_extend_target(QMinimalIntegrationPlugin CONDITION UNIX
|
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
)
|
|
||||||
|
|
||||||
qt_extend_target(QMinimalIntegrationPlugin CONDITION NOT APPLE
|
qt_extend_target(QMinimalIntegrationPlugin CONDITION NOT APPLE
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
@ -41,5 +36,5 @@ qt_extend_target(QMinimalIntegrationPlugin CONDITION QT_FEATURE_freetype
|
|||||||
WrapFreetype::WrapFreetype
|
WrapFreetype::WrapFreetype
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 5:.:.:minimal.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
#### Keys ignored in scope 4:.:.:minimal.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
||||||
# PLUGIN_EXTENDS = "-"
|
# PLUGIN_EXTENDS = "-"
|
||||||
|
@ -29,11 +29,6 @@ qt_internal_add_plugin(QMinimalIntegrationPlugin
|
|||||||
## Scopes:
|
## Scopes:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
qt_extend_target(QMinimalIntegrationPlugin CONDITION UNIX
|
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
)
|
|
||||||
|
|
||||||
qt_extend_target(QMinimalIntegrationPlugin CONDITION NOT APPLE
|
qt_extend_target(QMinimalIntegrationPlugin CONDITION NOT APPLE
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
@ -44,5 +39,5 @@ qt_extend_target(QMinimalIntegrationPlugin CONDITION QT_FEATURE_freetype
|
|||||||
WrapFreetype::WrapFreetype
|
WrapFreetype::WrapFreetype
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 5:.:.:minimal.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
#### Keys ignored in scope 4:.:.:minimal.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
||||||
# PLUGIN_EXTENDS = "-"
|
# PLUGIN_EXTENDS = "-"
|
||||||
|
@ -3,7 +3,6 @@ TARGET = qminimal
|
|||||||
QT += \
|
QT += \
|
||||||
core-private gui-private
|
core-private gui-private
|
||||||
|
|
||||||
!win32: QT += eventdispatcher_support-private
|
|
||||||
!darwin: QT += fontdatabase_support-private
|
!darwin: QT += fontdatabase_support-private
|
||||||
|
|
||||||
DEFINES += QT_NO_FOREACH
|
DEFINES += QT_NO_FOREACH
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if !defined(Q_OS_WIN)
|
#if !defined(Q_OS_WIN)
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
#else
|
#else
|
||||||
#include <QtCore/private/qeventdispatcher_win_p.h>
|
#include <QtCore/private/qeventdispatcher_win_p.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -18,7 +18,6 @@ qt_internal_add_plugin(QMinimalEglIntegrationPlugin
|
|||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::EglSupportPrivate
|
Qt::EglSupportPrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
|
@ -19,7 +19,6 @@ qt_internal_add_plugin(QMinimalEglIntegrationPlugin
|
|||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::EglSupportPrivate
|
Qt::EglSupportPrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qminimalegl
|
|||||||
|
|
||||||
QT += \
|
QT += \
|
||||||
core-private gui-private \
|
core-private gui-private \
|
||||||
eventdispatcher_support-private fontdatabase_support-private egl_support-private
|
fontdatabase_support-private egl_support-private
|
||||||
|
|
||||||
#DEFINES += QEGL_EXTRA_DEBUG
|
#DEFINES += QEGL_EXTRA_DEBUG
|
||||||
|
|
||||||
|
@ -46,9 +46,9 @@
|
|||||||
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
||||||
|
|
||||||
#if defined(Q_OS_UNIX)
|
#if defined(Q_OS_UNIX)
|
||||||
# include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
# include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
#elif defined(Q_OS_WIN)
|
#elif defined(Q_OS_WIN)
|
||||||
# include <QtEventDispatcherSupport/private/qwindowsguieventdispatcher_p.h>
|
# include <QtGui/private/qwindowsguieventdispatcher_p.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <qpa/qplatformwindow.h>
|
#include <qpa/qplatformwindow.h>
|
||||||
|
@ -27,11 +27,6 @@ qt_internal_add_plugin(QOffscreenIntegrationPlugin
|
|||||||
## Scopes:
|
## Scopes:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
qt_extend_target(QOffscreenIntegrationPlugin CONDITION UNIX
|
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
)
|
|
||||||
|
|
||||||
qt_extend_target(QOffscreenIntegrationPlugin CONDITION NOT APPLE
|
qt_extend_target(QOffscreenIntegrationPlugin CONDITION NOT APPLE
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
@ -44,5 +39,5 @@ qt_extend_target(QOffscreenIntegrationPlugin CONDITION QT_FEATURE_opengl AND QT_
|
|||||||
Qt::GlxSupportPrivate
|
Qt::GlxSupportPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 5:.:.:offscreen.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
#### Keys ignored in scope 4:.:.:offscreen.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
||||||
# PLUGIN_EXTENDS = "-"
|
# PLUGIN_EXTENDS = "-"
|
||||||
|
@ -28,11 +28,6 @@ qt_internal_add_plugin(QOffscreenIntegrationPlugin
|
|||||||
## Scopes:
|
## Scopes:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
qt_extend_target(QOffscreenIntegrationPlugin CONDITION UNIX
|
|
||||||
PUBLIC_LIBRARIES
|
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
)
|
|
||||||
|
|
||||||
qt_extend_target(QOffscreenIntegrationPlugin CONDITION NOT APPLE
|
qt_extend_target(QOffscreenIntegrationPlugin CONDITION NOT APPLE
|
||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
@ -45,5 +40,5 @@ qt_extend_target(QOffscreenIntegrationPlugin CONDITION QT_FEATURE_opengl AND QT_
|
|||||||
Qt::GlxSupportPrivate
|
Qt::GlxSupportPrivate
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 5:.:.:offscreen.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
#### Keys ignored in scope 4:.:.:offscreen.pro:NOT TARGET___equals____ss_QT_DEFAULT_QPA_PLUGIN:
|
||||||
# PLUGIN_EXTENDS = "-"
|
# PLUGIN_EXTENDS = "-"
|
||||||
|
@ -3,7 +3,6 @@ TARGET = qoffscreen
|
|||||||
QT += \
|
QT += \
|
||||||
core-private gui-private
|
core-private gui-private
|
||||||
|
|
||||||
!win32: QT += eventdispatcher_support-private
|
|
||||||
!darwin: QT += fontdatabase_support-private
|
!darwin: QT += fontdatabase_support-private
|
||||||
|
|
||||||
DEFINES += QT_NO_FOREACH
|
DEFINES += QT_NO_FOREACH
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
#include "qoffscreencommon.h"
|
#include "qoffscreencommon.h"
|
||||||
|
|
||||||
#if defined(Q_OS_UNIX)
|
#if defined(Q_OS_UNIX)
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
#if defined(Q_OS_MAC)
|
#if defined(Q_OS_MAC)
|
||||||
#include <qpa/qplatformfontdatabase.h>
|
#include <qpa/qplatformfontdatabase.h>
|
||||||
#include <QtGui/private/qcoretextfontdatabase_p.h>
|
#include <QtGui/private/qcoretextfontdatabase_p.h>
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qopenwf
|
|||||||
|
|
||||||
QT += \
|
QT += \
|
||||||
core-private gui-private \
|
core-private gui-private \
|
||||||
eventdispatcher_support-private fontdatabase_support-private
|
fontdatabase_support-private
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
qopenwfddevice.h \
|
qopenwfddevice.h \
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
#include <QtGui/QScreen>
|
#include <QtGui/QScreen>
|
||||||
#include <qpa/qwindowsysteminterface.h>
|
#include <qpa/qwindowsysteminterface.h>
|
||||||
|
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qqnx
|
|||||||
|
|
||||||
QT += \
|
QT += \
|
||||||
core-private gui-private \
|
core-private gui-private \
|
||||||
fontdatabase_support-private eventdispatcher_support-private egl_support-private
|
fontdatabase_support-private egl_support-private
|
||||||
|
|
||||||
# Uncomment this to build with support for IMF once it becomes available in the BBNDK
|
# Uncomment this to build with support for IMF once it becomes available in the BBNDK
|
||||||
#CONFIG += qqnx_imf
|
#CONFIG += qqnx_imf
|
||||||
|
@ -18,14 +18,12 @@ qt_internal_add_plugin(QVncIntegrationPlugin
|
|||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::FbSupportPrivate
|
Qt::FbSupportPrivate
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
Qt::Network
|
Qt::Network
|
||||||
Qt::ServiceSupportPrivate
|
Qt::ServiceSupportPrivate
|
||||||
Qt::ThemeSupportPrivate
|
|
||||||
)
|
)
|
||||||
|
|
||||||
#### Keys ignored in scope 1:.:.:vnc.pro:<TRUE>:
|
#### Keys ignored in scope 1:.:.:vnc.pro:<TRUE>:
|
||||||
|
@ -19,7 +19,6 @@ qt_internal_add_plugin(QVncIntegrationPlugin
|
|||||||
PUBLIC_LIBRARIES
|
PUBLIC_LIBRARIES
|
||||||
Qt::Core
|
Qt::Core
|
||||||
Qt::CorePrivate
|
Qt::CorePrivate
|
||||||
Qt::EventDispatcherSupportPrivate
|
|
||||||
Qt::FbSupportPrivate
|
Qt::FbSupportPrivate
|
||||||
Qt::FontDatabaseSupportPrivate
|
Qt::FontDatabaseSupportPrivate
|
||||||
Qt::Gui
|
Qt::Gui
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
#include <QtFontDatabaseSupport/private/qgenericunixfontdatabase_p.h>
|
||||||
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
#include <QtServiceSupport/private/qgenericunixservices_p.h>
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
|
|
||||||
#include <QtFbSupport/private/qfbbackingstore_p.h>
|
#include <QtFbSupport/private/qfbbackingstore_p.h>
|
||||||
#include <QtFbSupport/private/qfbwindow_p.h>
|
#include <QtFbSupport/private/qfbwindow_p.h>
|
||||||
|
@ -3,7 +3,7 @@ TARGET = qvnc
|
|||||||
QT += \
|
QT += \
|
||||||
core-private network gui-private \
|
core-private network gui-private \
|
||||||
service_support-private fb_support-private \
|
service_support-private fb_support-private \
|
||||||
eventdispatcher_support-private fontdatabase_support-private
|
fontdatabase_support-private
|
||||||
|
|
||||||
qtHaveModule(input_support-private): \
|
qtHaveModule(input_support-private): \
|
||||||
QT += input_support-private
|
QT += input_support-private
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
#include <QtCore/qhash.h>
|
#include <QtCore/qhash.h>
|
||||||
#include <QtCore/qloggingcategory.h>
|
#include <QtCore/qloggingcategory.h>
|
||||||
#include <QtEventDispatcherSupport/private/qunixeventdispatcher_qpa_p.h>
|
#include <QtGui/private/qunixeventdispatcher_qpa_p.h>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
#endif
|
#endif
|
||||||
#include "qwasmfontdatabase.h"
|
#include "qwasmfontdatabase.h"
|
||||||
#if defined(Q_OS_UNIX)
|
#if defined(Q_OS_UNIX)
|
||||||
#include <QtEventDispatcherSupport/private/qgenericunixeventdispatcher_p.h>
|
#include <QtGui/private/qgenericunixeventdispatcher_p.h>
|
||||||
#endif
|
#endif
|
||||||
#include <qpa/qplatformwindow.h>
|
#include <qpa/qplatformwindow.h>
|
||||||
#include <QtGui/qscreen.h>
|
#include <QtGui/qscreen.h>
|
||||||
|
@ -2,7 +2,7 @@ TARGET = qwasm
|
|||||||
CONFIG += static plugin
|
CONFIG += static plugin
|
||||||
QT += \
|
QT += \
|
||||||
core-private gui-private \
|
core-private gui-private \
|
||||||
eventdispatcher_support-private fontdatabase_support-private egl_support-private
|
fontdatabase_support-private egl_support-private
|
||||||
|
|
||||||
qtConfig(opengl): QT += opengl-private
|
qtConfig(opengl): QT += opengl-private
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user