2015-05-19 02:41:35 +00:00
|
|
|
use std::rc::Rc;
|
|
|
|
|
2015-05-22 06:29:49 +00:00
|
|
|
use color;
|
2015-05-19 02:41:35 +00:00
|
|
|
use ::Cursive;
|
|
|
|
use vec::Vec2;
|
2015-05-24 00:07:22 +00:00
|
|
|
use view::{View,SizeRequest};
|
2015-05-19 02:41:35 +00:00
|
|
|
use event::{Callback,EventResult};
|
|
|
|
use printer::Printer;
|
|
|
|
|
|
|
|
/// 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,
|
|
|
|
callback: Rc<Callback>,
|
|
|
|
}
|
|
|
|
|
|
|
|
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(),
|
|
|
|
callback: Rc::new(Box::new(cb)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl View for Button {
|
|
|
|
|
2015-05-22 23:28:05 +00:00
|
|
|
fn draw(&mut self, printer: &Printer, focused: bool) {
|
2015-05-22 06:29:49 +00:00
|
|
|
let style = if !focused { color::PRIMARY } else { color::HIGHLIGHT };
|
|
|
|
let x = printer.size.x - 1;
|
2015-05-19 22:54:11 +00:00
|
|
|
|
2015-05-23 22:58:06 +00:00
|
|
|
printer.with_style(style, |printer| {
|
|
|
|
printer.print((1u32,0u32), &self.label);
|
|
|
|
printer.print((0u32,0u32), "<");
|
|
|
|
printer.print((x,0), ">");
|
|
|
|
});
|
2015-05-19 02:41:35 +00:00
|
|
|
}
|
|
|
|
|
2015-05-19 22:54:11 +00:00
|
|
|
fn get_min_size(&self, _: SizeRequest) -> Vec2 {
|
|
|
|
// Meh. Fixed size we are.
|
2015-05-19 17:58:42 +00:00
|
|
|
Vec2::new(2 + self.label.len() as u32, 1)
|
2015-05-19 02:41:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn on_key_event(&mut self, ch: i32) -> EventResult {
|
|
|
|
match ch {
|
2015-05-19 17:58:42 +00:00
|
|
|
// 10 is the ascii code for '\n', that is the return key
|
2015-05-24 00:07:22 +00:00
|
|
|
10 => EventResult::Consumed(Some(self.callback.clone())),
|
2015-05-19 02:41:35 +00:00
|
|
|
_ => EventResult::Ignored,
|
|
|
|
}
|
|
|
|
}
|
2015-05-19 22:54:11 +00:00
|
|
|
|
|
|
|
fn take_focus(&mut self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
2015-05-19 02:41:35 +00:00
|
|
|
}
|