/* * This source file is part of RmlUi, the HTML/CSS Interface Middleware * * For the latest information, see http://github.com/mikke89/RmlUi * * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd * Copyright (c) 2019-2023 The RmlUi Team, and contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * */ #ifndef RMLUI_CORE_LAYOUT_LAYOUTDETAILS_H #define RMLUI_CORE_LAYOUT_LAYOUTDETAILS_H #include "../../../Include/RmlUi/Core/StyleTypes.h" #include "../../../Include/RmlUi/Core/Types.h" namespace Rml { class Box; class BlockContainer; class ContainerBox; struct FormattingMode; /** ComputedAxisSize is an abstraction of an element's computed size properties along a single axis, either horizontally or vertically, allowing eg. rows and columns alike to use the same algorithms. Here, 'a' means left or top, 'b' means right or bottom. */ struct ComputedAxisSize { Style::LengthPercentageAuto size; Style::LengthPercentage min_size, max_size; Style::Padding padding_a, padding_b; Style::Margin margin_a, margin_b; float border_a, border_b; Style::BoxSizing box_sizing; }; enum class BuildBoxMode { StretchFit, // Sets edges and size if available, auto width fills the available width, auto margins are used for alignment. FitContent, // Sets edges and size if available, auto width returns -1 to indicate to the caller that fit-content should be applied, auto margins // should then be re-evaluated once sized. Unaligned, // Sets edges and size if available, auto width returns -1, auto margins are always resolved to zero. Inline, // Sets edges, ignores width, height, and auto margins. }; /** Layout functions for sizing elements. Some procedures based on the CSS 2.1 specification, 'Section 10. Visual formatting model details'. */ class LayoutDetails { public: /// Generates the box dimensions for an element. /// @param[out] box The box to be built. /// @param[in] containing_block The dimensions of the content area of the block containing the element. /// @param[in] element The element to build the box for. /// @param[in] box_mode The mode which determines how the box is built. static void BuildBox(Box& box, Vector2f containing_block, Element* element, BuildBoxMode box_mode); // Retrieves the minimum and maximum width from an element's computed values. static void GetMinMaxWidth(float& min_width, float& max_width, const ComputedValues& computed, const Box& box, float containing_block_width); // Retrieves the minimum and maximum height from an element's computed values. static void GetMinMaxHeight(float& min_height, float& max_height, const ComputedValues& computed, const Box& box, float containing_block_height); // Retrieves the minimum and maximum height, set to the box's content height if it is definite (>= 0), otherwise retrieves the minimum and maximum // heights from an element's computed values. static void GetDefiniteMinMaxHeight(float& min_height, float& max_height, const ComputedValues& computed, const Box& box, float containing_block_height); /// Builds the box margins for a block box, assumes the size and other edges are already set. /// @param[in,out] box The box to generate. /// @param[in] containing_block The size of the containing block. /// @param[in] element The element the box is being generated for. static void BuildAutoMarginsForBlockBox(Box& box, Vector2f containing_block, Element* element); /// Clamps the width and build box margins for a block box, the other edges are already set. /// @param[in,out] box The box to generate. /// @param[in] containing_block The size of the containing block. /// @param[in] element The element the box is being generated for. static void ClampSizeAndBuildAutoMarginsForBlockWidth(Box& box, Vector2f containing_block, Element* element); /// Build computed axis size along the horizontal direction (width and friends). static ComputedAxisSize BuildComputedHorizontalSize(const ComputedValues& computed); /// Build computed axis size along the vertical direction (height and friends). static ComputedAxisSize BuildComputedVerticalSize(const ComputedValues& computed); /// Resolve edge sizes from a computed axis size. static void GetEdgeSizes(float& margin_a, float& margin_b, float& padding_border_a, float& padding_border_b, const ComputedAxisSize& computed_size, float base_value); static String GetDebugElementName(Element* element); static bool IsScrollContainer(Style::Overflow overflow_x, Style::Overflow overflow_y) { return overflow_x != Style::Overflow::Visible || overflow_y != Style::Overflow::Visible; } private: /// 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 /// element's children. /// @param[in,out] box The box to generate. The padding and borders, in addition to any definite content area, must be set on the box already. /// Auto width and height are specified by negative content size. /// @param[in] min_size The element's minimum width and height. /// @param[in] max_size The element's maximum width and height. /// @param[in] containing_block The size of the containing block. /// @param[in] element The element the box is being generated for. /// @param[in] box_mode The mode which determines how the box is built. static void BuildBoxSizeAndMargins(Box& box, Vector2f min_size, Vector2f max_size, Vector2f containing_block, Element* element, BuildBoxMode box_mode); /// Calculates and returns the content size for replaced elements. static Vector2f CalculateSizeForReplacedElement(Vector2f specified_content_size, Vector2f min_size, Vector2f max_size, Vector2f intrinsic_size, float intrinsic_ratio); /// Builds the block-specific width and horizontal margins of a Box. /// @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 /// property, and -1 means auto width. /// @param[in] computed The computed values of the element the box is being generated for. /// @param[in] min_width The minimum content width of the element. /// @param[in] max_width The maximum content width of the element. /// @param[in] containing_block The size of the containing block. /// @param[in] element The element the box is being generated for. /// @param[in] box_mode The mode which determines how the box is built. static void BuildBoxWidth(Box& box, const ComputedValues& computed, float min_width, float max_width, Vector2f containing_block, Element* element, BuildBoxMode box_mode); /// Builds the block-specific height and vertical margins of a Box. /// @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 /// property, and -1 means auto height. /// @param[in] computed The computed values of the element the box is being generated for. /// @param[in] min_height The minimum content height of the element. /// @param[in] max_height The maximum content height of the element. /// @param[in] containing_block_height The height of the containing block. static void BuildBoxHeight(Box& box, const ComputedValues& computed, float min_height, float max_height, float containing_block_height); }; } // namespace Rml #endif