2014-05-17 19:53:48 +05:30
|
|
|
#include "IconLabel.h"
|
|
|
|
|
|
|
|
#include <QStyle>
|
|
|
|
#include <QStyleOption>
|
|
|
|
#include <QLayout>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QRect>
|
|
|
|
|
|
|
|
IconLabel::IconLabel(QWidget *parent, QIcon icon, QSize size)
|
2014-06-30 05:32:57 +05:30
|
|
|
: QWidget(parent), m_size(size), m_icon(icon)
|
2014-05-17 19:53:48 +05:30
|
|
|
{
|
|
|
|
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);
|
2014-10-27 04:14:20 +05:30
|
|
|
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);
|
2014-05-17 19:53:48 +05:30
|
|
|
}
|