Struct ClipperBuffer

Source
pub struct ClipperBuffer<'a, W>
where W: Eq + Clone + Hash,
{ /* private fields */ }

Implementations§

Source§

impl<'a, W> ClipperBuffer<'a, W>
where W: Eq + Hash + Clone,

Source

pub fn is_visible(&self, widget: W) -> bool

Is the widget visible.

Source

pub fn render_label<FN, WW>(&mut self, widget: W, render_fn: FN) -> bool
where FN: FnOnce(&Option<Cow<'static, str>>) -> WW, WW: Widget,

Render the label for the given widget.

Source

pub fn render_widget<FN, WW>(&mut self, widget: W, render_fn: FN) -> bool
where FN: FnOnce() -> WW, WW: Widget,

Render a stateless widget and its label.

Source

pub fn render<FN, WW, SS>( &mut self, widget: W, render_fn: FN, state: &mut SS, ) -> bool
where FN: FnOnce() -> WW, WW: StatefulWidget<State = SS>, SS: RelocatableState,

Render a stateful widget and its label.

Source

pub fn render_block(&mut self)

Render all visible blocks.

Source

pub fn locate_widget(&self, widget: W) -> Option<Rect>

Get the buffer coordinates for the given widget.

Source

pub fn locate_label(&self, widget: W) -> Option<Rect>

Get the buffer coordinates for the label of the given widget.

Source

pub fn locate_area(&self, area: Rect) -> Option<Rect>

Relocate the area from layout coordinates to buffer coordinates, which is a noop as those are aligned.

But this will return None if the given area is outside the buffer.

Source

pub fn shift(&self) -> (i16, i16)

Calculate the necessary shift from layout to screen.

Source

pub fn relocate<S>(&self, state: &mut S)

After rendering the widget to the buffer it may have stored areas in its state. These will be in buffer coordinates instead of screen coordinates.

Call this function to correct this after rendering.

Source

pub fn hidden<S>(&self, state: &mut S)

If a widget is not rendered because it is out of the buffer area, it may still have left over areas in its state.

This uses the mechanism for relocate to zero them out.

Source

pub fn buffer(&mut self) -> &mut Buffer

Return a reference to the buffer.

Source

pub fn into_widget(self) -> ClipperWidget<'a, W>

Rendering the content is finished.

Convert to the output widget that can be rendered in the target area.

Trait Implementations§

Source§

impl<'a, W> Debug for ClipperBuffer<'a, W>
where W: Eq + Clone + Hash + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, W> Freeze for ClipperBuffer<'a, W>

§

impl<'a, W> !RefUnwindSafe for ClipperBuffer<'a, W>

§

impl<'a, W> !Send for ClipperBuffer<'a, W>

§

impl<'a, W> !Sync for ClipperBuffer<'a, W>

§

impl<'a, W> Unpin for ClipperBuffer<'a, W>

§

impl<'a, W> !UnwindSafe for ClipperBuffer<'a, W>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.