Struct egui::widget_text::RichText

source ·
pub struct RichText { /* private fields */ }
Expand description

Text and optional style choices for it.

The style choices (font, color) are applied to the entire text. For more detailed control, use crate::text::LayoutJob instead.

A RichText can be used in most widgets and helper functions, e.g. Ui::label and Ui::button.

Example

use egui::{RichText, Color32};

RichText::new("Plain");
RichText::new("colored").color(Color32::RED);
RichText::new("Large and underlined").size(20.0).underline();

Implementations§

source§

impl RichText

source

pub fn new(text: impl Into<String>) -> Self

source

pub fn is_empty(&self) -> bool

source

pub fn text(&self) -> &str

source

pub fn size(self, size: f32) -> Self

Select the font size (in points). This overrides the value from Self::text_style.

source

pub fn family(self, family: FontFamily) -> Self

Select the font family.

This overrides the value from Self::text_style.

Only the families available in crate::FontDefinitions::families may be used.

source

pub fn font(self, font_id: FontId) -> Self

Select the font and size. This overrides the value from Self::text_style.

source

pub fn text_style(self, text_style: TextStyle) -> Self

Override the TextStyle.

source

pub fn fallback_text_style(self, text_style: TextStyle) -> Self

Set the TextStyle unless it has already been set

source

pub fn heading(self) -> Self

source

pub fn monospace(self) -> Self

source

pub fn code(self) -> Self

Monospace label with different background color.

source

pub fn strong(self) -> Self

Extra strong text (stronger color).

source

pub fn weak(self) -> Self

Extra weak text (fainter color).

source

pub fn underline(self) -> Self

Draw a line under the text.

If you want to control the line color, use LayoutJob instead.

source

pub fn strikethrough(self) -> Self

Draw a line through the text, crossing it out.

If you want to control the strikethrough line color, use LayoutJob instead.

source

pub fn italics(self) -> Self

Tilt the characters to the right.

source

pub fn small(self) -> Self

Smaller text.

source

pub fn small_raised(self) -> Self

For e.g. exponents.

source

pub fn raised(self) -> Self

Align text to top. Only applicable together with Self::small().

source

pub fn background_color(self, background_color: impl Into<Color32>) -> Self

Fill-color behind the text.

source

pub fn color(self, color: impl Into<Color32>) -> Self

Override text color.

source

pub fn font_height(&self, fonts: &Fonts, style: &Style) -> f32

Read the font height of the selected text style.

Trait Implementations§

source§

impl Clone for RichText

source§

fn clone(&self) -> RichText

Returns a copy 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 Default for RichText

source§

fn default() -> RichText

Returns the “default value” for a type. Read more
source§

impl From<&String> for RichText

source§

fn from(text: &String) -> Self

Converts to this type from the input type.
source§

impl From<&mut String> for RichText

source§

fn from(text: &mut String) -> Self

Converts to this type from the input type.
source§

impl From<&str> for RichText

source§

fn from(text: &str) -> Self

Converts to this type from the input type.
source§

impl From<Cow<'_, str>> for RichText

source§

fn from(text: Cow<'_, str>) -> Self

Converts to this type from the input type.
source§

impl From<RichText> for WidgetText

source§

fn from(rich_text: RichText) -> Self

Converts to this type from the input type.
source§

impl From<String> for RichText

source§

fn from(text: String) -> Self

Converts to this type from the input type.
source§

impl PartialEq<RichText> for RichText

source§

fn eq(&self, other: &RichText) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for RichText

Auto Trait Implementations§

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

const: unstable · 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> ToOwned for Twhere
T: Clone,

§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more