2015-05-19 02:41:35 +00:00
|
|
|
use std::rc::Rc;
|
|
|
|
|
2016-07-15 03:27:15 +00:00
|
|
|
use direction::Direction;
|
2016-07-01 06:38:01 +00:00
|
|
|
use theme::ColorStyle;
|
2016-03-15 22:37:57 +00:00
|
|
|
use Cursive;
|
2015-05-19 02:41:35 +00:00
|
|
|
use vec::Vec2;
|
2016-07-10 02:05:51 +00:00
|
|
|
use view::View;
|
2015-05-28 01:04:33 +00:00
|
|
|
use event::*;
|
2016-07-14 06:25:54 +00:00
|
|
|
use Printer;
|
2016-07-04 23:04:32 +00:00
|
|
|
use unicode_width::UnicodeWidthStr;
|
2015-05-19 02:41:35 +00:00
|
|
|
|
|
|
|
/// Simple text label with a callback when ENTER is pressed.
|
2015-05-19 22:54:11 +00:00
|
|
|
/// A button shows its content in a single line and has a fixed size.
|
2015-05-19 02:41:35 +00:00
|
|
|
pub struct Button {
|
|
|
|
label: String,
|
2016-07-02 22:02:42 +00:00
|
|
|
callback: Callback,
|
2015-05-19 02:41:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Button {
|
2015-05-19 22:54:11 +00:00
|
|
|
/// Creates a new button with the given content and callback.
|
2015-05-19 02:41:35 +00:00
|
|
|
pub fn new<F>(label: &str, cb: F) -> Self
|
2015-05-24 00:07:22 +00:00
|
|
|
where F: Fn(&mut Cursive) + 'static
|
2015-05-19 02:41:35 +00:00
|
|
|
{
|
|
|
|
Button {
|
|
|
|
label: label.to_string(),
|
2016-07-02 22:02:42 +00:00
|
|
|
callback: Rc::new(cb),
|
2015-05-19 02:41:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl View for Button {
|
2015-05-31 04:05:34 +00:00
|
|
|
fn draw(&mut self, printer: &Printer) {
|
2016-03-15 22:37:57 +00:00
|
|
|
let style = if !printer.focused {
|
2016-07-01 06:38:01 +00:00
|
|
|
ColorStyle::Primary
|
2016-03-15 22:37:57 +00:00
|
|
|
} else {
|
2016-07-01 06:38:01 +00:00
|
|
|
ColorStyle::Highlight
|
2016-03-15 22:37:57 +00:00
|
|
|
};
|
2015-05-22 06:29:49 +00:00
|
|
|
let x = printer.size.x - 1;
|
2015-05-19 22:54:11 +00:00
|
|
|
|
2015-05-27 04:45:00 +00:00
|
|
|
printer.with_color(style, |printer| {
|
2016-03-15 22:37:57 +00:00
|
|
|
printer.print((1, 0), &self.label);
|
|
|
|
printer.print((0, 0), "<");
|
|
|
|
printer.print((x, 0), ">");
|
2015-05-23 22:58:06 +00:00
|
|
|
});
|
2015-05-19 02:41:35 +00:00
|
|
|
}
|
|
|
|
|
2016-07-10 01:23:58 +00:00
|
|
|
fn get_min_size(&mut self, _: Vec2) -> Vec2 {
|
2015-05-19 22:54:11 +00:00
|
|
|
// Meh. Fixed size we are.
|
2016-07-04 23:04:32 +00:00
|
|
|
Vec2::new(2 + self.label.width(), 1)
|
2015-05-19 02:41:35 +00:00
|
|
|
}
|
|
|
|
|
2015-05-28 01:04:33 +00:00
|
|
|
fn on_event(&mut self, event: Event) -> EventResult {
|
|
|
|
match event {
|
2015-05-19 17:58:42 +00:00
|
|
|
// 10 is the ascii code for '\n', that is the return key
|
2016-07-10 02:05:51 +00:00
|
|
|
Event::Key(Key::Enter) => {
|
|
|
|
EventResult::Consumed(Some(self.callback.clone()))
|
|
|
|
}
|
2015-05-19 02:41:35 +00:00
|
|
|
_ => EventResult::Ignored,
|
|
|
|
}
|
|
|
|
}
|
2015-05-19 22:54:11 +00:00
|
|
|
|
2016-07-15 03:27:15 +00:00
|
|
|
fn take_focus(&mut self, _: Direction) -> bool {
|
2015-05-19 22:54:11 +00:00
|
|
|
true
|
|
|
|
}
|
2015-05-19 02:41:35 +00:00
|
|
|
}
|