summaryrefslogtreecommitdiffstats
path: root/editor/editor_help_search.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-10-04 16:46:59 +0200
committerRémi Verschelde <rverschelde@gmail.com>2022-10-04 16:46:59 +0200
commita140efbbeb13f0ddcb5a5fe9e5da05ea9840f2d7 (patch)
tree0d0c50e3c9cd2b9b8b2f081793f704712cec2ccf /editor/editor_help_search.h
parentd1552fd38c25cbd2759391e9c1f7ccf128853202 (diff)
parent4465dd6e37d048119e9a19b50bac035294adcea9 (diff)
downloadredot-engine-a140efbbeb13f0ddcb5a5fe9e5da05ea9840f2d7.tar.gz
Merge pull request #65315 from Mickeon/editor-help-search-multi-term
Allow multiple words in Docs Help Search filter
Diffstat (limited to 'editor/editor_help_search.h')
-rw-r--r--editor/editor_help_search.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_help_search.h b/editor/editor_help_search.h
index efd8645cd7..a8bd219b89 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);