mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 03:10:41 +00:00
ede5c616f6
With updated `examples/edit.rs` content
38 lines
992 B
Rust
38 lines
992 B
Rust
extern crate cursive;
|
|
|
|
use cursive::prelude::*;
|
|
|
|
fn main() {
|
|
let mut siv = Cursive::new();
|
|
|
|
// Create a dialog with an edit text and a button.
|
|
// The user can either hit the <Ok> button,
|
|
// or press Enter on the edit text.
|
|
siv.add_layer(Dialog::empty()
|
|
.title("Enter your name")
|
|
.padding((1, 1, 1, 0))
|
|
.content(EditView::new()
|
|
.min_length(20)
|
|
.on_submit(show_popup)
|
|
.with_id("name"))
|
|
.button("Ok", |s| {
|
|
let name = s.find_id::<EditView>("name")
|
|
.unwrap()
|
|
.get_content();
|
|
show_popup(s, &name);
|
|
}));
|
|
|
|
siv.run();
|
|
}
|
|
|
|
fn show_popup(s: &mut Cursive, name: &str) {
|
|
if name.is_empty() {
|
|
s.add_layer(Dialog::info("Please enter a name!"));
|
|
} else {
|
|
let content = format!("Hello {}!", name);
|
|
s.pop_layer();
|
|
s.add_layer(Dialog::new(TextView::new(content))
|
|
.button("Quit", |s| s.quit()));
|
|
}
|
|
}
|