From dcede1f96de30a71eea74b9a755fbc87c7f9384a Mon Sep 17 00:00:00 2001 From: ck Date: Mon, 12 Jun 2023 15:15:46 +0800 Subject: [PATCH] chore: Adapt Qt6 && Dtk6 compilation Since xdgiconloader is not adapted to Qt6, libxdg is disabled by default when compiling Dtk6 Do not install dconfig file in dtkgui to avoid conficts with dtk6gui C++ 17 by default DVERSION ==> DTK_VERSION cmake_minimum_required 3.13 tools install to CMAKE_INSTALL_LIBEXECDIR --- .gitignore | 3 + CMakeLists.txt | 137 +--- debian/control | 2 +- debian/libdtkgui5-bin.install | 2 +- debian/libdtkgui5.install | 2 +- debian/rules | 2 +- debian/symbols.amd64 | 944 ----------------------- docs/CMakeLists.txt | 7 +- dtkgui.cmake | 141 ++++ examples/CMakeLists.txt | 2 +- examples/animation-dci/CMakeLists.txt | 13 +- examples/dnd-example/CMakeLists.txt | 33 +- examples/frameless-window/CMakeLists.txt | 8 +- examples/test-taskbar/CMakeLists.txt | 13 +- misc/DtkGuiConfig.cmake.in | 16 +- misc/dtkgui.pc.in | 7 +- misc/qt_lib_dtkgui.pri.in | 2 +- src/CMakeLists.txt | 23 +- src/util/ddciicon.cpp | 6 +- src/util/util.cmake | 3 + tests/CMakeLists.txt | 20 +- tools/dci-icon-theme/CMakeLists.txt | 10 +- tools/dci-image-converter/CMakeLists.txt | 10 +- tools/dde-kwin-debug/CMakeLists.txt | 9 +- tools/deepin-gui-settings/CMakeLists.txt | 13 +- tools/image-handler/CMakeLists.txt | 9 +- 26 files changed, 270 insertions(+), 1167 deletions(-) delete mode 100644 debian/symbols.amd64 create mode 100644 dtkgui.cmake diff --git a/.gitignore b/.gitignore index 408912be..827662c1 100644 --- a/.gitignore +++ b/.gitignore @@ -51,6 +51,9 @@ CMakeLists.txt.user* #clangformat .clang-format +# build +compile_commands.json + bin DtkGuis dtkgui_config.h diff --git a/CMakeLists.txt b/CMakeLists.txt index e74990bc..9a0c2a40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,135 +1,20 @@ -cmake_minimum_required(VERSION 3.5) +cmake_minimum_required(VERSION 3.13) -set(DVERSION "5.6.8" CACHE STRING "define project version") +set(DTK_VERSION "5.6.11" CACHE STRING "define project version") project(DtkGui - VERSION ${DVERSION} + VERSION ${DTK_VERSION} DESCRIPTION "DTK Gui module" HOMEPAGE_URL "https://github.com/linuxdeepin/dtkgui" LANGUAGES CXX C ) -set(LIB_NAME dtkgui) -# Set install path -if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) - set(CMAKE_INSTALL_PREFIX /usr) -endif () - -include(GNUInstallDirs) -include(CMakePackageConfigHelpers) -list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") -set(CMAKE_CXX_STANDARD 11) -set(CMAKE_AUTOMOC ON) -set(CMAKE_AUTORCC ON) -set(CMAKE_INCLUDE_CURRENT_DIR ON) -set(CMAKE_EXPORT_COMPILE_COMMANDS ON) - -# Set build option -option(DTK_DISABLE_LIBXDG "Disable libxdg" OFF) -option(DTK_DISABLE_LIBRSVG "Disable librsvg" OFF) -option(DTK_DISABLE_EX_IMAGE_FORMAT "Disable libraw and freeimage" OFF) -set(BUILD_DOCS ON CACHE BOOL "Generate doxygen-based documentation") - -set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_INCLUDEDIR}/dtk${PROJECT_VERSION_MAJOR}/DGui") -set(TOOL_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/dtk${PROJECT_VERSION_MAJOR}/DGui/bin") -set(LIBRARY_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}") -set(MKSPECS_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/qt5/mkspecs/modules" CACHE STRING "Install dir for qt pri module files") -set(CONFIG_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/cmake/DtkGui") -set(PKGCONFIG_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig") - -set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -Wall -Wextra -fopenmp") -set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--as-needed") -set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pie") -if (CMAKE_BUILD_TYPE STREQUAL "Debug") - set(BUILD_TESTING ON) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O0 -g -fno-omit-frame-pointer") -else () - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Ofast") -endif () - -set(CONFIGNAME include/global/dtkgui_config.h) -file(WRITE ${CONFIGNAME} - "// This is an auto-generated header, please don't modify it.\n" -) -file(GLOB CONFIGSOURCE include/DtkGui/*) - -foreach(FILENAME ${CONFIGSOURCE}) - get_filename_component(thefile ${FILENAME} NAME) - file(APPEND ${CONFIGNAME} "#define DTKGUI_CLASS_${thefile}\n") -endforeach() - -# Generate cmake config file -configure_package_config_file(misc/DtkGuiConfig.cmake.in - ${CMAKE_CURRENT_BINARY_DIR}/DtkGuiConfig.cmake - INSTALL_DESTINATION "${CONFIG_INSTALL_DIR}" - PATH_VARS TOOL_INSTALL_DIR -) -# Generate cmake version file -write_basic_package_version_file( - "${CMAKE_CURRENT_BINARY_DIR}/DtkGuiConfigVersion.cmake" - VERSION ${DVERSION} - COMPATIBILITY SameMajorVersion -) -# Install cmake config file and version file to CONFIG_INSTALL_DIR -install(FILES - ${CMAKE_CURRENT_BINARY_DIR}/DtkGuiConfig.cmake - ${CMAKE_CURRENT_BINARY_DIR}/DtkGuiConfigVersion.cmake - DESTINATION "${CONFIG_INSTALL_DIR}" -) -# Install pkgconfig file -configure_file(misc/dtkgui.pc.in dtkgui.pc @ONLY) -install(FILES ${CMAKE_CURRENT_BINARY_DIR}/dtkgui.pc DESTINATION "${PKGCONFIG_INSTALL_DIR}") -# Install pri module -configure_file(misc/qt_lib_dtkgui.pri.in qt_lib_dtkgui.pri @ONLY) -install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qt_lib_dtkgui.pri DESTINATION "${MKSPECS_INSTALL_DIR}") - -set(GUISGNAME DtkGuis) - -file(WRITE ${GUISGNAME} - "// This is an auto-generated header, please don't modify it.\n" - "#ifndef DTK_GUI_MODULE_H\n" - "#define DTK_GUI_MODULE_H\n" -) -file(GLOB FILEGRAGTOWRITSOURCE include/filedrag/*) - -foreach(FILENAME ${FILEGRAGTOWRITSOURCE}) - get_filename_component(thefile ${FILENAME} NAME) - file(APPEND ${GUISGNAME} "#include \"${thefile}\"\n") -endforeach() -file(GLOB KERNELTOWRITESOURCE include/kernel/*) -foreach(FILENAME ${KERNELTOWRITESOURCE}) - get_filename_component(thefile ${FILENAME} NAME) - file(APPEND ${GUISGNAME} "#include \"${thefile}\"\n") -endforeach() -file(GLOB UTILTOWRITESOURCE include/util/*) -foreach(FILENAME ${UTILTOWRITESOURCE}) - get_filename_component(thefile ${FILENAME} NAME) - file(APPEND ${GUISGNAME} "#include \"${thefile}\"\n") -endforeach() -file(APPEND ${GUISGNAME} "#endif") -install(FILES DtkGuis DESTINATION "${INCLUDE_INSTALL_DIR}") - -# Find common dependencies -find_package(Qt5 REQUIRED COMPONENTS Gui DBus Network) -find_package(PkgConfig REQUIRED) -find_package(Dtk REQUIRED COMPONENTS Core) -pkg_check_modules(librsvg REQUIRED IMPORTED_TARGET librsvg-2.0) - -# Check optional image handler dependencies. -find_package(FreeImage) -pkg_check_modules(libraw IMPORTED_TARGET libraw) -if(FreeImage_FOUND AND libraw_FOUND) - set(EX_IMAGE_FORMAT_LIBS_FOUND ON) +if("${PROJECT_VERSION_MAJOR}" STREQUAL "5") + set(QT_VERSION_MAJOR "5") +elseif("${PROJECT_VERSION_MAJOR}" STREQUAL "6") + set(QT_VERSION_MAJOR "6") + set(DTK_VERSION_MAJOR "6") +else() + message(SEND_ERROR "not support Prject Version ${PROJECT_VERSION}.") endif() -add_subdirectory(src) -if(BUILD_TESTING) - enable_testing() - add_subdirectory(tests) -endif() -add_subdirectory(tools) -add_subdirectory(examples) - -if (BUILD_DOCS) - add_subdirectory(docs) -endif () - +include(dtkgui.cmake) diff --git a/debian/control b/debian/control index 9792b3d4..f62f09c4 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ Standards-Version: 3.9.8 Package: libdtkgui5 Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, libdtkcommon, +Depends: ${shlibs:Depends}, ${misc:Depends}, libdtkdata, qt5-image-formats-plugins Multi-Arch: same Description: Deepin Tool Kit Gui library diff --git a/debian/libdtkgui5-bin.install b/debian/libdtkgui5-bin.install index 31a79496..03b0ff69 100644 --- a/debian/libdtkgui5-bin.install +++ b/debian/libdtkgui5-bin.install @@ -1 +1 @@ -usr/lib/*/*/DGui/bin/* +usr/*/*/DGui/bin/* diff --git a/debian/libdtkgui5.install b/debian/libdtkgui5.install index a41f3190..3394c41c 100644 --- a/debian/libdtkgui5.install +++ b/debian/libdtkgui5.install @@ -1,2 +1,2 @@ usr/lib/*/lib*.so.* -usr/share/dsg/*/* +#usr/share/dsg/*/* diff --git a/debian/rules b/debian/rules index 8351725f..f23a61dd 100755 --- a/debian/rules +++ b/debian/rules @@ -18,7 +18,7 @@ endif dh $@ override_dh_auto_configure: - dh_auto_configure -- -DBUILD_TESTING=OFF -DBUILD_DOCS=ON -DDVERSION=$(_PACK_VER) + dh_auto_configure -- -DBUILD_TESTING=OFF -DBUILD_DOCS=ON -DDTK_VERSION=$(_PACK_VER) #override_dh_auto_test: # echo "skip auto test" diff --git a/debian/symbols.amd64 b/debian/symbols.amd64 deleted file mode 100644 index ffed540f..00000000 --- a/debian/symbols.amd64 +++ /dev/null @@ -1,944 +0,0 @@ -libdtkgui.so.5 libdtkgui5 #MINVER# - _Z27qRegisterNormalizedMetaTypeI5QListI12QPainterPathEEiRK10QByteArrayPT_N9QtPrivate21MetaTypeDefinedHelperIS6_Xaasr12QMetaTypeId2IS6_E7DefinedntsrSB_9IsBuiltInEE11DefinedTypeE@Base 5.2.2-1 - _Z27qRegisterNormalizedMetaTypeI5QListI5QRectEEiRK10QByteArrayPT_N9QtPrivate21MetaTypeDefinedHelperIS6_Xaasr12QMetaTypeId2IS6_E7DefinedntsrSB_9IsBuiltInEE11DefinedTypeE@Base 5.2.2-1 - _Z27qRegisterNormalizedMetaTypeI7QVectorIjEEiRK10QByteArrayPT_N9QtPrivate21MetaTypeDefinedHelperIS5_Xaasr12QMetaTypeId2IS5_E7DefinedntsrSA_9IsBuiltInEE11DefinedTypeE@Base 5.2.2-1 - _ZGVZN9QtPrivate19ValueTypeIsMetaTypeI5QListI12QPainterPathELb1EE17registerConverterEiE1f@Base 5.2.2-1 - _ZGVZN9QtPrivate19ValueTypeIsMetaTypeI5QListI5QRectELb1EE17registerConverterEiE1f@Base 5.2.2-1 - _ZGVZN9QtPrivate19ValueTypeIsMetaTypeI7QVectorIjELb1EE17registerConverterEiE1f@Base 5.2.2-1 - _ZN10QByteArrayD1Ev@Base 5.2.2-1 - _ZN10QByteArrayD2Ev@Base 5.2.2-1 - _ZN12QWeakPointerI14QDBusInterfaceED1Ev@Base 5.2.2-1 - _ZN12QWeakPointerI14QDBusInterfaceED2Ev@Base 5.2.2-1 - _ZN12QWeakPointerI7QObjectED1Ev@Base 5.2.2-1 - _ZN12QWeakPointerI7QObjectED2Ev@Base 5.2.2-1 - _ZN12QWeakPointerIN3Dtk3Gui19DDndSourceInterfaceEED1Ev@Base 5.2.2-1 - _ZN12QWeakPointerIN3Dtk3Gui19DDndSourceInterfaceEED2Ev@Base 5.2.2-1 - _ZN12QWeakPointerIN3Dtk3Gui21DDndClientSignalRelayEED1Ev@Base 5.2.2-1 - _ZN12QWeakPointerIN3Dtk3Gui21DDndClientSignalRelayEED2Ev@Base 5.2.2-1 - _ZN15QtSharedPointer33ExternalRefCountWithCustomDeleterIN3Dtk3Gui21DDndClientSignalRelayENS_13NormalDeleterEE7deleterEPNS_20ExternalRefCountDataE@Base 5.2.2-1 - _ZN17QtMetaTypePrivate13IteratorOwnerIPKjE5equalEPKPvS6_@Base 5.2.2-1 - _ZN17QtMetaTypePrivate13IteratorOwnerIPKjE6assignEPPvPKS4_@Base 5.2.2-1 - _ZN17QtMetaTypePrivate13IteratorOwnerIPKjE7advanceEPPvi@Base 5.2.2-1 - _ZN17QtMetaTypePrivate13IteratorOwnerIPKjE7destroyEPPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate19IteratorOwnerCommonIN5QListI12QPainterPathE14const_iteratorEE5equalEPKPvS8_@Base 5.2.2-1 - _ZN17QtMetaTypePrivate19IteratorOwnerCommonIN5QListI12QPainterPathE14const_iteratorEE6assignEPPvPKS6_@Base 5.2.2-1 - _ZN17QtMetaTypePrivate19IteratorOwnerCommonIN5QListI12QPainterPathE14const_iteratorEE7advanceEPPvi@Base 5.2.2-1 - _ZN17QtMetaTypePrivate19IteratorOwnerCommonIN5QListI12QPainterPathE14const_iteratorEE7destroyEPPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate19IteratorOwnerCommonIN5QListI5QRectE14const_iteratorEE5equalEPKPvS8_@Base 5.2.2-1 - _ZN17QtMetaTypePrivate19IteratorOwnerCommonIN5QListI5QRectE14const_iteratorEE6assignEPPvPKS6_@Base 5.2.2-1 - _ZN17QtMetaTypePrivate19IteratorOwnerCommonIN5QListI5QRectE14const_iteratorEE7advanceEPPvi@Base 5.2.2-1 - _ZN17QtMetaTypePrivate19IteratorOwnerCommonIN5QListI5QRectE14const_iteratorEE7destroyEPPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI12QPainterPathLb1EE8DestructEPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI12QPainterPathLb1EE9ConstructEPvPKv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI13QDBusArgumentLb1EE8DestructEPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI13QDBusArgumentLb1EE9ConstructEPvPKv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI5QListI12QPainterPathELb1EE8DestructEPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI5QListI12QPainterPathELb1EE9ConstructEPvPKv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI5QListI5QRectELb1EE8DestructEPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI5QListI5QRectELb1EE9ConstructEPvPKv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI7QVectorIjELb1EE8DestructEPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI7QVectorIjELb1EE9ConstructEPvPKv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI8QMarginsLb1EE8DestructEPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperI8QMarginsLb1EE9ConstructEPvPKv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperINS_23QSequentialIterableImplELb1EE8DestructEPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperINS_23QSequentialIterableImplELb1EE9ConstructEPvPKv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperIPN3Dtk3Gui14DPlatformThemeELb1EE8DestructEPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QMetaTypeFunctionHelperIPN3Dtk3Gui14DPlatformThemeELb1EE9ConstructEPvPKv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl13moveToEndImplI5QListI12QPainterPathEEEvPKvPPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl13moveToEndImplI5QListI5QRectEEEvPKvPPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl13moveToEndImplI7QVectorIjEEEvPKvPPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl15moveToBeginImplI5QListI12QPainterPathEEEvPKvPPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl15moveToBeginImplI5QListI5QRectEEEvPKvPPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl15moveToBeginImplI7QVectorIjEEEvPKvPPv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl6atImplI5QListI12QPainterPathEEEPKvS6_i@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl6atImplI5QListI5QRectEEEPKvS6_i@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl6atImplI7QVectorIjEEEPKvS5_i@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl7getImplI5QListI12QPainterPathEEENS_11VariantDataEPKPvij@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl7getImplI5QListI5QRectEEENS_11VariantDataEPKPvij@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl7getImplI7QVectorIjEEENS_11VariantDataEPKPvij@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl8sizeImplI5QListI12QPainterPathEEEiPKv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl8sizeImplI5QListI5QRectEEEiPKv@Base 5.2.2-1 - _ZN17QtMetaTypePrivate23QSequentialIterableImpl8sizeImplI7QVectorIjEEEiPKv@Base 5.2.2-1 - _ZN18QSharedDataPointerIN3Dtk3Gui12DPaletteDataEE13detach_helperEv@Base 5.2.2-1 - _ZN18QSharedDataPointerIN3Dtk3Gui12DPaletteDataEED1Ev@Base 5.2.2-1 - _ZN18QSharedDataPointerIN3Dtk3Gui12DPaletteDataEED2Ev@Base 5.2.2-1 - _ZN29QWindowSystemInterfacePrivate16ThemeChangeEventD0Ev@Base 5.2.2-1 - _ZN29QWindowSystemInterfacePrivate16ThemeChangeEventD1Ev@Base 5.2.2-1 - _ZN29QWindowSystemInterfacePrivate16ThemeChangeEventD2Ev@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface10CursorIntoEiiRK7QString@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface10CursorMoveEiiRK7QString@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface10KeyReleaseERK7QStringiiS2_@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface11ButtonPressEiiiRK7QString@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface11qt_metacastEPKc@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface13ButtonReleaseEiiiRK7QString@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface13CancelAllAreaEv@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface16staticMetaObjectE@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface8KeyPressERK7QStringiiS2_@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterface9CursorOutEiiRK7QString@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterfaceC1ERK7QStringS2_RK15QDBusConnectionP7QObject@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterfaceC2ERK7QStringS2_RK15QDBusConnectionP7QObject@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterfaceD0Ev@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterfaceD1Ev@Base 5.2.2-1 - _ZN34ComDeepinApiXEventMonitorInterfaceD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRenderer10setViewBoxERK5QRect@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRenderer10setViewBoxERK6QRectF@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRenderer4loadERK10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRenderer4loadERK7QString@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRenderer6renderEP8QPainter@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRenderer6renderEP8QPainterRK6QRectF@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRenderer6renderEP8QPainterRK7QStringRK6QRectF@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRendererC1EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRendererC1ERK10QByteArrayP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRendererC1ERK7QStringP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRendererC2EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRendererC2ERK10QByteArrayP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRendererC2ERK7QStringP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRendererD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRendererD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui12DSvgRendererD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindow10pidChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindow11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindow11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindow14wmClassChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindow16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindow5eventEP6QEvent@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindow9fromWinIdEy@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindowC1EP7QWindow@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindowC2EP7QWindow@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindowD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindowD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui14DForeignWindowD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme10midChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme10setPaletteERKNS0_8DPaletteE@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme11baseChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme11darkChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme11linkChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme11setFontNameERK10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme11setMidlightERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme11setTextTipsERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme11textChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme12lightChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme12setHighlightERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme12setTextTitleERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme12setThemeNameERK10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme13buttonChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme13setBrightTextERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme13setButtonTextERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme13setDarkLivelyERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme13setTextLivelyERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme13setWindowTextERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme13shadowChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme13windowChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14paletteChangedENS0_8DPaletteE@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14setActiveColorE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14setCursorBlinkEb@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14setDotsPerInchERK7QStringi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14setFrameBorderERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14setGtkFontNameERK10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14setLightLivelyERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14setLinkVisitedERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14setTextWarningERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14setToolTipBaseERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme14setToolTipTextERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme15fontNameChangedE10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme15midlightChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme15setMonoFontNameERK10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme15textTipsChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme16highlightChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme16setAlternateBaseERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme16setFontPointSizeEd@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme16setIconThemeNameERK10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme16textTitleChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme16themeNameChangedE10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme17brightTextChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme17buttonTextChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme17darkLivelyChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme17setItemBackgroundERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme17setSoundThemeNameERK10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme17textLivelyChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme17windowTextChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18activeColorChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18cursorBlinkChangedEb@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18dotsPerInchChangedERK7QStringi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18frameBorderChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18gtkFontNameChangedE10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18lightLivelyChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18linkVisitedChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18setCursorBlinkTimeEi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18setDoubleClickTimeEi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18setHighlightedTextERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18textWarningChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18toolTipBaseChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme18toolTipTextChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme19monoFontNameChangedE10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme19setDndDragThresholdEi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme19setFallbackPropertyEb@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme20alternateBaseChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme20fontPointSizeChangedEd@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme20iconThemeNameChangedE10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme21itemBackgroundChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme21setCursorBlinkTimeoutEi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme21soundThemeNameChangedE10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme22cursorBlinkTimeChangedEi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme22doubleClickTimeChangedEi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme22highlightedTextChangedE6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme22setDoubleClickDistanceEi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme23dndDragThresholdChangedEi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme25cursorBlinkTimeoutChangedEi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme26doubleClickDistanceChangedEi@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme6setMidERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme7setBaseERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme7setDarkERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme7setLinkERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme7setTextERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme8setLightERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme9setButtonERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme9setShadowERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformTheme9setWindowERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformThemeC1EjP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformThemeC1EjPS1_@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformThemeC2EjP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformThemeC2EjPS1_@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformThemeD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformThemeD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui14DPlatformThemeD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitor11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitor11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitor14registerRegionEv@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitor16setWatchedRegionERK7QRegion@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitor16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitor16unregisterRegionEv@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitor17setCoordinateTypeENS1_14CoordinateTypeE@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitorC1EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitorC2EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitorD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitorD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui14DRegionMonitorD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClient11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClient11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClient12setTargetUrlEPK9QMimeData4QUrl@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClient12stateChangedENS0_14DFileDragStateE@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClient13checkMimeDataEPK9QMimeData@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClient13setTargetDataEPK9QMimeData7QString8QVariant@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClient15progressChangedEi@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClient15serverDestroyedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClient16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClientC1EPK9QMimeDataP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClientC2EPK9QMimeDataP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClientD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClientD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragClientD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServer11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServer11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServer11setProgressEi@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServer16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServer17targetDataChangedERK7QString@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServer8setStateENS0_14DFileDragStateE@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServerC1EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServerC2EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServerD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServerD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DFileDragServerD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettings10setSettingERK10QByteArrayRK8QVariant@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettings11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettings11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettings12__setAllKeysERK5QListI10QByteArrayE@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettings14allKeysChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettings15propertyChangedERK10QByteArrayRK8QVariant@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettings16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettings4initEPK11QMetaObjectj@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettingsC1EPK11QMetaObjectjRK10QByteArrayP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettingsC1ERNS0_22DNativeSettingsPrivateEPK11QMetaObjectjP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettingsC1EjRK10QByteArrayP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettingsC2EPK11QMetaObjectjRK10QByteArrayP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettingsC2ERNS0_22DNativeSettingsPrivateEPK11QMetaObjectjP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettingsC2EjRK10QByteArrayP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettingsD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettingsD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DNativeSettingsD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle11eventFilterEP7QObjectP6QEvent@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle11setClipPathERK12QPainterPath@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle12setFrameMaskERK7QRegion@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle12windowLeaderEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle13isEnabledDXcbEPK7QWindow@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle13pluginVersionEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle14isDXcbPlatformEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle14setBorderColorERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle14setBorderWidthEi@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle14setShadowColorERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle15clipPathChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle15setShadowOffsetERK6QPoint@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle15setShadowRadiusEi@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle15setWindowRadiusEi@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle16frameMaskChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle18borderColorChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle18borderWidthChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle18shadowColorChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle19enableDXcbForWindowEP7QWindow@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle19enableDXcbForWindowEP7QWindowb@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle19frameMarginsChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle19isEnabledNoTitlebarEPK7QWindow@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle19setEnableBlurWindowEb@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle19setEnableSystemMoveEb@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle19shadowOffsetChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle19shadowRadiusChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle19windowRadiusChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle21setEnableSystemResizeEb@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle21setWindowBlurAreaByWMEP7QWindowRK5QListI12QPainterPathE@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle21setWindowBlurAreaByWMEP7QWindowRK7QVectorINS1_10WMBlurAreaEE@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle21setWindowBlurAreaByWMERK5QListI12QPainterPathE@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle21setWindowBlurAreaByWMERK7QVectorINS1_10WMBlurAreaEE@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle23enableBlurWindowChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle23enableSystemMoveChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle24setTranslucentBackgroundEb@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle25enableSystemResizeChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle26setAutoInputMaskByClipPathEb@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle27connectHasBlurWindowChangedEP7QObjectSt8functionIFvvEE@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle28translucentBackgroundChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle29setEnabledNoTitlebarForWindowEP7QWindowb@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle30autoInputMaskByClipPathChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle30setDisableWindowOverrideCursorEP7QWindowb@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandle33connectWindowManagerChangedSignalEP7QObjectSt8functionIFvvEE@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandleC1EP7QWindowP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandleC2EP7QWindowP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandleD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandleD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DPlatformHandleD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl10setCounterEbi@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl10setUrgencyEb@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl11sendMessageERK4QMapI7QString8QVariantE@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl11setProgressEbd@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl14counterChangedEi@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl15progressChangedEd@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl17setCounterVisibleEb@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl21counterVisibleChangedEb@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControl22progressVisibleChangedEb@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControlC1EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControlC2EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControlD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControlD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui15DTaskbarControlD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui16DFileDragPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui16DFileDragPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui16DFileDragPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProvider11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProvider11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProvider12setSizeLimitERK9QMimeTypex@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProvider15createThumbnailERK9QFileInfoNS1_4SizeE@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProvider16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProvider19setDefaultSizeLimitEx@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProvider20appendToProduceQueueERK9QFileInfoNS1_4SizeESt8functionIFvRK7QStringEE@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProvider20removeInProduceQueueERK9QFileInfoNS1_4SizeE@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProvider3runEv@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProvider8instanceEv@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProviderC1EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProviderC2EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProviderD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProviderD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui18DThumbnailProviderD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui18DWindowGroupLeader12removeWindowEP7QWindow@Base 5.2.2-1 - _ZN3Dtk3Gui18DWindowGroupLeader9addWindowEP7QWindow@Base 5.2.2-1 - _ZN3Dtk3Gui18DWindowGroupLeaderC1Ej@Base 5.2.2-1 - _ZN3Dtk3Gui18DWindowGroupLeaderC2Ej@Base 5.2.2-1 - _ZN3Dtk3Gui18DWindowGroupLeaderD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui18DWindowGroupLeaderD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui19DDndSourceInterface11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui19DDndSourceInterface11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui19DDndSourceInterface12stateChangedE7QStringi@Base 5.2.2-1 - _ZN3Dtk3Gui19DDndSourceInterface15progressChangedE7QStringi@Base 5.2.2-1 - _ZN3Dtk3Gui19DDndSourceInterface15serverDestroyedE7QString@Base 5.2.2-1 - _ZN3Dtk3Gui19DDndSourceInterface16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui19DDndSourceInterfaceD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui19DDndSourceInterfaceD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui19DDndSourceInterfaceD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui19DSvgRendererPrivateC1EPNS_4Core7DObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui19DSvgRendererPrivateC2EPNS_4Core7DObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui19DSvgRendererPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui19DSvgRendererPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui19DSvgRendererPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper17getMotifFunctionsEPK7QWindow@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper17setMotifFunctionsEPK7QWindow6QFlagsINS1_13MotifFunctionEE@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper17setMotifFunctionsEPK7QWindow6QFlagsINS1_13MotifFunctionEEb@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper17windowListChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper19getMotifDecorationsEPK7QWindow@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper19hasCompositeChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper19setMotifDecorationsEPK7QWindow6QFlagsINS1_15MotifDecorationEE@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper19setMotifDecorationsEPK7QWindow6QFlagsINS1_15MotifDecorationEEb@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper20hasBlurWindowChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper20hasNoTitlebarChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper20windowManagerChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper21popupSystemWindowMenuEPK7QWindow@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper25windowMotifWMHintsChangedEj@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelper8instanceEv@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelperC1EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelperC2EP7QObject@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelperD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelperD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui20DWindowManagerHelperD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DDndClientSignalRelay11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui21DDndClientSignalRelay11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui21DDndClientSignalRelay12stateChangedE7QStringi@Base 5.2.2-1 - _ZN3Dtk3Gui21DDndClientSignalRelay15progressChangedE7QStringi@Base 5.2.2-1 - _ZN3Dtk3Gui21DDndClientSignalRelay15serverDestroyedE7QString@Base 5.2.2-1 - _ZN3Dtk3Gui21DDndClientSignalRelay16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui21DDndClientSignalRelay8relayrefE@Base 5.2.2-1 - _ZN3Dtk3Gui21DDndClientSignalRelayD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DDndClientSignalRelayD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DDndClientSignalRelayD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DForeignWindowPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DForeignWindowPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DForeignWindowPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper10blendColorERK6QColorS4_@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper10initializeEv@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper11adjustColorERK6QColoraaaaaaa@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper11toColorTypeERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper11toColorTypeERK8QPalette@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper12fetchPaletteEPKNS0_14DPlatformThemeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper12setThemeTypeENS1_9ColorTypeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper14setPaletteTypeENS1_9ColorTypeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper15generatePaletteERNS0_8DPaletteENS1_9ColorTypeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper15standardPaletteENS1_9ColorTypeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper16themeTypeChangedENS1_9ColorTypeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper17isXWindowPlatformEv@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper17setSingleInstanceERK7QStringNS1_11SingleScopeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper18newProcessInstanceExRK11QStringList@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper18paletteTypeChangedENS1_9ColorTypeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper20generatePaletteColorERNS0_8DPaletteEN8QPalette9ColorRoleENS1_9ColorTypeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper20generatePaletteColorERNS0_8DPaletteENS2_9ColorTypeENS1_9ColorTypeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper21setApplicationPaletteERKNS0_8DPaletteE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper23registerInstanceCreatorEPFPS1_vE@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper24setUseInactiveColorGroupEb@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper25setSingelInstanceIntervalEi@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper25setSingleInstanceIntervalEi@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper26setColorCompositingEnabledEb@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelper8instanceEv@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelperC1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelperC2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelperD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelperD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DGuiApplicationHelperD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DPlatformThemePrivate16onQtColorChangedEN8QPalette9ColorRoleERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui21DPlatformThemePrivate17onDtkColorChangedENS0_8DPalette9ColorTypeERK6QColor@Base 5.2.2-1 - _ZN3Dtk3Gui21DPlatformThemePrivate20notifyPaletteChangedEv@Base 5.2.2-1 - _ZN3Dtk3Gui21DPlatformThemePrivate25_q_onThemePropertyChangedERK10QByteArrayRK8QVariant@Base 5.2.2-1 - _ZN3Dtk3Gui21DPlatformThemePrivateC1EPNS0_14DPlatformThemeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DPlatformThemePrivateC2EPNS0_14DPlatformThemeE@Base 5.2.2-1 - _ZN3Dtk3Gui21DPlatformThemePrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DPlatformThemePrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DPlatformThemePrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivate11_q_KeyPressERK7QStringiiS4_@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivate13_q_CursorMoveEiiRK7QString@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivate13_q_KeyReleaseERK7QStringiiS4_@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivate14_q_ButtonPressEiiiRK7QString@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivate16_q_ButtonReleaseEiiiRK7QString@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivate21registerMonitorRegionEv@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivate23unregisterMonitorRegionEv@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivate4initEv@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivateC1EPNS0_14DRegionMonitorE@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivateC2EPNS0_14DRegionMonitorE@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DRegionMonitorPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DWindowManagerHelper_D0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DWindowManagerHelper_D1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui21DWindowManagerHelper_D2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragClientPrivate13connectionmapE@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragClientPrivate8ifacemapE@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragClientPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragClientPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragClientPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragServerPrivate10dbusifinstE@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragServerPrivate13writeMimeDataEP9QMimeData@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragServerPrivate9servermapE@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragServerPrivateC1EPNS0_15DFileDragServerE@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragServerPrivateC2EPNS0_15DFileDragServerE@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragServerPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragServerPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DFileDragServerPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DNativeSettingsPrivate4initEPK11QMetaObjectj@Base 5.2.2-1 - _ZN3Dtk3Gui22DNativeSettingsPrivateC1EPNS0_15DNativeSettingsERK10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui22DNativeSettingsPrivateC2EPNS0_15DNativeSettingsERK10QByteArray@Base 5.2.2-1 - _ZN3Dtk3Gui22DNativeSettingsPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DNativeSettingsPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DNativeSettingsPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DTaskbarControlPrivateC1EPNS0_15DTaskbarControlE@Base 5.2.2-1 - _ZN3Dtk3Gui22DTaskbarControlPrivateC2EPNS0_15DTaskbarControlE@Base 5.2.2-1 - _ZN3Dtk3Gui22DTaskbarControlPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DTaskbarControlPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22DTaskbarControlPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui22_DGuiApplicationHelper14defaultCreatorEv@Base 5.2.2-1 - _ZN3Dtk3Gui22_DGuiApplicationHelper7creatorE@Base 5.2.2-1 - _ZN3Dtk3Gui25DThumbnailProviderPrivate11ProduceInfoD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui25DThumbnailProviderPrivate11ProduceInfoD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui25DThumbnailProviderPrivate20hasThumbnailMimeHashE@Base 5.2.2-1 - _ZN3Dtk3Gui25DThumbnailProviderPrivate4initEv@Base 5.2.2-1 - _ZN3Dtk3Gui25DThumbnailProviderPrivateC1EPNS0_18DThumbnailProviderE@Base 5.2.2-1 - _ZN3Dtk3Gui25DThumbnailProviderPrivateC2EPNS0_18DThumbnailProviderE@Base 5.2.2-1 - _ZN3Dtk3Gui25DThumbnailProviderPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui25DThumbnailProviderPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui25DThumbnailProviderPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui25DWindowGroupLeaderPrivate17ensureGroupLeaderEv@Base 5.2.2-1 - _ZN3Dtk3Gui25DWindowGroupLeaderPrivate20setWindowGroupLeaderEjj@Base 5.2.2-1 - _ZN3Dtk3Gui27DWindowManagerHelperPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui27DWindowManagerHelperPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui27DWindowManagerHelperPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivate15initApplicationEP15QGuiApplication@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivate16compositingColorE@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivate16useInactiveColorE@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivate21notifyAppThemeChangedEP15QGuiApplicationb@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivate21staticInitApplicationEv@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivate23_q_initApplicationThemeEb@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivate4initEv@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivate8waitTimeE@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivateC1EPNS0_21DGuiApplicationHelperE@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivateC2EPNS0_21DGuiApplicationHelperE@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui28DGuiApplicationHelperPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui29DFileThumbnailProviderPrivateD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui29DFileThumbnailProviderPrivateD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui29DFileThumbnailProviderPrivateD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui8DPalette8setBrushEN8QPalette10ColorGroupENS1_9ColorTypeERK6QBrush@Base 5.2.2-1 - _ZN3Dtk3Gui8DPaletteC1ERK8QPalette@Base 5.2.2-1 - _ZN3Dtk3Gui8DPaletteC1ERKS1_@Base 5.2.2-1 - _ZN3Dtk3Gui8DPaletteC1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui8DPaletteC2ERK8QPalette@Base 5.2.2-1 - _ZN3Dtk3Gui8DPaletteC2ERKS1_@Base 5.2.2-1 - _ZN3Dtk3Gui8DPaletteC2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui8DPaletteD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui8DPaletteD2Ev@Base 5.2.2-1 - _ZN3Dtk3Gui8DPaletteaSERKS1_@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDrag11qt_metacallEN11QMetaObject4CallEiPPv@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDrag11qt_metacastEPKc@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDrag11setMimeDataEP9QMimeData@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDrag16staticMetaObjectE@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDrag16targetUrlChangedE4QUrl@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDrag9targetUrlEv@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDragC1EP7QObjectPNS0_15DFileDragServerE@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDragC2EP7QObjectPNS0_15DFileDragServerE@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDragD0Ev@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDragD1Ev@Base 5.2.2-1 - _ZN3Dtk3Gui9DFileDragD2Ev@Base 5.2.2-1 - _ZN4QMapI7QString8QVariantE13detach_helperEv@Base 5.2.2-1 - _ZN4QMapI7QString8QVariantE6insertERKS0_RKS1_@Base 5.2.2-1 - _ZN4QMapI7QString8QVariantED1Ev@Base 5.2.2-1 - _ZN4QMapI7QString8QVariantED2Ev@Base 5.2.2-1 - _ZN4QSetI7QStringED1Ev@Base 5.2.2-1 - _ZN4QSetI7QStringED2Ev@Base 5.2.2-1 - _ZN5QHashI5QPairI7QStringN3Dtk3Gui18DThumbnailProvider4SizeEE15QHashDummyValueE11deleteNode2EPN9QHashData4NodeE@Base 5.2.2-1 - _ZN5QHashI5QPairI7QStringN3Dtk3Gui18DThumbnailProvider4SizeEE15QHashDummyValueE13duplicateNodeEPN9QHashData4NodeEPv@Base 5.2.2-1 - _ZN5QHashI5QPairI7QStringN3Dtk3Gui18DThumbnailProvider4SizeEE15QHashDummyValueE6removeERKS6_@Base 5.2.2-1 - _ZN5QHashI7QString12QWeakPointerI14QDBusInterfaceEE11deleteNode2EPN9QHashData4NodeE@Base 5.2.2-1 - _ZN5QHashI7QString12QWeakPointerI14QDBusInterfaceEE13duplicateNodeEPN9QHashData4NodeEPv@Base 5.2.2-1 - _ZN5QHashI7QString12QWeakPointerI14QDBusInterfaceEE6removeERKS0_@Base 5.2.2-1 - _ZN5QHashI7QString12QWeakPointerI14QDBusInterfaceEED1Ev@Base 5.2.2-1 - _ZN5QHashI7QString12QWeakPointerI14QDBusInterfaceEED2Ev@Base 5.2.2-1 - _ZN5QHashI7QString15QHashDummyValueE11deleteNode2EPN9QHashData4NodeE@Base 5.2.2-1 - _ZN5QHashI7QString15QHashDummyValueE13duplicateNodeEPN9QHashData4NodeEPv@Base 5.2.2-1 - _ZN5QHashI7QStringPN3Dtk3Gui15DFileDragClientEE11deleteNode2EPN9QHashData4NodeE@Base 5.2.2-1 - _ZN5QHashI7QStringPN3Dtk3Gui15DFileDragClientEE13duplicateNodeEPN9QHashData4NodeEPv@Base 5.2.2-1 - _ZN5QHashI7QStringPN3Dtk3Gui15DFileDragClientEE6removeERKS0_@Base 5.2.2-1 - _ZN5QHashI7QStringPN3Dtk3Gui15DFileDragClientEED1Ev@Base 5.2.2-1 - _ZN5QHashI7QStringPN3Dtk3Gui15DFileDragClientEED2Ev@Base 5.2.2-1 - _ZN5QHashI7QStringPN3Dtk3Gui15DFileDragServerEE11deleteNode2EPN9QHashData4NodeE@Base 5.2.2-1 - _ZN5QHashI7QStringPN3Dtk3Gui15DFileDragServerEE13duplicateNodeEPN9QHashData4NodeEPv@Base 5.2.2-1 - _ZN5QHashI7QStringPN3Dtk3Gui15DFileDragServerEE6removeERKS0_@Base 5.2.2-1 - _ZN5QHashI7QStringPN3Dtk3Gui15DFileDragServerEED1Ev@Base 5.2.2-1 - _ZN5QHashI7QStringPN3Dtk3Gui15DFileDragServerEED2Ev@Base 5.2.2-1 - _ZN5QHashI7QStringiE11deleteNode2EPN9QHashData4NodeE@Base 5.2.2-1 - _ZN5QHashI7QStringiE13duplicateNodeEPN9QHashData4NodeEPv@Base 5.2.2-1 - _ZN5QHashI9QMimeTypexE11deleteNode2EPN9QHashData4NodeE@Base 5.2.2-1 - _ZN5QHashI9QMimeTypexE13duplicateNodeEPN9QHashData4NodeEPv@Base 5.2.2-1 - _ZN5QListI10QByteArrayEC1ERKS1_@Base 5.2.2-1 - _ZN5QListI10QByteArrayEC2ERKS1_@Base 5.2.2-1 - _ZN5QListI10QByteArrayED1Ev@Base 5.2.2-1 - _ZN5QListI10QByteArrayED2Ev@Base 5.2.2-1 - _ZN5QListI12QPainterPathE13detach_helperEi@Base 5.2.2-1 - _ZN5QListI12QPainterPathE18detach_helper_growEii@Base 5.2.2-1 - _ZN5QListI12QPainterPathE6appendERKS0_@Base 5.2.2-1 - _ZN5QListI12QPainterPathEC1ERKS1_@Base 5.2.2-1 - _ZN5QListI12QPainterPathEC2ERKS1_@Base 5.2.2-1 - _ZN5QListI12QPainterPathED1Ev@Base 5.2.2-1 - _ZN5QListI12QPainterPathED2Ev@Base 5.2.2-1 - _ZN5QListI5QRectEC1ERKS1_@Base 5.2.2-1 - _ZN5QListI5QRectEC2ERKS1_@Base 5.2.2-1 - _ZN5QListI5QRectED1Ev@Base 5.2.2-1 - _ZN5QListI5QRectED2Ev@Base 5.2.2-1 - _ZN5QListI7QStringE18detach_helper_growEii@Base 5.2.2-1 - _ZN5QListI7QStringE5clearEv@Base 5.2.2-1 - _ZN5QListI7QStringE6appendERKS0_@Base 5.2.2-1 - _ZN5QListI7QStringED1Ev@Base 5.2.2-1 - _ZN5QListI7QStringED2Ev@Base 5.2.2-1 - _ZN5QListI8QPointerI7QWindowEE13detach_helperEi@Base 5.2.2-1 - _ZN5QListI8QPointerI7QWindowEE18detach_helper_growEii@Base 5.2.2-1 - _ZN5QListI8QPointerI7QWindowEE6appendERKS2_@Base 5.2.2-1 - _ZN5QListI8QPointerI7QWindowEED1Ev@Base 5.2.2-1 - _ZN5QListI8QPointerI7QWindowEED2Ev@Base 5.2.2-1 - _ZN5QListI8QVariantE18detach_helper_growEii@Base 5.2.2-1 - _ZN5QListI8QVariantE6appendERKS0_@Base 5.2.2-1 - _ZN5QListI8QVariantED1Ev@Base 5.2.2-1 - _ZN5QListI8QVariantED2Ev@Base 5.2.2-1 - _ZN5QListIN3Dtk3Gui25DThumbnailProviderPrivate11ProduceInfoEE13detach_helperEi@Base 5.2.2-1 - _ZN5QListIN3Dtk3Gui25DThumbnailProviderPrivate11ProduceInfoEE18detach_helper_growEii@Base 5.2.2-1 - _ZN5QListIN3Dtk3Gui25DThumbnailProviderPrivate11ProduceInfoEE6appendERKS3_@Base 5.2.2-1 - _ZN5QListIN3Dtk3Gui25DThumbnailProviderPrivate11ProduceInfoEED1Ev@Base 5.2.2-1 - _ZN5QListIN3Dtk3Gui25DThumbnailProviderPrivate11ProduceInfoEED2Ev@Base 5.2.2-1 - _ZN5QListIP7QScreenE13detach_helperEi@Base 5.2.2-1 - _ZN5QListIP7QScreenED1Ev@Base 5.2.2-1 - _ZN5QListIP7QScreenED2Ev@Base 5.2.2-1 - _ZN5QListIP7QWindowED1Ev@Base 5.2.2-1 - _ZN5QListIP7QWindowED2Ev@Base 5.2.2-1 - _ZN5QListIPN3Dtk3Gui14DForeignWindowEE13detach_helperEi@Base 5.2.2-1 - _ZN5QListIPN3Dtk3Gui14DForeignWindowEE18detach_helper_growEii@Base 5.2.2-1 - _ZN5QListIPN3Dtk3Gui14DForeignWindowEE6appendERKS3_@Base 5.2.2-1 - _ZN5QListIPN3Dtk3Gui14DForeignWindowEEC1ERKS4_@Base 5.2.2-1 - _ZN5QListIPN3Dtk3Gui14DForeignWindowEEC2ERKS4_@Base 5.2.2-1 - _ZN5QListIPN3Dtk3Gui14DForeignWindowEED1Ev@Base 5.2.2-1 - _ZN5QListIPN3Dtk3Gui14DForeignWindowEED2Ev@Base 5.2.2-1 - _ZN5QListIyE18detach_helper_growEii@Base 5.2.2-1 - _ZN5QListIyE6appendERKy@Base 5.2.2-1 - _ZN5QListIyED1Ev@Base 5.2.2-1 - _ZN5QListIyED2Ev@Base 5.2.2-1 - _ZN6QColorC1EPKc@Base 5.2.2-1 - _ZN6QColorC2EPKc@Base 5.2.2-1 - _ZN7QStringD1Ev@Base 5.2.2-1 - _ZN7QStringD2Ev@Base 5.2.2-1 - _ZN7QVectorIN3Dtk3Gui15DPlatformHandle10WMBlurAreaEE11reallocDataEii6QFlagsIN10QArrayData16AllocationOptionEE@Base 5.2.2-1 - _ZN7QVectorIN3Dtk3Gui15DPlatformHandle10WMBlurAreaEE6appendEOS3_@Base 5.2.2-1 - _ZN7QVectorIjE11reallocDataEii6QFlagsIN10QArrayData16AllocationOptionEE@Base 5.2.2-1 - _ZN7QVectorIjEC1ERKS0_@Base 5.2.2-1 - _ZN7QVectorIjEC2ERKS0_@Base 5.2.2-1 - _ZN8QMapNodeI7QString8QVariantE14destroySubTreeEv@Base 5.2.2-1 - _ZN9QtPrivate16ConverterFunctorI5QListI12QPainterPathEN17QtMetaTypePrivate23QSequentialIterableImplENS4_33QSequentialIterableConvertFunctorIS3_EEE7convertEPKNS_25AbstractConverterFunctionEPKvPv@Base 5.2.2-1 - _ZN9QtPrivate16ConverterFunctorI5QListI12QPainterPathEN17QtMetaTypePrivate23QSequentialIterableImplENS4_33QSequentialIterableConvertFunctorIS3_EEED1Ev@Base 5.2.2-1 - _ZN9QtPrivate16ConverterFunctorI5QListI12QPainterPathEN17QtMetaTypePrivate23QSequentialIterableImplENS4_33QSequentialIterableConvertFunctorIS3_EEED2Ev@Base 5.2.2-1 - _ZN9QtPrivate16ConverterFunctorI5QListI5QRectEN17QtMetaTypePrivate23QSequentialIterableImplENS4_33QSequentialIterableConvertFunctorIS3_EEE7convertEPKNS_25AbstractConverterFunctionEPKvPv@Base 5.2.2-1 - _ZN9QtPrivate16ConverterFunctorI5QListI5QRectEN17QtMetaTypePrivate23QSequentialIterableImplENS4_33QSequentialIterableConvertFunctorIS3_EEED1Ev@Base 5.2.2-1 - _ZN9QtPrivate16ConverterFunctorI5QListI5QRectEN17QtMetaTypePrivate23QSequentialIterableImplENS4_33QSequentialIterableConvertFunctorIS3_EEED2Ev@Base 5.2.2-1 - _ZN9QtPrivate16ConverterFunctorI7QVectorIjEN17QtMetaTypePrivate23QSequentialIterableImplENS3_33QSequentialIterableConvertFunctorIS2_EEE7convertEPKNS_25AbstractConverterFunctionEPKvPv@Base 5.2.2-1 - _ZN9QtPrivate16ConverterFunctorI7QVectorIjEN17QtMetaTypePrivate23QSequentialIterableImplENS3_33QSequentialIterableConvertFunctorIS2_EEED1Ev@Base 5.2.2-1 - _ZN9QtPrivate16ConverterFunctorI7QVectorIjEN17QtMetaTypePrivate23QSequentialIterableImplENS3_33QSequentialIterableConvertFunctorIS2_EEED2Ev@Base 5.2.2-1 - _ZN9QtPrivate16StreamStateSaverD1Ev@Base 5.2.2-1 - _ZN9QtPrivate16StreamStateSaverD2Ev@Base 5.2.2-1 - _ZN9QtPrivate18QFunctorSlotObjectISt5_BindIFMN3Dtk3Gui21DPlatformThemePrivateEFvN8QPalette9ColorRoleERK6QColorEPS4_S6_St12_PlaceholderILi1EEEELi1ENS_4ListIJS7_EEEvE4implEiPNS_15QSlotObjectBaseEP7QObjectPPvPb@Base 5.2.2-1 - _ZN9QtPrivate18QFunctorSlotObjectISt5_BindIFMN3Dtk3Gui21DPlatformThemePrivateEFvNS3_8DPalette9ColorTypeERK6QColorEPS4_S6_St12_PlaceholderILi1EEEELi1ENS_4ListIJS7_EEEvE4implEiPNS_15QSlotObjectBaseEP7QObjectPPvPb@Base 5.2.2-1 - _ZN9QtPrivate18QFunctorSlotObjectISt5_BindIFMN3Dtk3Gui28DGuiApplicationHelperPrivateEFvP15QGuiApplicationbEPS4_S6_bEELi1ENS_4ListIJ10QByteArrayEEEvE4implEiPNS_15QSlotObjectBaseEP7QObjectPPvPb@Base 5.2.2-1 - _ZN9QtPrivate18QFunctorSlotObjectISt5_BindIFMN3Dtk3Gui28DGuiApplicationHelperPrivateEFvP15QGuiApplicationbEPS4_S6_bEELi1ENS_4ListIJ6QColorEEEvE4implEiPNS_15QSlotObjectBaseEP7QObjectPPvPb@Base 5.2.2-1 - _ZN9QtPrivate18QFunctorSlotObjectISt5_BindIFMN3Dtk3Gui28DGuiApplicationHelperPrivateEFvP15QGuiApplicationbEPS4_S6_bEELi1ENS_4ListIJNS3_8DPaletteEEEEvE4implEiPNS_15QSlotObjectBaseEP7QObjectPPvPb@Base 5.2.2-1 - _ZN9QtPrivate18QFunctorSlotObjectISt8functionIFvvEELi0ENS_4ListIJEEEvE4implEiPNS_15QSlotObjectBaseEP7QObjectPPvPb@Base 5.2.2-1 - _ZN9QtPrivate23readArrayBasedContainerI5QListI7QStringEEER11QDataStreamS5_RT_@Base 5.2.2-1 - _ZN9QtPrivate24writeSequentialContainerI5QListI7QStringEEER11QDataStreamS5_RKT_@Base 5.2.2-1 - _ZN9QtPrivate8RefCount3refEv@Base 5.2.2-1 - _ZNK34ComDeepinApiXEventMonitorInterface10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui12DSvgRenderer11defaultSizeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui12DSvgRenderer13elementExistsERK7QString@Base 5.2.2-1 - _ZNK3Dtk3Gui12DSvgRenderer15boundsOnElementERK7QString@Base 5.2.2-1 - _ZNK3Dtk3Gui12DSvgRenderer7isValidEv@Base 5.2.2-1 - _ZNK3Dtk3Gui12DSvgRenderer7toImageE5QSizeRK7QString@Base 5.2.2-1 - _ZNK3Dtk3Gui12DSvgRenderer7viewBoxEv@Base 5.2.2-1 - _ZNK3Dtk3Gui12DSvgRenderer8viewBoxFEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DForeignWindow10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DForeignWindow3pidEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DForeignWindow7wmClassEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme10brightTextEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme10buttonTextEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme10darkLivelyEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme10textLivelyEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme10windowTextEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11activeColorEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11cursorBlinkEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11dotsPerInchERK7QString@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11frameBorderEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11gtkFontNameEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11lightLivelyEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11linkVisitedEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11parentThemeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11textWarningEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11toolTipBaseEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme11toolTipTextEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme12fetchPaletteERKNS0_8DPaletteEPb@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme12monoFontNameEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme13alternateBaseEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme13fontPointSizeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme13iconThemeNameEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme14isValidPaletteEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme14itemBackgroundEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme14soundThemeNameEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme15cursorBlinkTimeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme15doubleClickTimeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme15highlightedTextEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme16dndDragThresholdEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme18cursorBlinkTimeoutEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme19doubleClickDistanceEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme3midEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme4baseEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme4darkEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme4linkEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme4textEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme5lightEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme6buttonEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme6shadowEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme6windowEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme7isValidEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme7paletteEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme8fontNameEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme8midlightEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme8textTipsEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme9highlightEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme9textTitleEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DPlatformTheme9themeNameEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DRegionMonitor10cursorMoveERK6QPoint@Base 5.2.2-1 - _ZNK3Dtk3Gui14DRegionMonitor10keyReleaseERK7QString@Base 5.2.2-1 - _ZNK3Dtk3Gui14DRegionMonitor10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DRegionMonitor10registeredEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DRegionMonitor11buttonPressERK6QPointi@Base 5.2.2-1 - _ZNK3Dtk3Gui14DRegionMonitor13buttonReleaseERK6QPointi@Base 5.2.2-1 - _ZNK3Dtk3Gui14DRegionMonitor13watchedRegionEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DRegionMonitor14coordinateTypeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui14DRegionMonitor21coordinateTypeChangedENS1_14CoordinateTypeE@Base 5.2.2-1 - _ZNK3Dtk3Gui14DRegionMonitor8keyPressERK7QString@Base 5.2.2-1 - _ZNK3Dtk3Gui15DFileDragClient10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DFileDragClient5stateEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DFileDragClient8progressEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DFileDragServer10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DFileDragServer10targetDataERK7QString@Base 5.2.2-1 - _ZNK3Dtk3Gui15DNativeSettings10getSettingERK10QByteArray@Base 5.2.2-1 - _ZNK3Dtk3Gui15DNativeSettings10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DNativeSettings7allKeysEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DNativeSettings7isValidEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle11borderColorEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle11borderWidthEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle11shadowColorEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle12frameMarginsEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle12realWindowIdEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle12shadowOffsetEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle12shadowRadiusEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle12windowRadiusEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle16enableBlurWindowEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle16enableSystemMoveEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle18enableSystemResizeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle21translucentBackgroundEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle23autoInputMaskByClipPathEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle8clipPathEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DPlatformHandle9frameMaskEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DTaskbarControl10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DTaskbarControl14counterVisibleEv@Base 5.2.2-1 - _ZNK3Dtk3Gui15DTaskbarControl7counterEv@Base 5.2.2-1 - _ZNK3Dtk3Gui18DThumbnailProvider10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui18DThumbnailProvider11errorStringEv@Base 5.2.2-1 - _ZNK3Dtk3Gui18DThumbnailProvider12hasThumbnailERK9QFileInfo@Base 5.2.2-1 - _ZNK3Dtk3Gui18DThumbnailProvider12hasThumbnailERK9QMimeType@Base 5.2.2-1 - _ZNK3Dtk3Gui18DThumbnailProvider16defaultSizeLimitEv@Base 5.2.2-1 - _ZNK3Dtk3Gui18DThumbnailProvider16thumbnailChangedERK7QStringS4_@Base 5.2.2-1 - _ZNK3Dtk3Gui18DThumbnailProvider17thumbnailFilePathERK9QFileInfoNS1_4SizeE@Base 5.2.2-1 - _ZNK3Dtk3Gui18DThumbnailProvider21createThumbnailFailedERK7QString@Base 5.2.2-1 - _ZNK3Dtk3Gui18DThumbnailProvider23createThumbnailFinishedERK7QStringS4_@Base 5.2.2-1 - _ZNK3Dtk3Gui18DThumbnailProvider9sizeLimitERK9QMimeType@Base 5.2.2-1 - _ZNK3Dtk3Gui18DWindowGroupLeader13groupLeaderIdEv@Base 5.2.2-1 - _ZNK3Dtk3Gui18DWindowGroupLeader14clientLeaderIdEv@Base 5.2.2-1 - _ZNK3Dtk3Gui19DDndSourceInterface10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui19DSvgRendererPrivate8getImageERK5QSizeRK7QString@Base 5.2.2-1 - _ZNK3Dtk3Gui20DWindowManagerHelper10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui20DWindowManagerHelper12hasCompositeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui20DWindowManagerHelper13hasBlurWindowEv@Base 5.2.2-1 - _ZNK3Dtk3Gui20DWindowManagerHelper13hasNoTitlebarEv@Base 5.2.2-1 - _ZNK3Dtk3Gui20DWindowManagerHelper15allWindowIdListEv@Base 5.2.2-1 - _ZNK3Dtk3Gui20DWindowManagerHelper17windowManagerNameEv@Base 5.2.2-1 - _ZNK3Dtk3Gui20DWindowManagerHelper23currentWorkspaceWindowsEv@Base 5.2.2-1 - _ZNK3Dtk3Gui20DWindowManagerHelper23windowManagerNameStringEv@Base 5.2.2-1 - _ZNK3Dtk3Gui20DWindowManagerHelper28currentWorkspaceWindowIdListEv@Base 5.2.2-1 - _ZNK3Dtk3Gui21DDndClientSignalRelay10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui21DGuiApplicationHelper10metaObjectEv@Base 5.2.2-1 - _ZNK3Dtk3Gui21DGuiApplicationHelper11paletteTypeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui21DGuiApplicationHelper11systemThemeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui21DGuiApplicationHelper11windowThemeEP7QWindow@Base 5.2.2-1 - _ZNK3Dtk3Gui21DGuiApplicationHelper13windowPaletteEP7QWindow@Base 5.2.2-1 - _ZNK3Dtk3Gui21DGuiApplicationHelper16applicationThemeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui21DGuiApplicationHelper18applicationPaletteEv@Base 5.2.2-1 - _ZNK3Dtk3Gui21DGuiApplicationHelper9themeTypeEv@Base 5.2.2-1 - _ZNK3Dtk3Gui21DRegionMonitorPrivate22deviceScaledCoordinateERK6QPointd@Base 5.2.2-1 - _ZNK3Dtk3Gui25DThumbnailProviderPrivate14sizeToFilePathENS0_18DThumbnailProvider4SizeE@Base 5.2.2-1 - _ZNK3Dtk3Gui28DGuiApplicationHelperPrivate10initWindowEP7QWindow@Base 5.2.2-1 - _ZNK3Dtk3Gui8DPalette5brushEN8QPalette10ColorGroupENS1_9ColorTypeE@Base 5.2.2-1 - _ZNK3Dtk3Gui9DFileDrag10metaObjectEv@Base 5.2.2-1 - _ZNK5QHashI5QPairI7QStringN3Dtk3Gui18DThumbnailProvider4SizeEE15QHashDummyValueE8findNodeERKS6_Pj@Base 5.2.2-1 - _ZNK5QHashI5QPairI7QStringN3Dtk3Gui18DThumbnailProvider4SizeEE15QHashDummyValueE8findNodeERKS6_j@Base 5.2.2-1 - _ZNK5QHashI7QString12QWeakPointerI14QDBusInterfaceEE8findNodeERKS0_Pj@Base 5.2.2-1 - _ZNK5QHashI7QString12QWeakPointerI14QDBusInterfaceEE8findNodeERKS0_j@Base 5.2.2-1 - _ZNK5QHashI7QString15QHashDummyValueE8findNodeERKS0_j@Base 5.2.2-1 - _ZNK5QHashI7QStringPN3Dtk3Gui15DFileDragClientEE8findNodeERKS0_Pj@Base 5.2.2-1 - _ZNK5QHashI7QStringPN3Dtk3Gui15DFileDragClientEE8findNodeERKS0_j@Base 5.2.2-1 - _ZNK5QHashI7QStringPN3Dtk3Gui15DFileDragServerEE8findNodeERKS0_Pj@Base 5.2.2-1 - _ZNK5QHashI7QStringPN3Dtk3Gui15DFileDragServerEE8findNodeERKS0_j@Base 5.2.2-1 - _ZNK5QHashI7QStringiE8findNodeERKS0_j@Base 5.2.2-1 - _ZNK5QHashI9QMimeTypexE8findNodeERKS0_j@Base 5.2.2-1 - _ZNK7QWindow4sizeEv@Base 5.2.2-1 - _ZNK8QMapDataI7QString8QVariantE8findNodeERKS0_@Base 5.2.2-1 - _ZNK8QMapNodeI7QString8QVariantE4copyEP8QMapDataIS0_S1_E@Base 5.2.2-1 - _ZNSt8functionIFvRK7QStringEEC1ERKS4_@Base 5.2.2-1 - _ZNSt8functionIFvRK7QStringEEC2ERKS4_@Base 5.2.2-1 - _ZNSt8functionIFvvEEC1ERKS1_@Base 5.2.2-1 - _ZNSt8functionIFvvEEC2ERKS1_@Base 5.2.2-1 - _ZTI34ComDeepinApiXEventMonitorInterface@Base 5.2.2-1 - _ZTIN29QWindowSystemInterfacePrivate16ThemeChangeEventE@Base 5.2.2-1 - _ZTIN29QWindowSystemInterfacePrivate17WindowSystemEventE@Base 5.2.2-1 - _ZTIN3Dtk3Gui12DSvgRendererE@Base 5.2.2-1 - _ZTIN3Dtk3Gui14DForeignWindowE@Base 5.2.2-1 - _ZTIN3Dtk3Gui14DPlatformThemeE@Base 5.2.2-1 - _ZTIN3Dtk3Gui14DRegionMonitorE@Base 5.2.2-1 - _ZTIN3Dtk3Gui15DFileDragClientE@Base 5.2.2-1 - _ZTIN3Dtk3Gui15DFileDragServerE@Base 5.2.2-1 - _ZTIN3Dtk3Gui15DNativeSettingsE@Base 5.2.2-1 - _ZTIN3Dtk3Gui15DPlatformHandleE@Base 5.2.2-1 - _ZTIN3Dtk3Gui15DTaskbarControlE@Base 5.2.2-1 - _ZTIN3Dtk3Gui16DFileDragPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui18DThumbnailProviderE@Base 5.2.2-1 - _ZTIN3Dtk3Gui19DDndSourceInterfaceE@Base 5.2.2-1 - _ZTIN3Dtk3Gui19DSvgRendererPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui20DWindowManagerHelperE@Base 5.2.2-1 - _ZTIN3Dtk3Gui21DDndClientSignalRelayE@Base 5.2.2-1 - _ZTIN3Dtk3Gui21DForeignWindowPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui21DGuiApplicationHelperE@Base 5.2.2-1 - _ZTIN3Dtk3Gui21DPlatformThemePrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui21DRegionMonitorPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui21DWindowManagerHelper_E@Base 5.2.2-1 - _ZTIN3Dtk3Gui22DFileDragClientPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui22DFileDragServerPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui22DNativeSettingsPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui22DTaskbarControlPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui25DThumbnailProviderPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui27DWindowManagerHelperPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui28DGuiApplicationHelperPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui29DFileThumbnailProviderPrivateE@Base 5.2.2-1 - _ZTIN3Dtk3Gui9DFileDragE@Base 5.2.2-1 - _ZTS34ComDeepinApiXEventMonitorInterface@Base 5.2.2-1 - _ZTSN29QWindowSystemInterfacePrivate16ThemeChangeEventE@Base 5.2.2-1 - _ZTSN29QWindowSystemInterfacePrivate17WindowSystemEventE@Base 5.2.2-1 - _ZTSN3Dtk3Gui12DSvgRendererE@Base 5.2.2-1 - _ZTSN3Dtk3Gui14DForeignWindowE@Base 5.2.2-1 - _ZTSN3Dtk3Gui14DPlatformThemeE@Base 5.2.2-1 - _ZTSN3Dtk3Gui14DRegionMonitorE@Base 5.2.2-1 - _ZTSN3Dtk3Gui15DFileDragClientE@Base 5.2.2-1 - _ZTSN3Dtk3Gui15DFileDragServerE@Base 5.2.2-1 - _ZTSN3Dtk3Gui15DNativeSettingsE@Base 5.2.2-1 - _ZTSN3Dtk3Gui15DPlatformHandleE@Base 5.2.2-1 - _ZTSN3Dtk3Gui15DTaskbarControlE@Base 5.2.2-1 - _ZTSN3Dtk3Gui16DFileDragPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui18DThumbnailProviderE@Base 5.2.2-1 - _ZTSN3Dtk3Gui19DDndSourceInterfaceE@Base 5.2.2-1 - _ZTSN3Dtk3Gui19DSvgRendererPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui20DWindowManagerHelperE@Base 5.2.2-1 - _ZTSN3Dtk3Gui21DDndClientSignalRelayE@Base 5.2.2-1 - _ZTSN3Dtk3Gui21DForeignWindowPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui21DGuiApplicationHelperE@Base 5.2.2-1 - _ZTSN3Dtk3Gui21DPlatformThemePrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui21DRegionMonitorPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui21DWindowManagerHelper_E@Base 5.2.2-1 - _ZTSN3Dtk3Gui22DFileDragClientPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui22DFileDragServerPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui22DNativeSettingsPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui22DTaskbarControlPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui25DThumbnailProviderPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui27DWindowManagerHelperPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui28DGuiApplicationHelperPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui29DFileThumbnailProviderPrivateE@Base 5.2.2-1 - _ZTSN3Dtk3Gui9DFileDragE@Base 5.2.2-1 - _ZTV34ComDeepinApiXEventMonitorInterface@Base 5.2.2-1 - _ZTVN29QWindowSystemInterfacePrivate16ThemeChangeEventE@Base 5.2.2-1 - _ZTVN3Dtk3Gui12DSvgRendererE@Base 5.2.2-1 - _ZTVN3Dtk3Gui14DForeignWindowE@Base 5.2.2-1 - _ZTVN3Dtk3Gui14DPlatformThemeE@Base 5.2.2-1 - _ZTVN3Dtk3Gui14DRegionMonitorE@Base 5.2.2-1 - _ZTVN3Dtk3Gui15DFileDragClientE@Base 5.2.2-1 - _ZTVN3Dtk3Gui15DFileDragServerE@Base 5.2.2-1 - _ZTVN3Dtk3Gui15DNativeSettingsE@Base 5.2.2-1 - _ZTVN3Dtk3Gui15DPlatformHandleE@Base 5.2.2-1 - _ZTVN3Dtk3Gui15DTaskbarControlE@Base 5.2.2-1 - _ZTVN3Dtk3Gui16DFileDragPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui18DThumbnailProviderE@Base 5.2.2-1 - _ZTVN3Dtk3Gui19DDndSourceInterfaceE@Base 5.2.2-1 - _ZTVN3Dtk3Gui19DSvgRendererPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui20DWindowManagerHelperE@Base 5.2.2-1 - _ZTVN3Dtk3Gui21DDndClientSignalRelayE@Base 5.2.2-1 - _ZTVN3Dtk3Gui21DForeignWindowPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui21DGuiApplicationHelperE@Base 5.2.2-1 - _ZTVN3Dtk3Gui21DPlatformThemePrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui21DRegionMonitorPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui21DWindowManagerHelper_E@Base 5.2.2-1 - _ZTVN3Dtk3Gui22DFileDragClientPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui22DFileDragServerPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui22DNativeSettingsPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui22DTaskbarControlPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui25DThumbnailProviderPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui27DWindowManagerHelperPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui28DGuiApplicationHelperPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui29DFileThumbnailProviderPrivateE@Base 5.2.2-1 - _ZTVN3Dtk3Gui9DFileDragE@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui12DSvgRendererD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui12DSvgRendererD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui14DForeignWindowD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui14DForeignWindowD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui14DPlatformThemeD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui14DPlatformThemeD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui14DRegionMonitorD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui14DRegionMonitorD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui15DFileDragClientD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui15DFileDragClientD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui15DFileDragServerD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui15DFileDragServerD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui15DNativeSettingsD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui15DNativeSettingsD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui15DTaskbarControlD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui15DTaskbarControlD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui18DThumbnailProviderD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui18DThumbnailProviderD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui20DWindowManagerHelperD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui20DWindowManagerHelperD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui21DGuiApplicationHelperD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui21DGuiApplicationHelperD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui21DWindowManagerHelper_D0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui21DWindowManagerHelper_D1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui29DFileThumbnailProviderPrivateD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui29DFileThumbnailProviderPrivateD1Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui9DFileDragD0Ev@Base 5.2.2-1 - _ZThn16_N3Dtk3Gui9DFileDragD1Ev@Base 5.2.2-1 - _ZThn16_NK7QWindow4sizeEv@Base 5.2.2-1 - _ZThn40_N3Dtk3Gui14DForeignWindowD0Ev@Base 5.2.2-1 - _ZThn40_N3Dtk3Gui14DForeignWindowD1Ev@Base 5.2.2-1 - _ZZN11QMetaTypeIdI12QPainterPathE14qt_metatype_idEvE11metatype_id@Base 5.2.2-1 - _ZZN11QMetaTypeIdI13QDBusArgumentE14qt_metatype_idEvE11metatype_id@Base 5.2.2-1 - _ZZN11QMetaTypeIdI5QListI12QPainterPathEE14qt_metatype_idEvE11metatype_id@Base 5.2.2-1 - _ZZN11QMetaTypeIdI5QListI5QRectEE14qt_metatype_idEvE11metatype_id@Base 5.2.2-1 - _ZZN11QMetaTypeIdI7QVectorIjEE14qt_metatype_idEvE11metatype_id@Base 5.2.2-1 - _ZZN11QMetaTypeIdI8QMarginsE14qt_metatype_idEvE11metatype_id@Base 5.2.2-1 - _ZZN11QMetaTypeIdIN17QtMetaTypePrivate23QSequentialIterableImplEE14qt_metatype_idEvE11metatype_id@Base 5.2.2-1 - _ZZN18QMetaTypeIdQObjectIPN3Dtk3Gui14DPlatformThemeELi8EE14qt_metatype_idEvE11metatype_id@Base 5.2.2-1 - _ZZN9QtPrivate19ValueTypeIsMetaTypeI5QListI12QPainterPathELb1EE17registerConverterEiE1f@Base 5.2.2-1 - _ZZN9QtPrivate19ValueTypeIsMetaTypeI5QListI5QRectELb1EE17registerConverterEiE1f@Base 5.2.2-1 - _ZZN9QtPrivate19ValueTypeIsMetaTypeI7QVectorIjELb1EE17registerConverterEiE1f@Base 5.2.2-1 - _ZZZN34ComDeepinApiXEventMonitorInterface12RegisterAreaEiiiiiENKUlvE_clEvE15qstring_literal@Base 5.2.2-1 - _ZZZN34ComDeepinApiXEventMonitorInterface13RegisterAreasE5QListI5QRectEiENKUlvE_clEvE15qstring_literal@Base 5.2.2-1 - _ZZZN34ComDeepinApiXEventMonitorInterface14UnregisterAreaERK7QStringENKUlvE_clEvE15qstring_literal@Base 5.2.2-1 - _ZZZN34ComDeepinApiXEventMonitorInterface18RegisterFullScreenEvENKUlvE_clEvE15qstring_literal@Base 5.2.2-1 - _Zls6QDebugRKN3Dtk3Gui15DNativeSettingsE@Base 5.2.2-1 - _Zls6QDebugRKN3Dtk3Gui15DPlatformHandle10WMBlurAreaE@Base 5.2.2-1 - _ZlsR11QDataStreamRKN3Dtk3Gui8DPaletteE@Base 5.2.2-1 - _ZrsR11QDataStreamRN3Dtk3Gui8DPaletteE@Base 5.2.2-1 diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt index 370b2ab0..ac6473b2 100644 --- a/docs/CMakeLists.txt +++ b/docs/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.10) find_package (Doxygen REQUIRED) -set (QCH_INSTALL_DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/qt5/doc CACHE STRING "QCH install location") +set (QCH_INSTALL_DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/qt${QT_VERSION_MAJOR}/doc CACHE STRING "QCH install location") set (DOXYGEN_GENERATE_HTML "YES" CACHE STRING "Doxygen HTML output") set (DOXYGEN_GENERATE_XML "YES" CACHE STRING "Doxygen XML output") @@ -12,7 +12,7 @@ set (DOXYGEN_PROJECT_NUMBER ${CMAKE_PROJECT_VERSION} CACHE STRING "") # Should b set (DOXYGEN_EXTRACT_STATIC YES) set (DOXYGEN_OUTPUT_LANGUAGE "Chinese" CACHE STRING "Doxygen Output Language") set (DOXYGEN_IMAGE_PATH ${CMAKE_CURRENT_LIST_DIR}/images/) -set (DOXYGEN_QHG_LOCATION "qhelpgenerator") +set (DOXYGEN_QHG_LOCATION "qhelpgenerator" CACHE STRING "Doxygen QHG path") set (DOXYGEN_QHP_NAMESPACE "org.deepin.dtk.gui") set (DOXYGEN_QCH_FILE "dtkgui.qch") set (DOXYGEN_QHP_VIRTUAL_FOLDER "dtkgui") @@ -75,5 +75,4 @@ doxygen_add_docs (doxygen WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} COMMENT "Generate documentation via Doxygen" ) - -install (FILES ${PROJECT_BINARY_DIR}/docs/html/dtkgui.qch DESTINATION ${QCH_INSTALL_DESTINATION}) +install (FILES ${CMAKE_CURRENT_BINARY_DIR}/html/dtkgui.qch DESTINATION ${QCH_INSTALL_DESTINATION}) diff --git a/dtkgui.cmake b/dtkgui.cmake new file mode 100644 index 00000000..980d446e --- /dev/null +++ b/dtkgui.cmake @@ -0,0 +1,141 @@ +message(STATUS "Current Qt Version: ${QT_VERSION_MAJOR}") + +set(LIB_NAME dtk${DTK_VERSION_MAJOR}gui) + +# Set install path +if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX /usr) +endif () + +include(GNUInstallDirs) +include(CMakePackageConfigHelpers) +list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") + +set(CMAKE_AUTOMOC ON) +set(CMAKE_AUTORCC ON) +set(CMAKE_INCLUDE_CURRENT_DIR ON) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +# Set build option +option(DTK_DISABLE_LIBXDG "Disable libxdg" OFF) +find_package(Qt${QT_VERSION_MAJOR}XdgIconLoader) +if (NOT Qt${QT_VERSION_MAJOR}XdgIconLoader_FOUND) + message(WARNING " XdgIconLoader Not Found, DISABLE LIBXDG !") + set (DTK_DISABLE_LIBXDG ON) +endif() +option(DTK_DISABLE_LIBRSVG "Disable librsvg" OFF) +option(DTK_DISABLE_EX_IMAGE_FORMAT "Disable libraw and freeimage" OFF) + +set(CMAKE_CXX_STANDARD 17) + +if("${QT_VERSION_MAJOR}" STREQUAL "5") + set (BUILD_DOCS ON CACHE BOOL "Generate doxygen-based documentation") +else() + # dtk6 not build doc + set (BUILD_DOCS OFF CACHE BOOL "Generate doxygen-based documentation") +endif() + +set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_INCLUDEDIR}/dtk${PROJECT_VERSION_MAJOR}/DGui") +set(TOOL_INSTALL_DIR "${CMAKE_INSTALL_LIBEXECDIR}/dtk${PROJECT_VERSION_MAJOR}/DGui/bin") +set(LIBRARY_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}") +set(MKSPECS_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/qt${QT_VERSION_MAJOR}/mkspecs/modules" CACHE STRING "Install dir for qt pri module files") +set(CONFIG_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/cmake/Dtk${DTK_VERSION_MAJOR}Gui") +set(PKGCONFIG_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig") + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -Wall -Wextra -fopenmp") +set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--as-needed") +set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pie") +if (CMAKE_BUILD_TYPE STREQUAL "Debug") + set(BUILD_TESTING ON) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O0 -g -fno-omit-frame-pointer") +else () + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Ofast") +endif () + +set(CONFIGNAME include/global/dtkgui_config.h) +file(WRITE ${CONFIGNAME} + "// This is an auto-generated header, please don't modify it.\n" +) +file(GLOB CONFIGSOURCE include/DtkGui/*) + +foreach(FILENAME ${CONFIGSOURCE}) + get_filename_component(thefile ${FILENAME} NAME) + file(APPEND ${CONFIGNAME} "#define DTKGUI_CLASS_${thefile}\n") +endforeach() + +# Generate cmake config file +configure_package_config_file(misc/DtkGuiConfig.cmake.in + ${CMAKE_CURRENT_BINARY_DIR}/Dtk${DTK_VERSION_MAJOR}GuiConfig.cmake + INSTALL_DESTINATION "${CONFIG_INSTALL_DIR}" + PATH_VARS TOOL_INSTALL_DIR +) +# Generate cmake version file +write_basic_package_version_file( + "${CMAKE_CURRENT_BINARY_DIR}/Dtk${DTK_VERSION_MAJOR}GuiConfigVersion.cmake" + VERSION ${DTK_VERSION} + COMPATIBILITY SameMajorVersion +) +# Install cmake config file and version file to CONFIG_INSTALL_DIR +install(FILES + ${CMAKE_CURRENT_BINARY_DIR}/Dtk${DTK_VERSION_MAJOR}GuiConfig.cmake + ${CMAKE_CURRENT_BINARY_DIR}/Dtk${DTK_VERSION_MAJOR}GuiConfigVersion.cmake + DESTINATION "${CONFIG_INSTALL_DIR}" +) +# Install pkgconfig file +configure_file(misc/dtkgui.pc.in dtk${DTK_VERSION_MAJOR}gui.pc @ONLY) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/dtk${DTK_VERSION_MAJOR}gui.pc DESTINATION "${PKGCONFIG_INSTALL_DIR}") +# Install pri module +configure_file(misc/qt_lib_dtkgui.pri.in qt_lib_dtkgui.pri @ONLY) +install(FILES ${CMAKE_CURRENT_BINARY_DIR}/qt_lib_dtkgui.pri DESTINATION "${MKSPECS_INSTALL_DIR}") + +set(GUISGNAME DtkGuis) + +file(WRITE ${GUISGNAME} + "// This is an auto-generated header, please don't modify it.\n" + "#ifndef DTK_GUI_MODULE_H\n" + "#define DTK_GUI_MODULE_H\n" +) +file(GLOB FILEGRAGTOWRITSOURCE include/filedrag/*) + +foreach(FILENAME ${FILEGRAGTOWRITSOURCE}) + get_filename_component(thefile ${FILENAME} NAME) + file(APPEND ${GUISGNAME} "#include \"${thefile}\"\n") +endforeach() +file(GLOB KERNELTOWRITESOURCE include/kernel/*) +foreach(FILENAME ${KERNELTOWRITESOURCE}) + get_filename_component(thefile ${FILENAME} NAME) + file(APPEND ${GUISGNAME} "#include \"${thefile}\"\n") +endforeach() +file(GLOB UTILTOWRITESOURCE include/util/*) +foreach(FILENAME ${UTILTOWRITESOURCE}) + get_filename_component(thefile ${FILENAME} NAME) + file(APPEND ${GUISGNAME} "#include \"${thefile}\"\n") +endforeach() +file(APPEND ${GUISGNAME} "#endif") +install(FILES DtkGuis DESTINATION "${INCLUDE_INSTALL_DIR}") + +# Find common dependencies +find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Gui DBus Network) +find_package(PkgConfig REQUIRED) +find_package(Dtk${DTK_VERSION_MAJOR}Core REQUIRED) +pkg_check_modules(librsvg REQUIRED IMPORTED_TARGET librsvg-2.0) + +# Check optional image handler dependencies. +find_package(FreeImage) +pkg_check_modules(libraw IMPORTED_TARGET libraw) +if(FreeImage_FOUND AND libraw_FOUND) + set(EX_IMAGE_FORMAT_LIBS_FOUND ON) +endif() + +set(OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR}/${LIB_NAME}) +add_subdirectory(src ${OUTPUT_DIR}/src) +if(BUILD_TESTING) + enable_testing() + add_subdirectory(tests ${OUTPUT_DIR}/tests) +endif() +add_subdirectory(tools ${OUTPUT_DIR}/tools) +add_subdirectory(examples ${OUTPUT_DIR}/examples) + +if (BUILD_DOCS) + add_subdirectory(docs ${OUTPUT_DIR}/docs) +endif () diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index b510b6f8..6b37d36c 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,4 +1,4 @@ add_subdirectory(dnd-example) -add_subdirectory(test-taskbar) +#add_subdirectory(test-taskbar) # Don't build #add_subdirectory(frameless-window) # Don't build add_subdirectory(animation-dci) diff --git a/examples/animation-dci/CMakeLists.txt b/examples/animation-dci/CMakeLists.txt index 869947af..5277e078 100644 --- a/examples/animation-dci/CMakeLists.txt +++ b/examples/animation-dci/CMakeLists.txt @@ -1,9 +1,10 @@ set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) -find_package(DtkCore REQUIRED) -find_package(Qt5 REQUIRED COMPONENTS Widgets) +find_package(Dtk${DTK_VERSION_MAJOR}Core REQUIRED) +find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets) -set(TARGET animation-dci) +set(BIN_NAME animation-dci) +set(TARGET ${BIN_NAME}${DTK_VERSION_MAJOR}) add_executable(${TARGET} main.cpp @@ -12,7 +13,7 @@ add_executable(${TARGET} target_link_libraries( ${TARGET} PRIVATE - Qt5::Widgets - dtkgui - ${DtkCore_LIBRARIES} + Qt${QT_VERSION_MAJOR}::Widgets + dtk${DTK_VERSION_MAJOR}gui ) +set_target_properties(${TARGET_NAME} PROPERTIES OUTPUT_NAME ${BIN_NAME}) diff --git a/examples/dnd-example/CMakeLists.txt b/examples/dnd-example/CMakeLists.txt index 005e835a..3fa4d8df 100644 --- a/examples/dnd-example/CMakeLists.txt +++ b/examples/dnd-example/CMakeLists.txt @@ -1,31 +1,32 @@ -find_package(Qt5 REQUIRED COMPONENTS Widgets) +find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets) set(BIN1 dnd-test-client) +set(BIN2 dnd-test-server) +set(TARGET1 ${BIN1}${DTK_VERSION_MAJOR}) +set(TARGET2 ${BIN2}${DTK_VERSION_MAJOR}) -add_executable(${BIN1} +add_executable(${TARGET1} dnd-test-client.cpp ) -target_link_libraries(${BIN1} PRIVATE - Qt5::Widgets - Qt5::DBus +target_link_libraries(${TARGET1} PRIVATE + Qt${QT_VERSION_MAJOR}::Widgets + Qt${QT_VERSION_MAJOR}::DBus ${LIB_NAME} - Dtk::Core ) -install(TARGETS ${BIN1} DESTINATION "${TOOL_INSTALL_DIR}") - -set(BIN2 dnd-test-server) - -add_executable(${BIN2} +add_executable(${TARGET2} dnd-test-server.cpp ) -target_link_libraries(${BIN2} PRIVATE - Qt5::Widgets - Qt5::DBus +target_link_libraries(${TARGET2} PRIVATE + Qt${QT_VERSION_MAJOR}::Widgets + Qt${QT_VERSION_MAJOR}::DBus ${LIB_NAME} - Dtk::Core ) -install(TARGETS ${BIN2} DESTINATION "${TOOL_INSTALL_DIR}") +set_target_properties(${TARGET1} PROPERTIES OUTPUT_NAME ${BIN1}) +set_target_properties(${TARGET2} PROPERTIES OUTPUT_NAME ${BIN2}) + +install(TARGETS ${TARGET1} DESTINATION "${TOOL_INSTALL_DIR}") +install(TARGETS ${TARGET2} DESTINATION "${TOOL_INSTALL_DIR}") diff --git a/examples/frameless-window/CMakeLists.txt b/examples/frameless-window/CMakeLists.txt index dd1368f4..759a2d84 100644 --- a/examples/frameless-window/CMakeLists.txt +++ b/examples/frameless-window/CMakeLists.txt @@ -1,4 +1,4 @@ -find_package(Qt5 REQUIRED COMPONENTS X11Extras) +find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS X11Extras) pkg_check_modules(XCB IMPORTED_TARGET xcb) set(BIN_NAME frameless-window) @@ -8,8 +8,8 @@ add_executable(${BIN_NAME} ) target_link_libraries(${BIN_NAME} PRIVATE - Qt5::Gui - Qt5::GuiPrivate - Qt5::X11Extras + Qt${QT_VERSION_MAJOR}::Gui + Qt${QT_VERSION_MAJOR}::GuiPrivate + Qt${QT_VERSION_MAJOR}::X11Extras PkgConfig::XCB ) diff --git a/examples/test-taskbar/CMakeLists.txt b/examples/test-taskbar/CMakeLists.txt index de8ce279..1db13490 100644 --- a/examples/test-taskbar/CMakeLists.txt +++ b/examples/test-taskbar/CMakeLists.txt @@ -1,16 +1,17 @@ -find_package(Qt5 REQUIRED COMPONENTS Widgets) +find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets) set(BIN taskbar) +set(TARGET_NAME ${BIN}${DTK_VERSION_MAJOR}) -add_executable(${BIN} +add_executable(${TARGET_NAME} testtaskbarwindow.h testtaskbarwindow.cpp main.cpp ) -target_link_libraries(${BIN} PRIVATE - Qt5::Widgets - Qt5::Gui +target_link_libraries(${TARGET_NAME} PRIVATE + Qt${QT_VERSION_MAJOR}::Widgets + Qt${QT_VERSION_MAJOR}::Gui ${LIB_NAME} - Dtk::Core ) +set_target_properties(${TARGET_NAME} PROPERTIES OUTPUT_NAME ${BIN}) diff --git a/misc/DtkGuiConfig.cmake.in b/misc/DtkGuiConfig.cmake.in index db6693c4..a18aef9f 100644 --- a/misc/DtkGuiConfig.cmake.in +++ b/misc/DtkGuiConfig.cmake.in @@ -1,18 +1,18 @@ @PACKAGE_INIT@ include(CMakeFindDependencyMacro) -find_dependency(DtkCore) -find_dependency(Qt5Network) -find_dependency(Qt5Gui) +find_dependency(Dtk@DTK_VERSION_MAJOR@Core) +find_dependency(Qt@QT_VERSION_MAJOR@Network) +find_dependency(Qt@QT_VERSION_MAJOR@Gui) -include(${CMAKE_CURRENT_LIST_DIR}/DtkGuiTargets.cmake) +include(${CMAKE_CURRENT_LIST_DIR}/Dtk@DTK_VERSION_MAJOR@GuiTargets.cmake) -set(DtkGui_LIBRARIES Dtk::Gui) -get_target_property(DtkGui_INCLUDE_DIRS Dtk::Gui INTERFACE_INCLUDE_DIRECTORIES) -get_target_property(DtkGui_LIBRARY_DIRS Dtk::Gui INTERFACE_LINK_DIRECTORIES) +set(DtkGui_LIBRARIES Dtk@DTK_VERSION_MAJOR@::Gui) +get_target_property(DtkGui_INCLUDE_DIRS Dtk@DTK_VERSION_MAJOR@::Gui INTERFACE_INCLUDE_DIRECTORIES) +get_target_property(DtkGui_LIBRARY_DIRS Dtk@DTK_VERSION_MAJOR@::Gui INTERFACE_LINK_DIRECTORIES) set(DtkGui_TOOL_DIRS "@PACKAGE_TOOL_INSTALL_DIR@") -check_required_components(DtkGui) +check_required_components(Dtk@DTK_VERSION_MAJOR@Gui) # Keep deprecated variables for compatibility set(DTKGUI_INCLUDE_DIR ${DtkGui_INCLUDE_DIRS}) diff --git a/misc/dtkgui.pc.in b/misc/dtkgui.pc.in index 68781c9c..89fdbbf3 100644 --- a/misc/dtkgui.pc.in +++ b/misc/dtkgui.pc.in @@ -2,10 +2,11 @@ prefix=@CMAKE_INSTALL_PREFIX@ exec_prefix=${prefix} libdir=${prefix}/@LIBRARY_INSTALL_DIR@ includedir=${prefix}/@INCLUDE_INSTALL_DIR@ +tooldir=${prefix}/@PACKAGE_TOOL_INSTALL_DIR@ -Name: dtkgui +Name: dtk@DTK_VERSION_MAJOR@gui Description: Deepin Tool Kit dtkgui header files Version: @PROJECT_VERSION@ -Libs: -L${libdir} -ldtkgui +Libs: -L${libdir} -ldtk@DTK_VERSION_MAJOR@gui Cflags: -I${includedir} -Requires: dtkcore +Requires: dtk@DTK_VERSION_MAJOR@core diff --git a/misc/qt_lib_dtkgui.pri.in b/misc/qt_lib_dtkgui.pri.in index af498087..28308ee2 100644 --- a/misc/qt_lib_dtkgui.pri.in +++ b/misc/qt_lib_dtkgui.pri.in @@ -3,7 +3,7 @@ QT.dtkgui.MAJOR_VERSION = @PROJECT_VERSION_MAJOR@ QT.dtkgui.MINOR_VERSION = @PROJECT_VERSION_MINOR@ QT.dtkgui.PATCH_VERSION = @PROJECT_VERSION_PATCH@ QT.dtkgui.name = dtkgui -QT.dtkgui.module = dtkgui +QT.dtkgui.module = dtk@DTK_VERSION_MAJOR@gui QT.dtkgui.tools = @CMAKE_INSTALL_PREFIX@/@TOOL_INSTALL_DIR@ QT.dtkgui.libs = @CMAKE_INSTALL_PREFIX@/@LIBRARY_INSTALL_DIR@ QT.dtkgui.includes = @CMAKE_INSTALL_PREFIX@/@INCLUDE_INSTALL_DIR@ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a0acbd2f..924868d0 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -27,13 +27,13 @@ target_include_directories(${LIB_NAME} PUBLIC target_link_libraries(${LIB_NAME} PUBLIC - Qt5::Gui - Qt5::Network - Dtk::Core + Qt${QT_VERSION_MAJOR}::Gui + Qt${QT_VERSION_MAJOR}::Network + Dtk${DTK_VERSION_MAJOR}::Core PRIVATE - Qt5::GuiPrivate - Qt5::CorePrivate - Qt5::DBus + Qt${QT_VERSION_MAJOR}::GuiPrivate + Qt${QT_VERSION_MAJOR}::CorePrivate + Qt${QT_VERSION_MAJOR}::DBus PkgConfig::librsvg ) @@ -49,7 +49,7 @@ endif() if(NOT DTK_DISABLE_LIBXDG) target_link_libraries(${LIB_NAME} PRIVATE - Qt5XdgIconLoader + Qt${QT_VERSION_MAJOR}XdgIconLoader ) endif() @@ -67,12 +67,13 @@ target_link_directories(${LIB_NAME} INTERFACE $ ) -install(TARGETS ${LIB_NAME} EXPORT DtkGuiTargets DESTINATION "${LIBRARY_INSTALL_DIR}") -install(EXPORT DtkGuiTargets NAMESPACE Dtk:: FILE DtkGuiTargets.cmake DESTINATION "${CONFIG_INSTALL_DIR}") +install(TARGETS ${LIB_NAME} EXPORT Dtk${DTK_VERSION_MAJOR}GuiTargets DESTINATION "${LIBRARY_INSTALL_DIR}") +install(EXPORT Dtk${DTK_VERSION_MAJOR}GuiTargets NAMESPACE Dtk${DTK_VERSION_MAJOR}:: FILE Dtk${DTK_VERSION_MAJOR}GuiTargets.cmake DESTINATION "${CONFIG_INSTALL_DIR}") install(DIRECTORY ../include/util/ DESTINATION "${INCLUDE_INSTALL_DIR}" FILES_MATCHING PATTERN "*") install(DIRECTORY ../include/DtkGui/ DESTINATION "${INCLUDE_INSTALL_DIR}" FILES_MATCHING PATTERN "*") install(DIRECTORY ../include/global/ DESTINATION "${INCLUDE_INSTALL_DIR}" FILES_MATCHING PATTERN "*") install(DIRECTORY ../include/kernel/ DESTINATION "${INCLUDE_INSTALL_DIR}" FILES_MATCHING PATTERN "*") install(DIRECTORY ../include/filedrag/ DESTINATION "${INCLUDE_INSTALL_DIR}" FILES_MATCHING PATTERN "*") -# dconfig meta file -dconfig_meta_files(COMMONID org.deepin.dtk FILES ${PROJECT_SOURCE_DIR}/misc/org.deepin.dtk.ui.preference.json) + +# install dconfig meta file in dtkcommon +# dconfig_meta_files(COMMONID org.deepin.dtk FILES ${PROJECT_SOURCE_DIR}/misc/org.deepin.dtk.ui.preference.json) diff --git a/src/util/ddciicon.cpp b/src/util/ddciicon.cpp index 5f32472c..62df09d2 100644 --- a/src/util/ddciicon.cpp +++ b/src/util/ddciicon.cpp @@ -528,7 +528,8 @@ static inline QVector fromQStringList(const QStringList &list) DDciIconEntry *DDciIconPrivate::loadIcon(const QString &parentDir, const QString &imageDir) { // Mode-Theme - const QVector &iconProps = fromQStringList(imageDir.split(QLatin1Char('.'))); + auto props = imageDir.split(QLatin1Char('.')); + const QVector &iconProps = fromQStringList(props); if (iconProps.count() != 2) // Error file name. return nullptr; @@ -553,7 +554,8 @@ DDciIconEntry *DDciIconPrivate::loadIcon(const QString &parentDir, const QString scaleIcon.imagePixelRatio = scale; const QString &path = joinPath(stateDir, scaleString); for (const QString &layerPath : dciFile->list(path, true)) { - const QVector &layerProps = fromQStringList(layerPath.split(QLatin1Char('.'))); + props = layerPath.split(QLatin1Char('.')); + const QVector &layerProps = fromQStringList(props); DDciIconEntry::ScalableLayer::Layer layer; EntryPropertyParser::doParse(&layer, layerProps); layer.data = dciFile->dataRef(joinPath(path, layerPath)); diff --git a/src/util/util.cmake b/src/util/util.cmake index 6416feab..2f9d510f 100644 --- a/src/util/util.cmake +++ b/src/util/util.cmake @@ -1,7 +1,10 @@ if(NOT DTK_DISABLE_LIBXDG) message("Enable libxdg!") +# find_package(qt${QT_VERSION_MAJOR}xdgiconloader) +if (Qt5_FOUND) find_package(qt5xdgiconloader) add_definitions(-DXDG_ICON_VERSION_MAR=${qt5xdgiconloader_VERSION_MAJOR}) +endif() set(UTIL_PRIVATE ${CMAKE_CURRENT_LIST_DIR}/private/xdgiconproxyengine_p.h ${CMAKE_CURRENT_LIST_DIR}/private/xdgiconproxyengine.cpp diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 52322d6a..86c2f94e 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,6 +1,6 @@ -set(BIN_NAME ut-dtkgui) +set(BIN_NAME ut-dtk${DTK_VERSION_MAJOR}gui) -find_package(Qt5 REQUIRED COMPONENTS Widgets Test) +find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets Test) find_package(GTest REQUIRED) include(../src/dbus/dbus.cmake) @@ -27,13 +27,13 @@ target_compile_options(${BIN_NAME} PRIVATE -fno-access-control -fsanitize=addres target_link_options(${BIN_NAME} PRIVATE -fsanitize=address) target_link_libraries(${BIN_NAME} PRIVATE - Qt5::Gui - Qt5::GuiPrivate - Qt5::Widgets - Qt5::DBus - Qt5::Network - Qt5::Test - Dtk::Core + Qt${QT_VERSION_MAJOR}::Gui + Qt${QT_VERSION_MAJOR}::GuiPrivate + Qt${QT_VERSION_MAJOR}::Widgets + Qt${QT_VERSION_MAJOR}::DBus + Qt${QT_VERSION_MAJOR}::Network + Qt${QT_VERSION_MAJOR}::Test + Dtk${DTK_VERSION_MAJOR}::Core PkgConfig::librsvg GTest::GTest gmock @@ -51,7 +51,7 @@ endif() if(NOT DTK_DISABLE_LIBXDG) target_link_libraries(${BIN_NAME} PRIVATE - Qt5XdgIconLoader + Qt${QT_VERSION_MAJOR}XdgIconLoader ) endif() diff --git a/tools/dci-icon-theme/CMakeLists.txt b/tools/dci-icon-theme/CMakeLists.txt index 7cfd6c1b..75e71499 100644 --- a/tools/dci-icon-theme/CMakeLists.txt +++ b/tools/dci-icon-theme/CMakeLists.txt @@ -1,12 +1,14 @@ set(BIN_NAME dci-icon-theme) +set(TARGET_NAME ${BIN_NAME}${DTK_VERSION_MAJOR}) -add_executable(${BIN_NAME} +add_executable(${TARGET_NAME} main.cpp ) -target_link_libraries(${BIN_NAME} PRIVATE - Qt5::Gui +target_link_libraries(${TARGET_NAME} PRIVATE + Qt${QT_VERSION_MAJOR}::Gui ${LIB_NAME} ) +set_target_properties(${TARGET_NAME} PROPERTIES OUTPUT_NAME ${BIN_NAME}) -install(TARGETS ${BIN_NAME} DESTINATION "${TOOL_INSTALL_DIR}") +install(TARGETS ${TARGET_NAME} DESTINATION "${TOOL_INSTALL_DIR}") diff --git a/tools/dci-image-converter/CMakeLists.txt b/tools/dci-image-converter/CMakeLists.txt index cf1808d3..2b881086 100644 --- a/tools/dci-image-converter/CMakeLists.txt +++ b/tools/dci-image-converter/CMakeLists.txt @@ -1,10 +1,12 @@ set(BIN_NAME dci-image-converter) +set(TARGET_NAME ${BIN_NAME}${DTK_VERSION_MAJOR}) -add_executable(${BIN_NAME} +add_executable(${TARGET_NAME} main.cpp ) -target_link_libraries(${BIN_NAME} PRIVATE - Qt5::Core - Qt5::Gui +target_link_libraries(${TARGET_NAME} PRIVATE + Qt${QT_VERSION_MAJOR}::Core + Qt${QT_VERSION_MAJOR}::Gui ) +set_target_properties(${TARGET_NAME} PROPERTIES OUTPUT_NAME ${BIN_NAME}) diff --git a/tools/dde-kwin-debug/CMakeLists.txt b/tools/dde-kwin-debug/CMakeLists.txt index 4fbdd814..c77615dc 100644 --- a/tools/dde-kwin-debug/CMakeLists.txt +++ b/tools/dde-kwin-debug/CMakeLists.txt @@ -1,12 +1,15 @@ set(BIN_NAME dde-kwin-bug) +set(TARGET_NAME ${BIN_NAME}${DTK_VERSION_MAJOR}) + pkg_check_modules(X11 IMPORTED_TARGET REQUIRED x11) -add_executable(${BIN_NAME} +add_executable(${TARGET_NAME} main.cpp ) -target_link_libraries(${BIN_NAME} PRIVATE +target_link_libraries(${TARGET_NAME} PRIVATE PkgConfig::X11 pthread ) +set_target_properties(${TARGET_NAME} PROPERTIES OUTPUT_NAME ${BIN_NAME}) -install(TARGETS ${BIN_NAME} DESTINATION "${TOOL_INSTALL_DIR}") +install(TARGETS ${TARGET_NAME} DESTINATION "${TOOL_INSTALL_DIR}") diff --git a/tools/deepin-gui-settings/CMakeLists.txt b/tools/deepin-gui-settings/CMakeLists.txt index 0a3f5845..bc157ded 100644 --- a/tools/deepin-gui-settings/CMakeLists.txt +++ b/tools/deepin-gui-settings/CMakeLists.txt @@ -1,15 +1,16 @@ set(BIN_NAME deepin-gui-settings) +set(TARGET_NAME ${BIN_NAME}${DTK_VERSION_MAJOR}) -find_package(Qt5 REQUIRED COMPONENTS Widgets) +find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets) -add_executable(${BIN_NAME} +add_executable(${TARGET_NAME} main.cpp ) -target_link_libraries(${BIN_NAME} - Qt5::Widgets - Dtk::Core +target_link_libraries(${TARGET_NAME} + Qt${QT_VERSION_MAJOR}::Widgets ${LIB_NAME} ) +set_target_properties(${TARGET_NAME} PROPERTIES OUTPUT_NAME ${BIN_NAME}) -install(TARGETS ${BIN_NAME} DESTINATION "${TOOL_INSTALL_DIR}") +install(TARGETS ${TARGET_NAME} DESTINATION "${TOOL_INSTALL_DIR}") diff --git a/tools/image-handler/CMakeLists.txt b/tools/image-handler/CMakeLists.txt index be79aff6..3b1f0fef 100644 --- a/tools/image-handler/CMakeLists.txt +++ b/tools/image-handler/CMakeLists.txt @@ -1,11 +1,12 @@ set(BIN image-handler) +set(TARGET_NAME ${BIN}${DTK_VERSION_MAJOR}) -add_executable(${BIN} +add_executable(${TARGET_NAME} main.cpp ) -target_link_libraries(${BIN} PRIVATE - Qt5::Gui - Dtk::Core +target_link_libraries(${TARGET_NAME} PRIVATE + Qt${QT_VERSION_MAJOR}::Gui ${LIB_NAME} ) +set_target_properties(${TARGET_NAME} PROPERTIES OUTPUT_NAME ${BIN})