aboutsummaryrefslogtreecommitdiff
path: root/examples/file_selection.rs
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2019-12-10 18:46:44 +0000
committerRobin Krahl <robin.krahl@ireas.org>2019-12-10 19:56:32 +0100
commit89afcb4844dd484f0c9cdfef7e5ff8d751647c43 (patch)
treef23e994a66ec562685ca44caa6ba939de34acdf1 /examples/file_selection.rs
parent7d1a146003117694e9d970b0cf08c514ffad1c6e (diff)
downloaddialog-rs-89afcb4844dd484f0c9cdfef7e5ff8d751647c43.tar.gz
dialog-rs-89afcb4844dd484f0c9cdfef7e5ff8d751647c43.tar.bz2
Add Open/Save mode to the file selection dialogfile-selection
This patch adds the option to set a FileSelectionMode, either Open or Save. Not all backends might support this – currently, only zenity and kdialog do. Per default, the Open mode is used (as before).
Diffstat (limited to 'examples/file_selection.rs')
-rw-r--r--examples/file_selection.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/examples/file_selection.rs b/examples/file_selection.rs
index 5436742..5d2d860 100644
--- a/examples/file_selection.rs
+++ b/examples/file_selection.rs
@@ -5,9 +5,17 @@ use dialog::DialogBox;
fn main() -> dialog::Result<()> {
let choice = dialog::FileSelection::new("Please select a file")
- .title("File Chooser Example")
+ .title("File Chooser Example (Open)")
.path("/etc")
.show()?;
println!("The user chose: {:?}", choice);
+
+ let choice = dialog::FileSelection::new("Please select a file")
+ .title("File Chooser Example (Save)")
+ .mode(dialog::FileSelectionMode::Save)
+ .path("/etc")
+ .show()?;
+ println!("The user chose: {:?}", choice);
+
Ok(())
}