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

@ -0,0 +1,15 @@
#include "empty_folder_widget.h"
EmptyFolderWidget::EmptyFolderWidget(QWidget *parent)
: EmptyContainerInfo(parent)
{
setUpDefaultLayout(true);
setPixmap(theme.emptyContainer.emptyFolderIcon);
setText(tr("This folder doesn't contain comics yet"));
}
void EmptyFolderWidget::applyTheme(const Theme &theme)
{
EmptyContainerInfo::applyTheme(theme);
setPixmap(theme.emptyContainer.emptyFolderIcon);
}