blob: 3261786ce9ed73fd3118ba8f5655c7e88c4d02fd (
plain)
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
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "icondisplay.h"
#include "icon.h"
#include <QIcon>
#include <QPainter>
#include <QPixmap>
namespace Utils
{
class IconDisplayPrivate
{
public:
QIcon m_icon;
};
Utils::IconDisplay::IconDisplay(QWidget *parent) :
QWidget(parent),
d(std::make_unique<IconDisplayPrivate>())
{
setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
}
IconDisplay::~IconDisplay() = default;
void IconDisplay::paintEvent(QPaintEvent *event)
{
Q_UNUSED(event)
QPainter painter(this);
painter.setRenderHint(QPainter::Antialiasing);
painter.setRenderHint(QPainter::SmoothPixmapTransform);
qreal dpr = devicePixelRatio();
QSize actualSize = size();
auto px = d->m_icon.pixmap(actualSize, dpr);
px.setDevicePixelRatio(dpr);
QRect r(QPoint(0, 0), actualSize);
r.moveCenter(rect().center());
painter.drawPixmap(r, px);
}
QSize IconDisplay::sizeHint() const
{
if (d->m_icon.isNull())
return {};
if (auto sizes = d->m_icon.availableSizes(); !sizes.isEmpty())
return sizes.first();
return {};
}
void IconDisplay::setIcon(const Icon &icon)
{
d->m_icon = icon.icon();
update();
}
} // namespace Utils
|