summaryrefslogtreecommitdiffstats
path: root/editor/find_in_files.h
diff options
context:
space:
mode:
authorQbieShay <cislaghi.ilaria@gmail.com>2019-02-04 22:59:51 +0100
committerQbieShay <cislaghi.ilaria@gmail.com>2019-02-12 21:24:07 +0100
commitc4eb974a8a73eabc29dd3be47b09969a4348fa20 (patch)
tree6cb120496111ee367f656f8999aa73a3382ec304 /editor/find_in_files.h
parent16d402147b9057c9f7d43ef9b46eb8654e5483cc (diff)
downloadredot-engine-c4eb974a8a73eabc29dd3be47b09969a4348fa20.tar.gz
Added a setting for files in which the editor should search (project wise).
Remembers the tickboxes but only during the same execution Fixes #25440
Diffstat (limited to 'editor/find_in_files.h')
-rw-r--r--editor/find_in_files.h5
1 files changed, 4 insertions, 1 deletions
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<CheckBox *> _filters;
CheckBox *_match_case_checkbox;
CheckBox *_whole_words_checkbox;
Button *_find_button;
Button *_replace_button;
FileDialog *_folder_dialog;
+ HBoxContainer *_filters_container;
+ HashMap<String, bool> _filters_preferences;
};
class Button;