Make go to flow widget themable

This commit is contained in:
luisangelsm
2026-01-24 18:43:25 +01:00
parent 3bdbf4424b
commit 7b6055e76d
17 changed files with 191 additions and 33 deletions

View File

@ -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;