mirror of
https://github.com/YACReader/yacreader
synced 2026-03-02 10:50:04 -05:00
Add a theme factory to YACReaderLibrary and theme the comic vine dialog
This commit is contained in:
@ -3,9 +3,11 @@
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
#include "themable.h"
|
||||
|
||||
class QLabel;
|
||||
|
||||
class TitleHeader : public QWidget
|
||||
class TitleHeader : public QWidget, protected Themable
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
@ -18,6 +20,9 @@ public slots:
|
||||
private:
|
||||
QLabel *mainTitleLabel;
|
||||
QLabel *subTitleLabel;
|
||||
|
||||
protected:
|
||||
void applyTheme() override;
|
||||
};
|
||||
|
||||
#endif // TITLE_HEADER_H
|
||||
|
||||
Reference in New Issue
Block a user