Struct cursive::views::ShadowView
[−]
[src]
pub struct ShadowView<T: View> { /* fields omitted */ }
Wrapper view that adds a shadow.
It reserves a 1 pixel border on each side.
Methods
impl<T: View> ShadowView<T>[src]
fn new(view: T) -> Self
Wraps the given view.
fn left_padding(self, value: bool) -> Self
If set, adds an empty column to the left of the view.
Default to true.
fn top_padding(self, value: bool) -> Self
If set, adds an empty row at the top of the view.
Default to true.
Trait Implementations
impl<T: View> ViewWrapper for ShadowView<T>[src]
type V = T
Type that this view wraps.
fn get_view(&self) -> &Self::V
Get an immutable reference to the wrapped view.
fn get_view_mut(&mut self) -> &mut Self::V
Get a mutable reference to the wrapped view.
fn wrap_get_min_size(&mut self, req: Vec2) -> Vec2
Wraps the get_min_size method.
fn wrap_layout(&mut self, size: Vec2)
Wraps the layout method.
fn wrap_draw(&self, printer: &Printer)
Wraps the draw method.
fn wrap_on_event(&mut self, ch: Event) -> EventResult
Wraps the on_event method.
fn wrap_take_focus(&mut self, source: Direction) -> bool
Wraps the take_focus method.
fn wrap_find_any(&mut self, selector: &Selector) -> Option<&mut Any>
Wraps the find method.
fn wrap_needs_relayout(&self) -> bool
Wraps the needs_relayout method.