10 OpenDialogOptions
const& options,
11 std::function<
void(std::optional<std::vector<std::filesystem::path>>)> onResult);
13 DirectoryDialogOptions
const& options,
14 std::function<
void(std::optional<std::vector<std::filesystem::path>>)> onResult);
16 SaveDialogOptions
const& options,
17 std::function<
void(std::optional<std::filesystem::path>)> onResult);
Definition: file_dialog.hpp:6
std::optional< std::filesystem::path > showSaveDialog(SaveDialogOptions const &options)
Definition: file_dialog.cpp:107
std::optional< std::vector< std::filesystem::path > > showDirectoryDialog(DirectoryDialogOptions const &options)
Definition: file_dialog.cpp:98
std::optional< std::vector< std::filesystem::path > > showOpenDialog(OpenDialogOptions const &options)
Definition: file_dialog.cpp:88