yacreader/YACReaderLibrary/empty_container_info.cpp
2020-04-07 18:11:34 +02:00

47 lines
1.1 KiB
C++

#include "empty_container_info.h"
#include "theme.h"
EmptyContainerInfo::EmptyContainerInfo(QWidget *parent)
: QWidget(parent), iconLabel(new QLabel()), titleLabel(new QLabel())
{
auto theme = Theme::currentTheme();
backgroundColor = theme.noComicsContentBackgroundColor;
titleLabel->setStyleSheet(theme.noComicsContentTitleLabelStyle);
iconLabel->setAlignment(Qt::AlignCenter);
titleLabel->setAlignment(Qt::AlignCenter);
}
void EmptyContainerInfo::setPixmap(const QPixmap &pixmap)
{
iconLabel->setPixmap(pixmap);
}
void EmptyContainerInfo::setText(const QString &text)
{
titleLabel->setText(text);
}
QVBoxLayout *EmptyContainerInfo::setUpDefaultLayout(bool addStretch)
{
auto layout = new QVBoxLayout;
layout->addSpacing(100);
layout->addWidget(iconLabel);
layout->addSpacing(30);
layout->addWidget(titleLabel);
if (addStretch)
layout->addStretch();
setLayout(layout);
return layout;
}
void EmptyContainerInfo::paintEvent(QPaintEvent *)
{
QPainter painter(this);
painter.fillRect(0, 0, width(), height(), QColor(backgroundColor));
}