| 
									
										
										
										
											2018-08-29 22:38:13 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  editor_sectioned_inspector.cpp                                       */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                      https://godotengine.org                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-01-01 20:13:46 +01:00
										 |  |  | /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2018-08-29 22:38:13 +02:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | #include "editor_sectioned_inspector.h"
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | #include "editor_scale.h"
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | class SectionedInspectorFilter : public Object { | 
					
						
							|  |  |  | 	GDCLASS(SectionedInspectorFilter, Object); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-24 10:12:55 +01:00
										 |  |  | 	Object *edited = nullptr; | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	String section; | 
					
						
							| 
									
										
										
										
											2020-11-24 10:12:55 +01:00
										 |  |  | 	bool allow_sub = false; | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	bool _set(const StringName &p_name, const Variant &p_value) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!edited) { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 			return false; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		String name = p_name; | 
					
						
							|  |  |  | 		if (section != "") { | 
					
						
							|  |  |  | 			name = section + "/" + name; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bool valid; | 
					
						
							|  |  |  | 		edited->set(name, p_value, &valid); | 
					
						
							|  |  |  | 		return valid; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool _get(const StringName &p_name, Variant &r_ret) const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!edited) { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 			return false; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		String name = p_name; | 
					
						
							|  |  |  | 		if (section != "") { | 
					
						
							|  |  |  | 			name = section + "/" + name; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		bool valid = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		r_ret = edited->get(name, &valid); | 
					
						
							|  |  |  | 		return valid; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	void _get_property_list(List<PropertyInfo> *p_list) const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!edited) { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		List<PropertyInfo> pinfo; | 
					
						
							|  |  |  | 		edited->get_property_list(&pinfo); | 
					
						
							|  |  |  | 		for (List<PropertyInfo>::Element *E = pinfo.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 			PropertyInfo pi = E->get(); | 
					
						
							|  |  |  | 			int sp = pi.name.find("/"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			if (pi.name == "resource_path" || pi.name == "resource_name" || pi.name == "resource_local_to_scene" || pi.name.begins_with("script/") || pi.name.begins_with("_global_script")) { //skip resource stuff
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (sp == -1) { | 
					
						
							|  |  |  | 				pi.name = "global/" + pi.name; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (pi.name.begins_with(section + "/")) { | 
					
						
							|  |  |  | 				pi.name = pi.name.replace_first(section + "/", ""); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				if (!allow_sub && pi.name.find("/") != -1) { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 					continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 				p_list->push_back(pi); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool property_can_revert(const String &p_name) { | 
					
						
							|  |  |  | 		return edited->call("property_can_revert", section + "/" + p_name); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Variant property_get_revert(const String &p_name) { | 
					
						
							|  |  |  | 		return edited->call("property_get_revert", section + "/" + p_name); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  | 	static void _bind_methods() { | 
					
						
							|  |  |  | 		ClassDB::bind_method("property_can_revert", &SectionedInspectorFilter::property_can_revert); | 
					
						
							|  |  |  | 		ClassDB::bind_method("property_get_revert", &SectionedInspectorFilter::property_get_revert); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	void set_section(const String &p_section, bool p_allow_sub) { | 
					
						
							|  |  |  | 		section = p_section; | 
					
						
							|  |  |  | 		allow_sub = p_allow_sub; | 
					
						
							| 
									
										
										
										
											2021-02-10 17:18:45 -03:00
										 |  |  | 		notify_property_list_changed(); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_edited(Object *p_edited) { | 
					
						
							|  |  |  | 		edited = p_edited; | 
					
						
							| 
									
										
										
										
											2021-02-10 17:18:45 -03:00
										 |  |  | 		notify_property_list_changed(); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SectionedInspector::_bind_methods() { | 
					
						
							|  |  |  | 	ClassDB::bind_method("update_category_list", &SectionedInspector::update_category_list); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SectionedInspector::_section_selected() { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!sections->get_selected()) { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-11 15:56:08 +08:00
										 |  |  | 	selected_category = sections->get_selected()->get_metadata(0); | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 	filter->set_section(selected_category, sections->get_selected()->get_children() == nullptr); | 
					
						
							| 
									
										
										
										
											2019-07-11 15:56:08 +08:00
										 |  |  | 	inspector->set_property_prefix(selected_category + "/"); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SectionedInspector::set_current_section(const String &p_section) { | 
					
						
							|  |  |  | 	if (section_map.has(p_section)) { | 
					
						
							|  |  |  | 		section_map[p_section]->select(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String SectionedInspector::get_current_section() const { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (sections->get_selected()) { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 		return sections->get_selected()->get_metadata(0); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 		return ""; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | String SectionedInspector::get_full_item_path(const String &p_item) { | 
					
						
							|  |  |  | 	String base = get_current_section(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (base != "") { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 		return base + "/" + p_item; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 		return p_item; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SectionedInspector::edit(Object *p_object) { | 
					
						
							|  |  |  | 	if (!p_object) { | 
					
						
							| 
									
										
										
										
											2020-02-12 14:24:06 -03:00
										 |  |  | 		obj = ObjectID(); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 		sections->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | 		filter->set_edited(nullptr); | 
					
						
							|  |  |  | 		inspector->edit(nullptr); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ObjectID id = p_object->get_instance_id(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	inspector->set_object_class(p_object->get_class()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (obj != id) { | 
					
						
							|  |  |  | 		obj = id; | 
					
						
							|  |  |  | 		update_category_list(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		filter->set_edited(p_object); | 
					
						
							|  |  |  | 		inspector->edit(filter); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-11 15:56:08 +08:00
										 |  |  | 		TreeItem *first_item = sections->get_root(); | 
					
						
							|  |  |  | 		if (first_item) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			while (first_item->get_children()) { | 
					
						
							| 
									
										
										
										
											2019-07-11 15:56:08 +08:00
										 |  |  | 				first_item = first_item->get_children(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-07-11 15:56:08 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			first_item->select(0); | 
					
						
							|  |  |  | 			selected_category = first_item->get_metadata(0); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		update_category_list(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SectionedInspector::update_category_list() { | 
					
						
							|  |  |  | 	sections->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Object *o = ObjectDB::get_instance(obj); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!o) { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	List<PropertyInfo> pinfo; | 
					
						
							|  |  |  | 	o->get_property_list(&pinfo); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	section_map.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	TreeItem *root = sections->create_item(); | 
					
						
							|  |  |  | 	section_map[""] = root; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-11 15:56:08 +08:00
										 |  |  | 	String filter; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (search_box) { | 
					
						
							| 
									
										
										
										
											2019-07-11 15:56:08 +08:00
										 |  |  | 		filter = search_box->get_text(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-07-11 15:56:08 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	for (List<PropertyInfo>::Element *E = pinfo.front(); E; E = E->next()) { | 
					
						
							|  |  |  | 		PropertyInfo pi = E->get(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (pi.usage & PROPERTY_USAGE_CATEGORY) { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2021-02-17 13:44:49 -03:00
										 |  |  | 		} else if (!(pi.usage & PROPERTY_USAGE_EDITOR) || (restrict_to_basic && !(pi.usage & PROPERTY_USAGE_EDITOR_BASIC_SETTING))) { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (pi.name.find(":") != -1 || pi.name == "script" || pi.name == "resource_name" || pi.name == "resource_path" || pi.name == "resource_local_to_scene" || pi.name.begins_with("_global_script")) { | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-15 12:04:21 +00:00
										 |  |  | 		if (!filter.is_empty() && pi.name.findn(filter) == -1 && pi.name.replace("/", " ").capitalize().findn(filter) == -1) { | 
					
						
							| 
									
										
										
										
											2019-10-24 21:56:05 +02:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-10-24 21:56:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 		int sp = pi.name.find("/"); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (sp == -1) { | 
					
						
							| 
									
										
										
										
											2019-01-23 00:09:22 +01:00
										 |  |  | 			pi.name = "global/" + pi.name; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Vector<String> sectionarr = pi.name.split("/"); | 
					
						
							|  |  |  | 		String metasection; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int sc = MIN(2, sectionarr.size() - 1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (int i = 0; i < sc; i++) { | 
					
						
							|  |  |  | 			TreeItem *parent = section_map[metasection]; | 
					
						
							| 
									
										
										
										
											2020-03-12 09:37:40 -03:00
										 |  |  | 			parent->set_custom_bg_color(0, get_theme_color("prop_subsection", "Editor")); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (i > 0) { | 
					
						
							|  |  |  | 				metasection += "/" + sectionarr[i]; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				metasection = sectionarr[i]; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (!section_map.has(metasection)) { | 
					
						
							|  |  |  | 				TreeItem *ms = sections->create_item(parent); | 
					
						
							|  |  |  | 				section_map[metasection] = ms; | 
					
						
							|  |  |  | 				ms->set_text(0, sectionarr[i].capitalize()); | 
					
						
							|  |  |  | 				ms->set_metadata(0, metasection); | 
					
						
							|  |  |  | 				ms->set_selectable(0, false); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (i == sc - 1) { | 
					
						
							|  |  |  | 				//if it has children, make selectable
 | 
					
						
							|  |  |  | 				section_map[metasection]->set_selectable(0, true); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (section_map.has(selected_category)) { | 
					
						
							|  |  |  | 		section_map[selected_category]->select(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	inspector->update_tree(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SectionedInspector::register_search_box(LineEdit *p_box) { | 
					
						
							|  |  |  | 	search_box = p_box; | 
					
						
							|  |  |  | 	inspector->register_text_enter(p_box); | 
					
						
							| 
									
										
										
										
											2020-02-21 18:28:45 +01:00
										 |  |  | 	search_box->connect("text_changed", callable_mp(this, &SectionedInspector::_search_changed)); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SectionedInspector::_search_changed(const String &p_what) { | 
					
						
							|  |  |  | 	update_category_list(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | EditorInspector *SectionedInspector::get_inspector() { | 
					
						
							|  |  |  | 	return inspector; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-17 13:44:49 -03:00
										 |  |  | void SectionedInspector::set_restrict_to_basic_settings(bool p_restrict) { | 
					
						
							|  |  |  | 	restrict_to_basic = p_restrict; | 
					
						
							|  |  |  | 	update_category_list(); | 
					
						
							|  |  |  | 	inspector->set_restrict_to_basic_settings(p_restrict); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-08 15:07:33 -05:00
										 |  |  | SectionedInspector::SectionedInspector() : | 
					
						
							|  |  |  | 		sections(memnew(Tree)), | 
					
						
							|  |  |  | 		filter(memnew(SectionedInspectorFilter)), | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 		inspector(memnew(EditorInspector)) { | 
					
						
							| 
									
										
										
										
											2020-03-12 09:37:40 -03:00
										 |  |  | 	add_theme_constant_override("autohide", 1); // Fixes the dragger always showing up
 | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *left_vb = memnew(VBoxContainer); | 
					
						
							| 
									
										
										
										
											2019-08-31 20:39:13 +02:00
										 |  |  | 	left_vb->set_custom_minimum_size(Size2(190, 0) * EDSCALE); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | 	add_child(left_vb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sections->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	sections->set_hide_root(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	left_vb->add_child(sections, true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	VBoxContainer *right_vb = memnew(VBoxContainer); | 
					
						
							|  |  |  | 	right_vb->set_custom_minimum_size(Size2(300, 0) * EDSCALE); | 
					
						
							|  |  |  | 	right_vb->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	add_child(right_vb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	inspector->set_v_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	right_vb->add_child(inspector, true); | 
					
						
							|  |  |  | 	inspector->set_use_doc_hints(true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-21 18:28:45 +01:00
										 |  |  | 	sections->connect("cell_selected", callable_mp(this, &SectionedInspector::_section_selected)); | 
					
						
							| 
									
										
										
										
											2018-07-19 18:58:15 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SectionedInspector::~SectionedInspector() { | 
					
						
							|  |  |  | 	memdelete(filter); | 
					
						
							|  |  |  | } |