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,11 @@
#include <QWidget>
class NoLibrariesWidget : public QWidget
#include "themable.h"
class QLabel;
class NoLibrariesWidget : public QWidget, protected Themable
{
Q_OBJECT
public:
@ -13,6 +17,14 @@ signals:
void createNewLibrary();
void addExistingLibrary();
public slots:
protected:
void applyTheme(const Theme &theme) override;
private:
QLabel *iconLabel;
QLabel *text;
QLabel *textDescription;
};
#endif // NO_LIBRARIES_WIDGET_H