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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
/*
* Copyright (C) 2011 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "OrderIterator.h"
#include "RenderBlock.h"
namespace WebCore {
class FlexItem;
namespace LayoutIntegration {
class FlexLayout;
}
class RenderFlexibleBox : public RenderBlock {
WTF_MAKE_ISO_ALLOCATED(RenderFlexibleBox);
public:
RenderFlexibleBox(Element&, RenderStyle&&);
RenderFlexibleBox(Document&, RenderStyle&&);
virtual ~RenderFlexibleBox();
bool isFlexibleBox() const override { return true; }
ASCIILiteral renderName() const override;
bool avoidsFloats() const final { return true; }
bool canDropAnonymousBlockChild() const final { return false; }
void layoutBlock(bool relayoutChildren, LayoutUnit pageLogicalHeight = 0_lu) final;
LayoutUnit baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const override;
std::optional<LayoutUnit> firstLineBaseline() const override;
std::optional<LayoutUnit> lastLineBaseline() const override;
RenderBox* getBaselineChild(ItemPosition alignment) const;
std::optional<LayoutUnit> inlineBlockBaseline(LineDirectionMode) const override;
void styleDidChange(StyleDifference, const RenderStyle*) override;
bool hitTestChildren(const HitTestRequest&, HitTestResult&, const HitTestLocation&, const LayoutPoint& adjustedLocation, HitTestAction) override;
void paintChildren(PaintInfo& forSelf, const LayoutPoint&, PaintInfo& forChild, bool usePrintRect) override;
bool isHorizontalFlow() const;
const OrderIterator& orderIterator() const { return m_orderIterator; }
bool isTopLayoutOverflowAllowed() const override;
bool isLeftLayoutOverflowAllowed() const override;
virtual bool isFlexibleBoxImpl() const { return false; };
bool useChildOverridingLogicalHeightForPercentageResolution(const RenderBox&);
void clearCachedMainSizeForChild(const RenderBox& child);
LayoutUnit cachedChildIntrinsicContentLogicalHeight(const RenderBox& child) const;
void setCachedChildIntrinsicContentLogicalHeight(const RenderBox& child, LayoutUnit);
void clearCachedChildIntrinsicContentLogicalHeight(const RenderBox& child);
LayoutUnit staticMainAxisPositionForPositionedChild(const RenderBox&);
LayoutUnit staticCrossAxisPositionForPositionedChild(const RenderBox&);
LayoutUnit staticInlinePositionForPositionedChild(const RenderBox&);
LayoutUnit staticBlockPositionForPositionedChild(const RenderBox&);
// Returns true if the position changed. In that case, the child will have to
// be laid out again.
bool setStaticPositionForPositionedLayout(const RenderBox&);
enum class GapType : uint8_t { BetweenLines, BetweenItems };
LayoutUnit computeGap(GapType) const;
bool shouldApplyMinBlockSizeAutoForChild(const RenderBox&) const;
bool isComputingFlexBaseSizes() const { return m_isComputingFlexBaseSizes; }
protected:
void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const override;
bool shouldResetChildLogicalHeightBeforeLayout(const RenderBox&) const override { return m_shouldResetChildLogicalHeightBeforeLayout; }
private:
friend class FlexLayoutAlgorithm;
enum class FlexSign : uint8_t {
PositiveFlexibility,
NegativeFlexibility,
};
enum class ChildLayoutType : uint8_t { LayoutIfNeeded, ForceLayout, NeverLayout };
enum class SizeDefiniteness : uint8_t { Definite, Indefinite, Unknown };
// Use an inline capacity of 8, since flexbox containers usually have less than 8 children.
typedef Vector<LayoutRect, 8> ChildFrameRects;
struct LineState;
bool mainAxisIsChildInlineAxis(const RenderBox&) const;
bool isColumnFlow() const;
bool isColumnOrRowReverse() const;
bool isLeftToRightFlow() const;
bool isMultiline() const;
Length flexBasisForChild(const RenderBox& child) const;
Length mainSizeLengthForChild(SizeType, const RenderBox&) const;
Length crossSizeLengthForChild(SizeType, const RenderBox&) const;
bool shouldApplyMinSizeAutoForChild(const RenderBox&) const;
LayoutUnit crossAxisExtentForChild(const RenderBox& child) const;
LayoutUnit crossAxisIntrinsicExtentForChild(RenderBox& child);
LayoutUnit childIntrinsicLogicalHeight(RenderBox& child) const;
LayoutUnit childIntrinsicLogicalWidth(RenderBox& child);
LayoutUnit mainAxisExtentForChild(const RenderBox& child) const;
LayoutUnit mainAxisContentExtentForChildIncludingScrollbar(const RenderBox& child) const;
LayoutUnit crossAxisExtent() const;
LayoutUnit mainAxisExtent() const;
LayoutUnit crossAxisContentExtent() const;
LayoutUnit mainAxisContentExtent(LayoutUnit contentLogicalHeight);
std::optional<LayoutUnit> computeMainAxisExtentForChild(RenderBox& child, SizeType, const Length& size);
WritingMode transformedWritingMode() const;
LayoutUnit flowAwareBorderStart() const;
LayoutUnit flowAwareBorderEnd() const;
LayoutUnit flowAwareBorderBefore() const;
LayoutUnit flowAwareBorderAfter() const;
LayoutUnit flowAwarePaddingStart() const;
LayoutUnit flowAwarePaddingEnd() const;
LayoutUnit flowAwarePaddingBefore() const;
LayoutUnit flowAwarePaddingAfter() const;
LayoutUnit flowAwareMarginStartForChild(const RenderBox& child) const;
LayoutUnit flowAwareMarginEndForChild(const RenderBox& child) const;
LayoutUnit flowAwareMarginBeforeForChild(const RenderBox& child) const;
LayoutUnit crossAxisMarginExtentForChild(const RenderBox& child) const;
LayoutUnit mainAxisMarginExtentForChild(const RenderBox& child) const;
LayoutUnit crossAxisScrollbarExtent() const;
LayoutUnit crossAxisScrollbarExtentForChild(const RenderBox& child) const;
LayoutPoint flowAwareLocationForChild(const RenderBox& child) const;
bool childHasComputableAspectRatio(const RenderBox&) const;
bool childHasComputableAspectRatioAndCrossSizeIsConsideredDefinite(const RenderBox&);
bool crossAxisIsPhysicalWidth() const;
bool childCrossSizeShouldUseContainerCrossSize(const RenderBox& child) const;
LayoutUnit computeCrossSizeForChildUsingContainerCrossSize(const RenderBox& child) const;
void computeChildIntrinsicLogicalWidths(RenderObject&, LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const override;
LayoutUnit computeMainSizeFromAspectRatioUsing(const RenderBox& child, Length crossSizeLength) const;
void setFlowAwareLocationForChild(RenderBox& child, const LayoutPoint&);
LayoutUnit computeFlexBaseSizeForChild(RenderBox& child, LayoutUnit mainAxisBorderAndPadding, bool relayoutChildren);
void maybeCacheChildMainIntrinsicSize(RenderBox& child, bool relayoutChildren);
void adjustAlignmentForChild(RenderBox& child, LayoutUnit);
ItemPosition alignmentForChild(const RenderBox& child) const;
bool canComputePercentageFlexBasis(const RenderBox& child, const Length& flexBasis, UpdatePercentageHeightDescendants);
bool childMainSizeIsDefinite(const RenderBox&, const Length& flexBasis);
bool childCrossSizeIsDefinite(const RenderBox&, const Length& flexBasis);
bool needToStretchChildLogicalHeight(const RenderBox& child) const;
bool childHasIntrinsicMainAxisSize(const RenderBox& child);
Overflow mainAxisOverflowForChild(const RenderBox& child) const;
Overflow crossAxisOverflowForChild(const RenderBox& child) const;
void cacheChildMainSize(const RenderBox& child);
bool useChildOverridingCrossSizeForPercentageResolution(const RenderBox&);
bool useChildOverridingMainSizeForPercentageResolution(const RenderBox&);
void layoutFlexItems(bool relayoutChildren);
LayoutUnit autoMarginOffsetInMainAxis(const Vector<FlexItem>&, LayoutUnit& availableFreeSpace);
void updateAutoMarginsInMainAxis(RenderBox& child, LayoutUnit autoMarginOffset);
void initializeMarginTrimState();
// Start margin parallel with the cross axis
bool shouldTrimMainAxisMarginStart() const;
// End margin parallel with the cross axis
bool shouldTrimMainAxisMarginEnd() const;
// Margins parallel with the main axis
bool shouldTrimCrossAxisMarginStart() const;
bool shouldTrimCrossAxisMarginEnd() const;
void trimMainAxisMarginStart(const FlexItem&);
void trimMainAxisMarginEnd(const FlexItem&);
void trimCrossAxisMarginStart(const FlexItem&);
void trimCrossAxisMarginEnd(const FlexItem&);
bool isChildEligibleForMarginTrim(MarginTrimType, const RenderBox&) const final;
bool hasAutoMarginsInCrossAxis(const RenderBox& child) const;
bool updateAutoMarginsInCrossAxis(RenderBox& child, LayoutUnit availableAlignmentSpace);
void repositionLogicalHeightDependentFlexItems(Vector<LineState>&, LayoutUnit gapBetweenLines);
LayoutUnit availableAlignmentSpaceForChild(LayoutUnit lineCrossAxisExtent, const RenderBox& child);
LayoutUnit marginBoxAscentForChild(const RenderBox& child);
LayoutUnit computeChildMarginValue(Length margin);
void prepareOrderIteratorAndMargins();
std::pair<LayoutUnit, LayoutUnit> computeFlexItemMinMaxSizes(RenderBox& child);
LayoutUnit adjustChildSizeForAspectRatioCrossAxisMinAndMax(const RenderBox& child, LayoutUnit childSize);
FlexItem constructFlexItem(RenderBox&, bool relayoutChildren);
void freezeInflexibleItems(FlexSign, Vector<FlexItem>& children, LayoutUnit& remainingFreeSpace, double& totalFlexGrow, double& totalFlexShrink, double& totalWeightedFlexShrink);
bool resolveFlexibleLengths(FlexSign, Vector<FlexItem>&, LayoutUnit initialFreeSpace, LayoutUnit& remainingFreeSpace, double& totalFlexGrow, double& totalFlexShrink, double& totalWeightedFlexShrink);
void freezeViolations(Vector<FlexItem*>&, LayoutUnit& availableFreeSpace, double& totalFlexGrow, double& totalFlexShrink, double& totalWeightedFlexShrink);
void resetAutoMarginsAndLogicalTopInCrossAxis(RenderBox& child);
void setOverridingMainSizeForChild(RenderBox&, LayoutUnit);
void prepareChildForPositionedLayout(RenderBox& child);
void layoutAndPlaceChildren(LayoutUnit& crossAxisOffset, Vector<FlexItem>&, LayoutUnit availableFreeSpace, bool relayoutChildren, Vector<LineState>&, LayoutUnit gapBetweenItems);
void layoutColumnReverse(const Vector<FlexItem>&, LayoutUnit crossAxisOffset, LayoutUnit availableFreeSpace, LayoutUnit gapBetweenItems);
void alignFlexLines(Vector<LineState>&, LayoutUnit gapBetweenLines);
void alignChildren(Vector<LineState>&);
void applyStretchAlignmentToChild(RenderBox& child, LayoutUnit lineCrossAxisExtent);
void performBaselineAlignment(LineState&);
void flipForRightToLeftColumn(const Vector<LineState>& linesState);
void flipForWrapReverse(const Vector<LineState>&, LayoutUnit crossAxisStartEdge);
void appendChildFrameRects(ChildFrameRects&);
void repaintChildrenDuringLayoutIfMoved(const ChildFrameRects&);
bool childHasPercentHeightDescendants(const RenderBox&) const;
void resetHasDefiniteHeight() { m_hasDefiniteHeight = SizeDefiniteness::Unknown; }
void layoutUsingFlexFormattingContext();
// This is used to cache the preferred size for orthogonal flow children so we
// don't have to relayout to get it
HashMap<const RenderBox*, LayoutUnit> m_intrinsicSizeAlongMainAxis;
// This is used to cache the intrinsic size on the cross axis to avoid
// relayouts when stretching.
HashMap<const RenderBox*, LayoutUnit> m_intrinsicContentLogicalHeights;
// This set is used to keep track of which children we laid out in this
// current layout iteration. We need it because the ones in this set may
// need an additional layout pass for correct stretch alignment handling, as
// the first layout likely did not use the correct value for percentage
// sizing of children.
HashSet<const RenderBox*> m_relaidOutChildren;
mutable OrderIterator m_orderIterator { *this };
std::optional<size_t> m_numberOfInFlowChildrenOnFirstLine { };
std::optional<size_t> m_numberOfInFlowChildrenOnLastLine { };
struct MarginTrimItems {
HashSet<const RenderBox*> m_itemsAtFlexLineStart;
HashSet<const RenderBox*> m_itemsAtFlexLineEnd;
HashSet<const RenderBox*> m_itemsOnFirstFlexLine;
HashSet<const RenderBox*> m_itemsOnLastFlexLine;
} m_marginTrimItems;
// This is SizeIsUnknown outside of layoutBlock()
SizeDefiniteness m_hasDefiniteHeight { SizeDefiniteness::Unknown };
bool m_inLayout { false };
bool m_shouldResetChildLogicalHeightBeforeLayout { false };
bool m_isComputingFlexBaseSizes { false };
std::unique_ptr<LayoutIntegration::FlexLayout> m_modernFlexLayout;
};
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_RENDER_OBJECT(RenderFlexibleBox, isFlexibleBox())
|