Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/sidebar.h')
-rw-r--r--src/sidebar.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/sidebar.h b/src/sidebar.h
new file mode 100644
index 0000000..c7dbb5a
--- /dev/null
+++ b/src/sidebar.h
@@ -0,0 +1,31 @@
+/*
+ sidebar.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_SIDEBAR__
+#define __INCLUDED_EDITOR_SIDEBAR__
+
+#include <QWidget>
+
+namespace editor
+{
+
+/**
+ * @brief Sidebar is the EditorWindow sidebar
+ * The sidebar show the properties of the currently
+ * selected entity
+ * */
+class SideBar : public QWidget
+{
+ Q_OBJECT
+
+public:
+ SideBar(QWidget *parent = 0);
+};
+
+}
+
+#endif // __INCLUDED_EDITOR_SIDEBAR__ \ No newline at end of file