feat(dialog): XDG portal integrations for open and save dialogs

This commit is contained in:
Michael Aaron Murphy 2023-08-15 10:58:46 +02:00 committed by Michael Murphy
parent a5d3814fff
commit 1705b6fe27
10 changed files with 861 additions and 21 deletions

9
src/dialog/mod.rs Normal file
View file

@ -0,0 +1,9 @@
// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: MPL-2.0
//! Create dialogs for retrieving user input.
pub use ashpd::desktop::file_chooser::{Choice, FileFilter, SelectedFiles};
pub use ashpd::WindowIdentifier;
pub mod open_file;