| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  editor_path.cpp                                                       */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* 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-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "editor_path.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-16 08:04:19 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-14 14:00:03 +01:00
										 |  |  | #include "editor/editor_data.h"
 | 
					
						
							| 
									
										
										
										
											2022-02-12 02:46:22 +01:00
										 |  |  | #include "editor/editor_node.h"
 | 
					
						
							|  |  |  | #include "editor/editor_scale.h"
 | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | #include "editor/multi_node_edit.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-27 15:06:18 +08:00
										 |  |  | Size2 EditorPath::get_minimum_size() const { | 
					
						
							|  |  |  | 	Ref<Font> font = get_theme_font(SNAME("font")); | 
					
						
							|  |  |  | 	int font_size = get_theme_font_size(SNAME("font_size")); | 
					
						
							|  |  |  | 	return Button::get_minimum_size() + Size2(0, font->get_height(font_size)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void EditorPath::_add_children_to_popup(Object *p_obj, int p_depth) { | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (p_depth > 8) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	List<PropertyInfo> pinfo; | 
					
						
							|  |  |  | 	p_obj->get_property_list(&pinfo); | 
					
						
							| 
									
										
										
										
											2021-07-24 15:46:25 +02:00
										 |  |  | 	for (const PropertyInfo &E : pinfo) { | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 		if (!(E.usage & PROPERTY_USAGE_EDITOR)) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 		if (E.hint != PROPERTY_HINT_RESOURCE_TYPE) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 		Variant value = p_obj->get(E.name); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (value.get_type() != Variant::OBJECT) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 		Object *obj = value; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!obj) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 		Ref<Texture2D> obj_icon = EditorNode::get_singleton()->get_object_icon(obj); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 		String proper_name = ""; | 
					
						
							| 
									
										
										
										
											2021-07-15 23:45:57 -04:00
										 |  |  | 		Vector<String> name_parts = E.name.split("/"); | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		for (int i = 0; i < name_parts.size(); i++) { | 
					
						
							|  |  |  | 			if (i > 0) { | 
					
						
							|  |  |  | 				proper_name += " > "; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			proper_name += name_parts[i].capitalize(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int index = sub_objects_menu->get_item_count(); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 		sub_objects_menu->add_icon_item(obj_icon, proper_name, objects.size()); | 
					
						
							| 
									
										
										
										
											2022-08-01 12:28:16 +03:00
										 |  |  | 		sub_objects_menu->set_item_indent(index, p_depth); | 
					
						
							| 
									
										
										
										
											2017-08-07 17:17:31 +07:00
										 |  |  | 		objects.push_back(obj->get_instance_id()); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		_add_children_to_popup(obj, p_depth + 1); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | void EditorPath::_show_popup() { | 
					
						
							| 
									
										
										
										
											2022-08-23 10:38:51 +03:00
										 |  |  | 	if (sub_objects_menu->is_visible()) { | 
					
						
							|  |  |  | 		sub_objects_menu->hide(); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 	sub_objects_menu->clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Size2 size = get_size(); | 
					
						
							|  |  |  | 	Point2 gp = get_screen_position(); | 
					
						
							|  |  |  | 	gp.y += size.y; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sub_objects_menu->set_position(gp); | 
					
						
							|  |  |  | 	sub_objects_menu->set_size(Size2(size.width, 1)); | 
					
						
							|  |  |  | 	sub_objects_menu->set_parent_rect(Rect2(Point2(gp - sub_objects_menu->get_position()), size)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sub_objects_menu->take_mouse_focus(); | 
					
						
							|  |  |  | 	sub_objects_menu->popup(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | void EditorPath::_about_to_show() { | 
					
						
							|  |  |  | 	Object *obj = ObjectDB::get_instance(history->get_path_object(history->get_path_size() - 1)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!obj) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 	objects.clear(); | 
					
						
							| 
									
										
										
										
											2019-09-04 19:38:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 	_add_children_to_popup(obj); | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 	if (sub_objects_menu->get_item_count() == 0) { | 
					
						
							|  |  |  | 		sub_objects_menu->add_item(TTR("No sub-resources found.")); | 
					
						
							|  |  |  | 		sub_objects_menu->set_item_disabled(0, true); | 
					
						
							| 
									
										
										
										
											2019-09-04 19:38:23 -03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void EditorPath::update_path() { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 	for (int i = 0; i < history->get_path_size(); i++) { | 
					
						
							|  |  |  | 		Object *obj = ObjectDB::get_instance(history->get_path_object(i)); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		if (!obj) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 		Ref<Texture2D> obj_icon; | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | 		if (Object::cast_to<MultiNodeEdit>(obj)) { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 			obj_icon = EditorNode::get_singleton()->get_class_icon(Object::cast_to<MultiNodeEdit>(obj)->get_edited_class_name()); | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 			obj_icon = EditorNode::get_singleton()->get_object_icon(obj); | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 12:53:28 +03:00
										 |  |  | 		if (obj_icon.is_valid()) { | 
					
						
							|  |  |  | 			current_object_icon->set_texture(obj_icon); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (i == history->get_path_size() - 1) { | 
					
						
							|  |  |  | 			String name; | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | 			if (obj->has_method("_get_editor_name")) { | 
					
						
							|  |  |  | 				name = obj->call("_get_editor_name"); | 
					
						
							|  |  |  | 			} else if (Object::cast_to<Resource>(obj)) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				Resource *r = Object::cast_to<Resource>(obj); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				if (r->get_path().is_resource_file()) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 					name = r->get_path().get_file(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 					name = r->get_name(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-09 03:42:46 -06:00
										 |  |  | 				if (name.is_empty()) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 					name = r->get_class(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} else if (obj->is_class("EditorDebuggerRemoteObject")) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				name = obj->call("get_title"); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} else if (Object::cast_to<Node>(obj)) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				name = Object::cast_to<Node>(obj)->get_name(); | 
					
						
							| 
									
										
										
										
											2021-12-09 03:42:46 -06:00
										 |  |  | 			} else if (Object::cast_to<Resource>(obj) && !Object::cast_to<Resource>(obj)->get_name().is_empty()) { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				name = Object::cast_to<Resource>(obj)->get_name(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 				name = obj->get_class(); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | 			current_object_label->set_text(name); | 
					
						
							| 
									
										
										
										
											2022-08-25 12:42:17 +02:00
										 |  |  | 			set_tooltip_text(obj->get_class()); | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | void EditorPath::clear_path() { | 
					
						
							|  |  |  | 	set_disabled(true); | 
					
						
							| 
									
										
										
										
											2022-08-25 12:42:17 +02:00
										 |  |  | 	set_tooltip_text(""); | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	current_object_label->set_text(""); | 
					
						
							|  |  |  | 	current_object_icon->set_texture(nullptr); | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | 	sub_objects_icon->hide(); | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void EditorPath::enable_path() { | 
					
						
							|  |  |  | 	set_disabled(false); | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | 	sub_objects_icon->show(); | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-25 20:53:58 -03:00
										 |  |  | void EditorPath::_id_pressed(int p_idx) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ERR_FAIL_INDEX(p_idx, objects.size()); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Object *obj = ObjectDB::get_instance(objects[p_idx]); | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	if (!obj) { | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2020-05-14 16:41:43 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	EditorNode::get_singleton()->push_item(obj); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-15 09:07:44 +02:00
										 |  |  | void EditorPath::_notification(int p_what) { | 
					
						
							|  |  |  | 	switch (p_what) { | 
					
						
							| 
									
										
										
										
											2022-08-29 11:04:31 +02:00
										 |  |  | 		case NOTIFICATION_ENTER_TREE: | 
					
						
							| 
									
										
										
										
											2019-10-15 09:07:44 +02:00
										 |  |  | 		case NOTIFICATION_THEME_CHANGED: { | 
					
						
							|  |  |  | 			update_path(); | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | 			sub_objects_icon->set_texture(get_theme_icon(SNAME("arrow"), SNAME("OptionButton"))); | 
					
						
							| 
									
										
										
										
											2022-02-08 10:14:58 +01:00
										 |  |  | 			current_object_label->add_theme_font_override("font", get_theme_font(SNAME("main"), SNAME("EditorFonts"))); | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		case NOTIFICATION_READY: { | 
					
						
							|  |  |  | 			connect("pressed", callable_mp(this, &EditorPath::_show_popup)); | 
					
						
							| 
									
										
										
										
											2019-10-15 09:07:44 +02:00
										 |  |  | 		} break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | void EditorPath::_bind_methods() { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-30 20:12:26 +02:00
										 |  |  | EditorPath::EditorPath(EditorSelectionHistory *p_history) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	history = p_history; | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	MarginContainer *main_mc = memnew(MarginContainer); | 
					
						
							| 
									
										
										
										
											2022-03-18 19:02:57 -05:00
										 |  |  | 	main_mc->set_anchors_and_offsets_preset(PRESET_FULL_RECT); | 
					
						
							| 
									
										
										
										
											2022-02-08 10:14:58 +01:00
										 |  |  | 	main_mc->add_theme_constant_override("margin_left", 4 * EDSCALE); | 
					
						
							|  |  |  | 	main_mc->add_theme_constant_override("margin_right", 6 * EDSCALE); | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 	add_child(main_mc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	HBoxContainer *main_hb = memnew(HBoxContainer); | 
					
						
							|  |  |  | 	main_mc->add_child(main_hb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	current_object_icon = memnew(TextureRect); | 
					
						
							|  |  |  | 	current_object_icon->set_stretch_mode(TextureRect::STRETCH_KEEP_CENTERED); | 
					
						
							|  |  |  | 	main_hb->add_child(current_object_icon); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	current_object_label = memnew(Label); | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | 	current_object_label->set_text_overrun_behavior(TextServer::OVERRUN_TRIM_ELLIPSIS); | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 	current_object_label->set_h_size_flags(SIZE_EXPAND_FILL); | 
					
						
							|  |  |  | 	main_hb->add_child(current_object_label); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sub_objects_icon = memnew(TextureRect); | 
					
						
							| 
									
										
										
										
											2022-06-14 13:34:17 -05:00
										 |  |  | 	sub_objects_icon->hide(); | 
					
						
							| 
									
										
										
										
											2021-05-15 21:24:45 +03:00
										 |  |  | 	sub_objects_icon->set_stretch_mode(TextureRect::STRETCH_KEEP_CENTERED); | 
					
						
							|  |  |  | 	main_hb->add_child(sub_objects_icon); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sub_objects_menu = memnew(PopupMenu); | 
					
						
							|  |  |  | 	add_child(sub_objects_menu); | 
					
						
							|  |  |  | 	sub_objects_menu->connect("about_to_popup", callable_mp(this, &EditorPath::_about_to_show)); | 
					
						
							|  |  |  | 	sub_objects_menu->connect("id_pressed", callable_mp(this, &EditorPath::_id_pressed)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-25 12:42:17 +02:00
										 |  |  | 	set_tooltip_text(TTR("Open a list of sub-resources.")); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } |