From c4eb974a8a73eabc29dd3be47b09969a4348fa20 Mon Sep 17 00:00:00 2001 From: QbieShay Date: Mon, 4 Feb 2019 22:59:51 +0100 Subject: Added a setting for files in which the editor should search (project wise). Remembers the tickboxes but only during the same execution Fixes #25440 --- editor/find_in_files.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'editor/find_in_files.h') diff --git a/editor/find_in_files.h b/editor/find_in_files.h index 220f8cc136..5f728a104b 100644 --- a/editor/find_in_files.h +++ b/editor/find_in_files.h @@ -31,6 +31,7 @@ #ifndef FIND_IN_FILES_H #define FIND_IN_FILES_H +#include "core/hash_map.h" #include "scene/gui/dialogs.h" // Performs the actual search @@ -88,6 +89,7 @@ private: class LineEdit; class CheckBox; class FileDialog; +class HBoxContainer; // Prompts search parameters class FindInFilesDialog : public AcceptDialog { @@ -120,12 +122,13 @@ private: LineEdit *_search_text_line_edit; LineEdit *_folder_line_edit; - Vector _filters; CheckBox *_match_case_checkbox; CheckBox *_whole_words_checkbox; Button *_find_button; Button *_replace_button; FileDialog *_folder_dialog; + HBoxContainer *_filters_container; + HashMap _filters_preferences; }; class Button; -- cgit v1.2.3