pub struct DualPagerBuffer<'a, W>{ /* private fields */ }Expand description
Renders directly to the frame buffer.
- It maps your widget area from layout coordinates to screen coordinates before rendering.
- It helps with cleanup of the widget state if your widget is currently invisible.
Implementations§
Source§impl<'a, W> DualPagerBuffer<'a, W>
impl<'a, W> DualPagerBuffer<'a, W>
Sourcepub fn is_visible(&self, widget: W) -> bool
pub fn is_visible(&self, widget: W) -> bool
Is the given area visible?
Sourcepub fn render_block(&mut self)
pub fn render_block(&mut self)
Render all blocks for the current page.
Sourcepub fn render_label<FN, WW>(&mut self, widget: W, render_fn: FN) -> bool
pub fn render_label<FN, WW>(&mut self, widget: W, render_fn: FN) -> bool
Render a manual label.
Sourcepub fn render_widget<FN, WW>(&mut self, widget: W, render_fn: FN) -> bool
pub fn render_widget<FN, WW>(&mut self, widget: W, render_fn: FN) -> bool
Render a stateless widget and its label, if any.
Sourcepub fn render_opt<FN, WW, SS>(
&mut self,
widget: W,
render_fn: FN,
state: &mut SS,
) -> bool
pub fn render_opt<FN, WW, SS>( &mut self, widget: W, render_fn: FN, state: &mut SS, ) -> bool
Render an optional stateful widget and its label, if any.
Sourcepub fn render<FN, WW, SS>(
&mut self,
widget: W,
render_fn: FN,
state: &mut SS,
) -> bool
pub fn render<FN, WW, SS>( &mut self, widget: W, render_fn: FN, state: &mut SS, ) -> bool
Render a stateful widget and its label, if any.
Sourcepub fn render2<FN, WW, SS, R>(
&mut self,
widget: W,
render_fn: FN,
state: &mut SS,
) -> Option<R>
pub fn render2<FN, WW, SS, R>( &mut self, widget: W, render_fn: FN, state: &mut SS, ) -> Option<R>
Render a stateful widget and its label, if any. The closure can return a second value, which will be forwarded if the widget is visible.
Sourcepub fn shift(&self) -> (i16, i16)
pub fn shift(&self) -> (i16, i16)
Calculate the necessary shift from view to screen. This does nothing as pager always places the widgets in screen coordinates.
Just to keep the api in sync with Clipper.
Sourcepub fn locate_widget(&self, widget: W) -> Option<Rect>
pub fn locate_widget(&self, widget: W) -> Option<Rect>
Relocate the widget area to screen coordinates. Returns None if the widget is not visible. This clips the area to page_area.
Sourcepub fn locate_label(&self, widget: W) -> Option<Rect>
pub fn locate_label(&self, widget: W) -> Option<Rect>
Relocate the label area to screen coordinates. Returns None if the widget is not visible. This clips the area to page_area.
Sourcepub fn locate_area(&self, area: Rect) -> Option<Rect>
pub fn locate_area(&self, area: Rect) -> Option<Rect>
Relocate an area from layout coordinates to screen coordinates. A result None indicates that the area is invisible.
This will clip the area to the page_area.
Sourcepub fn relocate<S>(&self, _state: &mut S)where
S: RelocatableState,
pub fn relocate<S>(&self, _state: &mut S)where
S: RelocatableState,
Does nothing for pager. Just to keep the api in sync with Clipper.
Clear the areas in the widget-state. This is called by render_xx whenever a widget is invisible.
Trait Implementations§
Auto Trait Implementations§
impl<'a, W> Freeze for DualPagerBuffer<'a, W>
impl<'a, W> !RefUnwindSafe for DualPagerBuffer<'a, W>
impl<'a, W> !Send for DualPagerBuffer<'a, W>
impl<'a, W> !Sync for DualPagerBuffer<'a, W>
impl<'a, W> Unpin for DualPagerBuffer<'a, W>
impl<'a, W> !UnwindSafe for DualPagerBuffer<'a, W>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more