Initial implementation of theming

This commit is contained in:
luisangelsm
2026-02-19 17:39:22 +01:00
parent ed28c94f66
commit 044176d6b7
303 changed files with 4634 additions and 2119 deletions

View File

@ -4,18 +4,20 @@ EmptyLabelWidget::EmptyLabelWidget(QWidget *parent)
: EmptyContainerInfo(parent)
{
setUpDefaultLayout(true);
iconLabel->setPixmap(QPixmap(":/images/empty_label.png"));
// titleLabel->setText(tr("This label doesn't contain comics yet") + QString("<p style='color:rgb(150,150,150);font-size:14px;font-weight:normal;'>%1</p>").arg(tr("Drag and drop folders and comics here")));
titleLabel->setText(tr("This label doesn't contain comics yet"));
}
void EmptyLabelWidget::setColor(YACReader::LabelColors color)
{
QPixmap p(":/images/empty_label.png");
QImage img = p.toImage().convertToFormat(QImage::Format_ARGB32);
QColor destColor(YACReader::labelColorToRGBString(color));
YACReader::colorize(img, destColor);
iconLabel->setPixmap(QPixmap::fromImage(img));
currentColor = color;
auto it = theme.emptyContainer.emptyLabelIcons.find(static_cast<int>(color));
if (it != theme.emptyContainer.emptyLabelIcons.end()) {
setPixmap(it.value());
}
}
void EmptyLabelWidget::applyTheme(const Theme &theme)
{
EmptyContainerInfo::applyTheme(theme);
setColor(currentColor);
}