Struct widgetry::Text [−][src]
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]
ctx: &EventCtx<'_>,
hotkey: MK,
action: &str
) -> Text
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Downcast for T where
T: Any,
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> DowncastSync for T where
T: Any + Send + Sync,
T: Any + Send + Sync,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,