summaryrefslogtreecommitdiff
path: root/tools/editor/inspector_dock.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2015-09-01 00:49:47 -0300
committerJuan Linietsky <reduzio@gmail.com>2015-09-01 00:49:47 -0300
commit688047a4c95e688984c8000722e9fd368d3bced6 (patch)
tree4a9b6695ccfe5b3a50c5e92b7dd88aea61251dcd /tools/editor/inspector_dock.h
parentcf57a654d7d09fe169455ffc2049cd4bfec660f3 (diff)
-removed resources dock, good bye old friend
Diffstat (limited to 'tools/editor/inspector_dock.h')
-rw-r--r--tools/editor/inspector_dock.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/tools/editor/inspector_dock.h b/tools/editor/inspector_dock.h
new file mode 100644
index 0000000000..90f043aba8
--- /dev/null
+++ b/tools/editor/inspector_dock.h
@@ -0,0 +1,35 @@
+#ifndef INSPECTOR_DOCK_H
+#define INSPECTOR_DOCK_H
+
+#include "scene/gui/box_container.h"
+#include "property_editor.h"
+
+
+//this is for now bundled in EditorNode, will be moved away here eventually
+
+#if 0
+class InspectorDock : public VBoxContainer
+{
+ OBJ_TYPE(InspectorDock,VBoxContainer);
+
+ PropertyEditor *property_editor;
+
+ EditorHistory editor_history;
+
+ void _go_next();
+ void _go_prev();
+
+protected:
+
+ static void _bind_methods();
+public:
+
+ EditorHistory &get_editor_history();
+
+ PropertyEditor *get_property_editor();
+
+ InspectorDock();
+};
+
+#endif
+#endif // INSPECTOR_DOCK_H