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

@ -3,7 +3,9 @@
#include <QtWidgets>
class EmptyContainerInfo : public QWidget
#include "themable.h"
class EmptyContainerInfo : public QWidget, protected Themable
{
Q_OBJECT
public:
@ -17,10 +19,10 @@ public slots:
protected:
void paintEvent(QPaintEvent *) override;
void applyTheme(const Theme &theme) override;
QLabel *iconLabel;
QLabel *titleLabel;
QString backgroundColor;
};
#endif // EMPTY_CONTAINER_INFO_H