cursive/examples/dialog.rs

18 lines
454 B
Rust
Raw Normal View History

2015-05-16 21:02:15 +00:00
extern crate cursive;
use cursive::Cursive;
2016-06-26 00:10:18 +00:00
use cursive::view::{TextView, Dialog};
2015-05-16 21:02:15 +00:00
fn main() {
2016-06-26 00:10:18 +00:00
// Creates the cursive root - required for every application.
2015-05-16 21:02:15 +00:00
let mut siv = Cursive::new();
// Creates a dialog with a single "Quit" button
siv.add_layer(Dialog::new(TextView::new("Hello Dialog!"))
2016-06-26 00:10:18 +00:00
.title("Cursive")
.button("Quit", |s| s.quit()));
2015-05-16 21:02:15 +00:00
2016-06-26 00:10:18 +00:00
// Starts the event loop.
2015-05-16 21:02:15 +00:00
siv.run();
}