summaryrefslogtreecommitdiffstats
path: root/application/widgets/IconLabel.cpp
blob: 86c8a431317cf850b0044a67af849e6a364a2e9a (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
#include "IconLabel.h"

#include <QStyle>
#include <QStyleOption>
#include <QLayout>
#include <QPainter>
#include <QRect>

IconLabel::IconLabel(QWidget *parent, QIcon icon, QSize size)
	: QWidget(parent), m_size(size), m_icon(icon)
{
	setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum);
}

QSize IconLabel::sizeHint() const
{
	return m_size;
}

void IconLabel::setIcon(QIcon icon)
{
	m_icon = icon;
	update();
}

void IconLabel::paintEvent(QPaintEvent *)
{
	QPainter p(this);
	QRect rect = contentsRect();
	int width = rect.width();
	int height = rect.height();
	if(width < height)
	{
		rect.setHeight(width);
		rect.translate(0, (height - width) / 2);
	}
	else if (width > height)
	{
		rect.setWidth(height);
		rect.translate((width - height) / 2, 0);
	}
	m_icon.paint(&p, rect);
}