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};
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) {}
66 inline bool isInner()
const {
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);
78 topLeftRadius = other.topLeftRadius;
79 topRightRadius = other.topRightRadius;
80 bottomLeftRadius = other.bottomLeftRadius;
81 bottomRightRadius = other.bottomRightRadius;
82 blurRadius = other.blurRadius;
83 spread = other.spread;
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);
98 inline bool operator!=(
const ShadowConfig &other)
const {
99 return !operator==(other);
102 friend Q_CORE_EXPORT uint qHash(
const ShadowConfig &config, uint seed)
noexcept;
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);