diff options
author | AeioMuch <75151379+AeioMuch@users.noreply.github.com> | 2024-02-25 15:40:39 +0100 |
---|---|---|
committer | AeioMuch <75151379+AeioMuch@users.noreply.github.com> | 2024-03-16 20:42:05 +0100 |
commit | 5cf6f3c77944e9ac953a331066755ea0c239fb1a (patch) | |
tree | 6470b0396632ccafbad5e5e8691da3ff160fb032 /editor/find_in_files.h | |
parent | fe01776f05b1787b28b4a270d53037a3c25f4ca2 (diff) | |
download | redot-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.h | 3 |
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; |