Improve ergonomics of span background highlighting
This commit is contained in:
parent
4dc7b9b961
commit
f7fe1edcbb
3 changed files with 63 additions and 35 deletions
|
|
@ -8,7 +8,7 @@ pub use highlighter::Highlighter;
|
|||
pub use paragraph::Paragraph;
|
||||
|
||||
use crate::alignment;
|
||||
use crate::{Border, Color, Pixels, Point, Rectangle, Size};
|
||||
use crate::{Background, Border, Color, Pixels, Point, Rectangle, Size};
|
||||
|
||||
use std::borrow::Cow;
|
||||
use std::hash::{Hash, Hasher};
|
||||
|
|
@ -235,10 +235,19 @@ pub struct Span<'a, Link = (), Font = crate::Font> {
|
|||
pub font: Option<Font>,
|
||||
/// The [`Color`] of the [`Span`].
|
||||
pub color: Option<Color>,
|
||||
/// The [`Background`] of the [`Span`].
|
||||
pub background: Option<Background>,
|
||||
/// The link of the [`Span`].
|
||||
pub link: Option<Link>,
|
||||
/// The [`Highlight`] of the [`Span`].
|
||||
pub highlight: Option<Highlight>,
|
||||
}
|
||||
|
||||
/// A text highlight.
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
pub struct Highlight {
|
||||
/// The [`Background`] of the highlight.
|
||||
pub background: Background,
|
||||
/// The [`Border`] of the highlight.
|
||||
pub border: Border,
|
||||
}
|
||||
|
||||
impl<'a, Link, Font> Span<'a, Link, Font> {
|
||||
|
|
@ -250,7 +259,7 @@ impl<'a, Link, Font> Span<'a, Link, Font> {
|
|||
line_height: None,
|
||||
font: None,
|
||||
color: None,
|
||||
background: None,
|
||||
highlight: None,
|
||||
link: None,
|
||||
}
|
||||
}
|
||||
|
|
@ -292,9 +301,8 @@ impl<'a, Link, Font> Span<'a, Link, Font> {
|
|||
}
|
||||
|
||||
/// Sets the [`Background`] of the [`Span`].
|
||||
pub fn background(mut self, background: impl Into<Background>) -> Self {
|
||||
self.background = Some(background.into());
|
||||
self
|
||||
pub fn background(self, background: impl Into<Background>) -> Self {
|
||||
self.background_maybe(Some(background))
|
||||
}
|
||||
|
||||
/// Sets the [`Background`] of the [`Span`], if any.
|
||||
|
|
@ -302,7 +310,48 @@ impl<'a, Link, Font> Span<'a, Link, Font> {
|
|||
mut self,
|
||||
background: Option<impl Into<Background>>,
|
||||
) -> Self {
|
||||
self.background = background.map(Into::into);
|
||||
let Some(background) = background else {
|
||||
return self;
|
||||
};
|
||||
|
||||
match &mut self.highlight {
|
||||
Some(highlight) => {
|
||||
highlight.background = background.into();
|
||||
}
|
||||
None => {
|
||||
self.highlight = Some(Highlight {
|
||||
background: background.into(),
|
||||
border: Border::default(),
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
/// Sets the [`Border`] of the [`Span`].
|
||||
pub fn border(self, border: impl Into<Border>) -> Self {
|
||||
self.border_maybe(Some(border))
|
||||
}
|
||||
|
||||
/// Sets the [`Border`] of the [`Span`], if any.
|
||||
pub fn border_maybe(mut self, border: Option<impl Into<Border>>) -> Self {
|
||||
let Some(border) = border else {
|
||||
return self;
|
||||
};
|
||||
|
||||
match &mut self.highlight {
|
||||
Some(highlight) => {
|
||||
highlight.border = border.into();
|
||||
}
|
||||
None => {
|
||||
self.highlight = Some(Highlight {
|
||||
border: border.into(),
|
||||
background: Background::Color(Color::TRANSPARENT),
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
self
|
||||
}
|
||||
|
||||
|
|
@ -326,8 +375,8 @@ impl<'a, Link, Font> Span<'a, Link, Font> {
|
|||
line_height: self.line_height,
|
||||
font: self.font,
|
||||
color: self.color,
|
||||
background: self.background,
|
||||
link: self.link,
|
||||
highlight: self.highlight,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -425,21 +474,3 @@ into_fragment!(isize);
|
|||
|
||||
into_fragment!(f32);
|
||||
into_fragment!(f64);
|
||||
|
||||
/// The background style of text
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
pub struct Background {
|
||||
/// The background [`Color`]
|
||||
pub color: Color,
|
||||
/// The background [`Border`]
|
||||
pub border: Border,
|
||||
}
|
||||
|
||||
impl From<Color> for Background {
|
||||
fn from(color: Color) -> Self {
|
||||
Background {
|
||||
color,
|
||||
border: Border::default(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@
|
|||
use crate::core::border;
|
||||
use crate::core::font::{self, Font};
|
||||
use crate::core::padding;
|
||||
use crate::core::text::Background;
|
||||
use crate::core::theme::{self, Theme};
|
||||
use crate::core::{self, color, Color, Element, Length, Pixels};
|
||||
use crate::{column, container, rich_text, row, scrollable, span, text};
|
||||
|
|
@ -262,10 +261,8 @@ pub fn parse<'a>(
|
|||
let span = span(code.into_string())
|
||||
.font(Font::MONOSPACE)
|
||||
.color(Color::WHITE)
|
||||
.background(Background {
|
||||
color: color!(0x111111),
|
||||
border: border::rounded(2),
|
||||
});
|
||||
.background(color!(0x111111))
|
||||
.border(border::rounded(2));
|
||||
|
||||
let span = if let Some(link) = link.as_ref() {
|
||||
span.color(palette.primary).link(link.clone())
|
||||
|
|
|
|||
|
|
@ -248,17 +248,17 @@ where
|
|||
|
||||
// Draw backgrounds
|
||||
for (index, span) in self.spans.iter().enumerate() {
|
||||
if let Some(background) = span.background {
|
||||
if let Some(highlight) = span.highlight {
|
||||
let translation = layout.position() - Point::ORIGIN;
|
||||
|
||||
for bounds in state.paragraph.span_bounds(index) {
|
||||
renderer.fill_quad(
|
||||
renderer::Quad {
|
||||
bounds: bounds + translation,
|
||||
border: background.border,
|
||||
border: highlight.border,
|
||||
..Default::default()
|
||||
},
|
||||
background.color,
|
||||
highlight.background,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue