aboutsummaryrefslogtreecommitdiff
path: root/src/pick_list.rs
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2025-06-26 11:41:52 +0200
committerpml68 <contact@pml68.dev>2025-06-26 11:41:52 +0200
commit602565f98f3a22fa1c39e054c6a88b3c31a36599 (patch)
tree8aea60f9cfdc48a8e04651a7e809bb70ef4bd712 /src/pick_list.rs
downloadiced_material-602565f98f3a22fa1c39e054c6a88b3c31a36599.tar.gz
feat: initial commit
Diffstat (limited to '')
-rw-r--r--src/pick_list.rs45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/pick_list.rs b/src/pick_list.rs
new file mode 100644
index 0000000..1fe015e
--- /dev/null
+++ b/src/pick_list.rs
@@ -0,0 +1,45 @@
+use iced_widget::core::{Background, border};
+use iced_widget::pick_list::{Catalog, Status, Style, StyleFn};
+
+use super::Theme;
+
+impl Catalog for Theme {
+ type Class<'a> = StyleFn<'a, Self>;
+
+ fn default<'a>() -> <Self as Catalog>::Class<'a> {
+ Box::new(default)
+ }
+
+ fn style(
+ &self,
+ class: &<Self as Catalog>::Class<'_>,
+ status: Status,
+ ) -> Style {
+ class(self, status)
+ }
+}
+
+pub fn default(theme: &Theme, status: Status) -> Style {
+ let surface = theme.colors().surface;
+
+ let active = Style {
+ text_color: surface.on_surface,
+ placeholder_color: surface.on_surface_variant,
+ handle_color: surface.on_surface_variant,
+ background: Background::Color(surface.surface_container.highest),
+ border: border::rounded(4),
+ };
+
+ match status {
+ Status::Active => active,
+ Status::Hovered => Style {
+ background: Background::Color(surface.surface_container.highest),
+ ..active
+ },
+ Status::Opened { .. } => Style {
+ background: Background::Color(surface.surface_container.highest),
+ border: border::rounded(4),
+ ..active
+ },
+ }
+}