From c5d47637c7376358a10f0f845e443478058a5430 Mon Sep 17 00:00:00 2001 From: Cristian Maureira-Fredes Date: Mon, 7 Sep 2020 21:06:10 +0200 Subject: Add the QWidget *-based overloads of the QtWinExtras functions Add a pre-header defining QT_WIDGETS_LIB so that they become visible, similar to what is done for QtSql. Done-with: Friedemann Kleint Fixes: PYSIDE-1374 Task-number: PYSIDE-487 Change-Id: I0fe1d8c6ca07a79ea9aa1acff00153239ca9a4cb Reviewed-by: Friedemann Kleint Reviewed-by: Cristian Maureira-Fredes --- sources/pyside2/PySide2/QtWinExtras/CMakeLists.txt | 10 ++++++++-- .../pyside2/PySide2/QtWinExtras/QtWinExtras_global.pre.h.in | 5 +++++ sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml | 1 + 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 sources/pyside2/PySide2/QtWinExtras/QtWinExtras_global.pre.h.in (limited to 'sources/pyside2/PySide2') diff --git a/sources/pyside2/PySide2/QtWinExtras/CMakeLists.txt b/sources/pyside2/PySide2/QtWinExtras/CMakeLists.txt index 3593394c3..6c877dfe4 100644 --- a/sources/pyside2/PySide2/QtWinExtras/CMakeLists.txt +++ b/sources/pyside2/PySide2/QtWinExtras/CMakeLists.txt @@ -18,21 +18,27 @@ ${QtWinExtras_GEN_DIR}/qwinthumbnailtoolbutton_wrapper.cpp ${QtWinExtras_GEN_DIR}/qtwinextras_module_wrapper.cpp ) +configure_file("${QtWinExtras_SOURCE_DIR}/QtWinExtras_global.pre.h.in" + "${QtWinExtras_BINARY_DIR}/QtWinExtras_global.pre.h" @ONLY) + set(QtWinExtras_include_dirs ${QtWinExtras_SOURCE_DIR} ${QtWinExtras_BINARY_DIR} ${Qt${QT_MAJOR_VERSION}WinExtras_INCLUDE_DIRS} ${Qt${QT_MAJOR_VERSION}Core_INCLUDE_DIRS} ${Qt${QT_MAJOR_VERSION}Gui_INCLUDE_DIRS} + ${Qt${QT_MAJOR_VERSION}Widgets_INCLUDE_DIRS} ${QtCore_GEN_DIR} ${QtGui_GEN_DIR} + ${QtWidgets_GEN_DIR} ${libpyside_SOURCE_DIR}) set(QtWinExtras_libraries pyside2 ${Qt${QT_MAJOR_VERSION}WinExtras_LIBRARIES} ${Qt${QT_MAJOR_VERSION}Core_LIBRARIES} - ${Qt${QT_MAJOR_VERSION}Gui_LIBRARIES}) + ${Qt${QT_MAJOR_VERSION}Gui_LIBRARIES} + ${Qt${QT_MAJOR_VERSION}Widgets_LIBRARIES}) -set(QtWinExtras_deps QtCore QtGui) +set(QtWinExtras_deps QtCore QtGui QtWidgets) create_pyside_module(NAME QtWinExtras INCLUDE_DIRS QtWinExtras_include_dirs diff --git a/sources/pyside2/PySide2/QtWinExtras/QtWinExtras_global.pre.h.in b/sources/pyside2/PySide2/QtWinExtras/QtWinExtras_global.pre.h.in new file mode 100644 index 000000000..3a2b87c3b --- /dev/null +++ b/sources/pyside2/PySide2/QtWinExtras/QtWinExtras_global.pre.h.in @@ -0,0 +1,5 @@ +// QT_WIDGETS_LIB must be defined for the widget functions to become visible. + +#if @Qt5Widgets_FOUND@ +# define QT_WIDGETS_LIB +#endif diff --git a/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml b/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml index db7416a24..69c90dd34 100644 --- a/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml +++ b/sources/pyside2/PySide2/QtWinExtras/typesystem_winextras.xml @@ -42,6 +42,7 @@ + -- cgit v1.2.3