diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-09-25 12:16:30 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-09-25 12:16:30 -0500 |
commit | 8477ffbfba2f15edb9f87e9336e2c4599000c32a (patch) | |
tree | 059a36f9d526b0807a7bd0b20979577f9a7e7d0e /src/main_window.hpp | |
parent | b6e3cc840e255b78ee53e55b420aeee130e51ce1 (diff) |
Moving forward.
Diffstat (limited to 'src/main_window.hpp')
-rw-r--r-- | src/main_window.hpp | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/src/main_window.hpp b/src/main_window.hpp deleted file mode 100644 index d114e31..0000000 --- a/src/main_window.hpp +++ /dev/null @@ -1,48 +0,0 @@ -#ifndef MAIN_WINDOW_HPP -#define MAIN_WINDOW_HPP - -#include "archive.hpp" -#include "bookmouse.hpp" - -#include <QtWidgets> - -namespace bookmouse { - -constexpr const char* AppName = "Bookmouse"; -constexpr const char* AppVersionString = "1.0.0"; - -class BookmouseApp : public QMainWindow { - Q_OBJECT - - public: - BookmouseApp(); - - private: - void setup(); - void createActions(); - void createMenus(); - void createToolBar(); - - Bookmouse* m_bookmouse; - - QAction* m_openFile; - QAction* m_openDirectory; - QAction* m_quitAction; - QAction* m_nextAction; - QAction* m_backAction; - - QMenu* m_menuBar; - QToolBar* m_toolBar; - - private slots: - void openFile(); - void openDirectory(); - void quit(); - - void next(); - void back(); -}; - -} // namespace bookmouse - -#endif |