summaryrefslogtreecommitdiff
path: root/tools/editor/property_editor.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2016-03-06 18:07:19 +0100
committerRémi Verschelde <remi@verschelde.fr>2016-03-06 18:07:19 +0100
commita283d367a7cb54807e8c2e6015167feca9f604d1 (patch)
tree46da27f4d2fd34961e9dced033b8dc45fdb3082a /tools/editor/property_editor.h
parentd9ef89f90a24aa3f0557bc13fd2a175014c491c0 (diff)
parent48524384d6f29facb759517eb0cd7ddae7329cce (diff)
Merge pull request #3951 from TheHX/issue-3857
Fix Project Settings dialog add/delete global variable
Diffstat (limited to 'tools/editor/property_editor.h')
-rw-r--r--tools/editor/property_editor.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/editor/property_editor.h b/tools/editor/property_editor.h
index 63ad090901..83923cb237 100644
--- a/tools/editor/property_editor.h
+++ b/tools/editor/property_editor.h
@@ -257,6 +257,9 @@ class SectionedPropertyEditor : public HBoxContainer {
OBJ_TYPE(SectionedPropertyEditor,HBoxContainer);
+
+ ObjectID obj;
+
ItemList *sections;
SectionedPropertyEditorFilter *filter;
PropertyEditor *editor;
@@ -270,8 +273,12 @@ public:
PropertyEditor *get_property_editor();
void edit(Object* p_object);
String get_full_item_path(const String& p_item);
+
+ void set_current_section(const String& p_section);
String get_current_section() const;
+ void update_category_list();
+
SectionedPropertyEditor();
~SectionedPropertyEditor();
};