summaryrefslogtreecommitdiffstats
path: root/editor/find_in_files.h
diff options
context:
space:
mode:
authorAeioMuch <75151379+AeioMuch@users.noreply.github.com>2024-02-25 15:40:39 +0100
committerAeioMuch <75151379+AeioMuch@users.noreply.github.com>2024-03-16 20:42:05 +0100
commit5cf6f3c77944e9ac953a331066755ea0c239fb1a (patch)
tree6470b0396632ccafbad5e5e8691da3ff160fb032 /editor/find_in_files.h
parentfe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff)
downloadredot-engine-5cf6f3c77944e9ac953a331066755ea0c239fb1a.tar.gz
Hide Search Results by default. Show it on first search and push it at the end. Add a close button to hide it back. Also switch to Script Editor if a searched line is clicked.
Diffstat (limited to 'editor/find_in_files.h')
-rw-r--r--editor/find_in_files.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/find_in_files.h b/editor/find_in_files.h
index 7885931514..ac336b4e35 100644
--- a/editor/find_in_files.h
+++ b/editor/find_in_files.h
@@ -159,6 +159,7 @@ class FindInFilesPanel : public Control {
public:
static const char *SIGNAL_RESULT_SELECTED;
static const char *SIGNAL_FILES_MODIFIED;
+ static const char *SIGNAL_CLOSE_BUTTON_CLICKED;
FindInFilesPanel();
@@ -180,6 +181,7 @@ private:
void _on_finished();
void _on_refresh_button_clicked();
void _on_cancel_button_clicked();
+ void _on_close_button_clicked();
void _on_result_selected();
void _on_item_edited();
void _on_replace_text_changed(const String &text);
@@ -207,6 +209,7 @@ private:
Label *_status_label = nullptr;
Button *_refresh_button = nullptr;
Button *_cancel_button = nullptr;
+ Button *_close_button = nullptr;
ProgressBar *_progress_bar = nullptr;
HashMap<String, TreeItem *> _file_items;
HashMap<TreeItem *, Result> _result_items;