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

@ -7,7 +7,25 @@
class EmptySpecialListWidget : public EmptyContainerInfo
{
public:
enum SpecialListType {
None,
Favorites,
Reading,
Recent
};
EmptySpecialListWidget(QWidget *parent = nullptr);
void showFavorites();
void showReading();
void showRecent();
protected:
void applyTheme(const Theme &theme) override;
private:
void updateIcon();
SpecialListType currentType = None;
};
#endif // EMPTY_SPECIAL_LIST_H