mirror of
https://github.com/YACReader/yacreader
synced 2026-03-02 10:50:04 -05:00
Initial implementation of theming
This commit is contained in:
@ -2,6 +2,7 @@
|
||||
#define __OPTIONS_DIALOG_H
|
||||
|
||||
#include "yacreader_options_dialog.h"
|
||||
#include "themable.h"
|
||||
|
||||
class QDialog;
|
||||
class QLabel;
|
||||
@ -12,12 +13,15 @@ class QPushButton;
|
||||
class QRadioButton;
|
||||
class YACReaderSpinSliderWidget;
|
||||
|
||||
class OptionsDialog : public YACReaderOptionsDialog
|
||||
class OptionsDialog : public YACReaderOptionsDialog, protected Themable
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
OptionsDialog(QWidget *parent = nullptr);
|
||||
|
||||
protected:
|
||||
void applyTheme(const Theme &theme) override;
|
||||
|
||||
private:
|
||||
// QLabel * pathLabel;
|
||||
QLineEdit *pathEdit;
|
||||
|
||||
Reference in New Issue
Block a user