mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 18:33:09 -05:00
Make go to flow widget themable
This commit is contained in:
@ -4,15 +4,20 @@
|
||||
#include <QWidget>
|
||||
#include <QStackedWidget>
|
||||
|
||||
#include "themable.h"
|
||||
|
||||
class QLineEdit;
|
||||
class QIntValidator;
|
||||
class QPushButton;
|
||||
class QSlider;
|
||||
class QLabel;
|
||||
|
||||
class GoToFlowToolBar : public QStackedWidget
|
||||
class GoToFlowToolBar : public QStackedWidget, protected Themable
|
||||
{
|
||||
Q_OBJECT
|
||||
protected:
|
||||
void applyTheme(const Theme &theme) override;
|
||||
|
||||
private:
|
||||
QLineEdit *edit;
|
||||
QSlider *slider;
|
||||
|
||||
Reference in New Issue
Block a user