cursive/examples/lorem.rs

32 lines
961 B
Rust
Raw Normal View History

2017-10-12 23:38:55 +00:00
use cursive::align::HAlign;
2018-06-27 00:40:15 +00:00
use cursive::view::Scrollable;
use cursive::views::{Dialog, Panel, TextView};
use cursive::Cursive;
fn main() {
// Read some long text from a file.
let content = include_str!("../assets/lorem.txt");
let mut siv = Cursive::default();
// We can quit by pressing q
siv.add_global_callback('q', |s| s.quit());
// The text is too long to fit on a line, so the view will wrap lines,
// and will adapt to the terminal size.
2017-10-12 23:38:55 +00:00
siv.add_fullscreen_layer(
2018-06-27 00:40:15 +00:00
Dialog::around(Panel::new(TextView::new(content).scrollable()))
.title("Unicode and wide-character support")
2018-01-16 02:55:27 +00:00
// This is the alignment for the button
2017-10-12 23:38:55 +00:00
.h_align(HAlign::Center)
.button("Quit", |s| s.quit()),
2017-10-12 23:38:55 +00:00
);
// Show a popup on top of the view.
2017-10-12 23:38:55 +00:00
siv.add_layer(Dialog::info(
"Try resizing the terminal!\n(Press 'q' to \
quit when you're done.)",
));
siv.run();
}