diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-09-30 00:40:49 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-09-30 00:40:49 +0300 |
commit | c52db6190cb121a65c0251b3143730292d9024e5 (patch) | |
tree | 31cf44b5732bd3b04e19be3f31c736805e5ecf22 | |
parent | 19890614c6a78ec36030ce65c7da05f07fcdb9ed (diff) | |
download | redot-engine-c52db6190cb121a65c0251b3143730292d9024e5.tar.gz |
[FileDialog] Make set_visible compatible with native dialogs.
-rw-r--r-- | scene/gui/file_dialog.cpp | 10 | ||||
-rw-r--r-- | scene/gui/file_dialog.h | 1 | ||||
-rw-r--r-- | scene/main/window.h | 2 |
3 files changed, 12 insertions, 1 deletions
diff --git a/scene/gui/file_dialog.cpp b/scene/gui/file_dialog.cpp index 7af7b2cf7e..3857281a66 100644 --- a/scene/gui/file_dialog.cpp +++ b/scene/gui/file_dialog.cpp @@ -63,6 +63,16 @@ void FileDialog::popup(const Rect2i &p_rect) { } } +void FileDialog::set_visible(bool p_visible) { + if (access == ACCESS_FILESYSTEM && DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_NATIVE_DIALOG) && (use_native_dialog || OS::get_singleton()->is_sandboxed())) { + if (p_visible) { + DisplayServer::get_singleton()->file_dialog_show(get_title(), dir->get_text(), file->get_text().get_file(), show_hidden_files, DisplayServer::FileDialogMode(mode), filters, callable_mp(this, &FileDialog::_native_dialog_cb)); + } + } else { + ConfirmationDialog::set_visible(p_visible); + } +} + void FileDialog::_native_dialog_cb(bool p_ok, const Vector<String> &p_files) { if (p_ok) { if (p_files.size() > 0) { diff --git a/scene/gui/file_dialog.h b/scene/gui/file_dialog.h index 739cb3e31a..1a87b79fdd 100644 --- a/scene/gui/file_dialog.h +++ b/scene/gui/file_dialog.h @@ -171,6 +171,7 @@ protected: static void _bind_methods(); public: + virtual void set_visible(bool p_visible) override; virtual void popup(const Rect2i &p_rect = Rect2i()) override; void popup_file_dialog(); diff --git a/scene/main/window.h b/scene/main/window.h index 11b986239e..c1a7ed2e0b 100644 --- a/scene/main/window.h +++ b/scene/main/window.h @@ -293,7 +293,7 @@ public: void request_attention(); void move_to_foreground(); - void set_visible(bool p_visible); + virtual void set_visible(bool p_visible); bool is_visible() const; void update_mouse_cursor_state() override; |