aboutsummaryrefslogtreecommitdiff
path: root/src/ui/render/RenderObject.cpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-06-22 01:09:24 +0800
committercrupest <crupest@outlook.com>2020-06-22 01:09:24 +0800
commit4f0a2f32c273780c32cc3937615c2a8bbd993aab (patch)
tree6e1f45447854a40fe2d16ef9bec79f3c0fef030a /src/ui/render/RenderObject.cpp
parentd86a71f79afe0e4dac768f61d6bff690567aca5b (diff)
downloadcru-4f0a2f32c273780c32cc3937615c2a8bbd993aab.tar.gz
cru-4f0a2f32c273780c32cc3937615c2a8bbd993aab.tar.bz2
cru-4f0a2f32c273780c32cc3937615c2a8bbd993aab.zip
...
Diffstat (limited to 'src/ui/render/RenderObject.cpp')
-rw-r--r--src/ui/render/RenderObject.cpp94
1 files changed, 58 insertions, 36 deletions
diff --git a/src/ui/render/RenderObject.cpp b/src/ui/render/RenderObject.cpp
index 83e306a8..cdc3032f 100644
--- a/src/ui/render/RenderObject.cpp
+++ b/src/ui/render/RenderObject.cpp
@@ -57,14 +57,20 @@ Point RenderObject::FromRootToContent(const Point& point) const {
point.y - (offset.y + rect.top)};
}
-void RenderObject::Measure(const Size& available_size) {
- OnMeasureCore(available_size);
+void RenderObject::Measure(const MeasureRequirement& requirement) {
+ measured_size_ = OnMeasureCore(requirement);
+
+ Ensures(measured_size_.width >= 0);
+ Ensures(measured_size_.height >= 0);
+ Ensures(requirement.Satisfy(measured_size_));
}
void RenderObject::Layout(const Rect& rect) {
- SetOffset(rect.GetLeftTop());
- SetSize(rect.GetSize());
- OnLayoutCore(Rect{Point{}, rect.GetSize()});
+ Expects(rect.width >= 0);
+ Expects(rect.height >= 0);
+ offset_ = rect.GetLeftTop();
+ size_ = rect.GetSize();
+ OnLayoutCore(rect.GetSize());
}
void RenderObject::OnParentChanged(RenderObject* old_parent,
@@ -89,56 +95,72 @@ void RenderObject::OnRemoveChild(RenderObject* removed_child, Index position) {
InvalidatePaint();
}
-void RenderObject::OnMeasureCore(const Size& available_size) {
- Size margin_padding_size{
+Size RenderObject::OnMeasureCore(const MeasureRequirement& requirement) {
+ const Size space_size{
margin_.GetHorizontalTotal() + padding_.GetHorizontalTotal(),
margin_.GetVerticalTotal() + padding_.GetVerticalTotal()};
- auto coerced_margin_padding_size = margin_padding_size;
- if (coerced_margin_padding_size.width > available_size.width) {
- log::Warn(
- "Measure: horizontal length of padding and margin is bigger than "
- "available length.");
- coerced_margin_padding_size.width = available_size.width;
+ auto coerced_space_size = space_size;
+
+ MeasureRequirement content_requirement = requirement;
+
+ if (!requirement.max_width.IsInfinate()) {
+ const auto max_width = requirement.max_width.GetLength();
+ if (coerced_space_size.width > max_width) {
+ log::Warn(
+ "Measure: horizontal length of padding and margin is bigger than "
+ "available length.");
+ coerced_space_size.width = max_width;
+ }
+ content_requirement.max_width = max_width - coerced_space_size.width;
}
- if (coerced_margin_padding_size.height > available_size.height) {
- log::Warn(
- "Measure: vertical length of padding and margin is bigger than "
- "available length.");
- coerced_margin_padding_size.height = available_size.height;
+
+ if (!requirement.max_height.IsInfinate()) {
+ const auto max_height = requirement.max_height.GetLength();
+ if (coerced_space_size.height > max_height) {
+ log::Warn(
+ "Measure: horizontal length of padding and margin is bigger than "
+ "available length.");
+ coerced_space_size.height = max_height;
+ }
+ content_requirement.max_height = max_height - coerced_space_size.height;
}
- const auto coerced_content_available_size =
- available_size - coerced_margin_padding_size;
- const auto actual_content_size =
- OnMeasureContent(coerced_content_available_size);
+ const auto content_size = OnMeasureContent(content_requirement);
- SetPreferredSize(coerced_margin_padding_size + actual_content_size);
+ return coerced_space_size + content_size;
}
-void RenderObject::OnLayoutCore(const Rect& rect) {
- Size margin_padding_size{
- margin_.GetHorizontalTotal() + padding_.GetHorizontalTotal(),
- margin_.GetVerticalTotal() + padding_.GetVerticalTotal()};
- const auto content_available_size = rect.GetSize() - margin_padding_size;
- auto coerced_content_available_size = content_available_size;
+void RenderObject::OnLayoutCore(const Size& size) {
+ Size space_size{margin_.GetHorizontalTotal() + padding_.GetHorizontalTotal(),
+ margin_.GetVerticalTotal() + padding_.GetVerticalTotal()};
- if (coerced_content_available_size.width < 0) {
+ auto content_size = size - space_size;
+
+ if (content_size.width < 0) {
log::Warn(
"Layout: horizontal length of padding and margin is bigger than "
"available length.");
- coerced_content_available_size.width = 0;
+ content_size.width = 0;
}
- if (coerced_content_available_size.height < 0) {
+ if (content_size.height < 0) {
log::Warn(
"Layout: vertical length of padding and margin is bigger than "
"available length.");
- coerced_content_available_size.height = 0;
+ content_size.height = 0;
}
- OnLayoutContent(Rect{margin_.left + padding_.left, margin_.top + padding_.top,
- coerced_content_available_size.width,
- coerced_content_available_size.height});
+ Point lefttop{margin_.left + padding_.left, margin_.top + padding_.top};
+ if (lefttop.x > size.width) {
+ lefttop.x = size.width;
+ }
+ if (lefttop.y > size.height) {
+ lefttop.y = size.height;
+ }
+
+ const Rect content_rect{lefttop, content_size};
+
+ OnLayoutContent(content_rect);
}
void RenderObject::OnAfterLayout() {}