[][src]Struct widgetry::Text

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(line: TextSpan) -> Text[src]

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

pub fn from_multiline(lines: Vec<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 add(&mut self, line: TextSpan)[src]

pub fn add_highlighted(&mut self, line: TextSpan, highlight: Color)[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, A: AsRef<Assets>>(self, assets: &A) -> GeomBatch[src]

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

pub fn render_to_batch(self, prerender: &Prerender) -> GeomBatch[src]

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

pub fn draw(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]

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: Send + Sync + Any

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,