2015-05-18 18:36:15 +00:00
|
|
|
extern crate cursive;
|
|
|
|
|
2016-09-29 05:45:27 +00:00
|
|
|
use cursive::Cursive;
|
2017-10-12 23:38:55 +00:00
|
|
|
use cursive::align::HAlign;
|
2017-08-15 00:01:49 +00:00
|
|
|
use cursive::view::Boxable;
|
2017-10-15 04:18:50 +00:00
|
|
|
use cursive::views::{Dialog, Panel, TextView};
|
2015-05-18 18:36:15 +00:00
|
|
|
|
|
|
|
fn main() {
|
2015-05-22 07:01:23 +00:00
|
|
|
// Read some long text from a file.
|
2016-07-18 01:41:36 +00:00
|
|
|
let content = include_str!("../assets/lorem.txt");
|
2015-05-18 18:36:15 +00:00
|
|
|
|
2015-05-25 18:37:28 +00:00
|
|
|
let mut siv = Cursive::new();
|
|
|
|
|
2015-05-18 18:36:15 +00:00
|
|
|
// We can quit by pressing q
|
2015-05-28 01:04:33 +00:00
|
|
|
siv.add_global_callback('q', |s| s.quit());
|
2015-05-18 18:36:15 +00:00
|
|
|
|
2015-05-22 07:01:23 +00:00
|
|
|
// 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(
|
2017-10-14 00:53:39 +00:00
|
|
|
Dialog::around(Panel::new(TextView::new(content)))
|
2017-10-12 23:38:55 +00:00
|
|
|
.h_align(HAlign::Center)
|
|
|
|
.button("Quit", |s| s.quit())
|
|
|
|
.full_screen(),
|
|
|
|
);
|
2015-05-22 07:01:23 +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.)",
|
|
|
|
));
|
2015-05-18 18:36:15 +00:00
|
|
|
|
|
|
|
siv.run();
|
|
|
|
}
|