pub struct MultiLineText<'a, Coord, T: Borrow<str>> { /* private fields */ }
Expand description

An multi-line text element. The Text element allows only single line text and the MultiLineText supports drawing multiple lines

Implementations§

source§

impl<'a, Coord, T: Borrow<str>> MultiLineText<'a, Coord, T>

source

pub fn new<S: Into<TextStyle<'a>>>(pos: Coord, style: S) -> Self

Create an empty multi-line text element. Lines can be append to the empty multi-line by calling push_line method

pos: The upper left corner style: The style of the text

source

pub fn set_line_height(&mut self, value: f64) -> &mut Self

Set the line height of the multi-line text element

source

pub fn push_line<L: Into<T>>(&mut self, line: L)

Push a new line into the given multi-line text line: The line to be pushed

source

pub fn estimate_dimension(&self) -> FontResult<(i32, i32)>

Estimate the multi-line text element’s dimension

source

pub fn relocate(&mut self, coord: Coord)

Move the location to the specified location

source§

impl<'a, T: Borrow<str>> MultiLineText<'a, BackendCoord, T>

source

pub fn compute_line_layout(&self) -> FontResult<Vec<LayoutBox>>

Compute the line layout

source§

impl<'a, Coord> MultiLineText<'a, Coord, &'a str>

source

pub fn from_str<ST: Into<&'a str>, S: Into<TextStyle<'a>>>( text: ST, pos: Coord, style: S, max_width: u32 ) -> Self

Parse a multi-line text into an multi-line element.

text: The text that is parsed pos: The position of the text style: The style for this text max_width: The width of the multi-line text element, the line will break into two lines if the line is wider than the max_width. If 0 is given, do not do any line wrapping

source§

impl<'a, Coord> MultiLineText<'a, Coord, String>

source

pub fn from_string<S: Into<TextStyle<'a>>>( text: String, pos: Coord, style: S, max_width: u32 ) -> Self

Parse a multi-line text into an multi-line element.

text: The text that is parsed pos: The position of the text style: The style for this text max_width: The width of the multi-line text element, the line will break into two lines if the line is wider than the max_width. If 0 is given, do not do any line wrapping

Trait Implementations§

source§

impl<'a, Coord: 'a, DB: DrawingBackend, T: Borrow<str>> Drawable<DB, BackendCoordOnly> for MultiLineText<'a, Coord, T>

source§

fn draw<I: Iterator<Item = BackendCoord>>( &self, points: I, backend: &mut DB, _: (u32, u32) ) -> Result<(), DrawingErrorKind<DB::ErrorType>>

Actually draws the element. The key points is already translated into the image coordinate and can be used by DC directly
source§

impl<'b, 'a, Coord: 'a, T: Borrow<str> + 'a> PointCollection<'a, Coord, BackendCoordOnly> for &'a MultiLineText<'b, Coord, T>

§

type Point = &'a Coord

The item in point iterator
§

type IntoIter = Once<&'a Coord>

The point iterator
source§

fn point_iter(self) -> Self::IntoIter

framework to do the coordinate mapping

Auto Trait Implementations§

§

impl<'a, Coord, T> !RefUnwindSafe for MultiLineText<'a, Coord, T>

§

impl<'a, Coord, T> Send for MultiLineText<'a, Coord, T>where Coord: Send, T: Send,

§

impl<'a, Coord, T> Sync for MultiLineText<'a, Coord, T>where Coord: Sync, T: Sync,

§

impl<'a, Coord, T> Unpin for MultiLineText<'a, Coord, T>where Coord: Unpin, T: Unpin,

§

impl<'a, Coord, T> !UnwindSafe for MultiLineText<'a, Coord, T>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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<'b, T, DB, Coord> IntoDynElement<'b, DB, Coord> for Twhere T: Drawable<DB, BackendCoordOnly> + 'b, &'a T: for<'a> PointCollection<'a, Coord, BackendCoordOnly>, Coord: Clone, DB: DrawingBackend,

source§

fn into_dyn(self) -> DynElement<'b, DB, Coord>

Make the conversion
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.