From 93cf929f29dea490ed60e5300cacdd99886c988e Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Sat, 9 Sep 2023 20:09:50 -0400 Subject: Add the standalone portion of mapman. --- mapman/src/mainwindow.hpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 mapman/src/mainwindow.hpp (limited to 'mapman/src/mainwindow.hpp') diff --git a/mapman/src/mainwindow.hpp b/mapman/src/mainwindow.hpp new file mode 100644 index 0000000..647fcc9 --- /dev/null +++ b/mapman/src/mainwindow.hpp @@ -0,0 +1,26 @@ +#ifndef MAINWINDOW_HPP +#define MAINWINDOW_HPP + +#include + +class map_library; +class group_view; +class slice_view; +class diff_view; +class QMdiArea; + +class mapman_main_window : public QMainWindow +{ + Q_OBJECT +public: + mapman_main_window(); + ~mapman_main_window(); +private: + map_library *l; + group_view *gv; + slice_view *sv; + diff_view *dv; + QMdiArea *cw; +}; + +#endif -- cgit v1.2.3