summaryrefslogtreecommitdiff
path: root/src/main_window.hpp
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2024-09-29 12:51:41 -0500
committerDominick Allen <djallen@librehumanitas.org>2024-09-29 12:51:41 -0500
commitdacd752bbf46f2afb08b4b8d730ba3619528dda4 (patch)
tree2554b12d3a6cb6d66fe28a89ccf132f6ae4b4aad /src/main_window.hpp
parent06663d34c7678aa723955e64cd82a2e399c4b8c6 (diff)
Add more functionality in paging.
Diffstat (limited to 'src/main_window.hpp')
-rw-r--r--src/main_window.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main_window.hpp b/src/main_window.hpp
index 98af5a2..55b200d 100644
--- a/src/main_window.hpp
+++ b/src/main_window.hpp
@@ -43,6 +43,11 @@ class GetsuyomiApp : public QMainWindow {
QAction* m_nextAction{nullptr};
QAction* m_backAction{nullptr};
+ QAction* m_setSinglePageLayout{nullptr};
+ QAction* m_setDualPageLayout{nullptr};
+ QAction* m_setMangaLayout{nullptr};
+ QActionGroup* m_setPageLayoutGroup{nullptr};
+
QMenu* m_menuBar{nullptr};
QToolBar* m_toolBar{nullptr};
@@ -59,6 +64,10 @@ class GetsuyomiApp : public QMainWindow {
void next();
void back();
+
+ void setSinglePageLayout();
+ void setDualPageLayout();
+ void setMangaLayout();
};
} // namespace getsuyomi