LayoutDetails.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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 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. #ifndef RMLUI_CORE_LAYOUTDETAILS_H
  29. #define RMLUI_CORE_LAYOUTDETAILS_H
  30. #include "../../Include/RmlUi/Core/StyleTypes.h"
  31. #include "../../Include/RmlUi/Core/Types.h"
  32. namespace Rml {
  33. class Box;
  34. class LayoutBlockBox;
  35. /**
  36. ComputedAxisSize is an abstraction of an element's computed size properties along a single axis, either horizontally or vertically,
  37. allowing eg. rows and columns alike to use the same algorithms. Here, 'a' means left or top, 'b' means right or bottom.
  38. */
  39. struct ComputedAxisSize {
  40. Style::LengthPercentageAuto size;
  41. Style::LengthPercentage min_size, max_size;
  42. Style::Padding padding_a, padding_b;
  43. Style::Margin margin_a, margin_b;
  44. float border_a, border_b;
  45. Style::BoxSizing box_sizing;
  46. };
  47. enum class BoxContext { Block, Inline, FlexOrTable };
  48. /**
  49. Layout functions for sizing elements.
  50. Some procedures based on the CSS 2.1 specification, 'Section 10. Visual formatting model details'.
  51. */
  52. class LayoutDetails {
  53. public:
  54. /// Generates the box for an element.
  55. /// @param[out] box The box to be built.
  56. /// @param[in] containing_block The dimensions of the content area of the block containing the element.
  57. /// @param[in] element The element to build the box for.
  58. /// @param[in] box_context The formatting context in which the box is generated.
  59. /// @param[in] override_shrink_to_fit_width Provide a fixed shrink-to-fit width instead of formatting the element when its properties allow
  60. /// shrinking.
  61. static void BuildBox(Box& box, Vector2f containing_block, Element* element, BoxContext box_context = BoxContext::Block,
  62. float override_shrink_to_fit_width = -1);
  63. /// Generates the box for an element placed in a block box.
  64. /// @param[out] box The box to be built.
  65. /// @param[out] min_height The minimum height of the element's box.
  66. /// @param[out] max_height The maximum height of the element's box.
  67. /// @param[in] containing_box The block box containing the element.
  68. /// @param[in] element The element to build the box for.
  69. /// @param[in] box_context The formatting context in which the box is generated.
  70. /// @param[in] override_shrink_to_fit_width Provide a fixed shrink-to-fit width instead of formatting the element when its properties allow
  71. /// shrinking.
  72. static void BuildBox(Box& box, float& min_height, float& max_height, LayoutBlockBox* containing_box, Element* element,
  73. BoxContext box_context = BoxContext::Block, float override_shrink_to_fit_width = -1);
  74. // Retrieves the minimum and maximum width from an element's computed values.
  75. static void GetMinMaxWidth(float& min_width, float& max_width, const ComputedValues& computed, const Box& box, float containing_block_width);
  76. // Retrieves the minimum and maximum height from an element's computed values.
  77. static void GetMinMaxHeight(float& min_height, float& max_height, const ComputedValues& computed, const Box& box, float containing_block_height);
  78. // Retrieves the minimum and maximum height, set to the box's content height if it is definite (>= 0), otherwise retrieves the minimum and maximum
  79. // heights from an element's computed values.
  80. static void GetDefiniteMinMaxHeight(float& min_height, float& max_height, const ComputedValues& computed, const Box& box,
  81. float containing_block_height);
  82. /// Returns the fully-resolved, fixed-width and -height containing block from a block box.
  83. /// @param[in] containing_box The leaf box.
  84. /// @return The dimensions of the content area, using the latest fixed dimensions for width and height in the hierarchy.
  85. static Vector2f GetContainingBlock(const LayoutBlockBox* containing_box);
  86. /// Builds margins of a Box, and resolves any auto width or height for non-inline elements. The height may be left unresolved if it depends on the
  87. /// element's children.
  88. /// @param[in,out] box The box to generate. The padding and borders must be set on the box already. The content area is used instead of the width
  89. /// and height properties, and -1 means auto width/height.
  90. /// @param[in] min_size The element's minimum width and height.
  91. /// @param[in] max_size The element's maximum width and height.
  92. /// @param[in] containing_block The size of the containing block.
  93. /// @param[in] element The element the box is being generated for.
  94. /// @param[in] box_context The formatting context in which the box is generated.
  95. /// @param[in] replaced_element True when the element is a replaced element.
  96. /// @param[in] override_shrink_to_fit_width Provide a fixed shrink-to-fit width instead of formatting the element when its properties allow
  97. /// shrinking.
  98. static void BuildBoxSizeAndMargins(Box& box, Vector2f min_size, Vector2f max_size, Vector2f containing_block, Element* element,
  99. BoxContext box_context, bool replaced_element, float override_shrink_to_fit_width = -1);
  100. /// Formats the element and returns the width of its contents.
  101. static float GetShrinkToFitWidth(Element* element, Vector2f containing_block);
  102. /// Build computed axis size along the horizontal direction (width and friends).
  103. static ComputedAxisSize BuildComputedHorizontalSize(const ComputedValues& computed);
  104. /// Build computed axis size along the vertical direction (height and friends).
  105. static ComputedAxisSize BuildComputedVerticalSize(const ComputedValues& computed);
  106. /// Resolve edge sizes from a computed axis size.
  107. static void GetEdgeSizes(float& margin_a, float& margin_b, float& padding_border_a, float& padding_border_b,
  108. const ComputedAxisSize& computed_size, float base_value);
  109. private:
  110. /// Calculates and returns the content size for replaced elements.
  111. static Vector2f CalculateSizeForReplacedElement(Vector2f specified_content_size, Vector2f min_size, Vector2f max_size, Vector2f intrinsic_size,
  112. float intrinsic_ratio);
  113. /// Builds the block-specific width and horizontal margins of a Box.
  114. /// @param[in,out] box The box to generate. The padding and borders must be set on the box already. The content area is used instead of the width
  115. /// property, and -1 means auto width.
  116. /// @param[in] computed The computed values of the element the box is being generated for.
  117. /// @param[in] min_width The minimum content width of the element.
  118. /// @param[in] max_width The maximum content width of the element.
  119. /// @param[in] containing_block The size of the containing block.
  120. /// @param[in] element The element the box is being generated for.
  121. /// @param[in] replaced_element True when the element is a replaced element.
  122. /// @param[in] override_shrink_to_fit_width Provide a fixed shrink-to-fit width instead of formatting the element when its properties allow
  123. /// shrinking.
  124. static void BuildBoxWidth(Box& box, const ComputedValues& computed, float min_width, float max_width, Vector2f containing_block, Element* element,
  125. bool replaced_element, float override_shrink_to_fit_width = -1);
  126. /// Builds the block-specific height and vertical margins of a Box.
  127. /// @param[in,out] box The box to generate. The padding and borders must be set on the box already. The content area is used instead of the height
  128. /// property, and -1 means auto height.
  129. /// @param[in] computed The computed values of the element the box is being generated for.
  130. /// @param[in] min_height The minimum content height of the element.
  131. /// @param[in] max_height The maximum content height of the element.
  132. /// @param[in] containing_block_height The height of the containing block.
  133. static void BuildBoxHeight(Box& box, const ComputedValues& computed, float min_height, float max_height, float containing_block_height);
  134. };
  135. } // namespace Rml
  136. #endif