pub struct Text<'a, Renderer>{ /* 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]));
Implementations§
Source§impl<'a, Renderer> Text<'a, Renderer>
impl<'a, Renderer> Text<'a, Renderer>
Sourcepub fn new(content: impl Into<Cow<'a, str>>) -> Self
pub fn new(content: impl Into<Cow<'a, str>>) -> Self
Create a new fragment of Text with the given contents.
Sourcepub fn style(
self,
style: impl Into<<Renderer::Theme as StyleSheet>::Style>,
) -> Self
pub fn style( self, style: impl Into<<Renderer::Theme as StyleSheet>::Style>, ) -> Self
Sets the style of the Text.
Sourcepub fn horizontal_alignment(self, alignment: Horizontal) -> Self
pub fn horizontal_alignment(self, alignment: Horizontal) -> Self
Sets the alignment::Horizontal of the Text.
Sourcepub fn vertical_alignment(self, alignment: Vertical) -> Self
pub fn vertical_alignment(self, alignment: Vertical) -> Self
Sets the alignment::Vertical of the Text.
Trait Implementations§
Source§impl<'a, Message, Renderer> Widget<Message, Renderer> for Text<'a, Renderer>
impl<'a, Message, Renderer> Widget<Message, Renderer> for Text<'a, Renderer>
Source§fn draw(
&self,
_state: &Tree,
renderer: &mut Renderer,
theme: &Renderer::Theme,
style: &Style,
layout: Layout<'_>,
_cursor_position: Point,
_viewport: &Rectangle,
)
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 operate(
&self,
_state: &mut Tree,
_layout: Layout<'_>,
_renderer: &Renderer,
_operation: &mut dyn Operation<Message>,
)
fn operate( &self, _state: &mut Tree, _layout: Layout<'_>, _renderer: &Renderer, _operation: &mut dyn Operation<Message>, )
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
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
Source§fn mouse_interaction(
&self,
_state: &Tree,
_layout: Layout<'_>,
_cursor_position: Point,
_viewport: &Rectangle,
_renderer: &Renderer,
) -> Interaction
fn mouse_interaction( &self, _state: &Tree, _layout: Layout<'_>, _cursor_position: Point, _viewport: &Rectangle, _renderer: &Renderer, ) -> Interaction
Auto Trait Implementations§
impl<'a, Renderer> Freeze for Text<'a, Renderer>
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>
impl<'a, Renderer> Sync for Text<'a, Renderer>
impl<'a, Renderer> Unpin for Text<'a, Renderer>
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
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
Source§fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
Convert the source color to the destination color using the specified
method
Source§fn adapt_into(self) -> D
fn adapt_into(self) -> D
Convert the source color to the destination color using the bradford
method by default
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
impl<T, U> IntoColor<U> for Twhere
U: FromColor<T>,
Source§fn into_color(self) -> U
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 Twhere
U: FromColorUnclamped<T>,
impl<T, U> IntoColorUnclamped<U> for Twhere
U: FromColorUnclamped<T>,
Source§fn into_color_unclamped(self) -> U
fn into_color_unclamped(self) -> U
Convert into T. The resulting color might be invalid in its color space Read more
Source§impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
impl<T, U> TryIntoColor<U> for Twhere
U: TryFromColor<T>,
Source§fn try_into_color(self) -> Result<U, OutOfBounds<U>>
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