mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 03:10:41 +00:00
34 lines
1.5 KiB
Rust
34 lines
1.5 KiB
Rust
extern crate cursive;
|
|
|
|
use cursive::Cursive;
|
|
use cursive::With;
|
|
use cursive::view::{ListView, Checkbox, Dialog, EditView, TextView, LinearLayout};
|
|
|
|
fn main() {
|
|
let mut siv = Cursive::new();
|
|
|
|
siv.add_layer(Dialog::new(ListView::new()
|
|
.child("Name", EditView::new().min_length(10))
|
|
.child("Email", LinearLayout::horizontal()
|
|
.child(EditView::new().min_length(15).disabled().with_id("email1"))
|
|
.child(TextView::new("@"))
|
|
.child(EditView::new().min_length(10).disabled().with_id("email2")))
|
|
.child("Receive spam?", Checkbox::new().on_change(|s, checked| {
|
|
for name in &["email1", "email2"] {
|
|
let view: &mut EditView = s.find_id(name).unwrap();
|
|
view.set_enabled(checked);
|
|
}
|
|
}))
|
|
.delimiter()
|
|
.with(|list| {
|
|
for i in 0..50 {
|
|
list.add_child(&format!("Item {}", i), EditView::new());
|
|
}
|
|
})
|
|
)
|
|
.title("Please fill out this form")
|
|
.button("Ok", |s| s.quit()));
|
|
|
|
siv.run();
|
|
}
|