// Copyright (C) 2019 Robin Krahl // 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) }