2017-01-24 06:01:25 +00:00
|
|
|
use Printer;
|
|
|
|
use With;
|
|
|
|
use direction::Direction;
|
|
|
|
use event::{Event, EventResult};
|
|
|
|
use vec::Vec2;
|
|
|
|
use view::View;
|
|
|
|
|
|
|
|
/// A blank view that forwards calls to closures.
|
|
|
|
///
|
|
|
|
/// You can use this view to easily draw your own interface.
|
|
|
|
pub struct Canvas<T> {
|
|
|
|
state: T,
|
|
|
|
|
|
|
|
draw: Box<Fn(&Printer, &T)>,
|
|
|
|
on_event: Box<FnMut(Event, &mut T) -> EventResult>,
|
2017-01-24 06:52:29 +00:00
|
|
|
required_size: Box<FnMut(Vec2, &mut T) -> Vec2>,
|
2017-01-24 06:01:25 +00:00
|
|
|
layout: Box<FnMut(Vec2, &mut T)>,
|
|
|
|
take_focus: Box<FnMut(Direction, &mut T) -> bool>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Canvas<T> {
|
|
|
|
/// Creates a new, empty Canvas.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-01-24 06:03:39 +00:00
|
|
|
/// # use cursive::views::Canvas;
|
2017-01-24 06:01:25 +00:00
|
|
|
/// let canvas = Canvas::new(())
|
|
|
|
/// .with_draw(|printer, _| {
|
|
|
|
/// // Print the view
|
|
|
|
/// });
|
|
|
|
/// ```
|
|
|
|
pub fn new(state: T) -> Self {
|
|
|
|
Canvas {
|
|
|
|
state: state,
|
|
|
|
draw: Box::new(|_, _| ()),
|
|
|
|
on_event: Box::new(|_, _| EventResult::Ignored),
|
2017-01-24 06:52:29 +00:00
|
|
|
required_size: Box::new(|_, _| Vec2::new(1, 1)),
|
2017-01-24 06:01:25 +00:00
|
|
|
layout: Box::new(|_, _| ()),
|
|
|
|
take_focus: Box::new(|_, _| false),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the closure for `draw(&Printer)`
|
|
|
|
pub fn set_draw<F>(&mut self, f: F)
|
|
|
|
where F: 'static + Fn(&Printer, &T)
|
|
|
|
{
|
|
|
|
self.draw = Box::new(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the closure for `draw(&Printer)`
|
|
|
|
///
|
|
|
|
/// Chainable variant.
|
|
|
|
pub fn with_draw<F>(self, f: F) -> Self
|
|
|
|
where F: 'static + Fn(&Printer, &T)
|
|
|
|
{
|
|
|
|
self.with(|s| s.set_draw(f))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the closure for `on_event(Event)`
|
|
|
|
pub fn set_on_event<F>(&mut self, f: F)
|
|
|
|
where F: 'static + FnMut(Event, &mut T) -> EventResult
|
|
|
|
{
|
|
|
|
self.on_event = Box::new(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the closure for `on_event(Event)`
|
|
|
|
///
|
|
|
|
/// Chainable variant.
|
|
|
|
pub fn with_on_event<F>(self, f: F) -> Self
|
|
|
|
where F: 'static + FnMut(Event, &mut T) -> EventResult
|
|
|
|
{
|
|
|
|
self.with(|s| s.set_on_event(f))
|
|
|
|
}
|
|
|
|
|
2017-01-24 06:52:29 +00:00
|
|
|
/// Sets the closure for `required_size(Vec2)`
|
|
|
|
pub fn set_required_size<F>(&mut self, f: F)
|
2017-01-24 06:01:25 +00:00
|
|
|
where F: 'static + FnMut(Vec2, &mut T) -> Vec2
|
|
|
|
{
|
2017-01-24 06:52:29 +00:00
|
|
|
self.required_size = Box::new(f);
|
2017-01-24 06:01:25 +00:00
|
|
|
}
|
|
|
|
|
2017-01-24 06:52:29 +00:00
|
|
|
/// Sets the closure for `required_size(Vec2)`
|
2017-01-24 06:01:25 +00:00
|
|
|
///
|
|
|
|
/// Chainable variant.
|
2017-01-24 06:52:29 +00:00
|
|
|
pub fn with_required_size<F>(self, f: F) -> Self
|
2017-01-24 06:01:25 +00:00
|
|
|
where F: 'static + FnMut(Vec2, &mut T) -> Vec2
|
|
|
|
{
|
2017-01-24 06:52:29 +00:00
|
|
|
self.with(|s| s.set_required_size(f))
|
2017-01-24 06:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the closure for `layout(Vec2)`
|
|
|
|
pub fn set_layout<F>(&mut self, f: F)
|
|
|
|
where F: 'static + FnMut(Vec2, &mut T)
|
|
|
|
{
|
|
|
|
self.layout = Box::new(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the closure for `layout(Vec2)`
|
|
|
|
///
|
|
|
|
/// Chainable variant.
|
|
|
|
pub fn with_layout<F>(self, f: F) -> Self
|
|
|
|
where F: 'static + FnMut(Vec2, &mut T)
|
|
|
|
{
|
|
|
|
self.with(|s| s.set_layout(f))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the closure for `take_focus(Direction)`
|
|
|
|
pub fn set_take_focus<F>(&mut self, f: F)
|
|
|
|
where F: 'static + FnMut(Direction, &mut T) -> bool
|
|
|
|
{
|
|
|
|
self.take_focus = Box::new(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the closure for `take_focus(Direction)`
|
|
|
|
///
|
|
|
|
/// Chainable variant.
|
|
|
|
pub fn with_take_focus<F>(self, f: F) -> Self
|
|
|
|
where F: 'static + FnMut(Direction, &mut T) -> bool
|
|
|
|
{
|
|
|
|
self.with(|s| s.set_take_focus(f))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl <T> View for Canvas<T> {
|
|
|
|
fn draw(&self, printer: &Printer) {
|
|
|
|
(self.draw)(printer, &self.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn on_event(&mut self, event: Event) -> EventResult {
|
|
|
|
(self.on_event)(event, &mut self.state)
|
|
|
|
}
|
|
|
|
|
2017-01-24 06:52:29 +00:00
|
|
|
fn required_size(&mut self, constraint: Vec2) -> Vec2 {
|
|
|
|
(self.required_size)(constraint, &mut self.state)
|
2017-01-24 06:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn layout(&mut self, size: Vec2) {
|
|
|
|
(self.layout)(size, &mut self.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn take_focus(&mut self, source: Direction) -> bool {
|
|
|
|
(self.take_focus)(source, &mut self.state)
|
|
|
|
}
|
|
|
|
}
|