DtkDeclarative
DTK Declarative module
载入中...
搜索中...
未找到
dquickimageprovider_p.h
1// SPDX-FileCopyrightText: 2020 - 2022 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: LGPL-3.0-or-later
4
5#ifndef DQUICKIMAGEPROVIDER_P_H
6#define DQUICKIMAGEPROVIDER_P_H
7
8#include <QQuickImageProvider>
9
10#include <dtkdeclarative_global.h>
11
12DQUICK_BEGIN_NAMESPACE
13
14class DQuickIconProvider : public QQuickImageProvider
15{
16public:
18
19protected:
20 QImage requestImage(const QString &id, QSize *size, const QSize &requestedSize) override;
21};
22
23class DQuickDciIconProvider : public QQuickImageProvider
24{
25public:
27
28protected:
29 QImage requestImage(const QString &id, QSize *size, const QSize &requestedSize) override;
30};
31
32class ShadowImage;
33class DQuickShadowProvider : public QQuickImageProvider
34{
35public:
38
39 enum Type : quint8 {
40 Rectangle = 0,
41
42 Inner = 2
43 };
44
45 struct ShadowConfig {
46 quint8 type = Rectangle;
47 qreal topLeftRadius {0.0};
48 qreal topRightRadius {0.0};
49 qreal bottomLeftRadius {0.0};
50 qreal bottomRightRadius {0.0};
51 qreal blurRadius {0.0};
52 qreal spread {0.0};
53 qreal boxSize {0.0};
54
55 ShadowConfig() {}
56 ShadowConfig(const ShadowConfig &other)
57 : type(other.type)
58 , topLeftRadius(other.topLeftRadius)
59 , topRightRadius(other.topRightRadius)
60 , bottomLeftRadius(other.bottomLeftRadius)
61 , bottomRightRadius(other.bottomRightRadius)
62 , blurRadius(other.blurRadius)
63 , spread(other.spread)
64 , boxSize(other.boxSize) {}
65
66 inline bool isInner() const {
67 return type & Inner;
68 }
69
70 inline QString toString() const {
71 return QString("%1.%2.%3.%4.%5.%6.%7.%8").arg(type).
72 arg(topLeftRadius).arg(topRightRadius).arg(bottomLeftRadius).arg(bottomRightRadius).
73 arg(blurRadius).arg(spread).arg(boxSize);
74 }
75
76 inline ShadowConfig &operator=(const ShadowConfig &other) {
77 type = other.type;
78 topLeftRadius = other.topLeftRadius;
79 topRightRadius = other.topRightRadius;
80 bottomLeftRadius = other.bottomLeftRadius;
81 bottomRightRadius = other.bottomRightRadius;
82 blurRadius = other.blurRadius;
83 spread = other.spread;
84
85 return *this;
86 }
87
88 inline bool operator==(const ShadowConfig &other) const {
89 return type == other.type
90 && qFuzzyCompare(topLeftRadius, other.topLeftRadius)
91 && qFuzzyCompare(topRightRadius, other.topRightRadius)
92 && qFuzzyCompare(bottomLeftRadius, other.bottomLeftRadius)
93 && qFuzzyCompare(bottomRightRadius, other.bottomRightRadius)
94 && qFuzzyCompare(blurRadius, other.blurRadius)
95 && qFuzzyCompare(spread, other.spread)
96 && qFuzzyCompare(boxSize, other.boxSize);
97 }
98 inline bool operator!=(const ShadowConfig &other) const {
99 return !operator==(other);
100 }
101
102 friend Q_CORE_EXPORT uint qHash(const ShadowConfig &config, uint seed) noexcept;
103 };
104
105 static QUrl toUrl(qreal boxSize, qreal topLeftRadius, qreal topRightRadius, qreal bottomLeftRadius, qreal bottomRightRadius, qreal shadowBlur, QColor color,
106 qreal xOffset, qreal yOffset, qreal spread, bool hollow, bool inner);
107
108protected:
109 QImage requestImage(const QString &id, QSize *size, const QSize &requestedSize) override;
110
111 inline static QString getShadowFilePath(const DQuickShadowProvider::ShadowConfig &config)
112 {
113 return ":/dtk/declarative/shadow/" + config.toString() + ".png";
114 }
115 ShadowImage *getRawShadow(const ShadowConfig &config);
116
117private:
118 friend class ShadowImage;
119 QHash<ShadowConfig, ShadowImage*> cache;
120};
121
122inline uint qHash(const DTK_QUICK_NAMESPACE::DQuickShadowProvider::ShadowConfig &config, uint seed = 0) noexcept {
123 return QT_PREPEND_NAMESPACE(qHash)(static_cast<uint>(config.type), seed) ^
124 QT_PREPEND_NAMESPACE(qHash)(config.topLeftRadius, seed) ^
125 QT_PREPEND_NAMESPACE(qHash)(config.topRightRadius, seed) ^
126 QT_PREPEND_NAMESPACE(qHash)(config.bottomLeftRadius, seed) ^
127 QT_PREPEND_NAMESPACE(qHash)(config.bottomRightRadius, seed) ^
128 QT_PREPEND_NAMESPACE(qHash)(config.blurRadius, seed) ^
129 QT_PREPEND_NAMESPACE(qHash)(config.spread, seed);
130}
131
132DQUICK_END_NAMESPACE
133
134#endif // DQUICKIMAGEPROVIDER_P_H
Definition dquickimageprovider_p.h:24
Definition dquickimageprovider_p.h:15
Definition dquickimageprovider_p.h:34
Definition dquickimageprovider.cpp:270
Definition dquickimageprovider_p.h:45