[−][src]Struct embedded_text::style::height_mode::FitToText
Sets the height of the StyledTextBox to exactly fit the text.
Note: in this mode, vertical alignment is meaningless. Make sure to use TopAligned for
efficiency.
Example: FitToText grows the TextBox.
use embedded_text::prelude::*; use embedded_graphics::{fonts::Font6x8, pixelcolor::BinaryColor, prelude::*}; // This TextBox contains two lines of text, but is 1px high let text_box = TextBox::new( "Two lines\nof text", Rectangle::new(Point::zero(), Point::new(59, 0)), ); // Set style, use 6x8 font so the 2 lines are 16px high. let style = TextBoxStyleBuilder::new(Font6x8) .height_mode(FitToText) .text_color(BinaryColor::On) .build(); // FitToText grows the TextBox to the height of the text let size = text_box.into_styled(style).size(); assert_eq!(size, Size::new(60, 16));
Example: FitToText also shrinks the TextBox.
use embedded_text::prelude::*; use embedded_graphics::{fonts::Font6x8, pixelcolor::BinaryColor, prelude::*}; // This TextBox contains two lines of text, but is 1px high let text_box = TextBox::new( "Two lines\nof text", Rectangle::new(Point::zero(), Point::new(59, 59)), ); // Set style, use 6x8 font so the 2 lines are 16px high. let style = TextBoxStyleBuilder::new(Font6x8) .height_mode(FitToText) .text_color(BinaryColor::On) .build(); // FitToText shrinks the TextBox to the height of the text let size = text_box.into_styled(style).size(); assert_eq!(size, Size::new(60, 16));
Trait Implementations
impl Clone for FitToText[src]
impl Copy for FitToText[src]
impl Debug for FitToText[src]
impl HeightMode for FitToText[src]
pub fn apply<C, F, A, V, H>(text_box: &mut StyledTextBox<'_, C, F, A, V, H>) where
C: PixelColor,
F: Font + Copy,
A: HorizontalTextAlignment,
V: VerticalTextAlignment,
H: HeightMode, [src]
C: PixelColor,
F: Font + Copy,
A: HorizontalTextAlignment,
V: VerticalTextAlignment,
H: HeightMode,
pub fn calculate_displayed_row_range<F: Font>(_: &Cursor<F>) -> Range<i32>[src]
Auto Trait Implementations
impl RefUnwindSafe for FitToText
impl Send for FitToText
impl Sync for FitToText
impl Unpin for FitToText
impl UnwindSafe for FitToText
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> 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>,