Absolute File Name: | /home/qt/qt5_coco/qt5/qtbase/src/gui/image/qiconloader.cpp |
Source code | Switch to Preprocessed file |
Line | Source | Count | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | /**************************************************************************** | - | ||||||||||||||||||
2 | ** | - | ||||||||||||||||||
3 | ** Copyright (C) 2016 The Qt Company Ltd. | - | ||||||||||||||||||
4 | ** Contact: https://www.qt.io/licensing/ | - | ||||||||||||||||||
5 | ** | - | ||||||||||||||||||
6 | ** This file is part of the QtGui module of the Qt Toolkit. | - | ||||||||||||||||||
7 | ** | - | ||||||||||||||||||
8 | ** $QT_BEGIN_LICENSE:LGPL$ | - | ||||||||||||||||||
9 | ** Commercial License Usage | - | ||||||||||||||||||
10 | ** Licensees holding valid commercial Qt licenses may use this file in | - | ||||||||||||||||||
11 | ** accordance with the commercial license agreement provided with the | - | ||||||||||||||||||
12 | ** Software or, alternatively, in accordance with the terms contained in | - | ||||||||||||||||||
13 | ** a written agreement between you and The Qt Company. For licensing terms | - | ||||||||||||||||||
14 | ** and conditions see https://www.qt.io/terms-conditions. For further | - | ||||||||||||||||||
15 | ** information use the contact form at https://www.qt.io/contact-us. | - | ||||||||||||||||||
16 | ** | - | ||||||||||||||||||
17 | ** GNU Lesser General Public License Usage | - | ||||||||||||||||||
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser | - | ||||||||||||||||||
19 | ** General Public License version 3 as published by the Free Software | - | ||||||||||||||||||
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the | - | ||||||||||||||||||
21 | ** packaging of this file. Please review the following information to | - | ||||||||||||||||||
22 | ** ensure the GNU Lesser General Public License version 3 requirements | - | ||||||||||||||||||
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. | - | ||||||||||||||||||
24 | ** | - | ||||||||||||||||||
25 | ** GNU General Public License Usage | - | ||||||||||||||||||
26 | ** Alternatively, this file may be used under the terms of the GNU | - | ||||||||||||||||||
27 | ** General Public License version 2.0 or (at your option) the GNU General | - | ||||||||||||||||||
28 | ** Public license version 3 or any later version approved by the KDE Free | - | ||||||||||||||||||
29 | ** Qt Foundation. The licenses are as published by the Free Software | - | ||||||||||||||||||
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 | - | ||||||||||||||||||
31 | ** included in the packaging of this file. Please review the following | - | ||||||||||||||||||
32 | ** information to ensure the GNU General Public License requirements will | - | ||||||||||||||||||
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and | - | ||||||||||||||||||
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. | - | ||||||||||||||||||
35 | ** | - | ||||||||||||||||||
36 | ** $QT_END_LICENSE$ | - | ||||||||||||||||||
37 | ** | - | ||||||||||||||||||
38 | ****************************************************************************/ | - | ||||||||||||||||||
39 | #ifndef QT_NO_ICON | - | ||||||||||||||||||
40 | #include <private/qiconloader_p.h> | - | ||||||||||||||||||
41 | - | |||||||||||||||||||
42 | #include <private/qguiapplication_p.h> | - | ||||||||||||||||||
43 | #include <private/qicon_p.h> | - | ||||||||||||||||||
44 | - | |||||||||||||||||||
45 | #include <QtGui/QIconEnginePlugin> | - | ||||||||||||||||||
46 | #include <QtGui/QPixmapCache> | - | ||||||||||||||||||
47 | #include <qpa/qplatformtheme.h> | - | ||||||||||||||||||
48 | #include <QtGui/QIconEngine> | - | ||||||||||||||||||
49 | #include <QtGui/QPalette> | - | ||||||||||||||||||
50 | #include <QtCore/QList> | - | ||||||||||||||||||
51 | #include <QtCore/QDir> | - | ||||||||||||||||||
52 | #include <QtCore/QSettings> | - | ||||||||||||||||||
53 | #include <QtGui/QPainter> | - | ||||||||||||||||||
54 | - | |||||||||||||||||||
55 | #include <private/qhexstring_p.h> | - | ||||||||||||||||||
56 | - | |||||||||||||||||||
57 | QT_BEGIN_NAMESPACE | - | ||||||||||||||||||
58 | - | |||||||||||||||||||
59 | Q_GLOBAL_STATIC(QIconLoader, iconLoaderInstance) never executed: end of block never executed: guard.store(QtGlobalStatic::Destroyed); never executed: return &holder.value;
| 0 | ||||||||||||||||||
60 | - | |||||||||||||||||||
61 | /* Theme to use in last resort, if the theme does not have the icon, neither the parents */ | - | ||||||||||||||||||
62 | static QString fallbackTheme() | - | ||||||||||||||||||
63 | { | - | ||||||||||||||||||
64 | if (const QPlatformTheme *theme = QGuiApplicationPrivate::platformTheme()) {
| 0 | ||||||||||||||||||
65 | const QVariant themeHint = theme->themeHint(QPlatformTheme::SystemIconFallbackThemeName); | - | ||||||||||||||||||
66 | if (themeHint.isValid())
| 0 | ||||||||||||||||||
67 | return themeHint.toString(); never executed: return themeHint.toString(); | 0 | ||||||||||||||||||
68 | } never executed: end of block | 0 | ||||||||||||||||||
69 | return QString(); never executed: return QString(); | 0 | ||||||||||||||||||
70 | } | - | ||||||||||||||||||
71 | - | |||||||||||||||||||
72 | QIconLoader::QIconLoader() : | - | ||||||||||||||||||
73 | m_themeKey(1), m_supportsSvg(false), m_initialized(false) | - | ||||||||||||||||||
74 | { | - | ||||||||||||||||||
75 | } never executed: end of block | 0 | ||||||||||||||||||
76 | - | |||||||||||||||||||
77 | static inline QString systemThemeName() | - | ||||||||||||||||||
78 | { | - | ||||||||||||||||||
79 | if (const QPlatformTheme *theme = QGuiApplicationPrivate::platformTheme()) {
| 0 | ||||||||||||||||||
80 | const QVariant themeHint = theme->themeHint(QPlatformTheme::SystemIconThemeName); | - | ||||||||||||||||||
81 | if (themeHint.isValid())
| 0 | ||||||||||||||||||
82 | return themeHint.toString(); never executed: return themeHint.toString(); | 0 | ||||||||||||||||||
83 | } never executed: end of block | 0 | ||||||||||||||||||
84 | return QString(); never executed: return QString(); | 0 | ||||||||||||||||||
85 | } | - | ||||||||||||||||||
86 | - | |||||||||||||||||||
87 | static inline QStringList systemIconSearchPaths() | - | ||||||||||||||||||
88 | { | - | ||||||||||||||||||
89 | if (const QPlatformTheme *theme = QGuiApplicationPrivate::platformTheme()) {
| 0 | ||||||||||||||||||
90 | const QVariant themeHint = theme->themeHint(QPlatformTheme::IconThemeSearchPaths); | - | ||||||||||||||||||
91 | if (themeHint.isValid())
| 0 | ||||||||||||||||||
92 | return themeHint.toStringList(); never executed: return themeHint.toStringList(); | 0 | ||||||||||||||||||
93 | } never executed: end of block | 0 | ||||||||||||||||||
94 | return QStringList(); never executed: return QStringList(); | 0 | ||||||||||||||||||
95 | } | - | ||||||||||||||||||
96 | - | |||||||||||||||||||
97 | extern QFactoryLoader *qt_iconEngineFactoryLoader(); // qicon.cpp | - | ||||||||||||||||||
98 | - | |||||||||||||||||||
99 | void QIconLoader::ensureInitialized() | - | ||||||||||||||||||
100 | { | - | ||||||||||||||||||
101 | if (!m_initialized) {
| 0 | ||||||||||||||||||
102 | m_initialized = true; | - | ||||||||||||||||||
103 | - | |||||||||||||||||||
104 | Q_ASSERT(qApp); | - | ||||||||||||||||||
105 | - | |||||||||||||||||||
106 | m_systemTheme = systemThemeName(); | - | ||||||||||||||||||
107 | - | |||||||||||||||||||
108 | if (m_systemTheme.isEmpty())
| 0 | ||||||||||||||||||
109 | m_systemTheme = fallbackTheme(); never executed: m_systemTheme = fallbackTheme(); | 0 | ||||||||||||||||||
110 | if (qt_iconEngineFactoryLoader()->keyMap().key(QLatin1String("svg"), -1) != -1)
| 0 | ||||||||||||||||||
111 | m_supportsSvg = true; never executed: m_supportsSvg = true; | 0 | ||||||||||||||||||
112 | } never executed: end of block | 0 | ||||||||||||||||||
113 | } never executed: end of block | 0 | ||||||||||||||||||
114 | - | |||||||||||||||||||
115 | QIconLoader *QIconLoader::instance() | - | ||||||||||||||||||
116 | { | - | ||||||||||||||||||
117 | iconLoaderInstance()->ensureInitialized(); | - | ||||||||||||||||||
118 | return iconLoaderInstance(); never executed: return iconLoaderInstance(); | 0 | ||||||||||||||||||
119 | } | - | ||||||||||||||||||
120 | - | |||||||||||||||||||
121 | // Queries the system theme and invalidates existing | - | ||||||||||||||||||
122 | // icons if the theme has changed. | - | ||||||||||||||||||
123 | void QIconLoader::updateSystemTheme() | - | ||||||||||||||||||
124 | { | - | ||||||||||||||||||
125 | // Only change if this is not explicitly set by the user | - | ||||||||||||||||||
126 | if (m_userTheme.isEmpty()) {
| 0 | ||||||||||||||||||
127 | QString theme = systemThemeName(); | - | ||||||||||||||||||
128 | if (theme.isEmpty())
| 0 | ||||||||||||||||||
129 | theme = fallbackTheme(); never executed: theme = fallbackTheme(); | 0 | ||||||||||||||||||
130 | if (theme != m_systemTheme) {
| 0 | ||||||||||||||||||
131 | m_systemTheme = theme; | - | ||||||||||||||||||
132 | invalidateKey(); | - | ||||||||||||||||||
133 | } never executed: end of block | 0 | ||||||||||||||||||
134 | } never executed: end of block | 0 | ||||||||||||||||||
135 | } never executed: end of block | 0 | ||||||||||||||||||
136 | - | |||||||||||||||||||
137 | void QIconLoader::setThemeName(const QString &themeName) | - | ||||||||||||||||||
138 | { | - | ||||||||||||||||||
139 | m_userTheme = themeName; | - | ||||||||||||||||||
140 | invalidateKey(); | - | ||||||||||||||||||
141 | } never executed: end of block | 0 | ||||||||||||||||||
142 | - | |||||||||||||||||||
143 | void QIconLoader::setThemeSearchPath(const QStringList &searchPaths) | - | ||||||||||||||||||
144 | { | - | ||||||||||||||||||
145 | m_iconDirs = searchPaths; | - | ||||||||||||||||||
146 | themeList.clear(); | - | ||||||||||||||||||
147 | invalidateKey(); | - | ||||||||||||||||||
148 | } never executed: end of block | 0 | ||||||||||||||||||
149 | - | |||||||||||||||||||
150 | QStringList QIconLoader::themeSearchPaths() const | - | ||||||||||||||||||
151 | { | - | ||||||||||||||||||
152 | if (m_iconDirs.isEmpty()) {
| 0 | ||||||||||||||||||
153 | m_iconDirs = systemIconSearchPaths(); | - | ||||||||||||||||||
154 | // Always add resource directory as search path | - | ||||||||||||||||||
155 | m_iconDirs.append(QLatin1String(":/icons")); | - | ||||||||||||||||||
156 | } never executed: end of block | 0 | ||||||||||||||||||
157 | return m_iconDirs; never executed: return m_iconDirs; | 0 | ||||||||||||||||||
158 | } | - | ||||||||||||||||||
159 | - | |||||||||||||||||||
160 | /*! | - | ||||||||||||||||||
161 | \internal | - | ||||||||||||||||||
162 | Helper class that reads and looks up into the icon-theme.cache generated with | - | ||||||||||||||||||
163 | gtk-update-icon-cache. If at any point we detect a corruption in the file | - | ||||||||||||||||||
164 | (because the offsets point at wrong locations for example), the reader | - | ||||||||||||||||||
165 | is marked as invalid. | - | ||||||||||||||||||
166 | */ | - | ||||||||||||||||||
167 | class QIconCacheGtkReader | - | ||||||||||||||||||
168 | { | - | ||||||||||||||||||
169 | public: | - | ||||||||||||||||||
170 | explicit QIconCacheGtkReader(const QString &themeDir); | - | ||||||||||||||||||
171 | QVector<const char *> lookup(const QString &); | - | ||||||||||||||||||
172 | bool isValid() const { return m_isValid; } never executed: return m_isValid; | 0 | ||||||||||||||||||
173 | private: | - | ||||||||||||||||||
174 | QFile m_file; | - | ||||||||||||||||||
175 | const unsigned char *m_data; | - | ||||||||||||||||||
176 | quint64 m_size; | - | ||||||||||||||||||
177 | bool m_isValid; | - | ||||||||||||||||||
178 | - | |||||||||||||||||||
179 | quint16 read16(uint offset) | - | ||||||||||||||||||
180 | { | - | ||||||||||||||||||
181 | if (offset > m_size - 2 || (offset & 0x1)) {
| 0 | ||||||||||||||||||
182 | m_isValid = false; | - | ||||||||||||||||||
183 | return 0; never executed: return 0; | 0 | ||||||||||||||||||
184 | } | - | ||||||||||||||||||
185 | return m_data[offset+1] | m_data[offset] << 8; never executed: return m_data[offset+1] | m_data[offset] << 8; | 0 | ||||||||||||||||||
186 | } | - | ||||||||||||||||||
187 | quint32 read32(uint offset) | - | ||||||||||||||||||
188 | { | - | ||||||||||||||||||
189 | if (offset > m_size - 4 || (offset & 0x3)) {
| 0 | ||||||||||||||||||
190 | m_isValid = false; | - | ||||||||||||||||||
191 | return 0; never executed: return 0; | 0 | ||||||||||||||||||
192 | } | - | ||||||||||||||||||
193 | return m_data[offset+3] | m_data[offset+2] << 8 never executed: return m_data[offset+3] | m_data[offset+2] << 8 | m_data[offset+1] << 16 | m_data[offset] << 24; | 0 | ||||||||||||||||||
194 | | m_data[offset+1] << 16 | m_data[offset] << 24; never executed: return m_data[offset+3] | m_data[offset+2] << 8 | m_data[offset+1] << 16 | m_data[offset] << 24; | 0 | ||||||||||||||||||
195 | } | - | ||||||||||||||||||
196 | }; | - | ||||||||||||||||||
197 | - | |||||||||||||||||||
198 | - | |||||||||||||||||||
199 | QIconCacheGtkReader::QIconCacheGtkReader(const QString &dirName) | - | ||||||||||||||||||
200 | : m_isValid(false) | - | ||||||||||||||||||
201 | { | - | ||||||||||||||||||
202 | QFileInfo info(dirName + QLatin1Literal("/icon-theme.cache")); | - | ||||||||||||||||||
203 | if (!info.exists() || info.lastModified() < QFileInfo(dirName).lastModified())
| 0 | ||||||||||||||||||
204 | return; never executed: return; | 0 | ||||||||||||||||||
205 | m_file.setFileName(info.absoluteFilePath()); | - | ||||||||||||||||||
206 | if (!m_file.open(QFile::ReadOnly))
| 0 | ||||||||||||||||||
207 | return; never executed: return; | 0 | ||||||||||||||||||
208 | m_size = m_file.size(); | - | ||||||||||||||||||
209 | m_data = m_file.map(0, m_size); | - | ||||||||||||||||||
210 | if (!m_data)
| 0 | ||||||||||||||||||
211 | return; never executed: return; | 0 | ||||||||||||||||||
212 | if (read16(0) != 1) // VERSION_MAJOR
| 0 | ||||||||||||||||||
213 | return; never executed: return; | 0 | ||||||||||||||||||
214 | - | |||||||||||||||||||
215 | m_isValid = true; | - | ||||||||||||||||||
216 | - | |||||||||||||||||||
217 | // Check that all the directories are older than the cache | - | ||||||||||||||||||
218 | auto lastModified = info.lastModified(); | - | ||||||||||||||||||
219 | quint32 dirListOffset = read32(8); | - | ||||||||||||||||||
220 | quint32 dirListLen = read32(dirListOffset); | - | ||||||||||||||||||
221 | for (uint i = 0; i < dirListLen; ++i) {
| 0 | ||||||||||||||||||
222 | quint32 offset = read32(dirListOffset + 4 + 4 * i); | - | ||||||||||||||||||
223 | if (!m_isValid || offset >= m_size || lastModified < QFileInfo(dirName + QLatin1Char('/')
| 0 | ||||||||||||||||||
224 | + QString::fromUtf8(reinterpret_cast<const char*>(m_data + offset))).lastModified()) {
| 0 | ||||||||||||||||||
225 | m_isValid = false; | - | ||||||||||||||||||
226 | return; never executed: return; | 0 | ||||||||||||||||||
227 | } | - | ||||||||||||||||||
228 | } never executed: end of block | 0 | ||||||||||||||||||
229 | } never executed: end of block | 0 | ||||||||||||||||||
230 | - | |||||||||||||||||||
231 | static quint32 icon_name_hash(const char *p) | - | ||||||||||||||||||
232 | { | - | ||||||||||||||||||
233 | quint32 h = static_cast<signed char>(*p); | - | ||||||||||||||||||
234 | for (p += 1; *p != '\0'; p++)
| 0 | ||||||||||||||||||
235 | h = (h << 5) - h + *p; never executed: h = (h << 5) - h + *p; | 0 | ||||||||||||||||||
236 | return h; never executed: return h; | 0 | ||||||||||||||||||
237 | } | - | ||||||||||||||||||
238 | - | |||||||||||||||||||
239 | /*! \internal | - | ||||||||||||||||||
240 | lookup the icon name and return the list of subdirectories in which an icon | - | ||||||||||||||||||
241 | with this name is present. The char* are pointers to the mapped data. | - | ||||||||||||||||||
242 | For example, this would return { "32x32/apps", "24x24/apps" , ... } | - | ||||||||||||||||||
243 | */ | - | ||||||||||||||||||
244 | QVector<const char *> QIconCacheGtkReader::lookup(const QString &name) | - | ||||||||||||||||||
245 | { | - | ||||||||||||||||||
246 | QVector<const char *> ret; | - | ||||||||||||||||||
247 | if (!isValid())
| 0 | ||||||||||||||||||
248 | return ret; never executed: return ret; | 0 | ||||||||||||||||||
249 | - | |||||||||||||||||||
250 | QByteArray nameUtf8 = name.toUtf8(); | - | ||||||||||||||||||
251 | quint32 hash = icon_name_hash(nameUtf8); | - | ||||||||||||||||||
252 | - | |||||||||||||||||||
253 | quint32 hashOffset = read32(4); | - | ||||||||||||||||||
254 | quint32 hashBucketCount = read32(hashOffset); | - | ||||||||||||||||||
255 | - | |||||||||||||||||||
256 | if (!isValid() || hashBucketCount == 0) {
| 0 | ||||||||||||||||||
257 | m_isValid = false; | - | ||||||||||||||||||
258 | return ret; never executed: return ret; | 0 | ||||||||||||||||||
259 | } | - | ||||||||||||||||||
260 | - | |||||||||||||||||||
261 | quint32 bucketIndex = hash % hashBucketCount; | - | ||||||||||||||||||
262 | quint32 bucketOffset = read32(hashOffset + 4 + bucketIndex * 4); | - | ||||||||||||||||||
263 | while (bucketOffset > 0 && bucketOffset <= m_size - 12) {
| 0 | ||||||||||||||||||
264 | quint32 nameOff = read32(bucketOffset + 4); | - | ||||||||||||||||||
265 | if (nameOff < m_size && strcmp(reinterpret_cast<const char*>(m_data + nameOff), nameUtf8) == 0) {
| 0 | ||||||||||||||||||
266 | quint32 dirListOffset = read32(8); | - | ||||||||||||||||||
267 | quint32 dirListLen = read32(dirListOffset); | - | ||||||||||||||||||
268 | - | |||||||||||||||||||
269 | quint32 listOffset = read32(bucketOffset+8); | - | ||||||||||||||||||
270 | quint32 listLen = read32(listOffset); | - | ||||||||||||||||||
271 | - | |||||||||||||||||||
272 | if (!m_isValid || listOffset + 4 + 8 * listLen > m_size) {
| 0 | ||||||||||||||||||
273 | m_isValid = false; | - | ||||||||||||||||||
274 | return ret; never executed: return ret; | 0 | ||||||||||||||||||
275 | } | - | ||||||||||||||||||
276 | - | |||||||||||||||||||
277 | ret.reserve(listLen); | - | ||||||||||||||||||
278 | for (uint j = 0; j < listLen && m_isValid; ++j) {
| 0 | ||||||||||||||||||
279 | quint32 dirIndex = read16(listOffset + 4 + 8 * j); | - | ||||||||||||||||||
280 | quint32 o = read32(dirListOffset + 4 + dirIndex*4); | - | ||||||||||||||||||
281 | if (!m_isValid || dirIndex >= dirListLen || o >= m_size) {
| 0 | ||||||||||||||||||
282 | m_isValid = false; | - | ||||||||||||||||||
283 | return ret; never executed: return ret; | 0 | ||||||||||||||||||
284 | } | - | ||||||||||||||||||
285 | ret.append(reinterpret_cast<const char*>(m_data) + o); | - | ||||||||||||||||||
286 | } never executed: end of block | 0 | ||||||||||||||||||
287 | return ret; never executed: return ret; | 0 | ||||||||||||||||||
288 | } | - | ||||||||||||||||||
289 | bucketOffset = read32(bucketOffset); | - | ||||||||||||||||||
290 | } never executed: end of block | 0 | ||||||||||||||||||
291 | return ret; never executed: return ret; | 0 | ||||||||||||||||||
292 | } | - | ||||||||||||||||||
293 | - | |||||||||||||||||||
294 | QIconTheme::QIconTheme(const QString &themeName) | - | ||||||||||||||||||
295 | : m_valid(false) | - | ||||||||||||||||||
296 | { | - | ||||||||||||||||||
297 | QFile themeIndex; | - | ||||||||||||||||||
298 | - | |||||||||||||||||||
299 | const QStringList iconDirs = QIcon::themeSearchPaths(); | - | ||||||||||||||||||
300 | for ( int i = 0 ; i < iconDirs.size() ; ++i) {
| 0 | ||||||||||||||||||
301 | QDir iconDir(iconDirs[i]); | - | ||||||||||||||||||
302 | QString themeDir = iconDir.path() + QLatin1Char('/') + themeName; | - | ||||||||||||||||||
303 | QFileInfo themeDirInfo(themeDir); | - | ||||||||||||||||||
304 | - | |||||||||||||||||||
305 | if (themeDirInfo.isDir()) {
| 0 | ||||||||||||||||||
306 | m_contentDirs << themeDir; | - | ||||||||||||||||||
307 | m_gtkCaches << QSharedPointer<QIconCacheGtkReader>::create(themeDir); | - | ||||||||||||||||||
308 | } never executed: end of block | 0 | ||||||||||||||||||
309 | - | |||||||||||||||||||
310 | if (!m_valid) {
| 0 | ||||||||||||||||||
311 | themeIndex.setFileName(themeDir + QLatin1String("/index.theme")); | - | ||||||||||||||||||
312 | if (themeIndex.exists())
| 0 | ||||||||||||||||||
313 | m_valid = true; never executed: m_valid = true; | 0 | ||||||||||||||||||
314 | } never executed: end of block | 0 | ||||||||||||||||||
315 | } never executed: end of block | 0 | ||||||||||||||||||
316 | #ifndef QT_NO_SETTINGS | - | ||||||||||||||||||
317 | if (themeIndex.exists()) {
| 0 | ||||||||||||||||||
318 | const QSettings indexReader(themeIndex.fileName(), QSettings::IniFormat); | - | ||||||||||||||||||
319 | QStringListIterator keyIterator(indexReader.allKeys()); | - | ||||||||||||||||||
320 | while (keyIterator.hasNext()) {
| 0 | ||||||||||||||||||
321 | - | |||||||||||||||||||
322 | const QString key = keyIterator.next(); | - | ||||||||||||||||||
323 | if (key.endsWith(QLatin1String("/Size"))) {
| 0 | ||||||||||||||||||
324 | // Note the QSettings ini-format does not accept | - | ||||||||||||||||||
325 | // slashes in key names, hence we have to cheat | - | ||||||||||||||||||
326 | if (int size = indexReader.value(key).toInt()) {
| 0 | ||||||||||||||||||
327 | QString directoryKey = key.left(key.size() - 5); | - | ||||||||||||||||||
328 | QIconDirInfo dirInfo(directoryKey); | - | ||||||||||||||||||
329 | dirInfo.size = size; | - | ||||||||||||||||||
330 | QString type = indexReader.value(directoryKey + | - | ||||||||||||||||||
331 | QLatin1String("/Type") | - | ||||||||||||||||||
332 | ).toString(); | - | ||||||||||||||||||
333 | - | |||||||||||||||||||
334 | if (type == QLatin1String("Fixed"))
| 0 | ||||||||||||||||||
335 | dirInfo.type = QIconDirInfo::Fixed; never executed: dirInfo.type = QIconDirInfo::Fixed; | 0 | ||||||||||||||||||
336 | else if (type == QLatin1String("Scalable"))
| 0 | ||||||||||||||||||
337 | dirInfo.type = QIconDirInfo::Scalable; never executed: dirInfo.type = QIconDirInfo::Scalable; | 0 | ||||||||||||||||||
338 | else | - | ||||||||||||||||||
339 | dirInfo.type = QIconDirInfo::Threshold; never executed: dirInfo.type = QIconDirInfo::Threshold; | 0 | ||||||||||||||||||
340 | - | |||||||||||||||||||
341 | dirInfo.threshold = indexReader.value(directoryKey + | - | ||||||||||||||||||
342 | QLatin1String("/Threshold"), | - | ||||||||||||||||||
343 | 2).toInt(); | - | ||||||||||||||||||
344 | - | |||||||||||||||||||
345 | dirInfo.minSize = indexReader.value(directoryKey + | - | ||||||||||||||||||
346 | QLatin1String("/MinSize"), | - | ||||||||||||||||||
347 | size).toInt(); | - | ||||||||||||||||||
348 | - | |||||||||||||||||||
349 | dirInfo.maxSize = indexReader.value(directoryKey + | - | ||||||||||||||||||
350 | QLatin1String("/MaxSize"), | - | ||||||||||||||||||
351 | size).toInt(); | - | ||||||||||||||||||
352 | m_keyList.append(dirInfo); | - | ||||||||||||||||||
353 | } never executed: end of block | 0 | ||||||||||||||||||
354 | } never executed: end of block | 0 | ||||||||||||||||||
355 | } never executed: end of block | 0 | ||||||||||||||||||
356 | - | |||||||||||||||||||
357 | // Parent themes provide fallbacks for missing icons | - | ||||||||||||||||||
358 | m_parents = indexReader.value( | - | ||||||||||||||||||
359 | QLatin1String("Icon Theme/Inherits")).toStringList(); | - | ||||||||||||||||||
360 | m_parents.removeAll(QString()); | - | ||||||||||||||||||
361 | - | |||||||||||||||||||
362 | // Ensure a default platform fallback for all themes | - | ||||||||||||||||||
363 | if (m_parents.isEmpty()) {
| 0 | ||||||||||||||||||
364 | const QString fallback = fallbackTheme(); | - | ||||||||||||||||||
365 | if (!fallback.isEmpty())
| 0 | ||||||||||||||||||
366 | m_parents.append(fallback); never executed: m_parents.append(fallback); | 0 | ||||||||||||||||||
367 | } never executed: end of block | 0 | ||||||||||||||||||
368 | - | |||||||||||||||||||
369 | // Ensure that all themes fall back to hicolor | - | ||||||||||||||||||
370 | if (!m_parents.contains(QLatin1String("hicolor")))
| 0 | ||||||||||||||||||
371 | m_parents.append(QLatin1String("hicolor")); never executed: m_parents.append(QLatin1String("hicolor")); | 0 | ||||||||||||||||||
372 | } never executed: end of block | 0 | ||||||||||||||||||
373 | #endif //QT_NO_SETTINGS | - | ||||||||||||||||||
374 | } never executed: end of block | 0 | ||||||||||||||||||
375 | - | |||||||||||||||||||
376 | QThemeIconInfo QIconLoader::findIconHelper(const QString &themeName, | - | ||||||||||||||||||
377 | const QString &iconName, | - | ||||||||||||||||||
378 | QStringList &visited) const | - | ||||||||||||||||||
379 | { | - | ||||||||||||||||||
380 | QThemeIconInfo info; | - | ||||||||||||||||||
381 | Q_ASSERT(!themeName.isEmpty()); | - | ||||||||||||||||||
382 | - | |||||||||||||||||||
383 | // Used to protect against potential recursions | - | ||||||||||||||||||
384 | visited << themeName; | - | ||||||||||||||||||
385 | - | |||||||||||||||||||
386 | QIconTheme theme = themeList.value(themeName); | - | ||||||||||||||||||
387 | if (!theme.isValid()) {
| 0 | ||||||||||||||||||
388 | theme = QIconTheme(themeName); | - | ||||||||||||||||||
389 | if (!theme.isValid())
| 0 | ||||||||||||||||||
390 | theme = QIconTheme(fallbackTheme()); never executed: theme = QIconTheme(fallbackTheme()); | 0 | ||||||||||||||||||
391 | - | |||||||||||||||||||
392 | themeList.insert(themeName, theme); | - | ||||||||||||||||||
393 | } never executed: end of block | 0 | ||||||||||||||||||
394 | - | |||||||||||||||||||
395 | const QStringList contentDirs = theme.contentDirs(); | - | ||||||||||||||||||
396 | - | |||||||||||||||||||
397 | QString iconNameFallback = iconName; | - | ||||||||||||||||||
398 | - | |||||||||||||||||||
399 | // Iterate through all icon's fallbacks in current theme | - | ||||||||||||||||||
400 | while (info.entries.isEmpty()) {
| 0 | ||||||||||||||||||
401 | const QString svgIconName = iconNameFallback + QLatin1String(".svg"); | - | ||||||||||||||||||
402 | const QString pngIconName = iconNameFallback + QLatin1String(".png"); | - | ||||||||||||||||||
403 | - | |||||||||||||||||||
404 | // Add all relevant files | - | ||||||||||||||||||
405 | for (int i = 0; i < contentDirs.size(); ++i) {
| 0 | ||||||||||||||||||
406 | QVector<QIconDirInfo> subDirs = theme.keyList(); | - | ||||||||||||||||||
407 | - | |||||||||||||||||||
408 | // Try to reduce the amount of subDirs by looking in the GTK+ cache in order to save | - | ||||||||||||||||||
409 | // a massive amount of file stat (especially if the icon is not there) | - | ||||||||||||||||||
410 | auto cache = theme.m_gtkCaches.at(i); | - | ||||||||||||||||||
411 | if (cache->isValid()) {
| 0 | ||||||||||||||||||
412 | const auto result = cache->lookup(iconNameFallback); | - | ||||||||||||||||||
413 | if (cache->isValid()) {
| 0 | ||||||||||||||||||
414 | const QVector<QIconDirInfo> subDirsCopy = subDirs; | - | ||||||||||||||||||
415 | subDirs.clear(); | - | ||||||||||||||||||
416 | subDirs.reserve(result.count()); | - | ||||||||||||||||||
417 | for (const char *s : result) { | - | ||||||||||||||||||
418 | QString path = QString::fromUtf8(s); | - | ||||||||||||||||||
419 | auto it = std::find_if(subDirsCopy.cbegin(), subDirsCopy.cend(), | - | ||||||||||||||||||
420 | [&](const QIconDirInfo &info) { | - | ||||||||||||||||||
421 | return info.path == path; } ); never executed: return info.path == path; | 0 | ||||||||||||||||||
422 | if (it != subDirsCopy.cend()) {
| 0 | ||||||||||||||||||
423 | subDirs.append(*it); | - | ||||||||||||||||||
424 | } never executed: end of block | 0 | ||||||||||||||||||
425 | } never executed: end of block | 0 | ||||||||||||||||||
426 | } never executed: end of block | 0 | ||||||||||||||||||
427 | } never executed: end of block | 0 | ||||||||||||||||||
428 | - | |||||||||||||||||||
429 | QString contentDir = contentDirs.at(i) + QLatin1Char('/'); | - | ||||||||||||||||||
430 | for (int j = 0; j < subDirs.size() ; ++j) {
| 0 | ||||||||||||||||||
431 | const QIconDirInfo &dirInfo = subDirs.at(j); | - | ||||||||||||||||||
432 | QString subdir = dirInfo.path; | - | ||||||||||||||||||
433 | QDir currentDir(contentDir + subdir); | - | ||||||||||||||||||
434 | if (currentDir.exists(pngIconName)) {
| 0 | ||||||||||||||||||
435 | PixmapEntry *iconEntry = new PixmapEntry; | - | ||||||||||||||||||
436 | iconEntry->dir = dirInfo; | - | ||||||||||||||||||
437 | iconEntry->filename = currentDir.filePath(pngIconName); | - | ||||||||||||||||||
438 | // Notice we ensure that pixmap entries always come before | - | ||||||||||||||||||
439 | // scalable to preserve search order afterwards | - | ||||||||||||||||||
440 | info.entries.prepend(iconEntry); | - | ||||||||||||||||||
441 | } else if (m_supportsSvg && never executed: end of block
| 0 | ||||||||||||||||||
442 | currentDir.exists(svgIconName)) {
| 0 | ||||||||||||||||||
443 | ScalableEntry *iconEntry = new ScalableEntry; | - | ||||||||||||||||||
444 | iconEntry->dir = dirInfo; | - | ||||||||||||||||||
445 | iconEntry->filename = currentDir.filePath(svgIconName); | - | ||||||||||||||||||
446 | info.entries.append(iconEntry); | - | ||||||||||||||||||
447 | } never executed: end of block | 0 | ||||||||||||||||||
448 | } never executed: end of block | 0 | ||||||||||||||||||
449 | } never executed: end of block | 0 | ||||||||||||||||||
450 | - | |||||||||||||||||||
451 | if (!info.entries.isEmpty()) {
| 0 | ||||||||||||||||||
452 | info.iconName = iconNameFallback; | - | ||||||||||||||||||
453 | break; never executed: break; | 0 | ||||||||||||||||||
454 | } | - | ||||||||||||||||||
455 | - | |||||||||||||||||||
456 | // If it's possible - find next fallback for the icon | - | ||||||||||||||||||
457 | const int indexOfDash = iconNameFallback.lastIndexOf(QLatin1Char('-')); | - | ||||||||||||||||||
458 | if (indexOfDash == -1)
| 0 | ||||||||||||||||||
459 | break; never executed: break; | 0 | ||||||||||||||||||
460 | - | |||||||||||||||||||
461 | iconNameFallback.truncate(indexOfDash); | - | ||||||||||||||||||
462 | } never executed: end of block | 0 | ||||||||||||||||||
463 | - | |||||||||||||||||||
464 | if (info.entries.isEmpty()) {
| 0 | ||||||||||||||||||
465 | const QStringList parents = theme.parents(); | - | ||||||||||||||||||
466 | // Search recursively through inherited themes | - | ||||||||||||||||||
467 | for (int i = 0 ; i < parents.size() ; ++i) {
| 0 | ||||||||||||||||||
468 | - | |||||||||||||||||||
469 | const QString parentTheme = parents.at(i).trimmed(); | - | ||||||||||||||||||
470 | - | |||||||||||||||||||
471 | if (!visited.contains(parentTheme)) // guard against recursion
| 0 | ||||||||||||||||||
472 | info = findIconHelper(parentTheme, iconName, visited); never executed: info = findIconHelper(parentTheme, iconName, visited); | 0 | ||||||||||||||||||
473 | - | |||||||||||||||||||
474 | if (!info.entries.isEmpty()) // success
| 0 | ||||||||||||||||||
475 | break; never executed: break; | 0 | ||||||||||||||||||
476 | } never executed: end of block | 0 | ||||||||||||||||||
477 | } never executed: end of block | 0 | ||||||||||||||||||
478 | return info; never executed: return info; | 0 | ||||||||||||||||||
479 | } | - | ||||||||||||||||||
480 | - | |||||||||||||||||||
481 | QThemeIconInfo QIconLoader::loadIcon(const QString &name) const | - | ||||||||||||||||||
482 | { | - | ||||||||||||||||||
483 | if (!themeName().isEmpty()) {
| 0 | ||||||||||||||||||
484 | QStringList visited; | - | ||||||||||||||||||
485 | return findIconHelper(themeName(), name, visited); never executed: return findIconHelper(themeName(), name, visited); | 0 | ||||||||||||||||||
486 | } | - | ||||||||||||||||||
487 | - | |||||||||||||||||||
488 | return QThemeIconInfo(); never executed: return QThemeIconInfo(); | 0 | ||||||||||||||||||
489 | } | - | ||||||||||||||||||
490 | - | |||||||||||||||||||
491 | - | |||||||||||||||||||
492 | // -------- Icon Loader Engine -------- // | - | ||||||||||||||||||
493 | - | |||||||||||||||||||
494 | - | |||||||||||||||||||
495 | QIconLoaderEngine::QIconLoaderEngine(const QString& iconName) | - | ||||||||||||||||||
496 | : m_iconName(iconName), m_key(0) | - | ||||||||||||||||||
497 | { | - | ||||||||||||||||||
498 | } never executed: end of block | 0 | ||||||||||||||||||
499 | - | |||||||||||||||||||
500 | QIconLoaderEngine::~QIconLoaderEngine() | - | ||||||||||||||||||
501 | { | - | ||||||||||||||||||
502 | qDeleteAll(m_info.entries); | - | ||||||||||||||||||
503 | } never executed: end of block | 0 | ||||||||||||||||||
504 | - | |||||||||||||||||||
505 | QIconLoaderEngine::QIconLoaderEngine(const QIconLoaderEngine &other) | - | ||||||||||||||||||
506 | : QIconEngine(other), | - | ||||||||||||||||||
507 | m_iconName(other.m_iconName), | - | ||||||||||||||||||
508 | m_key(0) | - | ||||||||||||||||||
509 | { | - | ||||||||||||||||||
510 | } never executed: end of block | 0 | ||||||||||||||||||
511 | - | |||||||||||||||||||
512 | QIconEngine *QIconLoaderEngine::clone() const | - | ||||||||||||||||||
513 | { | - | ||||||||||||||||||
514 | return new QIconLoaderEngine(*this); never executed: return new QIconLoaderEngine(*this); | 0 | ||||||||||||||||||
515 | } | - | ||||||||||||||||||
516 | - | |||||||||||||||||||
517 | bool QIconLoaderEngine::read(QDataStream &in) { | - | ||||||||||||||||||
518 | in >> m_iconName; | - | ||||||||||||||||||
519 | return true; never executed: return true; | 0 | ||||||||||||||||||
520 | } | - | ||||||||||||||||||
521 | - | |||||||||||||||||||
522 | bool QIconLoaderEngine::write(QDataStream &out) const | - | ||||||||||||||||||
523 | { | - | ||||||||||||||||||
524 | out << m_iconName; | - | ||||||||||||||||||
525 | return true; never executed: return true; | 0 | ||||||||||||||||||
526 | } | - | ||||||||||||||||||
527 | - | |||||||||||||||||||
528 | bool QIconLoaderEngine::hasIcon() const | - | ||||||||||||||||||
529 | { | - | ||||||||||||||||||
530 | return !(m_info.entries.isEmpty()); never executed: return !(m_info.entries.isEmpty()); | 0 | ||||||||||||||||||
531 | } | - | ||||||||||||||||||
532 | - | |||||||||||||||||||
533 | // Lazily load the icon | - | ||||||||||||||||||
534 | void QIconLoaderEngine::ensureLoaded() | - | ||||||||||||||||||
535 | { | - | ||||||||||||||||||
536 | if (!(QIconLoader::instance()->themeKey() == m_key)) {
| 0 | ||||||||||||||||||
537 | qDeleteAll(m_info.entries); | - | ||||||||||||||||||
538 | m_info.entries.clear(); | - | ||||||||||||||||||
539 | m_info.iconName.clear(); | - | ||||||||||||||||||
540 | - | |||||||||||||||||||
541 | Q_ASSERT(m_info.entries.size() == 0); | - | ||||||||||||||||||
542 | m_info = QIconLoader::instance()->loadIcon(m_iconName); | - | ||||||||||||||||||
543 | m_key = QIconLoader::instance()->themeKey(); | - | ||||||||||||||||||
544 | } never executed: end of block | 0 | ||||||||||||||||||
545 | } never executed: end of block | 0 | ||||||||||||||||||
546 | - | |||||||||||||||||||
547 | void QIconLoaderEngine::paint(QPainter *painter, const QRect &rect, | - | ||||||||||||||||||
548 | QIcon::Mode mode, QIcon::State state) | - | ||||||||||||||||||
549 | { | - | ||||||||||||||||||
550 | QSize pixmapSize = rect.size(); | - | ||||||||||||||||||
551 | painter->drawPixmap(rect, pixmap(pixmapSize, mode, state)); | - | ||||||||||||||||||
552 | } never executed: end of block | 0 | ||||||||||||||||||
553 | - | |||||||||||||||||||
554 | /* | - | ||||||||||||||||||
555 | * This algorithm is defined by the freedesktop spec: | - | ||||||||||||||||||
556 | * http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html | - | ||||||||||||||||||
557 | */ | - | ||||||||||||||||||
558 | static bool directoryMatchesSize(const QIconDirInfo &dir, int iconsize) | - | ||||||||||||||||||
559 | { | - | ||||||||||||||||||
560 | if (dir.type == QIconDirInfo::Fixed) {
| 0 | ||||||||||||||||||
561 | return dir.size == iconsize; never executed: return dir.size == iconsize; | 0 | ||||||||||||||||||
562 | - | |||||||||||||||||||
563 | } else if (dir.type == QIconDirInfo::Scalable) {
| 0 | ||||||||||||||||||
564 | return iconsize <= dir.maxSize && never executed: return iconsize <= dir.maxSize && iconsize >= dir.minSize; | 0 | ||||||||||||||||||
565 | iconsize >= dir.minSize; never executed: return iconsize <= dir.maxSize && iconsize >= dir.minSize; | 0 | ||||||||||||||||||
566 | - | |||||||||||||||||||
567 | } else if (dir.type == QIconDirInfo::Threshold) {
| 0 | ||||||||||||||||||
568 | return iconsize >= dir.size - dir.threshold && never executed: return iconsize >= dir.size - dir.threshold && iconsize <= dir.size + dir.threshold; | 0 | ||||||||||||||||||
569 | iconsize <= dir.size + dir.threshold; never executed: return iconsize >= dir.size - dir.threshold && iconsize <= dir.size + dir.threshold; | 0 | ||||||||||||||||||
570 | } | - | ||||||||||||||||||
571 | - | |||||||||||||||||||
572 | Q_ASSERT(1); // Not a valid value | - | ||||||||||||||||||
573 | return false; never executed: return false; | 0 | ||||||||||||||||||
574 | } | - | ||||||||||||||||||
575 | - | |||||||||||||||||||
576 | /* | - | ||||||||||||||||||
577 | * This algorithm is defined by the freedesktop spec: | - | ||||||||||||||||||
578 | * http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html | - | ||||||||||||||||||
579 | */ | - | ||||||||||||||||||
580 | static int directorySizeDistance(const QIconDirInfo &dir, int iconsize) | - | ||||||||||||||||||
581 | { | - | ||||||||||||||||||
582 | if (dir.type == QIconDirInfo::Fixed) {
| 0 | ||||||||||||||||||
583 | return qAbs(dir.size - iconsize); never executed: return qAbs(dir.size - iconsize); | 0 | ||||||||||||||||||
584 | - | |||||||||||||||||||
585 | } else if (dir.type == QIconDirInfo::Scalable) {
| 0 | ||||||||||||||||||
586 | if (iconsize < dir.minSize)
| 0 | ||||||||||||||||||
587 | return dir.minSize - iconsize; never executed: return dir.minSize - iconsize; | 0 | ||||||||||||||||||
588 | else if (iconsize > dir.maxSize)
| 0 | ||||||||||||||||||
589 | return iconsize - dir.maxSize; never executed: return iconsize - dir.maxSize; | 0 | ||||||||||||||||||
590 | else | - | ||||||||||||||||||
591 | return 0; never executed: return 0; | 0 | ||||||||||||||||||
592 | - | |||||||||||||||||||
593 | } else if (dir.type == QIconDirInfo::Threshold) {
| 0 | ||||||||||||||||||
594 | if (iconsize < dir.size - dir.threshold)
| 0 | ||||||||||||||||||
595 | return dir.minSize - iconsize; never executed: return dir.minSize - iconsize; | 0 | ||||||||||||||||||
596 | else if (iconsize > dir.size + dir.threshold)
| 0 | ||||||||||||||||||
597 | return iconsize - dir.maxSize; never executed: return iconsize - dir.maxSize; | 0 | ||||||||||||||||||
598 | else return 0; never executed: return 0; | 0 | ||||||||||||||||||
599 | } | - | ||||||||||||||||||
600 | - | |||||||||||||||||||
601 | Q_ASSERT(1); // Not a valid value | - | ||||||||||||||||||
602 | return INT_MAX; never executed: return 2147483647; | 0 | ||||||||||||||||||
603 | } | - | ||||||||||||||||||
604 | - | |||||||||||||||||||
605 | QIconLoaderEngineEntry *QIconLoaderEngine::entryForSize(const QSize &size) | - | ||||||||||||||||||
606 | { | - | ||||||||||||||||||
607 | int iconsize = qMin(size.width(), size.height()); | - | ||||||||||||||||||
608 | - | |||||||||||||||||||
609 | // Note that m_info.entries are sorted so that png-files | - | ||||||||||||||||||
610 | // come first | - | ||||||||||||||||||
611 | - | |||||||||||||||||||
612 | const int numEntries = m_info.entries.size(); | - | ||||||||||||||||||
613 | - | |||||||||||||||||||
614 | // Search for exact matches first | - | ||||||||||||||||||
615 | for (int i = 0; i < numEntries; ++i) {
| 0 | ||||||||||||||||||
616 | QIconLoaderEngineEntry *entry = m_info.entries.at(i); | - | ||||||||||||||||||
617 | if (directoryMatchesSize(entry->dir, iconsize)) {
| 0 | ||||||||||||||||||
618 | return entry; never executed: return entry; | 0 | ||||||||||||||||||
619 | } | - | ||||||||||||||||||
620 | } never executed: end of block | 0 | ||||||||||||||||||
621 | - | |||||||||||||||||||
622 | // Find the minimum distance icon | - | ||||||||||||||||||
623 | int minimalSize = INT_MAX; | - | ||||||||||||||||||
624 | QIconLoaderEngineEntry *closestMatch = 0; | - | ||||||||||||||||||
625 | for (int i = 0; i < numEntries; ++i) {
| 0 | ||||||||||||||||||
626 | QIconLoaderEngineEntry *entry = m_info.entries.at(i); | - | ||||||||||||||||||
627 | int distance = directorySizeDistance(entry->dir, iconsize); | - | ||||||||||||||||||
628 | if (distance < minimalSize) {
| 0 | ||||||||||||||||||
629 | minimalSize = distance; | - | ||||||||||||||||||
630 | closestMatch = entry; | - | ||||||||||||||||||
631 | } never executed: end of block | 0 | ||||||||||||||||||
632 | } never executed: end of block | 0 | ||||||||||||||||||
633 | return closestMatch; never executed: return closestMatch; | 0 | ||||||||||||||||||
634 | } | - | ||||||||||||||||||
635 | - | |||||||||||||||||||
636 | /* | - | ||||||||||||||||||
637 | * Returns the actual icon size. For scalable svg's this is equivalent | - | ||||||||||||||||||
638 | * to the requested size. Otherwise the closest match is returned but | - | ||||||||||||||||||
639 | * we can never return a bigger size than the requested size. | - | ||||||||||||||||||
640 | * | - | ||||||||||||||||||
641 | */ | - | ||||||||||||||||||
642 | QSize QIconLoaderEngine::actualSize(const QSize &size, QIcon::Mode mode, | - | ||||||||||||||||||
643 | QIcon::State state) | - | ||||||||||||||||||
644 | { | - | ||||||||||||||||||
645 | ensureLoaded(); | - | ||||||||||||||||||
646 | - | |||||||||||||||||||
647 | QIconLoaderEngineEntry *entry = entryForSize(size); | - | ||||||||||||||||||
648 | if (entry) {
| 0 | ||||||||||||||||||
649 | const QIconDirInfo &dir = entry->dir; | - | ||||||||||||||||||
650 | if (dir.type == QIconDirInfo::Scalable)
| 0 | ||||||||||||||||||
651 | return size; never executed: return size; | 0 | ||||||||||||||||||
652 | else { | - | ||||||||||||||||||
653 | int result = qMin<int>(dir.size, qMin(size.width(), size.height())); | - | ||||||||||||||||||
654 | return QSize(result, result); never executed: return QSize(result, result); | 0 | ||||||||||||||||||
655 | } | - | ||||||||||||||||||
656 | } | - | ||||||||||||||||||
657 | return QIconEngine::actualSize(size, mode, state); never executed: return QIconEngine::actualSize(size, mode, state); | 0 | ||||||||||||||||||
658 | } | - | ||||||||||||||||||
659 | - | |||||||||||||||||||
660 | QPixmap PixmapEntry::pixmap(const QSize &size, QIcon::Mode mode, QIcon::State state) | - | ||||||||||||||||||
661 | { | - | ||||||||||||||||||
662 | Q_UNUSED(state); | - | ||||||||||||||||||
663 | - | |||||||||||||||||||
664 | // Ensure that basePixmap is lazily initialized before generating the | - | ||||||||||||||||||
665 | // key, otherwise the cache key is not unique | - | ||||||||||||||||||
666 | if (basePixmap.isNull())
| 0 | ||||||||||||||||||
667 | basePixmap.load(filename); never executed: basePixmap.load(filename); | 0 | ||||||||||||||||||
668 | - | |||||||||||||||||||
669 | QSize actualSize = basePixmap.size(); | - | ||||||||||||||||||
670 | if (!actualSize.isNull() && (actualSize.width() > size.width() || actualSize.height() > size.height()))
| 0 | ||||||||||||||||||
671 | actualSize.scale(size, Qt::KeepAspectRatio); never executed: actualSize.scale(size, Qt::KeepAspectRatio); | 0 | ||||||||||||||||||
672 | - | |||||||||||||||||||
673 | QString key = QLatin1String("$qt_theme_") | - | ||||||||||||||||||
674 | % HexString<qint64>(basePixmap.cacheKey()) | - | ||||||||||||||||||
675 | % HexString<int>(mode) | - | ||||||||||||||||||
676 | % HexString<qint64>(QGuiApplication::palette().cacheKey()) | - | ||||||||||||||||||
677 | % HexString<int>(actualSize.width()) | - | ||||||||||||||||||
678 | % HexString<int>(actualSize.height()); | - | ||||||||||||||||||
679 | - | |||||||||||||||||||
680 | QPixmap cachedPixmap; | - | ||||||||||||||||||
681 | if (QPixmapCache::find(key, &cachedPixmap)) {
| 0 | ||||||||||||||||||
682 | return cachedPixmap; never executed: return cachedPixmap; | 0 | ||||||||||||||||||
683 | } else { | - | ||||||||||||||||||
684 | if (basePixmap.size() != actualSize)
| 0 | ||||||||||||||||||
685 | cachedPixmap = basePixmap.scaled(actualSize, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); never executed: cachedPixmap = basePixmap.scaled(actualSize, Qt::IgnoreAspectRatio, Qt::SmoothTransformation); | 0 | ||||||||||||||||||
686 | else | - | ||||||||||||||||||
687 | cachedPixmap = basePixmap; never executed: cachedPixmap = basePixmap; | 0 | ||||||||||||||||||
688 | if (QGuiApplication *guiApp = qobject_cast<QGuiApplication *>(qApp))
| 0 | ||||||||||||||||||
689 | cachedPixmap = static_cast<QGuiApplicationPrivate*>(QObjectPrivate::get(guiApp))->applyQIconStyleHelper(mode, cachedPixmap); never executed: cachedPixmap = static_cast<QGuiApplicationPrivate*>(QObjectPrivate::get(guiApp))->applyQIconStyleHelper(mode, cachedPixmap); | 0 | ||||||||||||||||||
690 | QPixmapCache::insert(key, cachedPixmap); | - | ||||||||||||||||||
691 | } never executed: end of block | 0 | ||||||||||||||||||
692 | return cachedPixmap; never executed: return cachedPixmap; | 0 | ||||||||||||||||||
693 | } | - | ||||||||||||||||||
694 | - | |||||||||||||||||||
695 | QPixmap ScalableEntry::pixmap(const QSize &size, QIcon::Mode mode, QIcon::State state) | - | ||||||||||||||||||
696 | { | - | ||||||||||||||||||
697 | if (svgIcon.isNull())
| 0 | ||||||||||||||||||
698 | svgIcon = QIcon(filename); never executed: svgIcon = QIcon(filename); | 0 | ||||||||||||||||||
699 | - | |||||||||||||||||||
700 | // Simply reuse svg icon engine | - | ||||||||||||||||||
701 | return svgIcon.pixmap(size, mode, state); never executed: return svgIcon.pixmap(size, mode, state); | 0 | ||||||||||||||||||
702 | } | - | ||||||||||||||||||
703 | - | |||||||||||||||||||
704 | QPixmap QIconLoaderEngine::pixmap(const QSize &size, QIcon::Mode mode, | - | ||||||||||||||||||
705 | QIcon::State state) | - | ||||||||||||||||||
706 | { | - | ||||||||||||||||||
707 | ensureLoaded(); | - | ||||||||||||||||||
708 | - | |||||||||||||||||||
709 | QIconLoaderEngineEntry *entry = entryForSize(size); | - | ||||||||||||||||||
710 | if (entry)
| 0 | ||||||||||||||||||
711 | return entry->pixmap(size, mode, state); never executed: return entry->pixmap(size, mode, state); | 0 | ||||||||||||||||||
712 | - | |||||||||||||||||||
713 | return QPixmap(); never executed: return QPixmap(); | 0 | ||||||||||||||||||
714 | } | - | ||||||||||||||||||
715 | - | |||||||||||||||||||
716 | QString QIconLoaderEngine::key() const | - | ||||||||||||||||||
717 | { | - | ||||||||||||||||||
718 | return QLatin1String("QIconLoaderEngine"); never executed: return QLatin1String("QIconLoaderEngine"); | 0 | ||||||||||||||||||
719 | } | - | ||||||||||||||||||
720 | - | |||||||||||||||||||
721 | void QIconLoaderEngine::virtual_hook(int id, void *data) | - | ||||||||||||||||||
722 | { | - | ||||||||||||||||||
723 | ensureLoaded(); | - | ||||||||||||||||||
724 | - | |||||||||||||||||||
725 | switch (id) { | - | ||||||||||||||||||
726 | case QIconEngine::AvailableSizesHook: never executed: case QIconEngine::AvailableSizesHook: | 0 | ||||||||||||||||||
727 | { | - | ||||||||||||||||||
728 | QIconEngine::AvailableSizesArgument &arg | - | ||||||||||||||||||
729 | = *reinterpret_cast<QIconEngine::AvailableSizesArgument*>(data); | - | ||||||||||||||||||
730 | const int N = m_info.entries.size(); | - | ||||||||||||||||||
731 | QList<QSize> sizes; | - | ||||||||||||||||||
732 | sizes.reserve(N); | - | ||||||||||||||||||
733 | - | |||||||||||||||||||
734 | // Gets all sizes from the DirectoryInfo entries | - | ||||||||||||||||||
735 | for (int i = 0; i < N; ++i) {
| 0 | ||||||||||||||||||
736 | int size = m_info.entries.at(i)->dir.size; | - | ||||||||||||||||||
737 | sizes.append(QSize(size, size)); | - | ||||||||||||||||||
738 | } never executed: end of block | 0 | ||||||||||||||||||
739 | arg.sizes.swap(sizes); // commit | - | ||||||||||||||||||
740 | } | - | ||||||||||||||||||
741 | break; never executed: break; | 0 | ||||||||||||||||||
742 | case QIconEngine::IconNameHook: never executed: case QIconEngine::IconNameHook: | 0 | ||||||||||||||||||
743 | { | - | ||||||||||||||||||
744 | QString &name = *reinterpret_cast<QString*>(data); | - | ||||||||||||||||||
745 | name = m_info.iconName; | - | ||||||||||||||||||
746 | } | - | ||||||||||||||||||
747 | break; never executed: break; | 0 | ||||||||||||||||||
748 | case QIconEngine::IsNullHook: never executed: case QIconEngine::IsNullHook: | 0 | ||||||||||||||||||
749 | { | - | ||||||||||||||||||
750 | *reinterpret_cast<bool*>(data) = m_info.entries.isEmpty(); | - | ||||||||||||||||||
751 | } | - | ||||||||||||||||||
752 | break; never executed: break; | 0 | ||||||||||||||||||
753 | default: never executed: default: | 0 | ||||||||||||||||||
754 | QIconEngine::virtual_hook(id, data); | - | ||||||||||||||||||
755 | } never executed: end of block | 0 | ||||||||||||||||||
756 | } | - | ||||||||||||||||||
757 | - | |||||||||||||||||||
758 | QT_END_NAMESPACE | - | ||||||||||||||||||
759 | - | |||||||||||||||||||
760 | #endif //QT_NO_ICON | - | ||||||||||||||||||
Source code | Switch to Preprocessed file |