[][src]Struct termimad::TextView

pub struct TextView<'a, 't> {
    pub scroll: i32,
    pub show_scrollbar: bool,
    // some fields omitted
}

a scrollable text, in a specific area. The text is assumed to have been computed for the given area (it's generally recommended to use a MadView instead of a TextView to ensure the text is properly computed).

Fields

scroll: i32show_scrollbar: bool

Methods

impl<'a, 't> TextView<'a, 't>[src]

pub fn from(area: &'a Area, text: &'t FmtText) -> TextView<'a, 't>[src]

make a displayed text, that is a text in an area

pub fn content_height(&self) -> i32[src]

pub fn scrollbar(&self) -> Option<(u16, u16)>[src]

return an option which when filled contains a tupple with the top and bottom of the vertical scrollbar. Return none when the content fits the available space (or if show_scrollbar is false).

pub fn write(&self) -> Result<()>[src]

display the text in the area, taking the scroll into account.

pub fn try_scroll_lines(&mut self, lines_count: i32)[src]

set the scroll amount. lines_count can be negative

pub fn try_scroll_pages(&mut self, pages_count: i32)[src]

set the scroll amount. lines_count can be negative

Auto Trait Implementations

impl<'a, 't> Send for TextView<'a, 't>

impl<'a, 't> Sync for TextView<'a, 't>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]