pax_global_header 0000666 0000000 0000000 00000000064 14265503532 0014517 g ustar 00root root 0000000 0000000 52 comment=bd9fe15bb46637208cd62b91ebde3b5badd65d54
dtkgui-5.5.25/ 0000775 0000000 0000000 00000000000 14265503532 0013104 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/.github/ 0000775 0000000 0000000 00000000000 14265503532 0014444 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/.github/workflows/ 0000775 0000000 0000000 00000000000 14265503532 0016501 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/.github/workflows/backup-to-gitlab.yml 0000664 0000000 0000000 00000004044 14265503532 0022353 0 ustar 00root root 0000000 0000000 name: backup to gitlab
on: [push]
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
backup-to-gitlab:
if: github.repository_owner == 'linuxdeepin'
name: backup-to-gitlab
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
repository: "linuxdeepin/jenkins-bridge-client"
path: jenkins-bridge-client
- name: Install Client
run: |
cd $GITHUB_WORKSPACE/jenkins-bridge-client
go build .
sudo install -Dvm755 jenkins-bridge-client -t /usr/bin/
- name: Trigger sync
id: generate-runid
run: |
echo "::set-output name=RUN_ID::$(jenkins-bridge-client -triggerSync -token '${{ secrets.BRIDGETOKEN }}')"
- name: Print log
run: |
jenkins-bridge-client -printlog -token "${{ secrets.BRIDGETOKEN }}" -runid "${{ steps.generate-runid.outputs.RUN_ID }}"
backup-to-gitee:
if: github.repository_owner == 'linuxdeepin'
runs-on: ubuntu-latest
steps:
- name: create-repo
run: |
repo=${{ github.event.repository.name }}
homepage="https://github.com/linuxdeepin/${repo}"
description="mirror of ${homepage}"
# remove '.' prefix
repo=${repo#"."}
curl -X POST --header 'Content-Type: application/json;charset=UTF-8' 'https://gitee.com/api/v5/enterprises/linuxdeepin/repos' -d '{"private": 1,"access_token":"${{ secrets.GITEE_SYNC_TOKEN }}","name":"'"$repo"'","description":"'"$description"'","homepage":"'"$homepage"'","has_issues":"false","has_wiki":"false","can_comment":"false"}' || true
- name: push
run: |
git clone --bare https://github.com/linuxdeepin/${{ github.event.repository.name }}.git .git
repo=${{ github.event.repository.name }}
# remove '.' prefix
repo=${repo#"."}
git remote set-url origin https://myml:${{ secrets.GITEE_SYNC_TOKEN }}@gitee.com/linuxdeepin/${repo}.git
git push -f --all --prune origin
git push --tags origin
dtkgui-5.5.25/.github/workflows/call-build-deb.yml 0000664 0000000 0000000 00000000536 14265503532 0021770 0 ustar 00root root 0000000 0000000 name: Call build-deb
on:
pull_request_target:
paths-ignore:
- ".github/workflows/**"
concurrency:
group: ${{ github.workflow }}-pull/${{ github.event.number }}
cancel-in-progress: true
jobs:
check_job:
uses: linuxdeepin/.github/.github/workflows/build-deb.yml@master
secrets:
BridgeToken: ${{ secrets.BridgeToken }}
dtkgui-5.5.25/.github/workflows/call-build-distribution.yml 0000664 0000000 0000000 00000000766 14265503532 0023762 0 ustar 00root root 0000000 0000000 name: Call build-distribution
on:
push:
paths-ignore:
- ".github/workflows/**"
pull_request_target:
paths-ignore:
- ".github/workflows/**"
jobs:
check_job:
uses: linuxdeepin/.github/.github/workflows/build-distribution.yml@master
secrets:
BUILD_GPG_PRIVATE_KEY: ${{ secrets.BUILD_GPG_PRIVATE_KEY }}
BUILD_SSH_PRIVATE_KEY: ${{ secrets.BUILD_SSH_PRIVATE_KEY }}
WEBDAV_PASSWD: ${{ secrets.WEBDAV_PASSWD }}
WEBDAV_USER: ${{ secrets.WEBDAV_USER }}
dtkgui-5.5.25/.github/workflows/call-chatOps.yml 0000664 0000000 0000000 00000000320 14265503532 0021531 0 ustar 00root root 0000000 0000000 name: chatOps
on:
issue_comment:
types: [created]
jobs:
chatopt:
uses: linuxdeepin/.github/.github/workflows/chatOps.yml@master
secrets:
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
dtkgui-5.5.25/.github/workflows/call-clacheck.yml 0000664 0000000 0000000 00000000603 14265503532 0021671 0 ustar 00root root 0000000 0000000 name: Call CLA check
on:
issue_comment:
types: [created]
pull_request_target:
types: [opened, closed, synchronize]
concurrency:
group: ${{ github.workflow }}-pull/${{ github.event.number }}
cancel-in-progress: true
jobs:
clacheck:
uses: linuxdeepin/.github/.github/workflows/cla-check.yml@master
secrets:
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}
dtkgui-5.5.25/.github/workflows/call-commitlint.yml 0000664 0000000 0000000 00000000364 14265503532 0022317 0 ustar 00root root 0000000 0000000 name: Call commitlint
on:
pull_request_target:
concurrency:
group: ${{ github.workflow }}-pull/${{ github.event.number }}
cancel-in-progress: true
jobs:
check_job:
uses: linuxdeepin/.github/.github/workflows/commitlint.yml@master
dtkgui-5.5.25/.github/workflows/cppcheck.yml 0000664 0000000 0000000 00000001265 14265503532 0021010 0 ustar 00root root 0000000 0000000 name: cppcheck
on:
pull_request_target:
paths-ignore:
- ".github/workflows/**"
concurrency:
group: ${{ github.workflow }}-pull/${{ github.event.number }}
cancel-in-progress: true
jobs:
cppchceck:
name: cppcheck
runs-on: ubuntu-latest
steps:
- run: export
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false
- uses: linuxdeepin/action-cppcheck@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
pull_request_id: ${{ github.event.pull_request.number }}
allow_approve: false
dtkgui-5.5.25/.gitignore 0000664 0000000 0000000 00000000767 14265503532 0015106 0 ustar 00root root 0000000 0000000 # C++ objects and libs
*.slo
*.lo
*.o
*.a
*.la
*.lai
*.so
*.dll
*.dylib
# Qt-es
object_script.*.Release
object_script.*.Debug
*_plugin_import.cpp
/.qmake.cache
/.qmake.stash
*.pro.user
*.pro.user.*
*.qbs.user
*.qbs.user.*
*.moc
moc_*.cpp
moc_*.h
qrc_*.cpp
ui_*.h
*.qmlc
*.jsc
Makefile*
*build-*
# Qt unit tests
target_wrapper.*
# QtCreator
*.autosave
# QtCreator Qml
*.qmlproject.user
*.qmlproject.user.*
# QtCreator CMake
CMakeLists.txt.user*
bin
cmake
DtkGuis
dtkgui_config.h
qt_lib_dtkgui*.pri
dtkgui-5.5.25/.gitlab-ci.yml 0000664 0000000 0000000 00000000227 14265503532 0015541 0 ustar 00root root 0000000 0000000 include:
- remote: 'https://gitlab.deepin.io/dev-tools/letmeci/raw/master/gitlab-ci/dde.yml'
variables:
CPPCHECK: "true"
CODESPELL: "true"
dtkgui-5.5.25/.packit.yaml 0000664 0000000 0000000 00000000702 14265503532 0015320 0 ustar 00root root 0000000 0000000 # See the documentation for more information:
# https://packit.dev/docs/configuration/
specfile_path: rpm/dtkgui.spec
# add or remove files that should be synced
synced_files:
- rpm/dtkgui.spec
- .packit.yaml
upstream_package_name: dtkgui
# downstream (Fedora) RPM package name
downstream_package_name: dtkgui
actions:
fix-spec-file: |
bash -c "sed -i -r \"s/Version:(\s*)\S*/Version:\1${PACKIT_PROJECT_VERSION}/\" rpm/dtkgui.spec"
dtkgui-5.5.25/.release.json 0000664 0000000 0000000 00000001045 14265503532 0015475 0 ustar 00root root 0000000 0000000 {
"commit": {
"quilt": false,
"pkgver": "echo $(git tag | sort -V | tail -n1)'+r'$(git log $(git describe --abbrev=0 --tags)..HEAD --oneline|wc -l)'+g'$(git rev-parse --short HEAD);",
"dist": "experimental"
},
"release": {
"quilt": true,
"pkgver": "git describe --abbrev=0 --tags %(ref)s",
"dist": "unstable"
},
"release-candidate": {
"quilt": true,
"dist": "unstable"
}
}
dtkgui-5.5.25/LICENSE 0000664 0000000 0000000 00000016744 14265503532 0014125 0 ustar 00root root 0000000 0000000 GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
dtkgui-5.5.25/README.md 0000664 0000000 0000000 00000000076 14265503532 0014366 0 ustar 00root root 0000000 0000000 ### dtkgui
Deepin Toolkit, gui module for DDE look and feel
dtkgui-5.5.25/archlinux/ 0000775 0000000 0000000 00000000000 14265503532 0015101 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/archlinux/PKGBUILD 0000664 0000000 0000000 00000001351 14265503532 0016225 0 ustar 00root root 0000000 0000000 # Maintainer: justforlxz
pkgname=dtkgui-git
pkgver=5.5.22.r8.g6ef1509
pkgrel=1
pkgdesc='Deepin Toolkit, gui module for DDE look and feel'
arch=('x86_64' 'aarch64')
url="https://github.com/linuxdeepin/dtkgui"
license=('LGPL3')
depends=('dtkcore-git' 'librsvg' 'qt5-x11extras')
makedepends=('git' 'qt5-tools' 'dtkcommon-git' 'dtkcore-git' 'librsvg' 'qt5-x11extras' 'gtest' 'gmock')
conflicts=('dtkgui')
provides=('dtkgui')
groups=('deepin-git')
source=('source.tar.gz')
sha512sums=('SKIP')
prepare() {
cd $deepin_source_name
}
build() {
cd $deepin_source_name
qmake-qt5 PREFIX=/usr DTK_VERSION=$pkgver LIB_INSTALL_DIR=/usr/lib
make
}
package() {
cd $deepin_source_name
make INSTALL_ROOT="$pkgdir" install
}
dtkgui-5.5.25/debian/ 0000775 0000000 0000000 00000000000 14265503532 0014326 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/debian/changelog 0000664 0000000 0000000 00000000444 14265503532 0016202 0 ustar 00root root 0000000 0000000 dtkgui (5.0.0) unstable; urgency=medium
* Release 5.0.0
-- Deepin Packages Builder Tue, 03 Sep 2019 08:59:03 +0800
dtkgui (1.0.0-1) unstable; urgency=medium
* Initial release
-- Deepin Packages Builder Mon, 29 Jul 2019 16:58:07 +0800
dtkgui-5.5.25/debian/compat 0000664 0000000 0000000 00000000002 14265503532 0015524 0 ustar 00root root 0000000 0000000 9
dtkgui-5.5.25/debian/control 0000664 0000000 0000000 00000002132 14265503532 0015727 0 ustar 00root root 0000000 0000000 Source: dtkgui
Section: libdevel
Priority: optional
Maintainer: Deepin Packages Builder
Build-Depends: debhelper (>= 9), pkg-config,
qtbase5-private-dev, qtbase5-dev-tools,
libdtkcore-dev, librsvg2-dev, libgtest-dev, libgmock-dev
Standards-Version: 3.9.8
Package: libdtkgui5
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, libdtkcommon
Multi-Arch: same
Description: Deepin Tool Kit Gui library
DtkGui is base library of Deepin Qt/C++ applications.
.
This package contains the shared libraries.
Package: libdtkgui5-bin
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends},
libdtkgui5( =${binary:Version})
Description: Deepin Tool Kit Gui Utilities
DtkGui is base devel library of Deepin Qt/C++ applications.
.
This package contains the utilities of DtkGui
Package: libdtkgui-dev
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, libdtkgui5( =${binary:Version})
Description: Deepin Tool Kit Gui Devel library
DtkGui is base devel library of Deepin Qt/C++ applications.
.
This package contains the header files and static libraries of DtkGui
dtkgui-5.5.25/debian/copyright 0000664 0000000 0000000 00000001671 14265503532 0016266 0 ustar 00root root 0000000 0000000 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: dtkgui
Source: https://github.com/linuxdeepin/dtkgui
License: LGPL-3+
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see
.
On Debian systems, the complete text of the GNU Lesser General
Public License version 3 can be found in "/usr/share/common-licenses/LGPL-3".
dtkgui-5.5.25/debian/libdtkgui-dev.install 0000664 0000000 0000000 00000000141 14265503532 0020444 0 ustar 00root root 0000000 0000000 usr/lib/*/lib*.so
usr/include
usr/lib/*/pkgconfig/*.pc
usr/lib/*/cmake/*/*.cmake
usr/lib/*/qt5/*
dtkgui-5.5.25/debian/libdtkgui5-bin.install 0000664 0000000 0000000 00000000027 14265503532 0020526 0 ustar 00root root 0000000 0000000 usr/lib/*/*/DGui/bin/*
dtkgui-5.5.25/debian/libdtkgui5.install 0000664 0000000 0000000 00000000024 14265503532 0017755 0 ustar 00root root 0000000 0000000 usr/lib/*/lib*.so.*
dtkgui-5.5.25/debian/rules 0000775 0000000 0000000 00000001507 14265503532 0015411 0 ustar 00root root 0000000 0000000 #!/usr/bin/make -f
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk
export QT_SELECT = qt5
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
ifneq (,$(wildcard .git/config))
CONFIG_VERSION=
else
VERSION = $(DEB_VERSION_UPSTREAM)
_PACK_VER = $(shell echo $(VERSION) | awk -F'[+_~-]' '{print $$1}')
_BUILD_VER = $(shell echo $(VERSION) | awk -F'[+_~-]' '{print $$2}' | sed 's/[^0-9]//g')
ifeq ($(_BUILD_VER),)
CONFIG_VERSION = $(_PACK_VER)
else
CONFIG_VERSION = $(_PACK_VER).$(_BUILD_VER)
endif
endif
%:
dh $@ --parallel
override_dh_auto_configure:
dh_auto_configure -- LIB_INSTALL_DIR=/usr/lib/$(DEB_HOST_MULTIARCH) VERSION=$(CONFIG_VERSION)
#override_dh_auto_test:
# echo "skip auto test"
override_dh_makeshlibs:
dh_makeshlibs -V "libdtkgui5 (>= $(shell echo $(VERSION) | cut -d '.' -f 1,2))"
dtkgui-5.5.25/debian/source/ 0000775 0000000 0000000 00000000000 14265503532 0015626 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/debian/source/format 0000664 0000000 0000000 00000000014 14265503532 0017034 0 ustar 00root root 0000000 0000000 3.0 (quilt)
dtkgui-5.5.25/debian/symbols.amd64 0000664 0000000 0000000 00000175130 14265503532 0016662 0 ustar 00root root 0000000 0000000 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
dtkgui-5.5.25/doc/ 0000775 0000000 0000000 00000000000 14265503532 0013651 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/doc/src/ 0000775 0000000 0000000 00000000000 14265503532 0014440 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/doc/src/dtkgui-index.qdoc 0000664 0000000 0000000 00000002122 14265503532 0017701 0 ustar 00root root 0000000 0000000 /*
* Copyright (C) 2021 ~ 2021 Deepin Technology Co., Ltd.
*
* Author: Chen Bin
*
* Maintainer: Chen Bin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
/*!
\page dtkgui-index.html
\keyword DTK Gui Reference Documentation
\title DTK Gui Docs
DtkGui is base devel library of Deepin Qt/C++ applications.
\list
\li \l {DTK Gui 模块}
\li \l {DTK Core Docs}
\li \l {DTK Core 模块}
\li \l {DTK Widget Docs}
\li \l {DTK Widget 模块}
\endlist
*/
dtkgui-5.5.25/doc/src/dtkgui.qdoc 0000664 0000000 0000000 00000001622 14265503532 0016600 0 ustar 00root root 0000000 0000000 /*
* Copyright (C) 2021 ~ 2021 Deepin Technology Co., Ltd.
*
* Author: Chen Bin
*
* Maintainer: Chen Bin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
/*!
\module dtkgui
\title DTK Gui 模块
\brief Provides core non-GUI functionality.
*/
dtkgui-5.5.25/dtkgui.pro 0000664 0000000 0000000 00000000016 14265503532 0015112 0 ustar 00root root 0000000 0000000 load(dtk_lib)
dtkgui-5.5.25/examples/ 0000775 0000000 0000000 00000000000 14265503532 0014722 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/examples/dnd-example/ 0000775 0000000 0000000 00000000000 14265503532 0017120 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/examples/dnd-example/dnd-example.pro 0000664 0000000 0000000 00000000105 14265503532 0022034 0 ustar 00root root 0000000 0000000 TEMPLATE = subdirs
SUBDIRS = dnd-test-server.pro dnd-test-client.pro
dtkgui-5.5.25/examples/dnd-example/dnd-test-client.cpp 0000664 0000000 0000000 00000004655 14265503532 0022634 0 ustar 00root root 0000000 0000000 #include "dfiledragclient.h"
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
DGUI_USE_NAMESPACE
static DFileDragClient *c;
static QProgressBar *p;
class DropArea : public QFrame
{
Q_OBJECT
public:
explicit DropArea(QString s)
: lb(new QLabel(s, this))
, le(new QLineEdit(this))
{
setLayout(new QVBoxLayout);
setFrameShape(Shape::Box);
layout()->addWidget(lb);
layout()->addWidget(le);
lb->setAlignment(Qt::AlignmentFlag::AlignCenter);
le->setText("/tmp");
le->setPlaceholderText(QString("do not accept drop when edit is empty"));
setAcceptDrops(true);
}
protected:
void dragEnterEvent(QDragEnterEvent *e)
{
if (DFileDragClient::checkMimeData(e->mimeData())) {
if (le->text().isEmpty())
e->ignore(); // or e->setDropAction(Qt::IgnoreAction);
else
e->acceptProposedAction();
DFileDragClient::setTargetUrl(e->mimeData(), QUrl(le->text()));
}
}
void dragMoveEvent(QDragMoveEvent *e)
{
if (DFileDragClient::checkMimeData(e->mimeData())) {
e->acceptProposedAction();
DFileDragClient::setTargetUrl(e->mimeData(), QUrl(le->text()));
}
}
void dropEvent(QDropEvent *e)
{
if (DFileDragClient::checkMimeData(e->mimeData())) {
e->acceptProposedAction();
DFileDragClient::setTargetUrl(e->mimeData(), QUrl(le->text()));
c = new DFileDragClient(e->mimeData());
connect(c, &DFileDragClient::progressChanged, p, &QProgressBar::setValue);
}
}
private:
QLabel *lb;
QLineEdit *le;
};
int main(int argc, char **argv)
{
QApplication a(argc, argv);
QDialog d;
d.show();
QHBoxLayout *lo = new QHBoxLayout();
lo->addWidget(new DropArea("area 51"));
lo->addWidget(new DropArea("area 61"));
QScopedPointer pp (new QProgressBar());
p = pp.data();
p->setMinimum(0);
p->setMaximum(100);
QVBoxLayout *hlo = new QVBoxLayout();
d.setLayout(hlo);
hlo->addLayout(lo);
hlo->addWidget(p);
a.exec();
}
#include "dnd-test-client.moc"
dtkgui-5.5.25/examples/dnd-example/dnd-test-client.pro 0000664 0000000 0000000 00000001124 14265503532 0022636 0 ustar 00root root 0000000 0000000 TEMPLATE = app
QT += dtkcore widgets
SOURCES += \
$$PWD/dnd-test-client.cpp
DESTDIR = $$_PRO_FILE_PWD_/../../bin
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../src/release -ldtkgui
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../src/debug -ldtkgui
else:unix: LIBS += -L$$OUT_PWD/../../src -ldtkgui
INCLUDEPATH += $$PWD/../../src \
$$PWD/../../src/filedrag
CONFIG(debug, debug|release) {
unix:QMAKE_RPATHDIR += $$OUT_PWD/../../src
}
DTK_MODULE_NAME=dtkgui
load(dtk_build_config)
target.path = $$TOOL_INSTALL_DIR
INSTALLS += target
dtkgui-5.5.25/examples/dnd-example/dnd-test-server.cpp 0000664 0000000 0000000 00000004575 14265503532 0022665 0 ustar 00root root 0000000 0000000 #include "dfiledragserver.h"
#include "dfiledrag.h"
#include
#include
#include
#include
#include
#include
#include
#include
#include
DGUI_USE_NAMESPACE
static int p;
static DFileDragServer *s = nullptr;
static QLabel *lbr = nullptr;
class DraggableLabel : public QLabel
{
Q_OBJECT
public:
using QLabel::QLabel;
Q_SIGNALS:
void dragFinished();
protected:
void mousePressEvent(QMouseEvent *e)
{
if (e->button() == Qt::MouseButton::LeftButton) {
dragpos = e->pos();
}
}
void mouseMoveEvent(QMouseEvent *e)
{
if (!(e->buttons() & Qt::MouseButton::LeftButton) || s) {
return;
}
if ((e->pos() - dragpos).manhattanLength() < QApplication::startDragDistance()) {
return;
}
s = new DFileDragServer();
DFileDrag *drag = new DFileDrag(this, s);
QMimeData *m = new QMimeData();
m->setText("your stuff here");
drag->setMimeData(m);
connect(drag, &DFileDrag::targetUrlChanged, [drag] {
lbr->setText(drag->targetUrl().toString());
});
Qt::DropAction res = drag->exec(Qt::MoveAction);
if (res!= Qt::IgnoreAction)
Q_EMIT dragFinished();
else {
s->deleteLater();
s = nullptr;
}
}
private:
QPoint dragpos;
};
int main(int argc, char **argv)
{
QApplication a(argc, argv);
QDialog d;
d.show();
DraggableLabel l("Drag me", &d);
l.setAlignment(Qt::AlignCenter);
QTimer t;
t.setInterval(50);
t.setSingleShot(false);
QProgressBar pg;
pg.setMinimum(0);
pg.setMaximum(100);
QLabel lb;
lbr = &lb;
lb.setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Fixed);
QObject::connect(&l, &DraggableLabel::dragFinished, [&t] {
p = -1;
t.start();
});
QObject::connect(&t, &QTimer::timeout, [&t, &pg] {
if (qrand() & 1) {
s->setProgress(++p);
pg.setValue(p);
if(p == 100) {
t.stop();
s->deleteLater();
s = nullptr;
}
}
});
QVBoxLayout lo;
lo.addWidget(&l);
lo.addWidget(&pg);
lo.addWidget(&lb);
d.setLayout(&lo);
a.exec();
}
#include "dnd-test-server.moc"
dtkgui-5.5.25/examples/dnd-example/dnd-test-server.pro 0000664 0000000 0000000 00000001124 14265503532 0022666 0 ustar 00root root 0000000 0000000 TEMPLATE = app
QT += dtkcore widgets
SOURCES += \
$$PWD/dnd-test-server.cpp
DESTDIR = $$_PRO_FILE_PWD_/../../bin
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../src/release -ldtkgui
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../src/debug -ldtkgui
else:unix: LIBS += -L$$OUT_PWD/../../src -ldtkgui
INCLUDEPATH += $$PWD/../../src \
$$PWD/../../src/filedrag
CONFIG(debug, debug|release) {
unix:QMAKE_RPATHDIR += $$OUT_PWD/../../src
}
DTK_MODULE_NAME=dtkgui
load(dtk_build_config)
target.path = $$TOOL_INSTALL_DIR
INSTALLS += target
dtkgui-5.5.25/examples/examples.pro 0000664 0000000 0000000 00000000104 14265503532 0017255 0 ustar 00root root 0000000 0000000 TEMPLATE = subdirs
SUBDIRS += dnd-example
#SUBDIRS += test-taskbar
dtkgui-5.5.25/examples/test-taskbar/ 0000775 0000000 0000000 00000000000 14265503532 0017326 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/examples/test-taskbar/main.cpp 0000664 0000000 0000000 00000002700 14265503532 0020755 0 ustar 00root root 0000000 0000000 #include
#include
#include
#include
#include "testtaskbarwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
auto name = QUuid::createUuid().toString() + QStringLiteral(".desktop");
a.setDesktopFileName(name);
QDir appDir = QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation);
QFile desktopFile(appDir.absoluteFilePath(name));
if(!desktopFile.exists()) {
desktopFile.open(QIODevice::WriteOnly);
desktopFile.write("[Desktop Entry]\n");
desktopFile.write("Type=Application\n");
desktopFile.write("Version=1.1\n");
desktopFile.write("Name=" + QApplication::applicationDisplayName().toUtf8() + "\n");
desktopFile.write("Exec=" + QApplication::applicationFilePath().toUtf8() + "\n");
desktopFile.close();
}
TestTaskbarWindow *pTaskbarWindow = new TestTaskbarWindow;
pTaskbarWindow->showMaximized();
//这里删除用于测试的desktop文件
QObject::connect(pTaskbarWindow, &TestTaskbarWindow::closeWindow, [&desktopFile] {
QFile::remove(desktopFile.fileName());
});
//控制中心修改字体大小可以看到打印输出
QObject::connect(DGuiApplicationHelper::instance()->fontManager(), &DFontManager::fontChanged, [] {
qDebug() << DGuiApplicationHelper::instance()->fontManager()->baseFont();
});
return a.exec();
}
dtkgui-5.5.25/examples/test-taskbar/taskbar.pro 0000664 0000000 0000000 00000001310 14265503532 0021472 0 ustar 00root root 0000000 0000000 QT += dtkcore gui widgets
TARGET = taskbar
TEMPLATE = app
CONFIG += c++11
SOURCES += \
main.cpp \
testtaskbarwindow.cpp
HEADERS += \
testtaskbarwindow.h
DESTDIR = $$_PRO_FILE_PWD_/../../bin
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../../src/release -ldtkgui
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../../src/debug -ldtkgui
else:unix: LIBS += -L$$OUT_PWD/../../src -ldtkgui
INCLUDEPATH += \
$$PWD/../../src \
$$PWD/../../src/kernel \
$$PWD/../../src/util
CONFIG(debug, debug|release) {
unix:QMAKE_RPATHDIR += $$OUT_PWD/../../src
}
DTK_MODULE_NAME=dtkgui
load(dtk_build_config)
target.path = $$TOOL_INSTALL_DIR
INSTALLS += target
dtkgui-5.5.25/examples/test-taskbar/test-taskbar.pro 0000664 0000000 0000000 00000000052 14265503532 0022451 0 ustar 00root root 0000000 0000000 TEMPLATE = subdirs
SUBDIRS = taskbar.pro
dtkgui-5.5.25/examples/test-taskbar/testtaskbarwindow.cpp 0000664 0000000 0000000 00000006316 14265503532 0023617 0 ustar 00root root 0000000 0000000 /*
* Copyright (C) 2019~ 2020 Deepin Technology Co., Ltd.
*
* Author: sunkang
*
* Maintainer: sunkang
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
#include "testtaskbarwindow.h"
#include
#include
#include
TestTaskbarWindow::TestTaskbarWindow(QWidget *parent)
: QWidget(parent)
{
QHBoxLayout *pHBoxLayout_1 = new QHBoxLayout;
m_pProgressBox = new QCheckBox("progress");
m_pProgress = new QSlider(Qt::Horizontal);
m_pProgress->setRange(0, 100);
m_pProgress->setMinimumWidth(300);
pHBoxLayout_1->addWidget(m_pProgressBox);
pHBoxLayout_1->addWidget(m_pProgress);
QHBoxLayout *pHBoxLayout_2 = new QHBoxLayout;
m_pCounterBox = new QCheckBox("counter");
m_pNumEdit = new QLineEdit;
m_pNumEdit->setMinimumWidth(300);
m_pNumEdit->setValidator(new QIntValidator);
pHBoxLayout_2->addWidget(m_pCounterBox);
pHBoxLayout_2->addWidget(m_pNumEdit);
m_pUrgencyBox= new QCheckBox("test urgency");
QHBoxLayout *pHBoxLayout_3 = new QHBoxLayout;
pHBoxLayout_3->addWidget(m_pUrgencyBox);
QVBoxLayout *pVBoxLayout = new QVBoxLayout;
setLayout(pVBoxLayout);
pVBoxLayout->addStretch();
pVBoxLayout->addLayout(pHBoxLayout_1);
pVBoxLayout->addSpacing(30);
pVBoxLayout->addLayout(pHBoxLayout_2);
pVBoxLayout->addSpacing(50);
pVBoxLayout->addLayout(pHBoxLayout_3);
pVBoxLayout->addStretch();
m_pTaskbarControl = new DTaskbarControl(this);
m_pTaskbarControl->setProgress(false, 0);
m_pTaskbarControl->setCounter(false, 0);
connect(m_pProgressBox, &QCheckBox::stateChanged, this, [this] (int state) {
m_pTaskbarControl->setProgress(state == Qt::Checked, static_cast(m_pProgress->value()) / 100);
});
connect(m_pCounterBox, &QCheckBox::stateChanged, this, [this] (int state) {
m_pTaskbarControl->setCounterVisible(state == Qt::Checked);
});
connect(m_pProgress, &QSlider::valueChanged, this, [this] (int value) {
m_pTaskbarControl->setProgress(m_pProgressBox->checkState() == Qt::Checked, static_cast(value) / 100);
});
connect(m_pNumEdit, &QLineEdit::textChanged, [this] (const QString &str) {
m_pTaskbarControl->setCounter(m_pCounterBox->checkState() == Qt::Checked, str.toInt());
});
connect(m_pUrgencyBox, &QCheckBox::stateChanged, this, [this] (int state) {
m_pTaskbarControl->setUrgency(state == Qt::Checked);
});
}
TestTaskbarWindow::~TestTaskbarWindow()
{
}
void TestTaskbarWindow::closeEvent(QCloseEvent *event)
{
Q_EMIT closeWindow();
event->accept();
}
dtkgui-5.5.25/examples/test-taskbar/testtaskbarwindow.h 0000664 0000000 0000000 00000003166 14265503532 0023264 0 ustar 00root root 0000000 0000000 /*
* Copyright (C) 2019 ~ 2020 Deepin Technology Co., Ltd.
*
* Author: sunkang
*
* Maintainer: sunkang
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
#ifndef TESTTASKBARWINDOW_H
#define TESTTASKBARWINDOW_H
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include "dtaskbarcontrol.h"
DGUI_USE_NAMESPACE
class TestTaskbarWindow : public QWidget
{
Q_OBJECT
public:
explicit TestTaskbarWindow(QWidget *parent = nullptr);
~TestTaskbarWindow();
protected:
void closeEvent(QCloseEvent *event);
Q_SIGNALS:
void closeWindow();
private:
DTaskbarControl *m_pTaskbarControl;
QCheckBox *m_pProgressBox;
QCheckBox *m_pCounterBox;
QLineEdit *m_pNumEdit;
QSlider *m_pProgress;
QCheckBox *m_pUrgencyBox;
};
#endif // TESTTASKBARWINDOW_H
dtkgui-5.5.25/rpm/ 0000775 0000000 0000000 00000000000 14265503532 0013702 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/rpm/dtkgui.spec 0000664 0000000 0000000 00000003526 14265503532 0016053 0 ustar 00root root 0000000 0000000 Name: dtkgui
Version: 5.5.17
Release: 1%{?dist}
Summary: Deepin dtkgui
License: LGPLv3+
URL: https://github.com/linuxdeepin/dtkgui
%if 0%{?fedora}
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
%else
Source0: %{name}-%{version}.orig.tar.xz
%endif
BuildRequires: qt5-qtx11extras-devel
BuildRequires: dtkcommon-devel
BuildRequires: dtkcore-devel
BuildRequires: librsvg2-devel
BuildRequires: gtest-devel
BuildRequires: gcc-c++
BuildRequires: annobin
BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(gsettings-qt)
BuildRequires: pkgconfig(gmock)
%if 0%{?fedora}
BuildRequires: qt5-qtbase-private-devel
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
%endif
BuildRequires: make
%description
Dtkgui is the GUI module for DDE look and feel.
%package devel
Summary: Development package for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: dtkcore-devel%{?_isa}
%description devel
Header files and libraries for %{name}.
%prep
%autosetup
%build
# help find (and prefer) qt5 utilities, e.g. qmake, lrelease
export PATH=%{_qt5_bindir}:$PATH
%qmake_qt5 PREFIX=%{_prefix} \
DTK_VERSION=%{version} \
LIB_INSTALL_DIR=%{_libdir} \
BIN_INSTALL_DIR=%{_libexecdir}/dtk5 \
TOOL_INSTALL_DIR=%{_libexecdir}/dtk5
%make_build
%install
%make_install INSTALL_ROOT=%{buildroot}
%files
%doc README.md
%license LICENSE
%{_libdir}/lib%{name}.so.5*
%{_libexecdir}/dtk5/deepin-gui-settings
%{_libexecdir}/dtk5/taskbar
%{_libexecdir}/dtk5/dde-kwin-debug
%files devel
%{_includedir}/libdtk-*/
%{_libdir}/pkgconfig/dtkgui.pc
%{_qt5_archdatadir}/mkspecs/modules/qt_lib_dtkgui.pri
%{_libdir}/cmake/DtkGui/
%{_libdir}/lib%{name}.so
%changelog
* Thu Jun 09 2020 uoser - 5.2.2.1-1
- Update to 5.2.2.1
dtkgui-5.5.25/src/ 0000775 0000000 0000000 00000000000 14265503532 0013673 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/src/dbus/ 0000775 0000000 0000000 00000000000 14265503532 0014630 5 ustar 00root root 0000000 0000000 dtkgui-5.5.25/src/dbus/arealist.h 0000664 0000000 0000000 00000002177 14265503532 0016614 0 ustar 00root root 0000000 0000000 /*
* Copyright (C) 2011 ~ 2017 Deepin Technology Co., Ltd.
*
* Author: sbw
* kirigaya
* Hualet
*
* Maintainer: sbw
* kirigaya
* Hualet
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
#ifndef AREALIST_H
#define AREALIST_H
#include
#include
#include
typedef QList AreaList;
void registerAreaListMetaType();
#endif // AREALIST_H
dtkgui-5.5.25/src/dbus/com.deepin.api.XEventMonitor.xml 0000664 0000000 0000000 00000003042 14265503532 0022722 0 ustar 00root root 0000000 0000000