aboutsummaryrefslogtreecommitdiff
path: root/examples/backend-zenity.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/backend-zenity.rs')
-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)
+}