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
|
#include "linear_layout.h"
namespace cru::ui::controls
{
LinearLayout::LinearLayout(const Orientation orientation)
: Control(true), orientation_(orientation)
{
}
inline float AtLeast0(const float value)
{
return value < 0 ? 0 : value;
}
inline Size AtLeast0(const Size& size)
{
return Size(AtLeast0(size.width), AtLeast0(size.height));
}
Size LinearLayout::OnMeasure(const Size& available_size)
{
const auto layout_params = GetLayoutParams();
if (!layout_params->Validate())
throw std::runtime_error("LayoutParams is not valid. Please check it.");
auto&& get_available_length_for_child = [](const LayoutLength& layout_length, const float available_length) -> float
{
switch (layout_length.mode)
{
case MeasureMode::Exactly:
{
return std::min(layout_length.length, available_length);
}
case MeasureMode::Stretch:
case MeasureMode::Content:
{
return available_length;
}
default:
UnreachableCode();
}
};
Size total_available_size_for_children(
get_available_length_for_child(layout_params->width, available_size.width),
get_available_length_for_child(layout_params->height, available_size.height)
);
auto rest_available_size_for_children = total_available_size_for_children;
float secondary_side_child_max_length = 0;
std::list<Control*> stretch_control_list;
// First measure Content and Exactly and count Stretch.
if (orientation_ == Orientation::Horizontal)
ForeachChild([&](Control* const control)
{
const auto mode = control->GetLayoutParams()->width.mode;
if (mode == MeasureMode::Content || mode == MeasureMode::Exactly)
{
control->Measure(AtLeast0(rest_available_size_for_children));
const auto size = control->GetDesiredSize();
rest_available_size_for_children.width -= size.width;
secondary_side_child_max_length = std::max(size.height, secondary_side_child_max_length);
}
else
stretch_control_list.push_back(control);
});
else
ForeachChild([&](Control* const control)
{
const auto mode = control->GetLayoutParams()->height.mode;
if (mode == MeasureMode::Content || mode == MeasureMode::Exactly)
{
control->Measure(AtLeast0(rest_available_size_for_children));
const auto size = control->GetDesiredSize();
rest_available_size_for_children.height -= size.height;
secondary_side_child_max_length = std::max(size.width, secondary_side_child_max_length);
}
else
stretch_control_list.push_back(control);
});
if (orientation_ == Orientation::Horizontal)
{
const auto available_width = rest_available_size_for_children.width / stretch_control_list.size();
for (const auto control : stretch_control_list)
{
control->Measure(Size(available_width, AtLeast0(rest_available_size_for_children.height)));
const auto size = control->GetDesiredSize();
rest_available_size_for_children.width -= size.width;
secondary_side_child_max_length = std::max(size.height, secondary_side_child_max_length);
}
}
else
{
const auto available_height = rest_available_size_for_children.height / stretch_control_list.size();
for (const auto control : stretch_control_list)
{
control->Measure(Size(AtLeast0(rest_available_size_for_children.width), available_height));
const auto size = control->GetDesiredSize();
rest_available_size_for_children.height -= size.height;
secondary_side_child_max_length = std::max(size.width, secondary_side_child_max_length);
}
}
auto actual_size_for_children = total_available_size_for_children;
if (orientation_ == Orientation::Horizontal)
{
actual_size_for_children.width -= rest_available_size_for_children.width;
actual_size_for_children.height = secondary_side_child_max_length;
}
else
{
actual_size_for_children.width = secondary_side_child_max_length;
actual_size_for_children.height -= rest_available_size_for_children.height;
}
auto&& calculate_final_length = [](const LayoutLength& layout_length, const float length_for_children, const float max_child_length) -> float
{
switch (layout_length.mode)
{
case MeasureMode::Exactly:
case MeasureMode::Stretch:
return length_for_children;
case MeasureMode::Content:
return max_child_length;
default:
UnreachableCode();
}
};
return Size(
calculate_final_length(layout_params->width, total_available_size_for_children.width, actual_size_for_children.width),
calculate_final_length(layout_params->height, total_available_size_for_children.height, actual_size_for_children.height)
);
}
void LinearLayout::OnLayout(const Rect& rect)
{
float current_anchor_length = 0;
ForeachChild([this, ¤t_anchor_length, rect](Control* control)
{
const auto layout_params = control->GetLayoutParams();
const auto size = control->GetDesiredSize();
const auto alignment = orientation_ == Orientation::Horizontal ? layout_params->height.alignment : layout_params->width.alignment;
auto&& calculate_anchor = [alignment](const float layout_length, const float control_length) -> float
{
switch (alignment)
{
case Alignment::Center:
return (layout_length - control_length) / 2;
case Alignment::Start:
return 0;
case Alignment::End:
return layout_length - control_length;
default:
UnreachableCode();
}
};
if (orientation_ == Orientation::Horizontal)
{
control->Layout(Rect(Point(current_anchor_length, calculate_anchor(rect.height, size.height)), size));
current_anchor_length += size.width;
}
else
{
control->Layout(Rect(Point(calculate_anchor(rect.width, size.width), current_anchor_length), size));
current_anchor_length += size.height;
}
});
}
}
|