cursive/examples/linear.rs

37 lines
1.3 KiB
Rust
Raw Normal View History

use cursive::align::HAlign;
use cursive::traits::*;
2019-11-15 19:41:05 +00:00
use cursive::views::{Dialog, Dummy, LinearLayout, Text};
2018-06-11 06:29:10 +00:00
use cursive::Cursive;
2018-01-16 02:55:27 +00:00
// This example uses a LinearLayout to stick multiple views next to each other.
fn main() {
let mut siv = Cursive::default();
2018-06-20 17:28:44 +00:00
// Some description text. We want it to be long, but not _too_ long.
2016-07-13 08:19:05 +00:00
let text = "This is a very simple example of linear layout. Two views \
are present, a short title above, and this text. The text \
has a fixed width, and the title is centered horizontally.";
2019-11-15 19:41:05 +00:00
// We'll create a dialog with a Text serving as a title
2017-10-12 23:38:55 +00:00
siv.add_layer(
Dialog::around(
LinearLayout::vertical()
2019-11-15 19:41:05 +00:00
.child(Text::new("Title").h_align(HAlign::Center))
// Use a Dummy as spacer
.child(Dummy.fixed_height(1))
2018-06-20 17:28:44 +00:00
// Disabling scrollable means the view cannot shrink.
2019-11-15 19:41:05 +00:00
.child(Text::new(text))
2018-06-24 02:00:08 +00:00
// The other views will share the remaining space.
2019-11-15 19:41:05 +00:00
.child(Text::new(text).scrollable())
.child(Text::new(text).scrollable())
.child(Text::new(text).scrollable())
2018-06-20 17:28:44 +00:00
.fixed_width(30),
2019-03-01 00:04:14 +00:00
)
.button("Quit", |s| s.quit())
2018-08-22 20:33:29 +00:00
.h_align(HAlign::Center),
2017-10-12 23:38:55 +00:00
);
siv.run();
}