mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-09 19:00:46 +00:00
40 lines
1.0 KiB
Rust
40 lines
1.0 KiB
Rust
extern crate cursive;
|
|
|
|
use cursive::traits::Boxable;
|
|
use cursive::views::{Button, Canvas, Dialog, LinearLayout, ScrollView};
|
|
use cursive::Printer;
|
|
|
|
fn main() {
|
|
let mut siv = cursive::Cursive::default();
|
|
|
|
siv.add_layer(
|
|
Dialog::around(
|
|
ScrollView::new(
|
|
LinearLayout::vertical()
|
|
.child(Button::new("Foo", |s| {
|
|
s.add_layer(Dialog::info("Ah"))
|
|
}))
|
|
.child(
|
|
Canvas::new(()).with_draw(draw).fixed_size((120, 40)),
|
|
)
|
|
.child(Button::new("Bar", |s| {
|
|
s.add_layer(Dialog::info("Uh"))
|
|
})),
|
|
).scroll_x(true),
|
|
).fixed_size((60, 30)),
|
|
);
|
|
|
|
siv.add_global_callback('q', |s| s.quit());
|
|
|
|
siv.run();
|
|
}
|
|
|
|
fn draw(_: &(), p: &Printer) {
|
|
for x in 0..p.size.x {
|
|
for y in 0..p.size.y {
|
|
let c = (x + 6 * y) % 10;
|
|
p.print((x, y), &format!("{}", c));
|
|
}
|
|
}
|
|
}
|