Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/editorwindow.h')
-rw-r--r--src/editorwindow.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/editorwindow.h b/src/editorwindow.h
new file mode 100644
index 0000000..3a9d704
--- /dev/null
+++ b/src/editorwindow.h
@@ -0,0 +1,39 @@
+/*
+ editorwindow.h
+ This file is part of the Project::OSiRiON zone editor
+ and is distributed under the terms and conditions of
+ the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_EDITOR_EDITORWINDOW__
+#define __INCLUDED_EDITOR_EDITORWINDOW__
+
+#include <QWidget>
+
+namespace editor
+{
+
+class MapWidget;
+class SideBar;
+
+/**
+ * @brief EditorWindow is the main zone editor window
+ * */
+class EditorWindow : public QWidget
+{
+ Q_OBJECT
+
+public:
+ EditorWindow(QWidget *parent = 0);
+
+protected:
+ virtual void resizeEvent (QResizeEvent *event);
+
+private:
+ MapWidget *editorwindow_mapwidget;
+ SideBar *editorwindow_sidebar;
+};
+
+}
+
+#endif // __INCLUDED_EDITOR_EDITORWINDOW__ \ No newline at end of file