1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
use iced_widget::core::{Background, Border, Color};
use iced_widget::text_input::{Catalog, Status, Style, StyleFn};
use super::Theme;
use crate::utils::{DISABLED_CONTAINER_OPACITY, DISABLED_TEXT_OPACITY};
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 default(theme: &Theme, status: Status) -> Style {
let surface = theme.colorscheme.surface;
let primary = theme.colorscheme.primary;
let active = Style {
background: Background::Color(surface.surface_container.highest),
border: Border {
color: theme.colorscheme.outline.color,
width: 1.0,
radius: 4.into(),
},
icon: surface.on_surface_variant,
placeholder: surface.on_surface_variant,
value: surface.on_surface,
selection: Color {
a: DISABLED_TEXT_OPACITY,
..primary.color
},
};
match status {
Status::Active => active,
Status::Hovered => Style {
border: Border {
color: surface.on_surface,
..active.border
},
..active
},
Status::Disabled => Style {
background: Color::TRANSPARENT.into(),
border: Border {
color: Color {
a: DISABLED_CONTAINER_OPACITY,
..surface.on_surface
},
..active.border
},
icon: Color {
a: DISABLED_TEXT_OPACITY,
..surface.on_surface
},
placeholder: Color {
a: DISABLED_TEXT_OPACITY,
..surface.on_surface
},
value: Color {
a: DISABLED_TEXT_OPACITY,
..surface.on_surface
},
selection: Color {
a: DISABLED_TEXT_OPACITY,
..surface.on_surface
},
},
Status::Focused { .. } => Style {
border: Border {
color: primary.color,
width: 2.0,
..active.border
},
placeholder: primary.color,
..active
},
}
}
|