Struct embedded_text::TextBox [−][src]
A textbox object.
The TextBox struct represents a piece of text that can be drawn on a display inside the given
bounding box.
The struct only contains the text and the bounding box, no additional information. To draw
a TextBox it is necessary to attach a TextBoxStyle to it using the into_styled method
to create a StyledTextBox object.
See the module-level documentation for more information.
Fields
text: &'a strThe text to be displayed in this TextBox
bounds: RectangleThe bounding box of this TextBox
Implementations
impl<'a> TextBox<'a>[src]
impl<'a> TextBox<'a>[src]#[must_use]pub fn new(text: &'a str, bounds: Rectangle) -> Self[src]
Creates a new TextBox instance with a given bounding Rectangle.
#[must_use]pub fn into_styled<C, F, A, V, H>(
self,
style: TextBoxStyle<C, F, A, V, H>
) -> StyledTextBox<'a, C, F, A, V, H> where
C: PixelColor,
F: Font + Copy,
A: HorizontalTextAlignment,
V: VerticalTextAlignment,
H: HeightMode, [src]
self,
style: TextBoxStyle<C, F, A, V, H>
) -> StyledTextBox<'a, C, F, A, V, H> where
C: PixelColor,
F: Font + Copy,
A: HorizontalTextAlignment,
V: VerticalTextAlignment,
H: HeightMode,
Creates a StyledTextBox by attaching a TextBoxStyle to the TextBox object.
By default, the size of the StyledTextBox is equal to the size of the TextBox. Use
HeightMode options to change this.
Example:
In this example, we make a TextBox and give it all our available space as size.
We create a TextBoxStyle object to set how our TextBox should be drawn.
- Set the 6x8 font
- Set the text color to
BinaryColor::On - Leave the background color transparent
- Leave text alignment top/left
- Set
ShrinkToTextHeightModeto shrink theTextBoxwhen possible.
use embedded_text::{prelude::*, style::vertical_overdraw::FullRowsOnly}; use embedded_graphics::{fonts::Font6x8, pixelcolor::BinaryColor, prelude::*}; let text_box = TextBox::new( "Two lines\nof text", Rectangle::new(Point::zero(), Point::new(59, 59)), ); let style = TextBoxStyleBuilder::new(Font6x8) .height_mode(ShrinkToText(FullRowsOnly)) .text_color(BinaryColor::On) .build(); let styled_text_box = text_box.into_styled(style); assert_eq!(16, styled_text_box.size().height);
Trait Implementations
impl Dimensions for TextBox<'_>[src]
impl Dimensions for TextBox<'_>[src]impl<'a> StructuralEq for TextBox<'a>[src]
impl<'a> StructuralEq for TextBox<'a>[src]impl<'a> StructuralPartialEq for TextBox<'a>[src]
impl<'a> StructuralPartialEq for TextBox<'a>[src]Auto Trait Implementations
impl<'a> RefUnwindSafe for TextBox<'a>
impl<'a> RefUnwindSafe for TextBox<'a>impl<'a> UnwindSafe for TextBox<'a>
impl<'a> UnwindSafe for TextBox<'a>