1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
/* SPDX-FileCopyrightText: 2017 The Qt Company Ltd.
* SPDX-FileCopyrightText: 2020 Noah Davis <noahadvs@gmail.com>
* SPDX-License-Identifier: LGPL-3.0-only OR GPL-2.0-or-later
*/
// Almost completely copy/pasted from qtquickcontrols2 so that I don't need to depend on private headers
#include "qquickicon_p.h"
namespace Breeze
{
class QQuickIconPrivate : public QSharedData
{
public:
QString name;
QUrl source;
QUrl resolvedSource; // UNUSED: needed to keep compatibility with Qt's QQuickIcon
int width = 0;
int height = 0;
QColor color = Qt::transparent;
bool cache = true;
enum ResolveProperties {
NameResolved = 0x0001,
SourceResolved = 0x0002,
WidthResolved = 0x0004,
HeightResolved = 0x0008,
ColorResolved = 0x0010,
CacheResolved = 0x0020,
AllPropertiesResolved = 0x1ffff,
};
// This is based on QFont's resolve_mask.
int resolveMask = 0;
};
QQuickIcon::QQuickIcon()
: d(new QQuickIconPrivate)
{
}
QQuickIcon::QQuickIcon(const QQuickIcon &other)
: d(other.d)
{
}
QQuickIcon::~QQuickIcon()
{
}
QQuickIcon &QQuickIcon::operator=(const QQuickIcon &other)
{
d = other.d;
return *this;
}
bool QQuickIcon::operator==(const QQuickIcon &other) const
{
return d == other.d //
|| (d->name == other.d->name //
&& d->source == other.d->source //
&& d->width == other.d->width //
&& d->height == other.d->height //
&& d->color == other.d->color //
&& d->cache == other.d->cache);
}
bool QQuickIcon::operator!=(const QQuickIcon &other) const
{
return !(*this == other);
}
bool QQuickIcon::isEmpty() const
{
return d->name.isEmpty() && d->source.isEmpty();
}
QString QQuickIcon::name() const
{
return d->name;
}
void QQuickIcon::setName(const QString &name)
{
if ((d->resolveMask & QQuickIconPrivate::NameResolved) && d->name == name)
return;
d.detach();
d->name = name;
d->resolveMask |= QQuickIconPrivate::NameResolved;
}
void QQuickIcon::resetName()
{
d.detach();
d->name = QString();
d->resolveMask &= ~QQuickIconPrivate::NameResolved;
}
QUrl QQuickIcon::source() const
{
return d->source;
}
void QQuickIcon::setSource(const QUrl &source)
{
if ((d->resolveMask & QQuickIconPrivate::SourceResolved) && d->source == source)
return;
d.detach();
d->source = source;
d->resolveMask |= QQuickIconPrivate::SourceResolved;
}
void QQuickIcon::resetSource()
{
d.detach();
d->source = QUrl();
d->resolveMask &= ~QQuickIconPrivate::SourceResolved;
}
QString QQuickIcon::nameOrSource() const
{
if (!d->name.isEmpty()) {
return d->name;
} else if (d->source.isValid()) {
return d->source.toString();
}
return QString();
}
int QQuickIcon::width() const
{
return d->width;
}
void QQuickIcon::setWidth(int width)
{
if ((d->resolveMask & QQuickIconPrivate::WidthResolved) && d->width == width)
return;
d.detach();
d->width = width;
d->resolveMask |= QQuickIconPrivate::WidthResolved;
}
void QQuickIcon::resetWidth()
{
d.detach();
d->width = 0;
d->resolveMask &= ~QQuickIconPrivate::WidthResolved;
}
int QQuickIcon::height() const
{
return d->height;
}
void QQuickIcon::setHeight(int height)
{
if ((d->resolveMask & QQuickIconPrivate::HeightResolved) && d->height == height)
return;
d.detach();
d->height = height;
d->resolveMask |= QQuickIconPrivate::HeightResolved;
}
void QQuickIcon::resetHeight()
{
d.detach();
d->height = 0;
d->resolveMask &= ~QQuickIconPrivate::HeightResolved;
}
QColor QQuickIcon::color() const
{
return d->color;
}
void QQuickIcon::setColor(const QColor &color)
{
if ((d->resolveMask & QQuickIconPrivate::ColorResolved) && d->color == color)
return;
d.detach();
d->color = color;
d->resolveMask |= QQuickIconPrivate::ColorResolved;
}
void QQuickIcon::resetColor()
{
d.detach();
d->color = Qt::transparent;
d->resolveMask &= ~QQuickIconPrivate::ColorResolved;
}
bool QQuickIcon::cache() const
{
return d->cache;
}
void QQuickIcon::setCache(bool cache)
{
if ((d->resolveMask & QQuickIconPrivate::CacheResolved) && d->cache == cache)
return;
d.detach();
d->cache = cache;
d->resolveMask |= QQuickIconPrivate::CacheResolved;
}
void QQuickIcon::resetCache()
{
d.detach();
d->cache = true;
d->resolveMask &= ~QQuickIconPrivate::CacheResolved;
}
QQuickIcon QQuickIcon::resolve(const QQuickIcon &other) const
{
QQuickIcon resolved = *this;
resolved.d.detach();
if (!(d->resolveMask & QQuickIconPrivate::NameResolved))
resolved.d->name = other.d->name;
if (!(d->resolveMask & QQuickIconPrivate::SourceResolved))
resolved.d->source = other.d->source;
if (!(d->resolveMask & QQuickIconPrivate::WidthResolved))
resolved.d->width = other.d->width;
if (!(d->resolveMask & QQuickIconPrivate::HeightResolved))
resolved.d->height = other.d->height;
if (!(d->resolveMask & QQuickIconPrivate::ColorResolved))
resolved.d->color = other.d->color;
if (!(d->resolveMask & QQuickIconPrivate::CacheResolved))
resolved.d->cache = other.d->cache;
return resolved;
}
}
#include "moc_qquickicon_p.cpp"
|