From 3397dd57a30f7868c887b01c47a56bb6fa651eb6 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 10 Sep 2017 13:00:35 +0100 Subject: Adding qt editor --- editor/editorwindow.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 editor/editorwindow.cpp (limited to 'editor/editorwindow.cpp') diff --git a/editor/editorwindow.cpp b/editor/editorwindow.cpp new file mode 100644 index 00000000..35eeeb31 --- /dev/null +++ b/editor/editorwindow.cpp @@ -0,0 +1,18 @@ +#include "editorwindow.h" +#include "ui_editorwindow.h" + +EditorWindow::EditorWindow(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::EditorWindow) +{ + ui->setupUi(this); +} + +EditorWindow::~EditorWindow() +{ + delete ui; +} + +void EditorWindow::on_openGLWidget_destroyed() +{ +} -- cgit