| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  connections_dialog.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 CONNECTIONS_DIALOG_H
 | 
					
						
							|  |  |  | #define CONNECTIONS_DIALOG_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "scene/gui/check_button.h"
 | 
					
						
							|  |  |  | #include "scene/gui/dialogs.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "scene/gui/tree.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-07 18:59:49 +02:00
										 |  |  | class Button; | 
					
						
							|  |  |  | class CheckBox; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | class ConnectDialogBinds; | 
					
						
							| 
									
										
										
										
											2023-04-07 18:59:49 +02:00
										 |  |  | class EditorInspector; | 
					
						
							|  |  |  | class Label; | 
					
						
							|  |  |  | class LineEdit; | 
					
						
							|  |  |  | class OptionButton; | 
					
						
							|  |  |  | class PopupMenu; | 
					
						
							|  |  |  | class SceneTreeEditor; | 
					
						
							|  |  |  | class SpinBox; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | class ConnectDialog : public ConfirmationDialog { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(ConnectDialog, ConfirmationDialog); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-19 16:27:19 -03:00
										 |  |  | public: | 
					
						
							|  |  |  | 	struct ConnectionData { | 
					
						
							|  |  |  | 		Node *source = nullptr; | 
					
						
							|  |  |  | 		Node *target = nullptr; | 
					
						
							|  |  |  | 		StringName signal; | 
					
						
							|  |  |  | 		StringName method; | 
					
						
							|  |  |  | 		uint32_t flags = 0; | 
					
						
							| 
									
										
										
										
											2021-10-01 02:40:07 +02:00
										 |  |  | 		int unbinds = 0; | 
					
						
							| 
									
										
										
										
											2020-02-19 16:27:19 -03:00
										 |  |  | 		Vector<Variant> binds; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-01 02:40:07 +02:00
										 |  |  | 		ConnectionData() {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-19 16:27:19 -03:00
										 |  |  | 		ConnectionData(const Connection &p_connection) { | 
					
						
							|  |  |  | 			source = Object::cast_to<Node>(p_connection.signal.get_object()); | 
					
						
							|  |  |  | 			signal = p_connection.signal.get_name(); | 
					
						
							|  |  |  | 			target = Object::cast_to<Node>(p_connection.callable.get_object()); | 
					
						
							|  |  |  | 			flags = p_connection.flags; | 
					
						
							| 
									
										
										
										
											2021-10-01 02:40:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			Callable base_callable; | 
					
						
							|  |  |  | 			if (p_connection.callable.is_custom()) { | 
					
						
							|  |  |  | 				CallableCustomBind *ccb = dynamic_cast<CallableCustomBind *>(p_connection.callable.get_custom()); | 
					
						
							|  |  |  | 				if (ccb) { | 
					
						
							|  |  |  | 					binds = ccb->get_binds(); | 
					
						
							|  |  |  | 					base_callable = ccb->get_callable(); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				CallableCustomUnbind *ccu = dynamic_cast<CallableCustomUnbind *>(p_connection.callable.get_custom()); | 
					
						
							|  |  |  | 				if (ccu) { | 
					
						
							|  |  |  | 					unbinds = ccu->get_unbinds(); | 
					
						
							|  |  |  | 					base_callable = ccu->get_callable(); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				base_callable = p_connection.callable; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			method = base_callable.get_method(); | 
					
						
							| 
									
										
										
										
											2020-02-19 16:27:19 -03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-10-01 02:40:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-22 21:54:21 +01:00
										 |  |  | 		Callable get_callable() const { | 
					
						
							| 
									
										
										
										
											2021-10-01 02:40:07 +02:00
										 |  |  | 			if (unbinds > 0) { | 
					
						
							|  |  |  | 				return Callable(target, method).unbind(unbinds); | 
					
						
							|  |  |  | 			} else if (!binds.is_empty()) { | 
					
						
							| 
									
										
										
										
											2022-03-29 11:48:49 +08:00
										 |  |  | 				const Variant **argptrs = (const Variant **)alloca(sizeof(Variant *) * binds.size()); | 
					
						
							|  |  |  | 				for (int i = 0; i < binds.size(); i++) { | 
					
						
							|  |  |  | 					argptrs[i] = &binds[i]; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2022-07-28 22:56:41 +02:00
										 |  |  | 				return Callable(target, method).bindp(argptrs, binds.size()); | 
					
						
							| 
									
										
										
										
											2021-10-01 02:40:07 +02:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				return Callable(target, method); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-02-19 16:27:19 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	Label *connect_to_label = nullptr; | 
					
						
							|  |  |  | 	LineEdit *from_signal = nullptr; | 
					
						
							| 
									
										
										
										
											2023-02-04 23:34:14 +01:00
										 |  |  | 	LineEdit *filter_nodes = nullptr; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	Node *source = nullptr; | 
					
						
							| 
									
										
										
										
											2023-01-22 21:54:21 +01:00
										 |  |  | 	ConnectionData source_connection_data; | 
					
						
							| 
									
										
										
										
											2018-04-29 00:03:49 -07:00
										 |  |  | 	StringName signal; | 
					
						
							| 
									
										
										
										
											2023-01-22 21:54:21 +01:00
										 |  |  | 	PackedStringArray signal_args; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	LineEdit *dst_method = nullptr; | 
					
						
							|  |  |  | 	ConnectDialogBinds *cdbinds = nullptr; | 
					
						
							| 
									
										
										
										
											2022-05-02 16:28:25 +02:00
										 |  |  | 	bool edit_mode = false; | 
					
						
							| 
									
										
										
										
											2022-09-25 17:50:43 +02:00
										 |  |  | 	bool first_popup = true; | 
					
						
							| 
									
										
										
										
											2019-04-11 23:21:48 -03:00
										 |  |  | 	NodePath dst_path; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	VBoxContainer *vbc_right = nullptr; | 
					
						
							|  |  |  | 	SceneTreeEditor *tree = nullptr; | 
					
						
							|  |  |  | 	AcceptDialog *error = nullptr; | 
					
						
							| 
									
										
										
										
											2022-09-23 19:13:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-26 00:30:36 +01:00
										 |  |  | 	Button *open_method_tree = nullptr; | 
					
						
							| 
									
										
										
										
											2022-09-23 19:13:33 +02:00
										 |  |  | 	AcceptDialog *method_popup = nullptr; | 
					
						
							|  |  |  | 	Tree *method_tree = nullptr; | 
					
						
							| 
									
										
										
										
											2023-01-26 00:30:36 +01:00
										 |  |  | 	Label *empty_tree_label = nullptr; | 
					
						
							| 
									
										
										
										
											2022-09-23 19:13:33 +02:00
										 |  |  | 	LineEdit *method_search = nullptr; | 
					
						
							|  |  |  | 	CheckButton *script_methods_only = nullptr; | 
					
						
							|  |  |  | 	CheckButton *compatible_methods_only = nullptr; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	SpinBox *unbind_count = nullptr; | 
					
						
							|  |  |  | 	EditorInspector *bind_editor = nullptr; | 
					
						
							|  |  |  | 	OptionButton *type_list = nullptr; | 
					
						
							|  |  |  | 	CheckBox *deferred = nullptr; | 
					
						
							| 
									
										
										
										
											2022-09-01 15:19:23 +02:00
										 |  |  | 	CheckBox *one_shot = nullptr; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	CheckButton *advanced = nullptr; | 
					
						
							| 
									
										
										
										
											2021-10-01 02:40:07 +02:00
										 |  |  | 	Vector<Control *> bind_controls; | 
					
						
							| 
									
										
										
										
											2019-04-11 23:21:48 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-04 19:08:41 +01:00
										 |  |  | 	Label *warning_label = nullptr; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	Label *error_label = nullptr; | 
					
						
							| 
									
										
										
										
											2018-04-28 15:11:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-10 11:34:39 +01:00
										 |  |  | 	void ok_pressed() override; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void _cancel_pressed(); | 
					
						
							| 
									
										
										
										
											2020-02-27 22:49:16 +01:00
										 |  |  | 	void _item_activated(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void _tree_node_selected(); | 
					
						
							| 
									
										
										
										
											2023-02-04 23:34:14 +01:00
										 |  |  | 	void _focus_currently_connected(); | 
					
						
							| 
									
										
										
										
											2022-09-23 19:13:33 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void _method_selected(); | 
					
						
							|  |  |  | 	void _create_method_tree_items(const List<MethodInfo> &p_methods, TreeItem *p_parent_item); | 
					
						
							|  |  |  | 	List<MethodInfo> _filter_method_list(const List<MethodInfo> &p_methods, const MethodInfo &p_signal, const String &p_search_string) const; | 
					
						
							|  |  |  | 	void _update_method_tree(); | 
					
						
							|  |  |  | 	void _method_check_button_pressed(const CheckButton *p_button); | 
					
						
							|  |  |  | 	void _open_method_popup(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-01 02:40:07 +02:00
										 |  |  | 	void _unbind_count_changed(double p_count); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void _add_bind(); | 
					
						
							|  |  |  | 	void _remove_bind(); | 
					
						
							| 
									
										
										
										
											2019-04-11 23:21:48 -03:00
										 |  |  | 	void _advanced_pressed(); | 
					
						
							| 
									
										
										
										
											2020-01-15 18:18:34 +01:00
										 |  |  | 	void _update_ok_enabled(); | 
					
						
							| 
									
										
										
										
											2024-02-04 19:08:41 +01:00
										 |  |  | 	void _update_warning_label(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2024-03-12 00:51:50 +01:00
										 |  |  | 	virtual void _post_popup() override; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void _notification(int p_what); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	static void _bind_methods(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2024-02-15 13:25:58 -03:00
										 |  |  | 	static StringName generate_method_callback_name(Node *p_source, const String &p_signal_name, Node *p_target); | 
					
						
							| 
									
										
										
										
											2018-04-28 15:11:51 -07:00
										 |  |  | 	Node *get_source() const; | 
					
						
							| 
									
										
										
										
											2023-01-22 21:54:21 +01:00
										 |  |  | 	ConnectionData get_source_connection_data() const; | 
					
						
							| 
									
										
										
										
											2018-04-29 00:03:49 -07:00
										 |  |  | 	StringName get_signal_name() const; | 
					
						
							| 
									
										
										
										
											2023-01-22 21:54:21 +01:00
										 |  |  | 	PackedStringArray get_signal_args() const; | 
					
						
							| 
									
										
										
										
											2018-04-29 00:03:49 -07:00
										 |  |  | 	NodePath get_dst_path() const; | 
					
						
							|  |  |  | 	void set_dst_node(Node *p_node); | 
					
						
							|  |  |  | 	StringName get_dst_method_name() const; | 
					
						
							|  |  |  | 	void set_dst_method(const StringName &p_method); | 
					
						
							| 
									
										
										
										
											2021-10-01 02:40:07 +02:00
										 |  |  | 	int get_unbinds() const; | 
					
						
							| 
									
										
										
										
											2018-04-29 00:03:49 -07:00
										 |  |  | 	Vector<Variant> get_binds() const; | 
					
						
							| 
									
										
										
										
											2023-01-29 15:28:07 +01:00
										 |  |  | 	String get_signature(const MethodInfo &p_method, PackedStringArray *r_arg_names = nullptr); | 
					
						
							| 
									
										
										
										
											2018-04-29 00:03:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	bool get_deferred() const; | 
					
						
							| 
									
										
										
										
											2022-09-01 15:19:23 +02:00
										 |  |  | 	bool get_one_shot() const; | 
					
						
							| 
									
										
										
										
											2018-04-28 15:11:51 -07:00
										 |  |  | 	bool is_editing() const; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-14 11:47:15 +04:00
										 |  |  | 	virtual void shortcut_input(const Ref<InputEvent> &p_event) override; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-22 21:54:21 +01:00
										 |  |  | 	void init(const ConnectionData &p_cd, const PackedStringArray &p_signal_args, bool p_edit = false); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-02-15 13:25:58 -03:00
										 |  |  | 	void popup_dialog(const String &p_for_signal); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	ConnectDialog(); | 
					
						
							|  |  |  | 	~ConnectDialog(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-12 10:42:08 -03:00
										 |  |  | //////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2018-04-29 00:03:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-11 11:21:44 +03:00
										 |  |  | // Custom `Tree` needed to use `EditorHelpBit` to display signal documentation.
 | 
					
						
							| 
									
										
										
										
											2019-07-02 15:46:00 +02:00
										 |  |  | class ConnectionsDockTree : public Tree { | 
					
						
							|  |  |  | 	virtual Control *make_custom_tooltip(const String &p_text) const; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-03 21:03:09 -03:00
										 |  |  | class ConnectionsDock : public VBoxContainer { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(ConnectionsDock, VBoxContainer); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-31 22:20:39 +03:00
										 |  |  | 	enum TreeItemType { | 
					
						
							|  |  |  | 		TREE_ITEM_TYPE_ROOT, | 
					
						
							|  |  |  | 		TREE_ITEM_TYPE_CLASS, | 
					
						
							|  |  |  | 		TREE_ITEM_TYPE_SIGNAL, | 
					
						
							|  |  |  | 		TREE_ITEM_TYPE_CONNECTION, | 
					
						
							| 
									
										
										
										
											2018-04-27 17:08:34 -07:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-31 22:20:39 +03:00
										 |  |  | 	// Right-click context menu options.
 | 
					
						
							|  |  |  | 	enum ClassMenuOption { | 
					
						
							|  |  |  | 		CLASS_MENU_OPEN_DOCS, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	enum SignalMenuOption { | 
					
						
							|  |  |  | 		SIGNAL_MENU_CONNECT, | 
					
						
							|  |  |  | 		SIGNAL_MENU_DISCONNECT_ALL, | 
					
						
							|  |  |  | 		SIGNAL_MENU_COPY_NAME, | 
					
						
							|  |  |  | 		SIGNAL_MENU_OPEN_DOCS, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2018-04-27 17:08:34 -07:00
										 |  |  | 	enum SlotMenuOption { | 
					
						
							| 
									
										
										
										
											2023-08-31 22:20:39 +03:00
										 |  |  | 		SLOT_MENU_EDIT, | 
					
						
							|  |  |  | 		SLOT_MENU_GO_TO_METHOD, | 
					
						
							|  |  |  | 		SLOT_MENU_DISCONNECT, | 
					
						
							| 
									
										
										
										
											2018-04-27 17:08:34 -07:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	Node *selected_node = nullptr; | 
					
						
							|  |  |  | 	ConnectionsDockTree *tree = nullptr; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	ConfirmationDialog *disconnect_all_dialog = nullptr; | 
					
						
							|  |  |  | 	ConnectDialog *connect_dialog = nullptr; | 
					
						
							|  |  |  | 	Button *connect_button = nullptr; | 
					
						
							| 
									
										
										
										
											2023-08-31 22:20:39 +03:00
										 |  |  | 	PopupMenu *class_menu = nullptr; | 
					
						
							|  |  |  | 	String class_menu_doc_class_name; | 
					
						
							| 
									
										
										
										
											2022-04-04 15:06:57 +02:00
										 |  |  | 	PopupMenu *signal_menu = nullptr; | 
					
						
							|  |  |  | 	PopupMenu *slot_menu = nullptr; | 
					
						
							|  |  |  | 	LineEdit *search_box = nullptr; | 
					
						
							| 
									
										
										
										
											2018-04-27 17:08:34 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-08 14:15:46 +10:00
										 |  |  | 	void _filter_changed(const String &p_text); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-28 15:11:51 -07:00
										 |  |  | 	void _make_or_edit_connection(); | 
					
						
							| 
									
										
										
										
											2023-01-22 21:54:21 +01:00
										 |  |  | 	void _connect(const ConnectDialog::ConnectionData &p_cd); | 
					
						
							|  |  |  | 	void _disconnect(const ConnectDialog::ConnectionData &p_cd); | 
					
						
							| 
									
										
										
										
											2018-04-29 00:03:49 -07:00
										 |  |  | 	void _disconnect_all(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _tree_item_selected(); | 
					
						
							|  |  |  | 	void _tree_item_activated(); | 
					
						
							| 
									
										
										
										
											2023-08-31 22:20:39 +03:00
										 |  |  | 	TreeItemType _get_item_type(const TreeItem &p_item) const; | 
					
						
							| 
									
										
										
										
											2022-09-30 12:28:39 +02:00
										 |  |  | 	bool _is_connection_inherited(Connection &p_connection); | 
					
						
							| 
									
										
										
										
											2018-04-29 00:03:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-04 20:24:43 +03:00
										 |  |  | 	void _open_connection_dialog(TreeItem &p_item); | 
					
						
							| 
									
										
										
										
											2023-01-22 21:54:21 +01:00
										 |  |  | 	void _open_edit_connection_dialog(TreeItem &p_item); | 
					
						
							| 
									
										
										
										
											2023-08-31 22:20:39 +03:00
										 |  |  | 	void _go_to_method(TreeItem &p_item); | 
					
						
							| 
									
										
										
										
											2018-04-29 00:03:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-31 22:20:39 +03:00
										 |  |  | 	void _handle_class_menu_option(int p_option); | 
					
						
							|  |  |  | 	void _class_menu_about_to_popup(); | 
					
						
							| 
									
										
										
										
											2022-01-04 20:24:43 +03:00
										 |  |  | 	void _handle_signal_menu_option(int p_option); | 
					
						
							| 
									
										
										
										
											2022-09-30 12:28:39 +02:00
										 |  |  | 	void _signal_menu_about_to_popup(); | 
					
						
							| 
									
										
										
										
											2022-01-04 20:24:43 +03:00
										 |  |  | 	void _handle_slot_menu_option(int p_option); | 
					
						
							| 
									
										
										
										
											2022-09-30 12:28:39 +02:00
										 |  |  | 	void _slot_menu_about_to_popup(); | 
					
						
							| 
									
										
										
										
											2023-10-05 00:30:15 +01:00
										 |  |  | 	void _tree_gui_input(const Ref<InputEvent> &p_event); | 
					
						
							| 
									
										
										
										
											2018-04-29 00:03:49 -07:00
										 |  |  | 	void _close(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2016-06-03 21:03:09 -03:00
										 |  |  | 	void _connect_pressed(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	void _notification(int p_what); | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							|  |  |  | 	void set_node(Node *p_node); | 
					
						
							| 
									
										
										
										
											2017-08-18 16:43:23 -03:00
										 |  |  | 	void update_tree(); | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-27 10:36:51 +01:00
										 |  |  | 	ConnectionsDock(); | 
					
						
							| 
									
										
										
										
											2016-06-03 21:03:09 -03:00
										 |  |  | 	~ConnectionsDock(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-04 20:26:22 +01:00
										 |  |  | #endif // CONNECTIONS_DIALOG_H
 |