-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmod.rs
More file actions
233 lines (199 loc) · 5.96 KB
/
mod.rs
File metadata and controls
233 lines (199 loc) · 5.96 KB
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
221
222
223
224
225
226
227
228
229
230
231
232
233
use taffy::{Layout, NodeId, TaffyTree};
use crate::{Margin, Point, Rect, Size};
/// Trait for a widget to set visibility.
pub trait Visible {
/// If the widget is visible.
fn is_visible(&self) -> bool;
/// Set the visibility.
fn set_visible(&mut self, v: bool);
/// Show the widget.
fn show(&mut self) {
self.set_visible(true);
}
/// Hide the widget.
fn hide(&mut self) {
self.set_visible(false);
}
}
/// Trait for a widget to enable or disable.
pub trait Enable {
/// If the widget is enabled.
fn is_enabled(&self) -> bool;
/// Set if the widget is enabled.
fn set_enabled(&mut self, v: bool);
/// Enable the widget.
fn enable(&mut self) {
self.set_enabled(true);
}
/// Disable the widget.
fn disable(&mut self) {
self.set_enabled(false);
}
}
/// Trait for a layoutable widget.
pub trait Layoutable {
/// The left top location.
fn loc(&self) -> Point;
/// Move the location.
fn set_loc(&mut self, p: Point);
/// The size.
fn size(&self) -> Size;
/// Resize.
fn set_size(&mut self, s: Size);
/// The bounding rectangle.
fn rect(&self) -> Rect {
Rect::new(self.loc(), self.size())
}
/// Set the location and size.
fn set_rect(&mut self, r: Rect) {
self.set_loc(r.origin);
self.set_size(r.size);
}
/// The preferred size.
fn preferred_size(&self) -> Size {
Size::zero()
}
/// Min acceptable size.
fn min_size(&self) -> Size {
self.preferred_size()
}
}
trait LayoutChild {
fn margin(&self) -> Margin;
fn set_rect(&mut self, r: Rect);
fn layout(&mut self, layout: &Layout, loc: Point) {
self.set_rect(offset(rect_t2e(layout, self.margin()), loc))
}
}
mod grid;
pub use grid::*;
mod stack_panel;
pub use stack_panel::*;
fn rect_t2e(rect: &taffy::Layout, margin: Margin) -> Rect {
Rect::new(
Point::new(
rect.location.x as f64 + margin.left,
rect.location.y as f64 + margin.top,
),
Size::new(
rect.size.width as f64 - margin.horizontal(),
rect.size.height as f64 - margin.vertical(),
),
)
}
fn offset(mut a: Rect, offset: Point) -> Rect {
a.origin += offset.to_vector();
a
}
macro_rules! __layout_child {
($(#[$sm:meta])* struct $name:ident { $($(#[$m:meta])* $f:ident: $t:ty = $e:expr),*$(,)? }) => {
struct $name<'a> {
widget: &'a mut dyn $crate::Layoutable,
width: Option<f64>,
height: Option<f64>,
margin: $crate::Margin,
halign: $crate::HAlign,
valign: $crate::VAlign,
$(
$(#[$m])*
$f: $t,
)*
}
impl<'a> $name<'a> {
#[allow(unused_doc_comments)]
pub fn new(widget: &'a mut dyn $crate::Layoutable) -> Self {
Self {
widget,
width: None,
height: None,
margin: $crate::Margin::zero(),
halign: $crate::HAlign::Stretch,
valign: $crate::VAlign::Stretch,
$(
$(#[$m])*
$f: $e,
)*
}
}
}
impl $crate::elm::layout::LayoutChild for $name<'_> {
fn margin(&self) -> $crate::Margin {
self.margin
}
fn set_rect(&mut self, r: Rect) {
self.widget.set_rect(r)
}
}
$crate::__paste! {
$(#[$sm])*
pub struct [<$name Builder>]<'a, 'b> {
child: $name<'a>,
children: &'b mut Vec<$name<'a>>,
}
impl [<$name Builder>]<'_, '_> {
/// Specify the child width.
pub fn width(mut self, v: f64) -> Self {
self.child.width = Some(v);
self
}
/// Specify the child height.
pub fn height(mut self, v: f64) -> Self {
self.child.height = Some(v);
self
}
/// Specify the child size.
pub fn size(self, s: $crate::Size) -> Self {
self.width(s.width).height(s.height)
}
/// Margin of the child.
pub fn margin(mut self, m: $crate::Margin) -> Self {
self.child.margin = m;
self
}
/// Horizontal alignment in the available area.
pub fn halign(mut self, v: $crate::HAlign) -> Self {
self.child.halign = v;
self
}
/// Vertical alignment in the available area.
pub fn valign(mut self, v: $crate::VAlign) -> Self {
self.child.valign = v;
self
}
$(
$(#[$m])*
pub fn $f(mut self, v: $t) -> Self {
self.child.$f = v;
self
}
)*
/// Add the child to the container.
pub fn finish(self) {
self.children.push(self.child);
}
}
}
};
}
pub(crate) use __layout_child as layout_child;
fn render(
mut tree: TaffyTree,
root: NodeId,
nodes: Vec<NodeId>,
loc: Point,
size: Size,
children: &mut [impl LayoutChild],
) {
tree.compute_layout(
root,
taffy::Size {
width: taffy::AvailableSpace::Definite(size.width as _),
height: taffy::AvailableSpace::Definite(size.height as _),
},
)
.unwrap();
for (id, child) in nodes.iter().zip(children) {
let layout = tree.layout(*id).unwrap();
child.layout(layout, loc);
}
}