diff options
author | Julian T <julian@jtle.dk> | 2021-01-24 18:13:44 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-01-24 18:22:11 +0100 |
commit | 41ea2d8f94043d49fc26aaaa8030a73dcfdc2da9 (patch) | |
tree | fcc07052425c65b38c1724f4fc30299a1cb48716 /app/mainwindow.hpp | |
parent | a38e6014ea5441e9d29fcb3b5607cd94e4061cff (diff) |
Create rust project
Diffstat (limited to 'app/mainwindow.hpp')
-rw-r--r-- | app/mainwindow.hpp | 34 |
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 |