| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  popup_menu.h                                                          */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         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
										 |  |  | #ifndef POPUP_MENU_H
 | 
					
						
							|  |  |  | #define POPUP_MENU_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-22 12:37:22 -03:00
										 |  |  | #include "core/input/shortcut.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "scene/gui/popup.h"
 | 
					
						
							| 
									
										
										
										
											2020-08-29 22:05:59 +10:00
										 |  |  | #include "scene/gui/scroll_container.h"
 | 
					
						
							| 
									
										
										
										
											2024-02-11 12:09:55 +01:00
										 |  |  | #include "scene/property_list_helper.h"
 | 
					
						
							| 
									
										
										
										
											2020-09-03 14:22:16 +03:00
										 |  |  | #include "scene/resources/text_line.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | class PopupMenu : public Popup { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(PopupMenu, Popup); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-19 19:41:01 +02:00
										 |  |  | 	static HashMap<NativeMenu::SystemMenus, PopupMenu *> system_menus; | 
					
						
							| 
									
										
										
										
											2023-10-15 20:52:56 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	struct Item { | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 		Ref<Texture2D> icon; | 
					
						
							| 
									
										
										
										
											2023-03-31 21:17:59 +02:00
										 |  |  | 		int icon_max_width = 0; | 
					
						
							| 
									
										
										
										
											2022-12-18 21:38:08 -08:00
										 |  |  | 		Color icon_modulate = Color(1, 1, 1, 1); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		String text; | 
					
						
							| 
									
										
										
										
											2017-01-09 16:43:44 -03:00
										 |  |  | 		String xl_text; | 
					
						
							| 
									
										
										
										
											2020-09-03 14:22:16 +03:00
										 |  |  | 		Ref<TextLine> text_buf; | 
					
						
							|  |  |  | 		Ref<TextLine> accel_text_buf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		String language; | 
					
						
							|  |  |  | 		Control::TextDirection text_direction = Control::TEXT_DIRECTION_AUTO; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-09 18:24:36 +01:00
										 |  |  | 		bool checked = false; | 
					
						
							| 
									
										
										
										
											2018-03-23 21:55:40 +01:00
										 |  |  | 		enum { | 
					
						
							|  |  |  | 			CHECKABLE_TYPE_NONE, | 
					
						
							|  |  |  | 			CHECKABLE_TYPE_CHECK_BOX, | 
					
						
							|  |  |  | 			CHECKABLE_TYPE_RADIO_BUTTON, | 
					
						
							| 
									
										
										
										
											2024-02-11 12:09:55 +01:00
										 |  |  | 		} checkable_type = CHECKABLE_TYPE_NONE; | 
					
						
							| 
									
										
										
										
											2021-02-09 18:24:36 +01:00
										 |  |  | 		int max_states = 0; | 
					
						
							|  |  |  | 		int state = 0; | 
					
						
							|  |  |  | 		bool separator = false; | 
					
						
							|  |  |  | 		bool disabled = false; | 
					
						
							|  |  |  | 		bool dirty = true; | 
					
						
							|  |  |  | 		int id = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		Variant metadata; | 
					
						
							| 
									
										
										
										
											2023-11-28 17:33:04 +01:00
										 |  |  | 		String submenu_name; // Compatibility.
 | 
					
						
							|  |  |  | 		PopupMenu *submenu = nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		String tooltip; | 
					
						
							| 
									
										
										
										
											2021-08-13 16:31:57 -05:00
										 |  |  | 		Key accel = Key::NONE; | 
					
						
							| 
									
										
										
										
											2021-02-09 18:24:36 +01:00
										 |  |  | 		int _ofs_cache = 0; | 
					
						
							|  |  |  | 		int _height_cache = 0; | 
					
						
							| 
									
										
										
										
											2022-08-01 12:28:16 +03:00
										 |  |  | 		int indent = 0; | 
					
						
							| 
									
										
										
										
											2020-09-09 21:53:24 +02:00
										 |  |  | 		Ref<Shortcut> shortcut; | 
					
						
							| 
									
										
										
										
											2021-02-09 18:24:36 +01:00
										 |  |  | 		bool shortcut_is_global = false; | 
					
						
							|  |  |  | 		bool shortcut_is_disabled = false; | 
					
						
							| 
									
										
										
										
											2020-02-23 22:23:34 +01:00
										 |  |  | 		bool allow_echo = false; | 
					
						
							| 
									
										
										
										
											2023-07-11 11:17:35 +03:00
										 |  |  | 		bool submenu_bound = false; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-29 22:05:59 +10:00
										 |  |  | 		// Returns (0,0) if icon is null.
 | 
					
						
							|  |  |  | 		Size2 get_icon_size() const { | 
					
						
							|  |  |  | 			return icon.is_null() ? Size2() : icon->get_size(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		Item() { | 
					
						
							| 
									
										
										
										
											2021-06-17 16:03:09 -06:00
										 |  |  | 			text_buf.instantiate(); | 
					
						
							|  |  |  | 			accel_text_buf.instantiate(); | 
					
						
							| 
									
										
										
										
											2018-03-23 21:55:40 +01:00
										 |  |  | 			checkable_type = CHECKABLE_TYPE_NONE; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2024-02-11 12:09:55 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Item(bool p_dummy) {} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-11 12:09:55 +01:00
										 |  |  | 	static inline PropertyListHelper base_property_helper; | 
					
						
							|  |  |  | 	PropertyListHelper property_helper; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-14 02:11:45 +01:00
										 |  |  | 	// To make Item available.
 | 
					
						
							|  |  |  | 	friend class OptionButton; | 
					
						
							|  |  |  | 	friend class MenuButton; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-19 19:41:01 +02:00
										 |  |  | 	RID global_menu; | 
					
						
							|  |  |  | 	RID system_menu; | 
					
						
							|  |  |  | 	NativeMenu::SystemMenus system_menu_id = NativeMenu::INVALID_MENU_ID; | 
					
						
							| 
									
										
										
										
											2024-03-07 20:42:24 +02:00
										 |  |  | 	bool prefer_native = false; | 
					
						
							| 
									
										
										
										
											2023-07-11 11:17:35 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-07 22:57:50 +10:00
										 |  |  | 	bool close_allowed = false; | 
					
						
							| 
									
										
										
										
											2022-04-13 09:58:38 +03:00
										 |  |  | 	bool activated_by_keyboard = false; | 
					
						
							| 
									
										
										
										
											2020-09-07 22:57:50 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Timer *minimum_lifetime_timer = nullptr; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	Timer *submenu_timer = nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	List<Rect2> autohide_areas; | 
					
						
							| 
									
										
										
										
											2024-07-29 21:23:12 -07:00
										 |  |  | 	mutable Vector<Item> items; | 
					
						
							| 
									
										
										
										
											2024-02-20 10:05:41 +01:00
										 |  |  | 	BitField<MouseButtonMask> initial_button_mask; | 
					
						
							|  |  |  | 	bool during_grabbed_click = false; | 
					
						
							| 
									
										
										
										
											2024-02-23 15:51:47 +02:00
										 |  |  | 	bool is_scrolling = false; | 
					
						
							| 
									
										
										
										
											2021-02-09 18:24:36 +01:00
										 |  |  | 	int mouse_over = -1; | 
					
						
							|  |  |  | 	int submenu_over = -1; | 
					
						
							| 
									
										
										
										
											2020-09-03 14:22:16 +03:00
										 |  |  | 	String _get_accel_text(const Item &p_item) const; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	int _get_mouse_over(const Point2 &p_over) const; | 
					
						
							| 
									
										
										
										
											2024-02-23 15:51:47 +02:00
										 |  |  | 	void _mouse_over_update(const Point2 &p_over); | 
					
						
							| 
									
										
										
										
											2020-07-10 11:34:39 +01:00
										 |  |  | 	virtual Size2 _get_contents_minimum_size() const override; | 
					
						
							| 
									
										
										
										
											2020-08-29 22:05:59 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-24 15:58:50 +02:00
										 |  |  | 	int _get_item_height(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2020-08-29 22:05:59 +10:00
										 |  |  | 	int _get_items_total_height() const; | 
					
						
							| 
									
										
										
										
											2023-05-24 15:58:50 +02:00
										 |  |  | 	Size2 _get_item_icon_size(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2020-08-29 22:05:59 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-29 21:23:12 -07:00
										 |  |  | 	void _shape_item(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2020-09-03 14:22:16 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-13 09:58:38 +03:00
										 |  |  | 	void _activate_submenu(int p_over, bool p_by_keyboard = false); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void _submenu_timeout(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-18 20:45:59 +02:00
										 |  |  | 	uint64_t popup_time_msec = 0; | 
					
						
							| 
									
										
										
										
											2021-02-09 18:24:36 +01:00
										 |  |  | 	bool hide_on_item_selection = true; | 
					
						
							|  |  |  | 	bool hide_on_checkable_item_selection = true; | 
					
						
							|  |  |  | 	bool hide_on_multistate_item_selection = false; | 
					
						
							| 
									
										
										
										
											2015-01-03 16:52:37 -03:00
										 |  |  | 	Vector2 moved; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 	HashMap<Ref<Shortcut>, int> shortcut_refcount; | 
					
						
							| 
									
										
										
										
											2016-06-04 21:31:29 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-09 21:53:24 +02:00
										 |  |  | 	void _ref_shortcut(Ref<Shortcut> p_sc); | 
					
						
							|  |  |  | 	void _unref_shortcut(Ref<Shortcut> p_sc); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-26 23:21:04 +10:00
										 |  |  | 	void _shortcut_changed(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-09 18:24:36 +01:00
										 |  |  | 	bool allow_search = true; | 
					
						
							|  |  |  | 	uint64_t search_time_msec = 0; | 
					
						
							|  |  |  | 	String search_string = ""; | 
					
						
							| 
									
										
										
										
											2019-05-11 18:32:53 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	ScrollContainer *scroll_container = nullptr; | 
					
						
							|  |  |  | 	Control *control = nullptr; | 
					
						
							| 
									
										
										
										
											2020-03-12 09:37:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-09 11:25:56 -05:00
										 |  |  | 	const float DEFAULT_GAMEPAD_EVENT_DELAY_MS = 0.5; | 
					
						
							|  |  |  | 	const float GAMEPAD_EVENT_REPEAT_RATE_MS = 1.0 / 20; | 
					
						
							|  |  |  | 	float gamepad_event_delay_ms = DEFAULT_GAMEPAD_EVENT_DELAY_MS; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-01 13:38:08 +03:00
										 |  |  | 	struct ThemeCache { | 
					
						
							|  |  |  | 		Ref<StyleBox> panel_style; | 
					
						
							|  |  |  | 		Ref<StyleBox> hover_style; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<StyleBox> separator_style; | 
					
						
							|  |  |  | 		Ref<StyleBox> labeled_separator_left; | 
					
						
							|  |  |  | 		Ref<StyleBox> labeled_separator_right; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		int v_separation = 0; | 
					
						
							|  |  |  | 		int h_separation = 0; | 
					
						
							|  |  |  | 		int indent = 0; | 
					
						
							|  |  |  | 		int item_start_padding = 0; | 
					
						
							|  |  |  | 		int item_end_padding = 0; | 
					
						
							| 
									
										
										
										
											2023-03-31 21:17:59 +02:00
										 |  |  | 		int icon_max_width = 0; | 
					
						
							| 
									
										
										
										
											2022-09-01 13:38:08 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Ref<Texture2D> checked; | 
					
						
							|  |  |  | 		Ref<Texture2D> checked_disabled; | 
					
						
							|  |  |  | 		Ref<Texture2D> unchecked; | 
					
						
							|  |  |  | 		Ref<Texture2D> unchecked_disabled; | 
					
						
							|  |  |  | 		Ref<Texture2D> radio_checked; | 
					
						
							|  |  |  | 		Ref<Texture2D> radio_checked_disabled; | 
					
						
							|  |  |  | 		Ref<Texture2D> radio_unchecked; | 
					
						
							|  |  |  | 		Ref<Texture2D> radio_unchecked_disabled; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<Texture2D> submenu; | 
					
						
							|  |  |  | 		Ref<Texture2D> submenu_mirrored; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Ref<Font> font; | 
					
						
							|  |  |  | 		int font_size = 0; | 
					
						
							|  |  |  | 		Ref<Font> font_separator; | 
					
						
							|  |  |  | 		int font_separator_size = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Color font_color; | 
					
						
							|  |  |  | 		Color font_hover_color; | 
					
						
							|  |  |  | 		Color font_disabled_color; | 
					
						
							|  |  |  | 		Color font_accelerator_color; | 
					
						
							|  |  |  | 		int font_outline_size = 0; | 
					
						
							|  |  |  | 		Color font_outline_color; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Color font_separator_color; | 
					
						
							|  |  |  | 		int font_separator_outline_size = 0; | 
					
						
							|  |  |  | 		Color font_separator_outline_color; | 
					
						
							|  |  |  | 	} theme_cache; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-29 22:05:59 +10:00
										 |  |  | 	void _draw_items(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-07 22:57:50 +10:00
										 |  |  | 	void _minimum_lifetime_timeout(); | 
					
						
							|  |  |  | 	void _close_pressed(); | 
					
						
							| 
									
										
										
										
											2022-08-01 12:28:16 +03:00
										 |  |  | 	void _menu_changed(); | 
					
						
							| 
									
										
										
										
											2023-09-01 08:40:35 +02:00
										 |  |  | 	void _input_from_window_internal(const Ref<InputEvent> &p_event); | 
					
						
							| 
									
										
										
										
											2023-10-06 09:36:42 +03:00
										 |  |  | 	bool _set_item_accelerator(int p_index, const Ref<InputEventKey> &p_ie); | 
					
						
							| 
									
										
										
										
											2024-02-11 12:09:55 +01:00
										 |  |  | 	void _set_item_checkable_type(int p_index, int p_checkable_type); | 
					
						
							|  |  |  | 	int _get_item_checkable_type(int p_index) const; | 
					
						
							| 
									
										
										
										
											2020-09-07 22:57:50 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-12 09:37:40 -03:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2022-08-01 12:28:16 +03:00
										 |  |  | 	virtual void add_child_notify(Node *p_child) override; | 
					
						
							|  |  |  | 	virtual void remove_child_notify(Node *p_child) override; | 
					
						
							| 
									
										
										
										
											2023-09-01 08:40:35 +02:00
										 |  |  | 	virtual void _input_from_window(const Ref<InputEvent> &p_event) override; | 
					
						
							| 
									
										
										
										
											2023-09-08 21:00:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void _notification(int p_what); | 
					
						
							| 
									
										
										
										
											2021-11-02 20:08:58 -06:00
										 |  |  | 	bool _set(const StringName &p_name, const Variant &p_value); | 
					
						
							| 
									
										
										
										
											2024-02-11 12:09:55 +01:00
										 |  |  | 	bool _get(const StringName &p_name, Variant &r_ret) const { return property_helper.property_get_value(p_name, r_ret); } | 
					
						
							| 
									
										
										
										
											2024-05-23 17:10:55 +02:00
										 |  |  | 	void _get_property_list(List<PropertyInfo> *p_list) const { property_helper.get_property_list(p_list); } | 
					
						
							| 
									
										
										
										
											2024-02-11 12:09:55 +01:00
										 |  |  | 	bool _property_can_revert(const StringName &p_name) const { return property_helper.property_can_revert(p_name); } | 
					
						
							|  |  |  | 	bool _property_get_revert(const StringName &p_name, Variant &r_property) const { return property_helper.property_get_revert(p_name, r_property); } | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 22:23:34 +01:00
										 |  |  | #ifndef DISABLE_DEPRECATED
 | 
					
						
							|  |  |  | 	void _add_shortcut_bind_compat_36493(const Ref<Shortcut> &p_shortcut, int p_id = -1, bool p_global = false); | 
					
						
							|  |  |  | 	void _add_icon_shortcut_bind_compat_36493(const Ref<Texture2D> &p_icon, const Ref<Shortcut> &p_shortcut, int p_id = -1, bool p_global = false); | 
					
						
							| 
									
										
										
										
											2023-07-27 19:50:31 +02:00
										 |  |  | 	void _clear_bind_compat_79965(); | 
					
						
							| 
									
										
										
										
											2024-01-19 19:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void _set_system_menu_root_compat_87452(const String &p_special); | 
					
						
							|  |  |  | 	String _get_system_menu_root_compat_87452() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 22:23:34 +01:00
										 |  |  | 	static void _bind_compatibility_methods(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2021-08-01 02:53:36 -03:00
										 |  |  | 	// ATTENTION: This is used by the POT generator's scene parser. If the number of properties returned by `_get_items()` ever changes,
 | 
					
						
							|  |  |  | 	// this value should be updated to reflect the new size.
 | 
					
						
							|  |  |  | 	static const int ITEM_PROPERTY_SIZE = 10; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-09 11:59:01 +03:00
										 |  |  | 	virtual void _parent_focused() override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-19 19:41:01 +02:00
										 |  |  | 	RID bind_global_menu(); | 
					
						
							| 
									
										
										
										
											2023-07-11 11:17:35 +03:00
										 |  |  | 	void unbind_global_menu(); | 
					
						
							| 
									
										
										
										
											2023-10-15 20:52:56 +03:00
										 |  |  | 	bool is_system_menu() const; | 
					
						
							| 
									
										
										
										
											2024-01-19 19:41:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void set_system_menu(NativeMenu::SystemMenus p_system_menu_id); | 
					
						
							|  |  |  | 	NativeMenu::SystemMenus get_system_menu() const; | 
					
						
							| 
									
										
										
										
											2023-07-11 11:17:35 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-13 16:31:57 -05:00
										 |  |  | 	void add_item(const String &p_label, int p_id = -1, Key p_accel = Key::NONE); | 
					
						
							|  |  |  | 	void add_icon_item(const Ref<Texture2D> &p_icon, const String &p_label, int p_id = -1, Key p_accel = Key::NONE); | 
					
						
							|  |  |  | 	void add_check_item(const String &p_label, int p_id = -1, Key p_accel = Key::NONE); | 
					
						
							|  |  |  | 	void add_icon_check_item(const Ref<Texture2D> &p_icon, const String &p_label, int p_id = -1, Key p_accel = Key::NONE); | 
					
						
							|  |  |  | 	void add_radio_check_item(const String &p_label, int p_id = -1, Key p_accel = Key::NONE); | 
					
						
							|  |  |  | 	void add_icon_radio_check_item(const Ref<Texture2D> &p_icon, const String &p_label, int p_id = -1, Key p_accel = Key::NONE); | 
					
						
							| 
									
										
										
										
											2019-05-09 05:21:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-13 16:31:57 -05:00
										 |  |  | 	void add_multistate_item(const String &p_label, int p_max_states, int p_default_state = 0, int p_id = -1, Key p_accel = Key::NONE); | 
					
						
							| 
									
										
										
										
											2019-10-08 08:28:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 22:23:34 +01:00
										 |  |  | 	void add_shortcut(const Ref<Shortcut> &p_shortcut, int p_id = -1, bool p_global = false, bool p_allow_echo = false); | 
					
						
							|  |  |  | 	void add_icon_shortcut(const Ref<Texture2D> &p_icon, const Ref<Shortcut> &p_shortcut, int p_id = -1, bool p_global = false, bool p_allow_echo = false); | 
					
						
							| 
									
										
										
										
											2020-09-09 21:53:24 +02:00
										 |  |  | 	void add_check_shortcut(const Ref<Shortcut> &p_shortcut, int p_id = -1, bool p_global = false); | 
					
						
							|  |  |  | 	void add_icon_check_shortcut(const Ref<Texture2D> &p_icon, const Ref<Shortcut> &p_shortcut, int p_id = -1, bool p_global = false); | 
					
						
							|  |  |  | 	void add_radio_check_shortcut(const Ref<Shortcut> &p_shortcut, int p_id = -1, bool p_global = false); | 
					
						
							|  |  |  | 	void add_icon_radio_check_shortcut(const Ref<Texture2D> &p_icon, const Ref<Shortcut> &p_shortcut, int p_id = -1, bool p_global = false); | 
					
						
							| 
									
										
										
										
											2019-05-09 05:21:49 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-08 08:28:26 +02:00
										 |  |  | 	void add_submenu_item(const String &p_label, const String &p_submenu, int p_id = -1); | 
					
						
							| 
									
										
										
										
											2023-11-28 17:33:04 +01:00
										 |  |  | 	void add_submenu_node_item(const String &p_label, PopupMenu *p_submenu, int p_id = -1); | 
					
						
							| 
									
										
										
										
											2017-11-22 22:29:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void set_item_text(int p_idx, const String &p_text); | 
					
						
							| 
									
										
										
										
											2020-09-03 14:22:16 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void set_item_text_direction(int p_idx, Control::TextDirection p_text_direction); | 
					
						
							|  |  |  | 	void set_item_language(int p_idx, const String &p_language); | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 	void set_item_icon(int p_idx, const Ref<Texture2D> &p_icon); | 
					
						
							| 
									
										
										
										
											2023-03-31 21:17:59 +02:00
										 |  |  | 	void set_item_icon_max_width(int p_idx, int p_width); | 
					
						
							| 
									
										
										
										
											2022-12-18 21:38:08 -08:00
										 |  |  | 	void set_item_icon_modulate(int p_idx, const Color &p_modulate); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void set_item_checked(int p_idx, bool p_checked); | 
					
						
							| 
									
										
										
										
											2019-05-09 05:21:49 -04:00
										 |  |  | 	void set_item_id(int p_idx, int p_id); | 
					
						
							| 
									
										
										
										
											2021-08-13 16:31:57 -05:00
										 |  |  | 	void set_item_accelerator(int p_idx, Key p_accel); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void set_item_metadata(int p_idx, const Variant &p_meta); | 
					
						
							|  |  |  | 	void set_item_disabled(int p_idx, bool p_disabled); | 
					
						
							|  |  |  | 	void set_item_submenu(int p_idx, const String &p_submenu); | 
					
						
							| 
									
										
										
										
											2023-11-28 17:33:04 +01:00
										 |  |  | 	void set_item_submenu_node(int p_idx, PopupMenu *p_submenu); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void set_item_as_separator(int p_idx, bool p_separator); | 
					
						
							|  |  |  | 	void set_item_as_checkable(int p_idx, bool p_checkable); | 
					
						
							| 
									
										
										
										
											2018-03-23 21:55:40 +01:00
										 |  |  | 	void set_item_as_radio_checkable(int p_idx, bool p_radio_checkable); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void set_item_tooltip(int p_idx, const String &p_tooltip); | 
					
						
							| 
									
										
										
										
											2020-09-09 21:53:24 +02:00
										 |  |  | 	void set_item_shortcut(int p_idx, const Ref<Shortcut> &p_shortcut, bool p_global = false); | 
					
						
							| 
									
										
										
										
											2022-08-01 12:28:16 +03:00
										 |  |  | 	void set_item_indent(int p_idx, int p_indent); | 
					
						
							| 
									
										
										
										
											2024-01-20 07:10:28 +01:00
										 |  |  | 	void set_item_max_states(int p_idx, int p_max_states); | 
					
						
							| 
									
										
										
										
											2017-12-12 09:37:37 +07:00
										 |  |  | 	void set_item_multistate(int p_idx, int p_state); | 
					
						
							|  |  |  | 	void toggle_item_multistate(int p_idx); | 
					
						
							| 
									
										
										
										
											2018-06-07 12:46:14 -03:00
										 |  |  | 	void set_item_shortcut_disabled(int p_idx, bool p_disabled); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-01 15:50:54 +02:00
										 |  |  | 	void toggle_item_checked(int p_idx); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	String get_item_text(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2023-06-27 16:22:58 +02:00
										 |  |  | 	String get_item_xl_text(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2020-09-03 14:22:16 +03:00
										 |  |  | 	Control::TextDirection get_item_text_direction(int p_idx) const; | 
					
						
							|  |  |  | 	String get_item_language(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2017-07-14 10:45:24 +02:00
										 |  |  | 	int get_item_idx_from_text(const String &text) const; | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 	Ref<Texture2D> get_item_icon(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2023-03-31 21:17:59 +02:00
										 |  |  | 	int get_item_icon_max_width(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2022-12-18 21:38:08 -08:00
										 |  |  | 	Color get_item_icon_modulate(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	bool is_item_checked(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2017-08-07 17:17:31 +07:00
										 |  |  | 	int get_item_id(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2019-05-09 05:21:49 -04:00
										 |  |  | 	int get_item_index(int p_id) const; | 
					
						
							| 
									
										
										
										
											2021-08-13 16:31:57 -05:00
										 |  |  | 	Key get_item_accelerator(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Variant get_item_metadata(int p_idx) const; | 
					
						
							|  |  |  | 	bool is_item_disabled(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2017-08-11 15:10:05 -04:00
										 |  |  | 	String get_item_submenu(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2023-11-28 17:33:04 +01:00
										 |  |  | 	PopupMenu *get_item_submenu_node(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	bool is_item_separator(int p_idx) const; | 
					
						
							|  |  |  | 	bool is_item_checkable(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2018-03-23 21:55:40 +01:00
										 |  |  | 	bool is_item_radio_checkable(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2018-06-07 12:46:14 -03:00
										 |  |  | 	bool is_item_shortcut_disabled(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2022-08-01 12:28:16 +03:00
										 |  |  | 	bool is_item_shortcut_global(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	String get_item_tooltip(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2020-09-09 21:53:24 +02:00
										 |  |  | 	Ref<Shortcut> get_item_shortcut(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2022-08-01 12:28:16 +03:00
										 |  |  | 	int get_item_indent(int p_idx) const; | 
					
						
							|  |  |  | 	int get_item_max_states(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2017-11-22 22:29:27 +01:00
										 |  |  | 	int get_item_state(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-06 10:51:14 -03:00
										 |  |  | 	void set_focused_item(int p_idx); | 
					
						
							|  |  |  | 	int get_focused_item() const; | 
					
						
							| 
									
										
										
										
											2021-11-02 20:08:58 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void set_item_count(int p_count); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	int get_item_count() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-07 20:42:24 +02:00
										 |  |  | 	void set_prefer_native_menu(bool p_enabled); | 
					
						
							|  |  |  | 	bool is_prefer_native_menu() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-08 09:36:56 +03:00
										 |  |  | 	bool is_native_menu() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-24 15:58:50 +02:00
										 |  |  | 	void scroll_to_item(int p_idx); | 
					
						
							| 
									
										
										
										
											2022-02-05 23:47:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	bool activate_item_by_event(const Ref<InputEvent> &p_event, bool p_for_global_only = false); | 
					
						
							| 
									
										
										
										
											2023-05-24 15:58:50 +02:00
										 |  |  | 	void activate_item(int p_idx); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-11 11:17:35 +03:00
										 |  |  | 	void _about_to_popup(); | 
					
						
							|  |  |  | 	void _about_to_close(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void remove_item(int p_idx); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-27 15:18:47 +03:00
										 |  |  | 	void add_separator(const String &p_text = String(), int p_id = -1); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-27 19:50:31 +02:00
										 |  |  | 	void clear(bool p_free_submenus = true); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual String get_tooltip(const Point2 &p_pos) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void add_autohide_area(const Rect2 &p_area); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void clear_autohide_areas(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-23 15:43:45 +01:00
										 |  |  | 	void set_hide_on_item_selection(bool p_enabled); | 
					
						
							| 
									
										
										
										
											2017-11-22 22:29:27 +01:00
										 |  |  | 	bool is_hide_on_item_selection() const; | 
					
						
							| 
									
										
										
										
											2015-01-03 16:52:37 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-14 14:49:00 +03:00
										 |  |  | 	void set_hide_on_checkable_item_selection(bool p_enabled); | 
					
						
							| 
									
										
										
										
											2017-11-22 22:29:27 +01:00
										 |  |  | 	bool is_hide_on_checkable_item_selection() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-12 09:37:37 +07:00
										 |  |  | 	void set_hide_on_multistate_item_selection(bool p_enabled); | 
					
						
							|  |  |  | 	bool is_hide_on_multistate_item_selection() const; | 
					
						
							| 
									
										
										
										
											2017-04-14 14:49:00 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:16:06 +03:00
										 |  |  | 	void set_submenu_popup_delay(float p_time); | 
					
						
							|  |  |  | 	float get_submenu_popup_delay() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-11 18:32:53 +02:00
										 |  |  | 	void set_allow_search(bool p_allow); | 
					
						
							|  |  |  | 	bool get_allow_search() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-03-30 15:42:50 +03:00
										 |  |  | 	virtual void popup(const Rect2i &p_bounds = Rect2i()) override; | 
					
						
							| 
									
										
										
										
											2024-03-07 20:42:24 +02:00
										 |  |  | 	virtual void set_visible(bool p_visible) override; | 
					
						
							| 
									
										
										
										
											2018-03-27 23:41:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	PopupMenu(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	~PopupMenu(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-23 23:41:51 +02:00
										 |  |  | #endif // POPUP_MENU_H
 |