iced-yoda/style/src/slider.rs

66 lines
1.8 KiB
Rust
Raw Normal View History

2022-11-10 01:10:28 +01:00
//! Change the apperance of a slider.
use iced_core::{BorderRadius, Color};
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,
}
/// 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,
}
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: BorderRadius,
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 {
2022-11-10 01:10:28 +01:00
/// The supported style of the [`StyleSheet`].
type Style: Default;
2022-05-26 00:40:27 +02:00
2020-01-07 00:28:08 +01:00
/// Produces the style of an active slider.
fn active(&self, style: &Self::Style) -> Appearance;
2020-01-07 00:28:08 +01:00
/// Produces the style of an hovered slider.
fn hovered(&self, style: &Self::Style) -> Appearance;
2020-01-07 00:28:08 +01:00
/// Produces the style of a slider that is being dragged.
fn dragging(&self, style: &Self::Style) -> Appearance;
2020-01-07 00:28:08 +01:00
}