cursive/examples/select.rs

59 lines
1.8 KiB
Rust
Raw Normal View History

use cursive::align::HAlign;
2017-08-24 00:05:31 +00:00
use cursive::event::EventResult;
use cursive::traits::*;
2017-08-24 00:05:31 +00:00
use cursive::views::{Dialog, OnEventView, SelectView, TextView};
2018-06-11 06:29:10 +00:00
use cursive::Cursive;
2018-01-16 02:55:27 +00:00
// We'll use a SelectView here.
//
// A SelectView is a scrollable list of items, from which the user can select
// one.
fn main() {
2018-09-27 23:01:37 +00:00
let mut select = SelectView::new()
// Center the text horizontally
.h_align(HAlign::Center)
// Use keyboard to jump to the pressed letters
.autojump();
// Read the list of cities from separate file, and fill the view with it.
// (We include the file at compile-time to avoid runtime read errors.)
let content = include_str!("../assets/cities.txt");
select.add_all_str(content.lines());
// Sets the callback for when "Enter" is pressed.
select.set_on_submit(show_next_window);
2017-08-24 00:05:31 +00:00
// Let's override the `j` and `k` keys for navigation
let select = OnEventView::new(select)
2018-11-09 18:54:57 +00:00
.on_pre_event_inner('k', |s, _| {
2017-08-24 00:05:31 +00:00
s.select_up(1);
Some(EventResult::Consumed(None))
2018-11-09 18:54:57 +00:00
})
.on_pre_event_inner('j', |s, _| {
2017-08-24 00:05:31 +00:00
s.select_down(1);
Some(EventResult::Consumed(None))
});
let mut siv = Cursive::default();
2017-10-15 04:18:50 +00:00
// Let's add a BoxView to keep the list at a reasonable size
// (it can scroll anyway).
2017-08-24 00:05:31 +00:00
siv.add_layer(
Dialog::around(select.scrollable().fixed_size((20, 10)))
2017-08-24 00:05:31 +00:00
.title("Where are you from?"),
);
siv.run();
}
2017-10-15 04:18:50 +00:00
// Let's put the callback in a separate function to keep it clean,
// but it's not required.
2016-09-28 22:07:02 +00:00
fn show_next_window(siv: &mut Cursive, city: &str) {
siv.pop_layer();
let text = format!("{} is a great city!", city);
2017-08-24 00:05:31 +00:00
siv.add_layer(
Dialog::around(TextView::new(text)).button("Quit", |s| s.quit()),
);
}