mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 18:33:09 -05:00
Initial implementation of theming
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user