Struct widgetry::text::Text[][src]

pub struct Text {
    lines: Vec<(Option<Color>, Vec<TextSpan>)>,
    bg_color: Option<Color>,
}

Fields

lines: Vec<(Option<Color>, Vec<TextSpan>)>bg_color: Option<Color>

Implementations

impl Text[src]

pub fn new() -> Text[src]

pub fn from_all(lines: Vec<TextSpan>) -> Text[src]

pub fn from_multiline(lines: Vec<impl Into<TextSpan>>) -> Text[src]

pub fn with_bg(self) -> Text[src]

pub fn bg(self, bg: Color) -> Text[src]

pub fn tooltip<MK: Into<Option<MultiKey>>>(
    ctx: &EventCtx<'_>,
    hotkey: MK,
    action: &str
) -> Text
[src]

pub fn change_fg(self, fg: Color) -> Text[src]

pub fn default_fg(self, fg: Color) -> Text[src]

pub fn add_line(&mut self, line: impl Into<TextSpan>)[src]

pub(crate) fn highlight_last_line(&mut self, highlight: Color)[src]

pub fn append(&mut self, line: TextSpan)[src]

pub fn add_appended(&mut self, lines: Vec<TextSpan>)[src]

pub fn append_all(&mut self, lines: Vec<TextSpan>)[src]

pub fn is_empty(&self) -> bool[src]

pub fn extend(&mut self, other: Text)[src]

pub(crate) fn dims(self, assets: &Assets) -> ScreenDims[src]

pub fn render<A: AsRef<Assets>>(self, assets: &A) -> GeomBatch[src]

Render the text, without any autocropping. You can pass in an EventCtx or GfxCtx.

pub(crate) fn inner_render(self, assets: &Assets, tolerance: f32) -> GeomBatch[src]

pub fn render_autocropped<A: AsRef<Assets>>(self, assets: &A) -> GeomBatch[src]

Render the text, autocropping blank space out of the result. You can pass in an EventCtx or GfxCtx.

fn hash_key(&self) -> String[src]

pub fn into_widget(self, ctx: &EventCtx<'_>) -> Widget[src]

pub fn batch(self, ctx: &EventCtx<'_>) -> Widget[src]

pub fn wrap_to_pct(self, ctx: &EventCtx<'_>, pct: usize) -> Text[src]

pub(crate) fn inner_wrap_to_pct(self, limit: f64, assets: &Assets) -> Text[src]

Trait Implementations

impl Clone for Text[src]

impl Debug for Text[src]

impl<AsStrRef: AsRef<str>> From<AsStrRef> for Text[src]

impl From<TextSpan> for Text[src]

Auto Trait Implementations

impl RefUnwindSafe for Text

impl Send for Text

impl Sync for Text

impl Unpin for Text

impl UnwindSafe for Text

Blanket Implementations

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

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

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.