51 lines
1.2 KiB
Rust
51 lines
1.2 KiB
Rust
use crate::{Primitive, Renderer};
|
|
use iced_native::{
|
|
text, Color, Font, HorizontalAlignment, MouseCursor, Rectangle, Size,
|
|
VerticalAlignment,
|
|
};
|
|
|
|
use std::f32;
|
|
|
|
// TODO: Obtain from renderer configuration
|
|
const DEFAULT_TEXT_SIZE: f32 = 20.0;
|
|
|
|
impl text::Renderer for Renderer {
|
|
fn default_size(&self) -> u16 {
|
|
DEFAULT_TEXT_SIZE as u16
|
|
}
|
|
|
|
fn measure(
|
|
&self,
|
|
content: &str,
|
|
size: u16,
|
|
font: Font,
|
|
bounds: Size,
|
|
) -> (f32, f32) {
|
|
self.text_pipeline
|
|
.measure(content, f32::from(size), font, bounds)
|
|
}
|
|
|
|
fn draw(
|
|
&mut self,
|
|
bounds: Rectangle,
|
|
content: &str,
|
|
size: u16,
|
|
font: Font,
|
|
color: Option<Color>,
|
|
horizontal_alignment: HorizontalAlignment,
|
|
vertical_alignment: VerticalAlignment,
|
|
) -> Self::Output {
|
|
(
|
|
Primitive::Text {
|
|
content: content.to_string(),
|
|
size: f32::from(size),
|
|
bounds,
|
|
color: color.unwrap_or(Color::BLACK),
|
|
font,
|
|
horizontal_alignment,
|
|
vertical_alignment,
|
|
},
|
|
MouseCursor::OutOfBounds,
|
|
)
|
|
}
|
|
}
|