diff options
author | kobewi <kobewi4e@gmail.com> | 2022-09-23 19:13:33 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-01-24 20:11:48 +0100 |
commit | 1d062e8538503f0161628679397b4251dcebb4e8 (patch) | |
tree | 34577ded14cae82d196de8429d38b264dfe545bc /editor/connections_dialog.h | |
parent | 4fa6edc888cfacd5346bf08afa14b5f5a9bd6d0c (diff) | |
download | redot-engine-1d062e8538503f0161628679397b4251dcebb4e8.tar.gz |
Add method picker to signal connect dialog
Co-authored-by: Sam Pengilly <sam.pengilly@gmail.com>
Diffstat (limited to 'editor/connections_dialog.h')
-rw-r--r-- | editor/connections_dialog.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/editor/connections_dialog.h b/editor/connections_dialog.h index 829a98caed..0bea897976 100644 --- a/editor/connections_dialog.h +++ b/editor/connections_dialog.h @@ -114,9 +114,15 @@ private: bool first_popup = true; NodePath dst_path; VBoxContainer *vbc_right = nullptr; - SceneTreeEditor *tree = nullptr; AcceptDialog *error = nullptr; + + AcceptDialog *method_popup = nullptr; + Tree *method_tree = nullptr; + LineEdit *method_search = nullptr; + CheckButton *script_methods_only = nullptr; + CheckButton *compatible_methods_only = nullptr; + SpinBox *unbind_count = nullptr; EditorInspector *bind_editor = nullptr; OptionButton *type_list = nullptr; @@ -132,6 +138,14 @@ private: void _item_activated(); void _text_submitted(const String &p_text); void _tree_node_selected(); + + 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(); + void _unbind_count_changed(double p_count); void _add_bind(); void _remove_bind(); |