summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--crates/material_theme/src/lib.rs1
-rw-r--r--crates/material_theme/src/toggler.rs80
2 files changed, 81 insertions, 0 deletions
diff --git a/crates/material_theme/src/lib.rs b/crates/material_theme/src/lib.rs
index 2452d88..0df5b1c 100644
--- a/crates/material_theme/src/lib.rs
+++ b/crates/material_theme/src/lib.rs
@@ -24,6 +24,7 @@ pub mod slider;
pub mod svg;
pub mod text;
pub mod text_input;
+pub mod toggler;
pub mod utils;
pub static DARK: LazyLock<Theme> =
diff --git a/crates/material_theme/src/toggler.rs b/crates/material_theme/src/toggler.rs
new file mode 100644
index 0000000..1cc5082
--- /dev/null
+++ b/crates/material_theme/src/toggler.rs
@@ -0,0 +1,80 @@
+use iced_widget::core::Color;
+use iced_widget::toggler::{Catalog, Status, Style, StyleFn};
+
+use super::Theme;
+use crate::utils::{
+ DISABLED_CONTAINER_OPACITY, DISABLED_TEXT_OPACITY, HOVERED_LAYER_OPACITY,
+ mix,
+};
+
+impl Catalog for Theme {
+ type Class<'a> = StyleFn<'a, Self>;
+
+ fn default<'a>() -> Self::Class<'a> {
+ Box::new(default)
+ }
+
+ fn style(&self, class: &Self::Class<'_>, status: Status) -> Style {
+ class(self, status)
+ }
+}
+
+pub fn styled(
+ background: Color,
+ foreground: Color,
+ border: Option<Color>,
+) -> Style {
+ Style {
+ background,
+ background_border_width: if border.is_some() { 2.0 } else { 0.0 },
+ background_border_color: border.unwrap_or(Color::TRANSPARENT),
+ foreground,
+ foreground_border_width: 0.0,
+ foreground_border_color: Color::TRANSPARENT,
+ }
+}
+
+pub fn default(theme: &Theme, status: Status) -> Style {
+ let surface = theme.colorscheme.surface;
+ let primary = theme.colorscheme.primary;
+
+ match status {
+ Status::Active { is_toggled } => {
+ if is_toggled {
+ styled(primary.color, primary.on_primary, None)
+ } else {
+ styled(
+ surface.surface_container.highest,
+ theme.colorscheme.outline.color,
+ Some(theme.colorscheme.outline.color),
+ )
+ }
+ }
+ Status::Hovered { is_toggled } => {
+ if is_toggled {
+ styled(primary.color, primary.primary_container, None)
+ } else {
+ styled(
+ mix(
+ surface.surface_container.highest,
+ surface.on_surface,
+ HOVERED_LAYER_OPACITY,
+ ),
+ surface.on_surface_variant,
+ Some(theme.colorscheme.outline.color),
+ )
+ }
+ }
+ Status::Disabled => styled(
+ Color {
+ a: DISABLED_CONTAINER_OPACITY,
+ ..surface.surface_container.highest
+ },
+ Color {
+ a: DISABLED_TEXT_OPACITY,
+ ..surface.on_surface
+ },
+ Some(surface.on_surface),
+ ),
+ }
+}