mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 10:22:58 -05:00
Make go to flow widget themable
This commit is contained in:
@ -6,6 +6,7 @@
|
||||
#include "yacreader_global_gui.h"
|
||||
|
||||
#include "yacreader_page_flow_rhi.h"
|
||||
#include "themable.h"
|
||||
|
||||
using namespace YACReader;
|
||||
|
||||
@ -14,9 +15,12 @@ class GoToFlowToolBar;
|
||||
class QVBoxLayout;
|
||||
class QKeyEvent;
|
||||
|
||||
class GoToFlowWidget : public QWidget
|
||||
class GoToFlowWidget : public QWidget, protected Themable
|
||||
{
|
||||
Q_OBJECT
|
||||
protected:
|
||||
void applyTheme(const Theme &theme) override;
|
||||
|
||||
public:
|
||||
GoToFlowWidget(QWidget *parent = nullptr, FlowType flowType = CoverFlowLike);
|
||||
~GoToFlowWidget() override;
|
||||
|
||||
Reference in New Issue
Block a user