cursive/src/view/button.rs
Alexandre Bury 91fdf96066 Add Direction enum
And add a Direction argument to take_focus
2016-07-14 22:23:06 -07:00

66 lines
1.6 KiB
Rust

use std::rc::Rc;
use direction::Direction;
use theme::ColorStyle;
use Cursive;
use vec::Vec2;
use view::View;
use event::*;
use Printer;
use unicode_width::UnicodeWidthStr;
/// Simple text label with a callback when ENTER is pressed.
/// A button shows its content in a single line and has a fixed size.
pub struct Button {
label: String,
callback: Callback,
}
impl Button {
/// Creates a new button with the given content and callback.
pub fn new<F>(label: &str, cb: F) -> Self
where F: Fn(&mut Cursive) + 'static
{
Button {
label: label.to_string(),
callback: Rc::new(cb),
}
}
}
impl View for Button {
fn draw(&mut self, printer: &Printer) {
let style = if !printer.focused {
ColorStyle::Primary
} else {
ColorStyle::Highlight
};
let x = printer.size.x - 1;
printer.with_color(style, |printer| {
printer.print((1, 0), &self.label);
printer.print((0, 0), "<");
printer.print((x, 0), ">");
});
}
fn get_min_size(&mut self, _: Vec2) -> Vec2 {
// Meh. Fixed size we are.
Vec2::new(2 + self.label.width(), 1)
}
fn on_event(&mut self, event: Event) -> EventResult {
match event {
// 10 is the ascii code for '\n', that is the return key
Event::Key(Key::Enter) => {
EventResult::Consumed(Some(self.callback.clone()))
}
_ => EventResult::Ignored,
}
}
fn take_focus(&mut self, _: Direction) -> bool {
true
}
}