Skip to content

ssokolow/dialog-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dialog-rs

A Rust library for displaying dialog boxes using various backends.

Documentation

Currently dialog-rs supports input, message, password and question dialogs. It can use the dialog, kdialog, or zenity tools to display the dialog boxes. If none of these tools is available, the dialogs are printed to the standard output.

Example

use dialog::DialogBox;

let choice = dialog::Question::new("Would you like to install Rust?")
    .title("Rust Installation")
    .show()
    .expect("Could not display dialog box");
if choice == dialog::Choice::Yes {
    dialog::Message::new("You made the right choice!")
        .title("Rust Installation")
        .show()
        .expect("Could not display dialog box");
}

Contact

For bug reports, patches, feature requests or other messages, please send a mail to dialog-rs-dev@ireas.org.

License

This project is licensed under the MIT License.

About

Temporary fork of https://git.ireas.org/dialog-rs/ with KDialog support

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages