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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
use color::{Color, Colorable};
use frame::Frameable;
use label::{FontSize, Labelable};
use mouse::Mouse;
use position::{self, Depth, Dimensions, HorizontalAlign, Position, VerticalAlign};
use ui::{UiId, Ui};
use widget::Kind;
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum State {
Normal,
Highlighted,
Clicked,
}
impl State {
fn color(&self, color: Color) -> Color {
match *self {
State::Normal => color,
State::Highlighted => color.highlighted(),
State::Clicked => color.clicked(),
}
}
}
widget_fns!(Toggle, State, Kind::Toggle(State::Normal));
fn get_new_state(is_over: bool,
prev: State,
mouse: Mouse) -> State {
use mouse::ButtonState::{Down, Up};
use self::State::{Normal, Highlighted, Clicked};
match (is_over, prev, mouse.left) {
(true, Normal, Down) => Normal,
(true, _, Down) => Clicked,
(true, _, Up) => Highlighted,
(false, Clicked, Down) => Clicked,
_ => Normal,
}
}
pub struct Toggle<'a, F> {
pos: Position,
dim: Dimensions,
maybe_h_align: Option<HorizontalAlign>,
maybe_v_align: Option<VerticalAlign>,
depth: Depth,
maybe_react: Option<F>,
maybe_color: Option<Color>,
maybe_frame: Option<f64>,
maybe_frame_color: Option<Color>,
maybe_label: Option<&'a str>,
maybe_label_color: Option<Color>,
maybe_label_font_size: Option<u32>,
value: bool,
}
impl<'a, F> Toggle<'a, F> {
pub fn new(value: bool) -> Toggle<'a, F> {
Toggle {
pos: Position::default(),
dim: [64.0, 64.0],
maybe_h_align: None,
maybe_v_align: None,
depth: 0.0,
maybe_react: None,
maybe_color: None,
maybe_frame: None,
maybe_frame_color: None,
maybe_label: None,
maybe_label_color: None,
maybe_label_font_size: None,
value: value,
}
}
pub fn react(mut self, reaction: F) -> Self {
self.maybe_react = Some(reaction);
self
}
pub fn set<C>(mut self, ui_id: UiId, ui: &mut Ui<C>)
where
F: FnMut(bool),
{
use utils::is_over_rect;
let state = *get_state(ui, ui_id);
let dim = self.dim;
let h_align = self.maybe_h_align.unwrap_or(ui.theme.align.horizontal);
let v_align = self.maybe_v_align.unwrap_or(ui.theme.align.vertical);
let xy = ui.get_xy(self.pos, self.dim, h_align, v_align);
let mouse = ui.get_mouse_state(ui_id);
let is_over = is_over_rect(xy, mouse.xy, self.dim);
let new_state = get_new_state(is_over, state, mouse);
if let (true, State::Clicked, State::Highlighted) = (is_over, state, new_state) {
if let Some(ref mut react) = self.maybe_react { react(!self.value) }
}
let draw_new_element_condition = true;
let maybe_new_element = if draw_new_element_condition {
use elmesque::form::{collage, rect, text};
let frame_w = self.maybe_frame.unwrap_or(ui.theme.frame_width);
let frame_color = self.maybe_frame_color.unwrap_or(ui.theme.frame_color);
let (inner_w, inner_h) = (dim[0] - frame_w * 2.0, dim[1] - frame_w * 2.0);
let frame_form = rect(dim[0], dim[1]).filled(frame_color);
let color = self.maybe_color.unwrap_or(ui.theme.shape_color);
let color = new_state.color(if self.value { color } else { color.with_luminance(0.1) });
let pressable_form = rect(inner_w, inner_h).filled(color);
let maybe_label_form = self.maybe_label.map(|label_text| {
use elmesque::text::Text;
let text_color = self.maybe_label_color.unwrap_or(ui.theme.label_color);
let size = self.maybe_label_font_size.unwrap_or(ui.theme.font_size_medium);
text(Text::from_string(label_text.to_string()).color(text_color).height(size as f64))
.shift(xy[0].floor(), xy[1].floor())
});
let form_chain = Some(frame_form).into_iter()
.chain(Some(pressable_form).into_iter())
.map(|form| form.shift(xy[0], xy[1]))
.chain(maybe_label_form.into_iter());
let element = collage(dim[0] as i32, dim[1] as i32, form_chain.collect());
Some(element)
} else { None };
ui.update_widget(ui_id, Kind::Toggle(new_state), xy, self.depth, maybe_new_element);
}
}
impl<'a, F> Colorable for Toggle<'a, F> {
fn color(mut self, color: Color) -> Self {
self.maybe_color = Some(color);
self
}
}
impl<'a, F> Frameable for Toggle<'a, F> {
fn frame(mut self, width: f64) -> Self {
self.maybe_frame = Some(width);
self
}
fn frame_color(mut self, color: Color) -> Self {
self.maybe_frame_color = Some(color);
self
}
}
impl<'a, F> Labelable<'a> for Toggle<'a, F> {
fn label(mut self, text: &'a str) -> Self {
self.maybe_label = Some(text);
self
}
fn label_color(mut self, color: Color) -> Self {
self.maybe_label_color = Some(color);
self
}
fn label_font_size(mut self, size: FontSize) -> Self {
self.maybe_label_font_size = Some(size);
self
}
}
impl<'a, F> position::Positionable for Toggle<'a, F> {
fn position(mut self, pos: Position) -> Self {
self.pos = pos;
self
}
#[inline]
fn horizontal_align(self, h_align: HorizontalAlign) -> Self {
Toggle { maybe_h_align: Some(h_align), ..self }
}
#[inline]
fn vertical_align(self, v_align: VerticalAlign) -> Self {
Toggle { maybe_v_align: Some(v_align), ..self }
}
}
impl<'a, F> position::Sizeable for Toggle<'a, F> {
#[inline]
fn width(self, w: f64) -> Self {
let h = self.dim[1];
Toggle { dim: [w, h], ..self }
}
#[inline]
fn height(self, h: f64) -> Self {
let w = self.dim[0];
Toggle { dim: [w, h], ..self }
}
}