use std::rc::Rc;
use theme::ColorStyle;
use Cursive;
use vec::Vec2;
use view::View;
use event::*;
use printer::Printer;
use unicode_width::UnicodeWidthStr;
pub struct Button {
label: String,
callback: Callback,
}
impl Button {
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 {
Vec2::new(2 + self.label.width(), 1)
}
fn on_event(&mut self, event: Event) -> EventResult {
match event {
Event::Key(Key::Enter) => {
EventResult::Consumed(Some(self.callback.clone()))
}
_ => EventResult::Ignored,
}
}
fn take_focus(&mut self) -> bool {
true
}
}