From fa4b4097d3283e1d6e6376c70910e245f0b1f6ec Mon Sep 17 00:00:00 2001 From: Dominick Allen Date: Wed, 18 Sep 2024 21:59:54 -0500 Subject: Save progress of qt6 implementation. --- src/getsuyomi.hpp | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/getsuyomi.hpp (limited to 'src/getsuyomi.hpp') diff --git a/src/getsuyomi.hpp b/src/getsuyomi.hpp new file mode 100644 index 0000000..3d3c092 --- /dev/null +++ b/src/getsuyomi.hpp @@ -0,0 +1,51 @@ +#ifndef GETSUYOMI_HPP +#define GETSUYOMI_HPP + +#include "archive.hpp" + +#include +#include +#include + +namespace getsuyomi { + +enum class PageLayout : uint8_t { + Single, + Dual, + Manga +}; + +class Getsuyomi : public QWidget { + Q_OBJECT + + public: + friend class GetsuyomiApp; + Getsuyomi(); + + public slots: + void setArchive(Archive* archive); + void next(); + void back(); + + private: + void setPages(); + void setPagesNormal(); + void setPagesDual(); + void setPagesManga(); + void setPages(QLabel& label1, QLabel& label2); + + QLayout* m_layout{nullptr}; + + Archive* m_archive{nullptr}; + + PageLayout m_pageLayout{PageLayout::Single}; + + QLabel m_pageLeft{}; + QLabel m_pageRight{}; + + size_t m_pageNumber{0}; +}; + +} // namespace getsuyomi + +#endif -- cgit v1.2.3