embedded_graphics/style/text_style.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
use crate::{fonts::Font, pixelcolor::PixelColor};
/// Style properties for text.
///
/// A `TextStyle` can be applied to a [`Text`] object to define how the text is drawn.
///
/// Because `TextStyle` has the [`non_exhaustive`] attribute, it cannot be created using a struct
/// literal. To create a `TextStyle`, use the [`text_style!`] macro or [`TextStyleBuilder`].
///
/// [`Text`]: ../fonts/struct.Text.html
/// [`non_exhaustive`]: https://blog.rust-lang.org/2019/12/19/Rust-1.40.0.html#[non_exhaustive]-structs,-enums,-and-variants
/// [`text_style!`]: ../macro.text_style.html
/// [`TextStyleBuilder`]: ./struct.TextStyleBuilder.html
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Default)]
#[non_exhaustive]
pub struct TextStyle<C, F>
where
C: PixelColor,
F: Font,
{
/// Text color.
pub text_color: Option<C>,
/// Background color.
pub background_color: Option<C>,
/// Font.
pub font: F,
}
impl<C, F> TextStyle<C, F>
where
C: PixelColor,
F: Font,
{
/// Creates a text style with transparent background.
pub fn new(font: F, text_color: C) -> Self {
Self {
font,
text_color: Some(text_color),
background_color: None,
}
}
}
/// Text style builder.
///
/// Use this builder to create [`TextStyle`]s for [`Text`].
///
/// The [`text_style!`] macro can also be used to create [`TextStyle`]s, but with a shorter syntax.
/// See the [`text_style!`] documentation for examples.
///
/// # Examples
///
/// ## Render yellow text on a blue background
///
/// This uses the [`Font6x8`] font, but [other fonts] can also be used.
///
/// ```rust
/// use embedded_graphics::{
/// fonts::{Font6x8, Text},
/// pixelcolor::Rgb565,
/// prelude::*,
/// style::{TextStyle, TextStyleBuilder},
/// };
///
/// let style: TextStyle<Rgb565, Font6x8> = TextStyleBuilder::new(Font6x8)
/// .text_color(Rgb565::YELLOW)
/// .background_color(Rgb565::BLUE)
/// .build();
///
/// let text = Text::new("Hello Rust!", Point::new(0, 0)).into_styled(style);
/// ```
///
/// ## Render black text on white background using macros
///
/// This uses the [`Font8x16`] font with the [`egtext!`] and [`text_style!`] macros for shorter
/// code.
///
/// ```rust
/// use embedded_graphics::{
/// egtext,
/// fonts::{Font8x16, Text},
/// pixelcolor::Rgb565,
/// prelude::*,
/// style::TextStyle,
/// text_style,
/// };
///
/// let style = text_style!(
/// font = Font8x16,
/// text_color = Rgb565::WHITE,
/// background_color = Rgb565::BLACK
/// );
///
/// let text = Text::new("Hello Rust!", Point::new(0, 0)).into_styled(style);
/// ```
///
/// ## Transparent background
///
/// If a property is ommitted, it will remain at its default value in the resulting `TextStyle`
/// returned by `.build()`. This example draws white text with no background at all.
///
/// ```rust
/// use embedded_graphics::{
/// egtext,
/// fonts::{Font6x8, Text},
/// pixelcolor::Rgb565,
/// prelude::*,
/// style::{TextStyle, TextStyleBuilder},
/// text_style,
/// };
///
/// let style: TextStyle<Rgb565, Font6x8> = TextStyleBuilder::new(Font6x8)
/// .text_color(Rgb565::WHITE)
/// .build();
///
/// let text = Text::new("Hello Rust!", Point::new(0, 0)).into_styled(style);
/// ```
///
/// [`Font`]: ../fonts/trait.Font.html
/// [`Font6x8`]: ../fonts/struct.Font6x8.html
/// [`Font8x16`]: ../fonts/struct.Font8x16.html
/// [other fonts]: ../fonts/index.html
/// [`text_style!`]: ../macro.text_style.html
/// [`egtext!`]: ../macro.egtext.html
/// [`Text`]: ../fonts/struct.Text.html
/// [`TextStyle`]: ./struct.TextStyle.html
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Default)]
pub struct TextStyleBuilder<C, F>
where
C: PixelColor,
F: Font + Clone,
{
style: TextStyle<C, F>,
}
impl<C, F> TextStyleBuilder<C, F>
where
C: PixelColor,
F: Font + Clone,
{
/// Creates a new text style builder with a given font.
pub fn new(font: F) -> Self {
Self {
style: TextStyle {
font,
background_color: None,
text_color: None,
},
}
}
/// Sets the text color.
pub fn text_color(mut self, text_color: C) -> Self {
self.style.text_color = Some(text_color);
self
}
/// Sets the background color.
pub fn background_color(mut self, background_color: C) -> Self {
self.style.background_color = Some(background_color);
self
}
/// Builds the text style.
pub fn build(self) -> TextStyle<C, F> {
self.style
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::{fonts::Font12x16, pixelcolor::BinaryColor};
#[test]
fn builder_default() {
assert_eq!(
TextStyleBuilder::<BinaryColor, _>::new(Font12x16).build(),
TextStyle {
font: Font12x16,
text_color: None,
background_color: None
}
);
}
#[test]
fn builder_text_color() {
assert_eq!(
TextStyleBuilder::new(Font12x16)
.text_color(BinaryColor::On)
.build(),
TextStyle::new(Font12x16, BinaryColor::On)
);
}
#[test]
fn builder_background_color() {
assert_eq!(
TextStyleBuilder::new(Font12x16)
.background_color(BinaryColor::On)
.build(),
{
let mut style = TextStyleBuilder::new(Font12x16).build();
style.text_color = None;
style.background_color = Some(BinaryColor::On);
style
}
);
}
}