LayoutDetails.cpp 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  1. /*
  2. * This source file is part of RmlUi, the HTML/CSS Interface Middleware
  3. *
  4. * For the latest information, see http://github.com/mikke89/RmlUi
  5. *
  6. * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
  7. * Copyright (c) 2019-2023 The RmlUi Team, and contributors
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a copy
  10. * of this software and associated documentation files (the "Software"), to deal
  11. * in the Software without restriction, including without limitation the rights
  12. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. * copies of the Software, and to permit persons to whom the Software is
  14. * furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be included in
  17. * all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  22. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  23. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  24. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  25. * THE SOFTWARE.
  26. *
  27. */
  28. #include "LayoutDetails.h"
  29. #include "../../../Include/RmlUi/Core/ComputedValues.h"
  30. #include "../../../Include/RmlUi/Core/Element.h"
  31. #include "../../../Include/RmlUi/Core/ElementScroll.h"
  32. #include "../../../Include/RmlUi/Core/ElementText.h"
  33. #include "../../../Include/RmlUi/Core/Math.h"
  34. #include "../../../Include/RmlUi/Core/Profiling.h"
  35. #include "ContainerBox.h"
  36. #include "FormattingContext.h"
  37. #include "LayoutEngine.h"
  38. #include "LayoutNode.h"
  39. #include <float.h>
  40. namespace Rml {
  41. // Convert width or height of a border box to the width or height of its corresponding content box.
  42. static inline float BorderSizeToContentSize(float border_size, float border_padding_edges_size)
  43. {
  44. if (border_size < 0.0f || border_size >= FLT_MAX)
  45. return border_size;
  46. return Math::Max(0.0f, border_size - border_padding_edges_size);
  47. }
  48. void LayoutDetails::BuildBox(Box& box, Vector2f containing_block, Element* element, BuildBoxMode box_mode)
  49. {
  50. // A shrinkable block may start formatting, thus the current formatting mode must be provided.
  51. RMLUI_ZoneScoped;
  52. if (!element)
  53. {
  54. box.SetContent(containing_block);
  55. return;
  56. }
  57. const ComputedValues& computed = element->GetComputedValues();
  58. // Calculate the padding area.
  59. box.SetEdge(BoxArea::Padding, BoxEdge::Top, Math::Max(0.0f, ResolveValue(computed.padding_top(), containing_block.x)));
  60. box.SetEdge(BoxArea::Padding, BoxEdge::Right, Math::Max(0.0f, ResolveValue(computed.padding_right(), containing_block.x)));
  61. box.SetEdge(BoxArea::Padding, BoxEdge::Bottom, Math::Max(0.0f, ResolveValue(computed.padding_bottom(), containing_block.x)));
  62. box.SetEdge(BoxArea::Padding, BoxEdge::Left, Math::Max(0.0f, ResolveValue(computed.padding_left(), containing_block.x)));
  63. // Calculate the border area.
  64. box.SetEdge(BoxArea::Border, BoxEdge::Top, Math::Max(0.0f, computed.border_top_width()));
  65. box.SetEdge(BoxArea::Border, BoxEdge::Right, Math::Max(0.0f, computed.border_right_width()));
  66. box.SetEdge(BoxArea::Border, BoxEdge::Bottom, Math::Max(0.0f, computed.border_bottom_width()));
  67. box.SetEdge(BoxArea::Border, BoxEdge::Left, Math::Max(0.0f, computed.border_left_width()));
  68. // Prepare sizing of the content area.
  69. Vector2f content_area(-1, -1);
  70. Vector2f min_size = Vector2f(0, 0);
  71. Vector2f max_size = Vector2f(FLT_MAX, FLT_MAX);
  72. // Intrinsic size for replaced elements.
  73. Vector2f intrinsic_size(-1, -1);
  74. float intrinsic_ratio = -1;
  75. const bool replaced_element = element->GetIntrinsicDimensions(intrinsic_size, intrinsic_ratio);
  76. // Calculate the content area and constraints. 'auto' width and height are handled later.
  77. // For inline non-replaced elements, width and height are ignored, so we can skip the calculations.
  78. if (box_mode == BuildBoxMode::Block || box_mode == BuildBoxMode::ShrinkableBlock || box_mode == BuildBoxMode::UnalignedBlock || replaced_element)
  79. {
  80. content_area.x = ResolveValueOr(computed.width(), containing_block.x, -1.f);
  81. content_area.y = ResolveValueOr(computed.height(), containing_block.y, -1.f);
  82. min_size = Vector2f{
  83. ResolveValueOr(computed.min_width(), containing_block.x, 0.f),
  84. ResolveValueOr(computed.min_height(), containing_block.y, 0.f),
  85. };
  86. max_size = Vector2f{
  87. ResolveValueOr(computed.max_width(), containing_block.x, FLT_MAX),
  88. ResolveValueOr(computed.max_height(), containing_block.y, FLT_MAX),
  89. };
  90. // Adjust sizes for the given box sizing model.
  91. if (computed.box_sizing() == Style::BoxSizing::BorderBox)
  92. {
  93. const float border_padding_width = box.GetSizeAcross(BoxDirection::Horizontal, BoxArea::Border, BoxArea::Padding);
  94. const float border_padding_height = box.GetSizeAcross(BoxDirection::Vertical, BoxArea::Border, BoxArea::Padding);
  95. min_size.x = BorderSizeToContentSize(min_size.x, border_padding_width);
  96. max_size.x = BorderSizeToContentSize(max_size.x, border_padding_width);
  97. content_area.x = BorderSizeToContentSize(content_area.x, border_padding_width);
  98. min_size.y = BorderSizeToContentSize(min_size.y, border_padding_height);
  99. max_size.y = BorderSizeToContentSize(max_size.y, border_padding_height);
  100. content_area.y = BorderSizeToContentSize(content_area.y, border_padding_height);
  101. }
  102. if (content_area.x >= 0)
  103. content_area.x = Math::Clamp(content_area.x, min_size.x, max_size.x);
  104. if (content_area.y >= 0)
  105. content_area.y = Math::Clamp(content_area.y, min_size.y, max_size.y);
  106. if (replaced_element)
  107. {
  108. content_area = CalculateSizeForReplacedElement(content_area, min_size, max_size, intrinsic_size, intrinsic_ratio);
  109. RMLUI_ASSERTMSG(content_area.x >= 0 && content_area.y >= 0, "Replaced elements are expected to have a positive intrinsic size.");
  110. }
  111. }
  112. box.SetContent(content_area);
  113. // Evaluate the margins, and width and height if they are auto.
  114. return BuildBoxSizeAndMargins(box, min_size, max_size, containing_block, element, box_mode);
  115. }
  116. void LayoutDetails::GetMinMaxWidth(float& min_width, float& max_width, const ComputedValues& computed, const Box& box, float containing_block_width)
  117. {
  118. min_width = ResolveValueOr(computed.min_width(), containing_block_width, 0.f);
  119. max_width = ResolveValueOr(computed.max_width(), containing_block_width, FLT_MAX);
  120. if (computed.box_sizing() == Style::BoxSizing::BorderBox)
  121. {
  122. const float border_padding_width = box.GetSizeAcross(BoxDirection::Horizontal, BoxArea::Border, BoxArea::Padding);
  123. min_width = BorderSizeToContentSize(min_width, border_padding_width);
  124. max_width = BorderSizeToContentSize(max_width, border_padding_width);
  125. }
  126. }
  127. void LayoutDetails::GetMinMaxHeight(float& min_height, float& max_height, const ComputedValues& computed, const Box& box,
  128. float containing_block_height)
  129. {
  130. min_height = ResolveValueOr(computed.min_height(), containing_block_height, 0.f);
  131. max_height = ResolveValueOr(computed.max_height(), containing_block_height, FLT_MAX);
  132. if (computed.box_sizing() == Style::BoxSizing::BorderBox)
  133. {
  134. const float border_padding_height = box.GetSizeAcross(BoxDirection::Vertical, BoxArea::Border, BoxArea::Padding);
  135. min_height = BorderSizeToContentSize(min_height, border_padding_height);
  136. max_height = BorderSizeToContentSize(max_height, border_padding_height);
  137. }
  138. }
  139. void LayoutDetails::GetDefiniteMinMaxHeight(float& min_height, float& max_height, const ComputedValues& computed, const Box& box,
  140. float containing_block_height)
  141. {
  142. const float box_height = box.GetSize().y;
  143. if (box_height < 0)
  144. {
  145. GetMinMaxHeight(min_height, max_height, computed, box, containing_block_height);
  146. }
  147. else
  148. {
  149. min_height = box_height;
  150. max_height = box_height;
  151. }
  152. }
  153. void LayoutDetails::BuildAutoMarginsForBlockBox(Box& box, Vector2f containing_block, Element* element)
  154. {
  155. RMLUI_ASSERT(box.GetSize().x >= 0.f && box.GetSize().y >= 0.f);
  156. const Vector2f initial_content_size = box.GetSize();
  157. const Vector2f min_size = {0, 0};
  158. const Vector2f max_size = {FLT_MAX, FLT_MAX};
  159. BuildBoxSizeAndMargins(box, min_size, max_size, containing_block, element, BuildBoxMode::Block);
  160. RMLUI_ASSERT(box.GetSize() == initial_content_size);
  161. }
  162. void LayoutDetails::BuildBoxSizeAndMargins(Box& box, Vector2f min_size, Vector2f max_size, Vector2f containing_block, Element* element,
  163. BuildBoxMode box_mode)
  164. {
  165. const ComputedValues& computed = element->GetComputedValues();
  166. if (box_mode == BuildBoxMode::Inline || box_mode == BuildBoxMode::UnalignedBlock)
  167. {
  168. // For inline elements, their calculations are straightforward. No worrying about auto margins and dimensions, etc.
  169. // Evaluate the margins. Any declared as 'auto' will resolve to 0.
  170. box.SetEdge(BoxArea::Margin, BoxEdge::Top, ResolveValue(computed.margin_top(), containing_block.x));
  171. box.SetEdge(BoxArea::Margin, BoxEdge::Right, ResolveValue(computed.margin_right(), containing_block.x));
  172. box.SetEdge(BoxArea::Margin, BoxEdge::Bottom, ResolveValue(computed.margin_bottom(), containing_block.x));
  173. box.SetEdge(BoxArea::Margin, BoxEdge::Left, ResolveValue(computed.margin_left(), containing_block.x));
  174. }
  175. else
  176. {
  177. // The element is block, so we need to run the box through the ringer to potentially evaluate auto margins and dimensions.
  178. BuildBoxWidth(box, computed, min_size.x, max_size.x, containing_block, element);
  179. BuildBoxHeight(box, computed, min_size.y, max_size.y, containing_block.y);
  180. }
  181. }
  182. void LayoutDetails::ClampSizeAndBuildAutoMarginsForBlockWidth(Box& box, Vector2f containing_block, Element* element)
  183. {
  184. RMLUI_ASSERT(box.GetSize().x >= 0.f);
  185. const ComputedValues& computed = element->GetComputedValues();
  186. float min_width = 0.f;
  187. float max_width = FLT_MAX;
  188. GetMinMaxWidth(min_width, max_width, computed, box, containing_block.x);
  189. BuildBoxWidth(box, computed, min_width, max_width, containing_block, element);
  190. }
  191. float LayoutDetails::GetShrinkToFitWidth(Element* element, Vector2f containing_block, const FormattingMode& current_formatting_mode)
  192. {
  193. RMLUI_ASSERT(element);
  194. #ifdef RMLUI_TRACY_PROFILING
  195. RMLUI_ZoneScoped;
  196. const String zone_text = CreateString("%s %x Containing block: %g x %g", element->GetAddress(false, false).c_str(), element,
  197. containing_block.x, containing_block.y);
  198. RMLUI_ZoneText(zone_text.c_str(), zone_text.size());
  199. #endif
  200. // @performance Can we lay out the elements directly using a fit-content size mode, instead of fetching the
  201. // shrink-to-fit width first? Use a non-definite placeholder for the box content width, and available width as a
  202. // maximum constraint.
  203. Box box;
  204. LayoutDetails::BuildBox(box, containing_block, element, BuildBoxMode::UnalignedBlock);
  205. if (box.GetSize().x >= 0.f)
  206. {
  207. return box.GetSize().x;
  208. }
  209. // Max-content width should be calculated without any vertical constraint.
  210. box.SetContent(Vector2f(box.GetSize().x, -1.f));
  211. // Currently we don't support shrink-to-fit width for tables. Just return a zero-sized width.
  212. const Style::Display display = element->GetDisplay();
  213. if (display == Style::Display::Table || display == Style::Display::InlineTable)
  214. {
  215. return 0.f;
  216. }
  217. LayoutNode* layout_node = element->GetLayoutNode();
  218. float shrink_to_fit_width;
  219. if (element->GetId() == "nested")
  220. int x = 0;
  221. // TODO: The shrink-to-fit width is only cached for every other nested flexbox during the initial
  222. // GetShrinkToFitWidth. I.e. the first .outer flexbox below #nested is formatted outside of this function. Even
  223. // though in principle I believe we should be able to store its formatted width. Maybe move this caching into
  224. // FormatIndependent somehow?
  225. if (Optional<float> cached_width = layout_node->GetMaxContentWidthIfCached())
  226. {
  227. shrink_to_fit_width = *cached_width;
  228. }
  229. else
  230. {
  231. FormattingMode formatting_mode = current_formatting_mode;
  232. formatting_mode.constraint = FormattingMode::Constraint::MaxContent;
  233. // First, format the element under the above-generated box. Then we ask the resulting box for its shrink-to-fit
  234. // width. For block containers, this is essentially its largest line or child box.
  235. // @performance. Some formatting can be simplified, e.g. absolute elements do not contribute to the shrink-to-fit
  236. // width. Also, children of elements with a fixed width and height don't need to be formatted further.
  237. RootBox root(Box(Vector2f(-1.f)), formatting_mode);
  238. UniquePtr<LayoutBox> layout_box = FormattingContext::FormatIndependent(&root, element, &box, FormattingContextType::Block);
  239. shrink_to_fit_width = layout_box->GetShrinkToFitWidth();
  240. layout_node->CommitMaxContentWidth(shrink_to_fit_width);
  241. }
  242. if (containing_block.x >= 0)
  243. {
  244. const float available_width =
  245. Math::Max(0.f, containing_block.x - box.GetSizeAcross(BoxDirection::Horizontal, BoxArea::Margin, BoxArea::Padding));
  246. shrink_to_fit_width = Math::Min(shrink_to_fit_width, available_width);
  247. }
  248. return shrink_to_fit_width;
  249. }
  250. ComputedAxisSize LayoutDetails::BuildComputedHorizontalSize(const ComputedValues& computed)
  251. {
  252. return ComputedAxisSize{computed.width(), computed.min_width(), computed.max_width(), computed.padding_left(), computed.padding_right(),
  253. computed.margin_left(), computed.margin_right(), computed.border_left_width(), computed.border_right_width(), computed.box_sizing()};
  254. }
  255. ComputedAxisSize LayoutDetails::BuildComputedVerticalSize(const ComputedValues& computed)
  256. {
  257. return ComputedAxisSize{computed.height(), computed.min_height(), computed.max_height(), computed.padding_top(), computed.padding_bottom(),
  258. computed.margin_top(), computed.margin_bottom(), computed.border_top_width(), computed.border_bottom_width(), computed.box_sizing()};
  259. }
  260. void LayoutDetails::GetEdgeSizes(float& margin_a, float& margin_b, float& padding_border_a, float& padding_border_b,
  261. const ComputedAxisSize& computed_size, const float base_value)
  262. {
  263. margin_a = ResolveValue(computed_size.margin_a, base_value);
  264. margin_b = ResolveValue(computed_size.margin_b, base_value);
  265. padding_border_a = Math::Max(0.0f, ResolveValue(computed_size.padding_a, base_value)) + Math::Max(0.0f, computed_size.border_a);
  266. padding_border_b = Math::Max(0.0f, ResolveValue(computed_size.padding_b, base_value)) + Math::Max(0.0f, computed_size.border_b);
  267. }
  268. String LayoutDetails::GetDebugElementName(Element* element)
  269. {
  270. if (!element)
  271. return "nullptr";
  272. if (!element->GetId().empty())
  273. return '#' + element->GetId();
  274. if (auto element_text = rmlui_dynamic_cast<ElementText*>(element))
  275. return '\"' + StringUtilities::StripWhitespace(element_text->GetText()).substr(0, 20) + '\"';
  276. return element->GetAddress(false, false);
  277. }
  278. Vector2f LayoutDetails::CalculateSizeForReplacedElement(const Vector2f specified_content_size, const Vector2f min_size, const Vector2f max_size,
  279. const Vector2f intrinsic_size, const float intrinsic_ratio)
  280. {
  281. // Start with the element's specified width and height. If any of them are auto, use the element's intrinsic
  282. // dimensions and ratio to find a suitable content size.
  283. Vector2f content_size = specified_content_size;
  284. const bool auto_width = (content_size.x < 0);
  285. const bool auto_height = (content_size.y < 0);
  286. if (auto_width)
  287. content_size.x = intrinsic_size.x;
  288. if (auto_height)
  289. content_size.y = intrinsic_size.y;
  290. // Use a fallback size if we still couldn't determine the size.
  291. if (content_size.x < 0)
  292. content_size.x = 300;
  293. if (content_size.y < 0)
  294. content_size.y = 150;
  295. // Resolve the size constraints.
  296. const float min_width = min_size.x;
  297. const float max_width = max_size.x;
  298. const float min_height = min_size.y;
  299. const float max_height = max_size.y;
  300. // If we have an intrinsic ratio and one of the dimensions is 'auto', then scale it such that the ratio is preserved.
  301. if (intrinsic_ratio > 0)
  302. {
  303. if (auto_width && !auto_height)
  304. {
  305. content_size.x = content_size.y * intrinsic_ratio;
  306. }
  307. else if (auto_height && !auto_width)
  308. {
  309. content_size.y = content_size.x / intrinsic_ratio;
  310. }
  311. else if (auto_width && auto_height)
  312. {
  313. // If both width and height are auto, try to preserve the ratio under the respective min/max constraints.
  314. const float w = content_size.x;
  315. const float h = content_size.y;
  316. if ((w < min_width && h > max_height) || (w > max_width && h < min_height))
  317. {
  318. // Cannot preserve aspect ratio, let it be clamped.
  319. }
  320. else if (w < min_width && h < min_height)
  321. {
  322. // Increase the size such that both min-constraints are respected. The non-scaled axis will
  323. // be clamped below, preserving the aspect ratio.
  324. if (min_width <= min_height * intrinsic_ratio)
  325. content_size.x = min_height * intrinsic_ratio;
  326. else
  327. content_size.y = min_width / intrinsic_ratio;
  328. }
  329. else if (w > max_width && h > max_height)
  330. {
  331. // Shrink the size such that both max-constraints are respected. The non-scaled axis will
  332. // be clamped below, preserving the aspect ratio.
  333. if (max_width <= max_height * intrinsic_ratio)
  334. content_size.y = max_width / intrinsic_ratio;
  335. else
  336. content_size.x = max_height * intrinsic_ratio;
  337. }
  338. else
  339. {
  340. // Single constraint violations.
  341. if (w < min_width)
  342. content_size.y = min_width / intrinsic_ratio;
  343. else if (w > max_width)
  344. content_size.y = max_width / intrinsic_ratio;
  345. else if (h < min_height)
  346. content_size.x = min_height * intrinsic_ratio;
  347. else if (h > max_height)
  348. content_size.x = max_height * intrinsic_ratio;
  349. }
  350. }
  351. }
  352. content_size.x = Math::Clamp(content_size.x, min_width, max_width);
  353. content_size.y = Math::Clamp(content_size.y, min_height, max_height);
  354. return content_size;
  355. }
  356. void LayoutDetails::BuildBoxWidth(Box& box, const ComputedValues& computed, float min_width, float max_width, Vector2f containing_block,
  357. Element* element)
  358. {
  359. Vector2f content_area = box.GetSize();
  360. // Determine if the element has automatic margins.
  361. bool margins_auto[2];
  362. int num_auto_margins = 0;
  363. for (int i = 0; i < 2; ++i)
  364. {
  365. const Style::Margin margin_value = (i == 0 ? computed.margin_left() : computed.margin_right());
  366. if (margin_value.type == Style::Margin::Auto)
  367. {
  368. margins_auto[i] = true;
  369. num_auto_margins++;
  370. box.SetEdge(BoxArea::Margin, i == 0 ? BoxEdge::Left : BoxEdge::Right, 0);
  371. }
  372. else
  373. {
  374. margins_auto[i] = false;
  375. box.SetEdge(BoxArea::Margin, i == 0 ? BoxEdge::Left : BoxEdge::Right, ResolveValue(margin_value, containing_block.x));
  376. }
  377. }
  378. const bool absolutely_positioned = (computed.position() == Style::Position::Absolute || computed.position() == Style::Position::Fixed);
  379. const bool inset_auto = (computed.left().type == Style::Left::Auto || computed.right().type == Style::Right::Auto);
  380. const bool width_auto = (content_area.x < 0);
  381. auto GetInsetWidth = [&] {
  382. // For absolutely positioned elements (and only those), the 'left' and 'right' values are part of the box's width constraint.
  383. if (absolutely_positioned)
  384. return ResolveValue(computed.left(), containing_block.x) + ResolveValue(computed.right(), containing_block.x);
  385. return 0.f;
  386. };
  387. // If the width is set to auto, we need to calculate the width.
  388. if (width_auto)
  389. {
  390. // Apply the shrink-to-fit algorithm here to find the width of the element.
  391. // See CSS 2.1 section 10.3.7 for when this should be applied.
  392. const bool shrink_to_fit = ((computed.float_() != Style::Float::None) || (absolutely_positioned && inset_auto) ||
  393. (computed.display() == Style::Display::InlineBlock || computed.display() == Style::Display::InlineFlex));
  394. if (!shrink_to_fit)
  395. {
  396. // The width is set to fill the remaining space of the containing block, if the available space is definite.
  397. if (containing_block.x >= 0.f)
  398. {
  399. const float accumulated_edges = GetInsetWidth() + box.GetSizeAcross(BoxDirection::Horizontal, BoxArea::Margin, BoxArea::Padding);
  400. content_area.x = Math::Max(containing_block.x - accumulated_edges, 0.f);
  401. }
  402. }
  403. else
  404. {
  405. // Leave width negative to indicate it should have its shrink-to-fit width evaluated.
  406. }
  407. }
  408. // Otherwise, the margins that are set to auto will pick up the remaining width of the containing block.
  409. else if (num_auto_margins > 0)
  410. {
  411. const float margin =
  412. (containing_block.x - (GetInsetWidth() + box.GetSizeAcross(BoxDirection::Horizontal, BoxArea::Margin))) / float(num_auto_margins);
  413. if (margins_auto[0])
  414. box.SetEdge(BoxArea::Margin, BoxEdge::Left, margin);
  415. if (margins_auto[1])
  416. box.SetEdge(BoxArea::Margin, BoxEdge::Right, margin);
  417. }
  418. // Clamp the calculated width; if the width is changed by the clamp, then the margins need to be recalculated if
  419. // they were set to auto.
  420. const float clamped_width = Math::Clamp(content_area.x, min_width, max_width);
  421. if (content_area.x >= 0 && clamped_width != content_area.x)
  422. {
  423. content_area.x = clamped_width;
  424. box.SetContent(content_area);
  425. if (num_auto_margins > 0)
  426. BuildBoxWidth(box, computed, min_width, max_width, containing_block, element);
  427. }
  428. else
  429. {
  430. box.SetContent(content_area);
  431. }
  432. }
  433. void LayoutDetails::BuildBoxHeight(Box& box, const ComputedValues& computed, float min_height, float max_height, float containing_block_height)
  434. {
  435. RMLUI_ZoneScoped;
  436. Vector2f content_area = box.GetSize();
  437. // Determine if the element has automatic margins.
  438. bool margins_auto[2];
  439. int num_auto_margins = 0;
  440. for (int i = 0; i < 2; ++i)
  441. {
  442. const Style::Margin margin_value = (i == 0 ? computed.margin_top() : computed.margin_bottom());
  443. if (margin_value.type == Style::Margin::Auto)
  444. {
  445. margins_auto[i] = true;
  446. num_auto_margins++;
  447. box.SetEdge(BoxArea::Margin, i == 0 ? BoxEdge::Top : BoxEdge::Bottom, 0);
  448. }
  449. else
  450. {
  451. margins_auto[i] = false;
  452. box.SetEdge(BoxArea::Margin, i == 0 ? BoxEdge::Top : BoxEdge::Bottom, ResolveValue(margin_value, containing_block_height));
  453. }
  454. }
  455. const bool absolutely_positioned = (computed.position() == Style::Position::Absolute || computed.position() == Style::Position::Fixed);
  456. const bool inset_auto = (computed.top().type == Style::Top::Auto || computed.bottom().type == Style::Bottom::Auto);
  457. const bool height_auto = (content_area.y < 0);
  458. auto GetInsetHeight = [&] {
  459. // For absolutely positioned elements (and only those), the 'top' and 'bottom' values are part of the box's height constraint.
  460. if (absolutely_positioned)
  461. return ResolveValue(computed.top(), containing_block_height) + ResolveValue(computed.bottom(), containing_block_height);
  462. return 0.f;
  463. };
  464. // If the height is set to auto, we need to calculate the height.
  465. if (height_auto)
  466. {
  467. // If the height is set to auto for a box in normal flow, the height is set to -1, representing indefinite height.
  468. content_area.y = -1;
  469. // But if we are dealing with an absolutely positioned element we need to consider if the top and bottom
  470. // properties are set, since the height can be affected.
  471. if (absolutely_positioned && !inset_auto)
  472. {
  473. // The height is set to whatever remains of the containing block.
  474. content_area.y =
  475. containing_block_height - (GetInsetHeight() + box.GetSizeAcross(BoxDirection::Vertical, BoxArea::Margin, BoxArea::Padding));
  476. content_area.y = Math::Max(0.0f, content_area.y);
  477. }
  478. }
  479. // Otherwise, the margins that are set to auto will pick up the remaining height of the containing block.
  480. else if (num_auto_margins > 0)
  481. {
  482. const float margin =
  483. (containing_block_height - (GetInsetHeight() + box.GetSizeAcross(BoxDirection::Vertical, BoxArea::Margin))) / float(num_auto_margins);
  484. if (margins_auto[0])
  485. box.SetEdge(BoxArea::Margin, BoxEdge::Top, margin);
  486. if (margins_auto[1])
  487. box.SetEdge(BoxArea::Margin, BoxEdge::Bottom, margin);
  488. }
  489. if (content_area.y >= 0)
  490. {
  491. // Clamp the calculated height; if the height is changed by the clamp, then the margins need to be recalculated if
  492. // they were set to auto.
  493. float clamped_height = Math::Clamp(content_area.y, min_height, max_height);
  494. if (clamped_height != content_area.y)
  495. {
  496. content_area.y = clamped_height;
  497. box.SetContent(content_area);
  498. if (num_auto_margins > 0)
  499. BuildBoxHeight(box, computed, min_height, max_height, containing_block_height);
  500. return;
  501. }
  502. }
  503. box.SetContent(content_area);
  504. }
  505. } // namespace Rml