aboutsummaryrefslogtreecommitdiff
path: root/app/mainwindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'app/mainwindow.hpp')
-rw-r--r--app/mainwindow.hpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/app/mainwindow.hpp b/app/mainwindow.hpp
deleted file mode 100644
index ffb4f08..0000000
--- a/app/mainwindow.hpp
+++ /dev/null
@@ -1,34 +0,0 @@
-#ifndef MAIN_H
-#define MAIN_H
-
-#include <QMainWindow>
-#include <QLabel>
-#include <QMenuBar>
-#include <QStatusBar>
-
-#include "config.hpp"
-#include "draw.hpp"
-#include "rendercoord.hpp"
-#include <qmainwindow.h>
-#include <render.hpp>
-
-class MainWindow : public QMainWindow {
- Q_OBJECT
-
- public:
- MainWindow(Renderer r, const Config &conf);
-
- private slots:
- void saveimage();
- private:
- DrawWidget m_drawer;
- QLabel runstatus;
- RenderCoordinator m_render;
-
- QMenu *fileMenu;
- QMenu *helpMenu;
-
- const Config &m_conf;
-};
-
-#endif