Text

Struct Text 

Source
pub struct Text<'a, Renderer>
where Renderer: Renderer, Renderer::Theme: StyleSheet,
{ /* private fields */ }
Expand description

A paragraph of text.

§Example

Text::new("I <3 iced!")
    .size(40)
    .style(Color::from([0.0, 0.0, 1.0]));

Text drawn by iced_wgpu

Implementations§

Source§

impl<'a, Renderer> Text<'a, Renderer>
where Renderer: Renderer, Renderer::Theme: StyleSheet,

Source

pub fn new(content: impl Into<Cow<'a, str>>) -> Self

Create a new fragment of Text with the given contents.

Source

pub fn size(self, size: impl Into<Pixels>) -> Self

Sets the size of the Text.

Source

pub fn font(self, font: impl Into<Renderer::Font>) -> Self

Sets the Font of the Text.

Source

pub fn style( self, style: impl Into<<Renderer::Theme as StyleSheet>::Style>, ) -> Self

Sets the style of the Text.

Source

pub fn width(self, width: impl Into<Length>) -> Self

Sets the width of the Text boundaries.

Source

pub fn height(self, height: impl Into<Length>) -> Self

Sets the height of the Text boundaries.

Source

pub fn horizontal_alignment(self, alignment: Horizontal) -> Self

Sets the alignment::Horizontal of the Text.

Source

pub fn vertical_alignment(self, alignment: Vertical) -> Self

Sets the alignment::Vertical of the Text.

Trait Implementations§

Source§

impl<'a, Renderer> Clone for Text<'a, Renderer>
where Renderer: Renderer, Renderer::Theme: StyleSheet,

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a, Message, Renderer> From<Text<'a, Renderer>> for Element<'a, Message, Renderer>
where Renderer: Renderer + 'a, Renderer::Theme: StyleSheet,

Source§

fn from(text: Text<'a, Renderer>) -> Element<'a, Message, Renderer>

Converts to this type from the input type.
Source§

impl<'a, Message, Renderer> Widget<Message, Renderer> for Text<'a, Renderer>
where Renderer: Renderer, Renderer::Theme: StyleSheet,

Source§

fn width(&self) -> Length

Returns the width of the Widget.
Source§

fn height(&self) -> Length

Returns the height of the Widget.
Source§

fn layout(&self, renderer: &Renderer, limits: &Limits) -> Node

Returns the layout::Node of the Widget. Read more
Source§

fn draw( &self, _state: &Tree, renderer: &mut Renderer, theme: &Renderer::Theme, style: &Style, layout: Layout<'_>, _cursor_position: Point, _viewport: &Rectangle, )

Draws the Widget using the associated Renderer.
Source§

fn tag(&self) -> Tag

Returns the Tag of the Widget.
Source§

fn state(&self) -> State

Returns the State of the Widget.
Source§

fn children(&self) -> Vec<Tree>

Returns the state Tree of the children of the Widget.
Source§

fn diff(&self, _tree: &mut Tree)

Reconciliates the Widget with the provided Tree.
Source§

fn operate( &self, _state: &mut Tree, _layout: Layout<'_>, _renderer: &Renderer, _operation: &mut dyn Operation<Message>, )

Applies an Operation to the Widget.
Source§

fn on_event( &mut self, _state: &mut Tree, _event: Event, _layout: Layout<'_>, _cursor_position: Point, _renderer: &Renderer, _clipboard: &mut dyn Clipboard, _shell: &mut Shell<'_, Message>, ) -> Status

Processes a runtime Event. Read more
Source§

fn mouse_interaction( &self, _state: &Tree, _layout: Layout<'_>, _cursor_position: Point, _viewport: &Rectangle, _renderer: &Renderer, ) -> Interaction

Returns the current mouse::Interaction of the Widget. Read more
Source§

fn overlay<'a>( &'a mut self, _state: &'a mut Tree, _layout: Layout<'_>, _renderer: &Renderer, ) -> Option<Element<'a, Message, Renderer>>

Returns the overlay of the Widget, if there is any.

Auto Trait Implementations§

§

impl<'a, Renderer> Freeze for Text<'a, Renderer>
where <Renderer as Renderer>::Font: Freeze, <<Renderer as Renderer>::Theme as StyleSheet>::Style: Freeze,

§

impl<'a, Renderer> RefUnwindSafe for Text<'a, Renderer>
where <Renderer as Renderer>::Font: RefUnwindSafe, <<Renderer as Renderer>::Theme as StyleSheet>::Style: RefUnwindSafe,

§

impl<'a, Renderer> Send for Text<'a, Renderer>
where <Renderer as Renderer>::Font: Send, <<Renderer as Renderer>::Theme as StyleSheet>::Style: Send,

§

impl<'a, Renderer> Sync for Text<'a, Renderer>
where <Renderer as Renderer>::Font: Sync, <<Renderer as Renderer>::Theme as StyleSheet>::Style: Sync,

§

impl<'a, Renderer> Unpin for Text<'a, Renderer>
where <Renderer as Renderer>::Font: Unpin, <<Renderer as Renderer>::Theme as StyleSheet>::Style: Unpin,

§

impl<'a, Renderer> UnwindSafe for Text<'a, Renderer>
where <Renderer as Renderer>::Font: UnwindSafe, <<Renderer as Renderer>::Theme as StyleSheet>::Style: UnwindSafe,

Blanket Implementations§

Source§

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
where T: FloatComponent, Swp: WhitePoint, Dwp: WhitePoint, D: AdaptFrom<S, Swp, Dwp, T>,

Source§

fn adapt_into_using<M>(self, method: M) -> D
where M: TransformMatrix<Swp, Dwp, T>,

Convert the source color to the destination color using the specified method
Source§

fn adapt_into(self) -> D

Convert the source color to the destination color using the bradford method by default
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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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, U> IntoColor<U> for T
where U: FromColor<T>,

Source§

fn into_color(self) -> U

Convert into T with values clamped to the color defined bounds Read more
Source§

impl<T, U> IntoColorUnclamped<U> for T
where U: FromColorUnclamped<T>,

Source§

fn into_color_unclamped(self) -> U

Convert into T. The resulting color might be invalid in its color space Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.
Source§

impl<T, U> TryIntoColor<U> for T
where U: TryFromColor<T>,

Source§

fn try_into_color(self) -> Result<U, OutOfBounds<U>>

Convert into T, returning ok if the color is inside of its defined range, otherwise an OutOfBounds error is returned which contains the unclamped color. Read more
Source§

impl<T> MaybeSend for T
where T: Send,