cursive/src/view/view_wrapper.rs

129 lines
3.1 KiB
Rust
Raw Normal View History

2015-05-23 17:33:29 +00:00
use std::any::Any;
use direction::Direction;
2015-05-19 02:41:35 +00:00
use vec::Vec2;
use view::{Selector, View};
2016-07-14 06:25:54 +00:00
use Printer;
2016-03-15 22:37:57 +00:00
use event::{Event, EventResult};
2015-05-19 02:41:35 +00:00
2015-05-23 17:33:29 +00:00
/// Generic wrapper around a view.
///
/// Default implementation forwards all calls to the child view.
/// Overrides some methods as desired.
2016-09-01 18:56:11 +00:00
///
/// You can use the [`wrap_impl!`] macro to define `get_view` and
/// `get_view_mut` for you.
///
/// [`wrap_impl!`]: ../macro.wrap_impl.html
2015-05-19 02:41:35 +00:00
pub trait ViewWrapper {
/// Type that this view wraps.
type V: View;
2016-07-11 02:11:21 +00:00
/// Get an immutable reference to the wrapped view.
fn get_view(&self) -> &Self::V;
2016-07-11 02:11:21 +00:00
/// Get a mutable reference to the wrapped view.
fn get_view_mut(&mut self) -> &mut Self::V;
2015-05-19 02:41:35 +00:00
/// Wraps the `draw` method.
fn wrap_draw(&self, printer: &Printer) {
self.get_view().draw(printer);
2015-05-19 02:41:35 +00:00
}
/// Wraps the `get_min_size` method.
fn wrap_get_min_size(&mut self, req: Vec2) -> Vec2 {
self.get_view_mut().get_min_size(req)
2015-05-19 02:41:35 +00:00
}
/// Wraps the `on_event` method.
fn wrap_on_event(&mut self, ch: Event) -> EventResult {
self.get_view_mut().on_event(ch)
2015-05-19 02:41:35 +00:00
}
/// Wraps the `layout` method.
2015-05-19 02:41:35 +00:00
fn wrap_layout(&mut self, size: Vec2) {
self.get_view_mut().layout(size);
}
2015-05-20 00:31:52 +00:00
/// Wraps the `take_focus` method.
fn wrap_take_focus(&mut self, source: Direction) -> bool {
self.get_view_mut().take_focus(source)
2015-05-20 00:31:52 +00:00
}
2015-05-23 17:33:29 +00:00
/// Wraps the `find` method.
fn wrap_find_any(&mut self, selector: &Selector) -> Option<&mut Any> {
self.get_view_mut().find_any(selector)
2015-05-23 17:33:29 +00:00
}
/// Wraps the `needs_relayout` method.
fn wrap_needs_relayout(&self) -> bool {
self.get_view().needs_relayout()
}
2015-05-19 02:41:35 +00:00
}
2016-06-25 23:36:22 +00:00
impl<T: ViewWrapper> View for T {
fn draw(&self, printer: &Printer) {
self.wrap_draw(printer);
2015-05-19 02:41:35 +00:00
}
fn get_min_size(&mut self, req: Vec2) -> Vec2 {
2015-05-19 02:41:35 +00:00
self.wrap_get_min_size(req)
}
fn on_event(&mut self, ch: Event) -> EventResult {
self.wrap_on_event(ch)
2015-05-19 02:41:35 +00:00
}
fn layout(&mut self, size: Vec2) {
self.wrap_layout(size);
}
2015-05-20 00:31:52 +00:00
fn take_focus(&mut self, source: Direction) -> bool {
self.wrap_take_focus(source)
2015-05-20 00:31:52 +00:00
}
2015-05-23 17:33:29 +00:00
fn find_any(&mut self, selector: &Selector) -> Option<&mut Any> {
self.wrap_find_any(selector)
2015-05-23 17:33:29 +00:00
}
fn needs_relayout(&self) -> bool {
self.wrap_needs_relayout()
}
2015-05-19 02:41:35 +00:00
}
2016-09-01 18:56:11 +00:00
/// Convenient macro to implement the [`ViewWrapper`] trait.
///
/// It defines the `get_view` and `get_view_mut` implementations,
/// as well as the `type V` declaration.
///
2016-09-01 18:56:11 +00:00
/// [`ViewWrapper`]: view/trait.ViewWrapper.html
2015-05-20 00:31:52 +00:00
///
/// # Examples
///
/// ```no_run
2015-06-04 18:40:35 +00:00
/// # #[macro_use] extern crate cursive;
/// # use cursive::view::{View,ViewWrapper};
2015-05-20 00:31:52 +00:00
/// struct FooView<T: View> {
/// view: T,
/// }
///
2015-06-04 18:40:35 +00:00
/// impl <T: View> ViewWrapper for FooView<T> {
/// wrap_impl!(self.view: T);
2015-05-20 00:31:52 +00:00
/// }
2015-06-04 18:40:35 +00:00
/// # fn main() { }
2015-05-20 00:31:52 +00:00
/// ```
#[macro_export]
macro_rules! wrap_impl {
(self.$v:ident: $t:path) => {
type V = $t;
fn get_view(&self) -> &Self::V {
&self.$v
}
fn get_view_mut(&mut self) -> &mut Self::V {
&mut self.$v
}
};
}