iced-yoda/style/src/slider.rs

76 lines
1.9 KiB
Rust
Raw Normal View History

2022-11-10 01:10:28 +01:00
//! Change the apperance of a slider.
use crate::core::border;
use crate::core::{Color, Pixels};
2020-01-07 00:28:08 +01:00
/// The appearance of a slider.
#[derive(Debug, Clone, Copy)]
pub struct Appearance {
2022-11-10 01:10:28 +01:00
/// The colors of the rail of the slider.
pub rail: Rail,
2022-11-10 01:10:28 +01:00
/// The appearance of the [`Handle`] of the slider.
2020-01-07 00:28:08 +01:00
pub handle: Handle,
}
impl Appearance {
/// Changes the [`HandleShape`] of the [`Appearance`] to a circle
/// with the given radius.
pub fn with_circular_handle(mut self, radius: impl Into<Pixels>) -> Self {
self.handle.shape = HandleShape::Circle {
radius: radius.into().0,
};
self
}
}
/// The appearance of a slider rail
#[derive(Debug, Clone, Copy)]
pub struct Rail {
/// The colors of the rail of the slider.
pub colors: (Color, Color),
2023-04-12 05:27:32 +02:00
/// The width of the stroke of a slider rail.
pub width: f32,
2023-06-01 10:46:33 +02:00
/// The border radius of the corners of the rail.
pub border_radius: border::Radius,
}
2020-01-07 00:28:08 +01:00
/// The appearance of the handle of a slider.
#[derive(Debug, Clone, Copy)]
pub struct Handle {
2022-11-10 01:10:28 +01:00
/// The shape of the handle.
2020-01-07 00:28:08 +01:00
pub shape: HandleShape,
2022-11-10 01:10:28 +01:00
/// The [`Color`] of the handle.
2020-01-07 00:28:08 +01:00
pub color: Color,
2022-11-10 01:10:28 +01:00
/// The border width of the handle.
pub border_width: f32,
2022-11-10 01:10:28 +01:00
/// The border [`Color`] of the handle.
2020-01-07 00:28:08 +01:00
pub border_color: Color,
}
/// The shape of the handle of a slider.
#[derive(Debug, Clone, Copy)]
pub enum HandleShape {
2022-11-10 01:10:28 +01:00
/// A circular handle.
Circle {
/// The radius of the circle.
radius: f32,
},
/// A rectangular shape.
Rectangle {
/// The width of the rectangle.
width: u16,
/// The border radius of the corners of the rectangle.
border_radius: border::Radius,
2022-11-10 01:10:28 +01:00
},
2020-01-07 00:28:08 +01:00
}
/// A set of rules that dictate the style of a slider.
pub trait StyleSheet {
fn default() -> fn(&Self, Status) -> Appearance;
}
2020-01-07 00:28:08 +01:00
pub enum Status {
Active,
Hovered,
Dragging,
2020-01-07 00:28:08 +01:00
}