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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
use super::behaviors::{MouseBehavior, SelectionBehavior};
use crate::{api::prelude::*, prelude::*, proc_macros::*, theme::prelude::*};
widget!(
CheckBox: MouseHandler {
background: Brush,
border_radius: f64,
border_width: Thickness,
border_brush: Brush,
padding: Thickness,
foreground: Brush,
text: String16,
font_size: f64,
font: String,
icon: String,
icon_brush: Brush,
icon_size: f64,
icon_font: String,
pressed: bool,
selected: bool
}
);
impl Template for CheckBox {
fn template(self, id: Entity, ctx: &mut BuildContext) -> Self {
self.name("CheckBox")
.style("check_box")
.on_changed_filter(vec!["selected"])
.selected(false)
.height(24.0)
.background(colors::LYNCH_COLOR)
.border_radius(2.0)
.border_width(0.0)
.border_brush("transparent")
.padding((8.0, 0.0, 8.0, 0.0))
.foreground(colors::LINK_WATER_COLOR)
.text("")
.font_size(fonts::FONT_SIZE_12)
.font("Roboto-Regular")
.icon(material_icons_font::MD_CHECK)
.icon_font("MaterialIcons-Regular")
.icon_size(fonts::ICON_FONT_SIZE_12)
.icon_brush(colors::LINK_WATER_COLOR)
.pressed(false)
.child(
MouseBehavior::new()
.pressed(id)
.enabled(id)
.target(id.0)
.child(
SelectionBehavior::new()
.on_changed_filter(id)
.selected(id)
.enabled(id)
.target(id.0)
.child(
Stack::new()
.orientation("horizontal")
.spacing(8.0)
.child(
Container::new()
.size(24.0, 24.0)
.background(id)
.border_radius(id)
.border_width(id)
.border_brush(id)
.padding(id)
.opacity(id)
.child(
FontIconBlock::new()
.v_align("center")
.h_align("center")
.icon(id)
.icon_brush(id)
.icon_size(id)
.icon_font(id)
.opacity(id)
.build(ctx),
)
.build(ctx),
)
.child(
TextBlock::new()
.v_align("center")
.foreground(id)
.text(id)
.font_size(id)
.font(id)
.opacity(id)
.build(ctx),
)
.build(ctx),
)
.build(ctx),
)
.build(ctx),
)
}
}