summaryrefslogtreecommitdiff
path: root/src/main_window.hpp
blob: 9f72f0afafe84b1f365a8a9cd3d6860aee489743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#ifndef MAIN_WINDOW_HPP
#define MAIN_WINDOW_HPP

#include "getsuyomi.hpp"
#include "config.hpp"

#include <QtWidgets>
#include <fud_status.hpp>

namespace getsuyomi {

class GetsuyomiApp : public QMainWindow {
    Q_OBJECT

  public:
    GetsuyomiApp();
    ~GetsuyomiApp() = default;
    GetsuyomiApp(const GetsuyomiApp&) = delete;
    GetsuyomiApp(GetsuyomiApp&&) = delete;
    GetsuyomiApp& operator=(const GetsuyomiApp&) = delete;
    GetsuyomiApp& operator=(GetsuyomiApp&&) = delete;

    fud::FudStatus setup();

  private:
    /* Private methods */
    void createActions();
    void bindShortcuts();
    void createMenus();
    void createToolBar();

    /* Private data */
    GetsuyomiConfig m_config{};

    Getsuyomi* m_getsuyomi{nullptr};

    QAction* m_openFile{nullptr};
    QAction* m_openDirectory{nullptr};
    QAction* m_quitAction{nullptr};

    QAction* m_settingsAction{nullptr};

    QAction* m_aboutApp{nullptr};

    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_fileMenu{nullptr};
    QMenu* m_settingsMenu{nullptr};
    QMenu* m_helpMenu{nullptr};
    QToolBar* m_toolBar{nullptr};

    QString m_lastOpenedDirectory{};

  private slots:
    void openFile();
    void openDirectory();
    void quit();

    void configure();

    void aboutApp();

    void readSettings();
    void writeSettings();
    void closeEvent(QCloseEvent* event) override;

    void next();
    void back();

    void setSinglePageLayout();
    void setDualPageLayout();
    void setMangaLayout();
};

} // namespace getsuyomi

#endif