mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 03:10:41 +00:00
25e1ca6074
And move it to the vec module
31 lines
861 B
Rust
31 lines
861 B
Rust
extern crate cursive;
|
|
|
|
use cursive::Cursive;
|
|
use cursive::view::{TextView,Dialog};
|
|
|
|
use std::fs::File;
|
|
use std::io::Read;
|
|
|
|
fn main() {
|
|
// Read some long text from a file.
|
|
let mut file = File::open("assets/lorem.txt").unwrap();
|
|
let mut content = String::new();
|
|
file.read_to_string(&mut content).unwrap();
|
|
|
|
let mut siv = Cursive::new();
|
|
|
|
// We can quit by pressing q
|
|
siv.add_global_callback('q' as i32, |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.
|
|
siv.add_layer(TextView::new(&content));
|
|
// Show a popup on top of the view.
|
|
siv.add_layer(Dialog::new(TextView::new("Try resizing the terminal!\n(Press 'q' to quit when you're done.)"))
|
|
.padding((0,0,0,0))
|
|
.dismiss_button("Ok"));
|
|
|
|
siv.run();
|
|
}
|
|
|