2022-10-05 10:49:58 -07:00
|
|
|
//! Linear gradient builder & definition.
|
|
|
|
|
use crate::gradient::{ColorStop, Gradient};
|
2022-10-07 11:41:50 -07:00
|
|
|
use crate::{Color, Point, Size};
|
2022-10-05 10:49:58 -07:00
|
|
|
|
|
|
|
|
/// A linear gradient that can be used in the style of [`super::Fill`] or [`super::Stroke`].
|
|
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
|
|
|
pub struct Linear {
|
|
|
|
|
/// The point where the linear gradient begins.
|
|
|
|
|
pub start: Point,
|
|
|
|
|
/// The point where the linear gradient ends.
|
|
|
|
|
pub end: Point,
|
|
|
|
|
/// [`ColorStop`]s along the linear gradient path.
|
|
|
|
|
pub color_stops: Vec<ColorStop>,
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-07 11:41:50 -07:00
|
|
|
#[derive(Debug)]
|
|
|
|
|
/// The position of the gradient within its bounds.
|
|
|
|
|
pub enum Position {
|
|
|
|
|
/// The gradient will be positioned with respect to two points.
|
|
|
|
|
Absolute {
|
|
|
|
|
/// The starting point of the gradient.
|
|
|
|
|
start: Point,
|
|
|
|
|
/// The ending point of the gradient.
|
|
|
|
|
end: Point,
|
|
|
|
|
},
|
|
|
|
|
/// The gradient will be positioned relative to the provided bounds.
|
|
|
|
|
Relative {
|
|
|
|
|
/// The top left position of the bounds.
|
|
|
|
|
top_left: Point,
|
|
|
|
|
/// The width & height of the bounds.
|
|
|
|
|
size: Size,
|
|
|
|
|
/// The start [Location] of the gradient.
|
|
|
|
|
start: Location,
|
|
|
|
|
/// The end [Location] of the gradient.
|
|
|
|
|
end: Location,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-03 04:53:27 +01:00
|
|
|
impl From<(Point, Point)> for Position {
|
|
|
|
|
fn from((start, end): (Point, Point)) -> Self {
|
|
|
|
|
Self::Absolute { start, end }
|
2022-10-07 11:41:50 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
/// The location of a relatively-positioned gradient.
|
|
|
|
|
pub enum Location {
|
|
|
|
|
/// Top left.
|
|
|
|
|
TopLeft,
|
|
|
|
|
/// Top.
|
|
|
|
|
Top,
|
|
|
|
|
/// Top right.
|
|
|
|
|
TopRight,
|
|
|
|
|
/// Right.
|
|
|
|
|
Right,
|
|
|
|
|
/// Bottom right.
|
|
|
|
|
BottomRight,
|
|
|
|
|
/// Bottom.
|
|
|
|
|
Bottom,
|
|
|
|
|
/// Bottom left.
|
|
|
|
|
BottomLeft,
|
|
|
|
|
/// Left.
|
|
|
|
|
Left,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Location {
|
|
|
|
|
fn to_absolute(&self, top_left: Point, size: Size) -> Point {
|
|
|
|
|
match self {
|
|
|
|
|
Location::TopLeft => top_left,
|
|
|
|
|
Location::Top => {
|
|
|
|
|
Point::new(top_left.x + size.width / 2.0, top_left.y)
|
|
|
|
|
}
|
|
|
|
|
Location::TopRight => {
|
|
|
|
|
Point::new(top_left.x + size.width, top_left.y)
|
|
|
|
|
}
|
|
|
|
|
Location::Right => Point::new(
|
|
|
|
|
top_left.x + size.width,
|
|
|
|
|
top_left.y + size.height / 2.0,
|
|
|
|
|
),
|
|
|
|
|
Location::BottomRight => {
|
|
|
|
|
Point::new(top_left.x + size.width, top_left.y + size.height)
|
|
|
|
|
}
|
|
|
|
|
Location::Bottom => Point::new(
|
|
|
|
|
top_left.x + size.width / 2.0,
|
|
|
|
|
top_left.y + size.height,
|
|
|
|
|
),
|
|
|
|
|
Location::BottomLeft => {
|
|
|
|
|
Point::new(top_left.x, top_left.y + size.height)
|
|
|
|
|
}
|
|
|
|
|
Location::Left => {
|
|
|
|
|
Point::new(top_left.x, top_left.y + size.height / 2.0)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-05 10:49:58 -07:00
|
|
|
/// A [`Linear`] builder.
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub struct Builder {
|
|
|
|
|
start: Point,
|
|
|
|
|
end: Point,
|
2022-10-07 11:41:50 -07:00
|
|
|
stops: Vec<ColorStop>,
|
2022-11-03 04:35:16 +01:00
|
|
|
error: Option<BuilderError>,
|
2022-10-05 10:49:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Builder {
|
|
|
|
|
/// Creates a new [`Builder`].
|
2022-10-07 11:41:50 -07:00
|
|
|
pub fn new(position: Position) -> Self {
|
|
|
|
|
let (start, end) = match position {
|
|
|
|
|
Position::Absolute { start, end } => (start, end),
|
|
|
|
|
Position::Relative {
|
|
|
|
|
top_left,
|
|
|
|
|
size,
|
|
|
|
|
start,
|
|
|
|
|
end,
|
|
|
|
|
} => (
|
|
|
|
|
start.to_absolute(top_left, size),
|
|
|
|
|
end.to_absolute(top_left, size),
|
|
|
|
|
),
|
|
|
|
|
};
|
|
|
|
|
|
2022-10-05 10:49:58 -07:00
|
|
|
Self {
|
|
|
|
|
start,
|
|
|
|
|
end,
|
|
|
|
|
stops: vec![],
|
2022-11-03 04:35:16 +01:00
|
|
|
error: None,
|
2022-10-05 10:49:58 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Adds a new stop, defined by an offset and a color, to the gradient.
|
|
|
|
|
///
|
2022-10-07 11:41:50 -07:00
|
|
|
/// `offset` must be between `0.0` and `1.0` or the gradient cannot be built.
|
|
|
|
|
///
|
2022-10-18 15:18:37 -07:00
|
|
|
/// Note: when using the [`glow`] backend, any color stop added after the 16th
|
2022-10-07 11:41:50 -07:00
|
|
|
/// will not be displayed.
|
|
|
|
|
///
|
2022-10-18 15:18:37 -07:00
|
|
|
/// On the [`wgpu`] backend this limitation does not exist (technical limit is 524,288 stops).
|
|
|
|
|
///
|
|
|
|
|
/// [`glow`]: https://docs.rs/iced_glow
|
|
|
|
|
/// [`wgpu`]: https://docs.rs/iced_wgpu
|
2022-10-05 10:49:58 -07:00
|
|
|
pub fn add_stop(mut self, offset: f32, color: Color) -> Self {
|
2022-10-07 11:41:50 -07:00
|
|
|
if offset.is_finite() && (0.0..=1.0).contains(&offset) {
|
|
|
|
|
match self.stops.binary_search_by(|stop| {
|
|
|
|
|
stop.offset.partial_cmp(&offset).unwrap()
|
|
|
|
|
}) {
|
|
|
|
|
Ok(_) => {
|
2022-10-18 17:45:47 -07:00
|
|
|
self.error = Some(BuilderError::DuplicateOffset(offset))
|
2022-11-03 04:35:16 +01:00
|
|
|
}
|
2022-10-07 11:41:50 -07:00
|
|
|
Err(index) => {
|
2022-10-18 17:45:47 -07:00
|
|
|
self.stops.insert(index, ColorStop { offset, color });
|
2022-10-07 11:41:50 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-10-18 17:45:47 -07:00
|
|
|
self.error = Some(BuilderError::InvalidOffset(offset))
|
|
|
|
|
};
|
|
|
|
|
|
2022-10-05 10:49:58 -07:00
|
|
|
self
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Builds the linear [`Gradient`] of this [`Builder`].
|
|
|
|
|
///
|
2022-10-18 17:45:47 -07:00
|
|
|
/// Returns `BuilderError` if gradient in invalid.
|
|
|
|
|
pub fn build(self) -> Result<Gradient, BuilderError> {
|
|
|
|
|
if self.stops.is_empty() {
|
|
|
|
|
Err(BuilderError::MissingColorStop)
|
|
|
|
|
} else if let Some(error) = self.error {
|
|
|
|
|
Err(error)
|
|
|
|
|
} else {
|
|
|
|
|
Ok(Gradient::Linear(Linear {
|
|
|
|
|
start: self.start,
|
|
|
|
|
end: self.end,
|
|
|
|
|
color_stops: self.stops,
|
|
|
|
|
}))
|
2022-10-05 10:49:58 -07:00
|
|
|
}
|
|
|
|
|
}
|
2022-10-06 07:28:05 -07:00
|
|
|
}
|
2022-10-18 17:45:47 -07:00
|
|
|
|
|
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
|
|
|
pub enum BuilderError {
|
|
|
|
|
#[error("Gradients must contain at least one color stop.")]
|
2022-10-19 10:13:07 -07:00
|
|
|
/// Gradients must contain at least one color stop.
|
2022-10-18 17:45:47 -07:00
|
|
|
MissingColorStop,
|
|
|
|
|
#[error("Offset {0} must be a unique, finite number.")]
|
2022-10-19 10:13:07 -07:00
|
|
|
/// Offsets in a gradient must all be unique & finite.
|
2022-10-18 17:45:47 -07:00
|
|
|
DuplicateOffset(f32),
|
2022-10-19 10:13:07 -07:00
|
|
|
#[error("Offset {0} must be between 0.0..=1.0.")]
|
|
|
|
|
/// Offsets in a gradient must be between 0.0..=1.0.
|
2022-10-18 17:45:47 -07:00
|
|
|
InvalidOffset(f32),
|
|
|
|
|
}
|