| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  popup_menu.h                                                         */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2022-01-03 21:27:34 +01:00
										 |  |  | /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03: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-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"
 | 
					
						
							| 
									
										
										
										
											2020-08-29 22:05:59 +10:00
										 |  |  | #include "scene/gui/margin_container.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"
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	struct Item { | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 		Ref<Texture2D> icon; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Dictionary opentype_features; | 
					
						
							|  |  |  | 		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, | 
					
						
							|  |  |  | 		} checkable_type; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 		String submenu; | 
					
						
							|  |  |  | 		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; | 
					
						
							|  |  |  | 		int h_ofs = 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; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01: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; | 
					
						
							|  |  |  | 	Vector<Item> items; | 
					
						
							| 
									
										
										
										
											2021-08-13 16:31:57 -05:00
										 |  |  | 	MouseButton initial_button_mask = MouseButton::NONE; | 
					
						
							| 
									
										
										
										
											2021-02-09 18:24:36 +01:00
										 |  |  | 	bool during_grabbed_click = false; | 
					
						
							|  |  |  | 	int mouse_over = -1; | 
					
						
							|  |  |  | 	int submenu_over = -1; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Rect2 parent_rect; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2020-07-10 11:34:39 +01:00
										 |  |  | 	virtual Size2 _get_contents_minimum_size() const override; | 
					
						
							| 
									
										
										
										
											2020-08-29 22:05:59 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-16 00:30:57 -03:00
										 |  |  | 	int _get_item_height(int p_item) const; | 
					
						
							| 
									
										
										
										
											2020-08-29 22:05:59 +10:00
										 |  |  | 	int _get_items_total_height() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-03 14:22:16 +03:00
										 |  |  | 	void _shape_item(int p_item); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-22 12:37:22 -03:00
										 |  |  | 	virtual void gui_input(const Ref<InputEvent> &p_event); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 	MarginContainer *margin_container = nullptr; | 
					
						
							|  |  |  | 	ScrollContainer *scroll_container = nullptr; | 
					
						
							|  |  |  | 	Control *control = nullptr; | 
					
						
							| 
									
										
										
										
											2020-03-12 09:37:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-29 22:05:59 +10:00
										 |  |  | 	void _draw_items(); | 
					
						
							|  |  |  | 	void _draw_background(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-07 22:57:50 +10:00
										 |  |  | 	void _minimum_lifetime_timeout(); | 
					
						
							|  |  |  | 	void _close_pressed(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-12 09:37:40 -03:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  | 	bool _get(const StringName &p_name, Variant &r_ret) const; | 
					
						
							|  |  |  | 	void _get_property_list(List<PropertyInfo> *p_list) const; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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-09-09 21:53:24 +02:00
										 |  |  | 	void add_shortcut(const Ref<Shortcut> &p_shortcut, int p_id = -1, bool p_global = false); | 
					
						
							|  |  |  | 	void add_icon_shortcut(const Ref<Texture2D> &p_icon, const Ref<Shortcut> &p_shortcut, int p_id = -1, bool p_global = false); | 
					
						
							|  |  |  | 	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); | 
					
						
							| 
									
										
										
										
											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_opentype_feature(int p_idx, const String &p_name, int p_value); | 
					
						
							|  |  |  | 	void clear_item_opentype_features(int p_idx); | 
					
						
							|  |  |  | 	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); | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2016-09-17 19:01:11 -03:00
										 |  |  | 	void set_item_h_offset(int p_idx, int p_offset); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2020-09-03 14:22:16 +03:00
										 |  |  | 	Control::TextDirection get_item_text_direction(int p_idx) const; | 
					
						
							|  |  |  | 	int get_item_opentype_feature(int p_idx, const String &p_name) 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; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2017-11-22 22:29:27 +01:00
										 |  |  | 	int get_item_state(int p_idx) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-16 01:04:30 +02:00
										 |  |  | 	void set_current_index(int p_idx); | 
					
						
							| 
									
										
										
										
											2020-05-06 15:27:35 -05:00
										 |  |  | 	int get_current_index() 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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-05 23:47:00 -03:00
										 |  |  | 	void scroll_to_item(int p_item); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-20 12:38:03 -03:00
										 |  |  | 	bool activate_item_by_event(const Ref<InputEvent> &p_event, bool p_for_global_only = false); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void activate_item(int p_item); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void set_parent_rect(const Rect2 &p_rect); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-10 11:34:39 +01:00
										 |  |  | 	virtual void get_translatable_strings(List<String> *p_strings) const override; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-27 23:41:27 +02:00
										 |  |  | 	virtual void popup(const Rect2 &p_bounds = Rect2()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-19 23:32:09 -03:00
										 |  |  | 	void take_mouse_focus(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	PopupMenu(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	~PopupMenu(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |