diff options
author | Micky <micheledevita2@gmail.com> | 2022-09-04 10:18:23 +0200 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2022-10-04 16:14:01 +0200 |
commit | 4465dd6e37d048119e9a19b50bac035294adcea9 (patch) | |
tree | 175dd52e53840af6c365c34ca5075102959eabdd /editor/editor_help_search.h | |
parent | 141fdac36c0eb595dd11b27817446e42326bf2a0 (diff) | |
download | redot-engine-4465dd6e37d048119e9a19b50bac035294adcea9.tar.gz |
Allow multiple words in Docs Help Search filter
This is how most search filters behave.
Refactors the search's match_classes phase to reduce code duplication.
Diffstat (limited to 'editor/editor_help_search.h')
-rw-r--r-- | editor/editor_help_search.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_help_search.h b/editor/editor_help_search.h index 26abaec6e6..1fd4533c74 100644 --- a/editor/editor_help_search.h +++ b/editor/editor_help_search.h @@ -119,6 +119,7 @@ class EditorHelpSearch::Runner : public RefCounted { Control *ui_service = nullptr; Tree *results_tree = nullptr; String term; + Vector<String> terms; int search_flags; Ref<Texture2D> empty_icon; @@ -145,6 +146,8 @@ class EditorHelpSearch::Runner : public RefCounted { String _build_method_tooltip(const DocData::ClassDoc *p_class_doc, const DocData::MethodDoc *p_doc) const; + void _match_method_name_and_push_back(Vector<DocData::MethodDoc> &p_methods, Vector<DocData::MethodDoc *> *r_match_methods); + bool _all_terms_in_name(String name); bool _match_string(const String &p_term, const String &p_string) const; void _match_item(TreeItem *p_item, const String &p_text); TreeItem *_create_class_hierarchy(const ClassMatch &p_match); |