aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2019-01-08 18:10:40 +0000
committerRobin Krahl <robin.krahl@ireas.org>2019-01-08 20:56:09 +0100
commitf0f659944c6d89a6205fd98a2434ed61c0e7313b (patch)
tree5a19b159d3be51b338e19af8b57e0a5230fb9dd4 /examples
parent474d92046f17a98f8979e55edaf75ca867d85b86 (diff)
downloaddialog-rs-f0f659944c6d89a6205fd98a2434ed61c0e7313b.tar.gz
dialog-rs-f0f659944c6d89a6205fd98a2434ed61c0e7313b.tar.bz2
Implement zenity backend
Diffstat (limited to 'examples')
-rw-r--r--examples/backend-zenity.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/backend-zenity.rs b/examples/backend-zenity.rs
new file mode 100644
index 0000000..67f3d1c
--- /dev/null
+++ b/examples/backend-zenity.rs
@@ -0,0 +1,25 @@
+// Copyright (C) 2019 Robin Krahl <robin.krahl@ireas.org>
+// SPDX-License-Identifier: MIT
+
+use dialog::backends;
+use dialog::DialogBox;
+
+fn main() -> dialog::Result<()> {
+ let mut backend = backends::Zenity::new();
+
+ dialog::Message::new("This is a message.")
+ .title("And this is a title:")
+ .show_with(&backend)?;
+
+ backend.set_width(500);
+ backend.set_height(200);
+ dialog::Message::new("This is a message with a fixed size.")
+ .title("And this is a title:")
+ .show_with(&backend)?;
+
+ let mut backend = backends::Zenity::new();
+ backend.set_timeout(5);
+ dialog::Message::new("This box should disappear after five seconds.")
+ .title("And this is a title:")
+ .show_with(&backend)
+}