summaryrefslogtreecommitdiffstats
path: root/servers/display_server.h
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-10-13 12:37:46 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-01-24 15:00:31 +0200
commita8f521bcadc9749bfc861cff4c6e8216a49aa22e (patch)
tree61f6b380b523a4260783920a6fe225f783a30e27 /servers/display_server.h
parent74c32faa78b54863f8f25c538083907c2bf71791 (diff)
downloadredot-engine-a8f521bcadc9749bfc861cff4c6e8216a49aa22e.tar.gz
[Native File Dialog] Add support for adding custom options to the dialogs.
Add support for adding custom options (checkboxes and optionboxes) to the dialogs (both native and built-in).
Diffstat (limited to 'servers/display_server.h')
-rw-r--r--servers/display_server.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/servers/display_server.h b/servers/display_server.h
index 92a4a4a699..6ec0831500 100644
--- a/servers/display_server.h
+++ b/servers/display_server.h
@@ -514,6 +514,7 @@ public:
FILE_DIALOG_MODE_SAVE_MAX
};
virtual Error file_dialog_show(const String &p_title, const String &p_current_directory, const String &p_filename, bool p_show_hidden, FileDialogMode p_mode, const Vector<String> &p_filters, const Callable &p_callback);
+ virtual Error file_dialog_with_options_show(const String &p_title, const String &p_current_directory, const String &p_root, const String &p_filename, bool p_show_hidden, FileDialogMode p_mode, const Vector<String> &p_filters, const TypedArray<Dictionary> &p_options, const Callable &p_callback);
virtual int keyboard_get_layout_count() const;
virtual int keyboard_get_current_layout() const;