cursive/src/views/boxed_view.rs
Alexandre Bury 9aee7d374c Rename some types
BoxView => ResizedView
SizedView => LastSizeView
ViewBox => BoxedView
Boxable => Resizable
Boxable::box => Resizable::resize

Old names are still re-exported, but deprecated.
2020-01-06 11:55:16 -08:00

62 lines
1.2 KiB
Rust

use crate::view::{IntoBoxedView, View, ViewWrapper};
use std::ops::{Deref, DerefMut};
/// A boxed `View`.
///
/// It derefs to the wrapped view.
pub struct BoxedView {
view: Box<dyn View>,
}
impl BoxedView {
/// Creates a new `BoxedView` around the given boxed view.
pub fn new(view: Box<dyn View>) -> Self {
BoxedView { view }
}
/// Box the given view
pub fn boxed<T>(view: T) -> Self
where
T: IntoBoxedView,
{
BoxedView::new(view.as_boxed_view())
}
/// Returns the inner boxed view.
pub fn unwrap(self) -> Box<dyn View> {
self.view
}
}
impl Deref for BoxedView {
type Target = dyn View;
fn deref(&self) -> &dyn View {
&*self.view
}
}
impl DerefMut for BoxedView {
fn deref_mut(&mut self) -> &mut dyn View {
&mut *self.view
}
}
impl ViewWrapper for BoxedView {
type V = dyn View;
fn with_view<F, R>(&self, f: F) -> Option<R>
where
F: FnOnce(&Self::V) -> R,
{
Some(f(&*self.view))
}
fn with_view_mut<F, R>(&mut self, f: F) -> Option<R>
where
F: FnOnce(&mut Self::V) -> R,
{
Some(f(&mut *self.view))
}
}