From 602565f98f3a22fa1c39e054c6a88b3c31a36599 Mon Sep 17 00:00:00 2001 From: pml68 Date: Thu, 26 Jun 2025 11:41:52 +0200 Subject: feat: initial commit --- src/slider.rs | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/slider.rs (limited to 'src/slider.rs') diff --git a/src/slider.rs b/src/slider.rs new file mode 100644 index 0000000..ae9ee4b --- /dev/null +++ b/src/slider.rs @@ -0,0 +1,63 @@ +use iced_widget::core::{Background, Color, border}; +use iced_widget::slider::{ + Catalog, Handle, HandleShape, Rail, Status, Style, StyleFn, +}; + +use super::Theme; +use crate::utils::{HOVERED_LAYER_OPACITY, PRESSED_LAYER_OPACITY, mix}; + +impl Catalog for Theme { + type Class<'a> = StyleFn<'a, Self>; + + fn default<'a>() -> ::Class<'a> { + Box::new(default) + } + + fn style( + &self, + class: &::Class<'_>, + status: Status, + ) -> Style { + class(self, status) + } +} + +pub fn styled(left: Color, right: Color, handle_radius: f32) -> Style { + Style { + rail: Rail { + backgrounds: (left.into(), right.into()), + width: 8.0, + border: border::rounded(400), + }, + handle: Handle { + shape: HandleShape::Circle { + radius: handle_radius, + }, + background: Background::Color(left), + border_width: 0.0, + border_color: Color::TRANSPARENT, + }, + } +} + +pub fn default(theme: &Theme, status: Status) -> Style { + let surface = theme.colors().surface; + let primary = theme.colors().primary; + let secondary = theme.colors().secondary; + + match status { + Status::Active => { + styled(primary.color, secondary.secondary_container, 12.0) + } + Status::Hovered => styled( + mix(primary.color, surface.on_surface, HOVERED_LAYER_OPACITY), + secondary.secondary_container, + 12.0, + ), + Status::Dragged => styled( + mix(primary.color, surface.on_surface, PRESSED_LAYER_OPACITY), + secondary.secondary_container, + 11.0, + ), + } +} -- cgit v1.2.3