aboutsummaryrefslogtreecommitdiff
path: root/src/backends/mod.rs
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2019-12-10 20:02:59 +0100
committerRobin Krahl <robin.krahl@ireas.org>2019-12-10 20:02:59 +0100
commite152b4f4b6aa274774d1c750c3106528ebd4f1d4 (patch)
treef23e994a66ec562685ca44caa6ba939de34acdf1 /src/backends/mod.rs
parent3b76a0a46ce38eef7fe3e5a969cec6ffee47f227 (diff)
parent89afcb4844dd484f0c9cdfef7e5ff8d751647c43 (diff)
downloaddialog-rs-e152b4f4b6aa274774d1c750c3106528ebd4f1d4.tar.gz
dialog-rs-e152b4f4b6aa274774d1c750c3106528ebd4f1d4.tar.bz2
Merge branch 'file-selection' into next
This patch series introduces a new FileSelection dialog type, see [0]. [0] https://lists.sr.ht/~ireas/dialog-rs-dev/%3C20191203122011.GA64086%40kunshan.atexit.net%3E
Diffstat (limited to 'src/backends/mod.rs')
-rw-r--r--src/backends/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/backends/mod.rs b/src/backends/mod.rs
index 1331323..09013b1 100644
--- a/src/backends/mod.rs
+++ b/src/backends/mod.rs
@@ -37,6 +37,9 @@ pub trait Backend {
/// Shows the given question dialog and returns the choice.
fn show_question(&self, question: &super::Question) -> Result<super::Choice>;
+
+ /// Shows the given file selection dialog and returns the file name.
+ fn show_file_selection(&self, file_selection: &super::FileSelection) -> Result<Option<String>>;
}
pub(crate) fn is_available(name: &str) -> bool {