aboutsummaryrefslogtreecommitdiffstats
path: root/editor/editorwindow.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-10 13:00:35 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-10 13:00:35 +0100
commit3397dd57a30f7868c887b01c47a56bb6fa651eb6 (patch)
tree33907ff9faad3e2a1374da155cfec2cd208ec27b /editor/editorwindow.h
parentd172a742008abb4c573353ca43b9b247110590c4 (diff)
downloadYAGE-3397dd57a30f7868c887b01c47a56bb6fa651eb6.tar.gz
YAGE-3397dd57a30f7868c887b01c47a56bb6fa651eb6.zip
Adding qt editor
Diffstat (limited to 'editor/editorwindow.h')
-rw-r--r--editor/editorwindow.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/editor/editorwindow.h b/editor/editorwindow.h
new file mode 100644
index 00000000..1e3e8045
--- /dev/null
+++ b/editor/editorwindow.h
@@ -0,0 +1,25 @@
+#ifndef EDITORWINDOW_H
+#define EDITORWINDOW_H
+
+#include <QMainWindow>
+
+namespace Ui {
+class EditorWindow;
+}
+
+class EditorWindow : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ explicit EditorWindow(QWidget *parent = 0);
+ ~EditorWindow();
+
+private slots:
+ void on_openGLWidget_destroyed();
+
+private:
+ Ui::EditorWindow *ui;
+};
+
+#endif // EDITORWINDOW_H