aboutsummaryrefslogtreecommitdiff
path: root/examples/backend-kdialog.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/backend-kdialog.rs')
-rw-r--r--examples/backend-kdialog.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/backend-kdialog.rs b/examples/backend-kdialog.rs
new file mode 100644
index 0000000..5c3fb46
--- /dev/null
+++ b/examples/backend-kdialog.rs
@@ -0,0 +1,18 @@
+// 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::KDialog::new();
+
+ dialog::Message::new("This is a message.")
+ .title("And this is a title:")
+ .show_with(&backend)?;
+
+ backend.set_icon("error");
+ dialog::Message::new("This is an error message.")
+ .title("Error")
+ .show_with(&backend)
+}