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
|
/*
* Copyright (C) 2018 Apple 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:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS 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 APPLE INC. OR ITS 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 "LayoutUnits.h"
#include "RenderStyle.h"
#include "RenderStyleConstants.h"
#include <wtf/CheckedPtr.h>
#include <wtf/IsoMalloc.h>
namespace WebCore {
class Shape;
namespace Layout {
class ElementBox;
class BoxGeometry;
class InitialContainingBlock;
class LayoutState;
class TreeBuilder;
struct RubyAdjustments {
WTF_MAKE_STRUCT_FAST_ALLOCATED;
LayoutUnit annotationAbove;
LayoutUnit annotationBelow;
struct Overhang {
LayoutUnit start;
LayoutUnit end;
};
Overhang firstLineOverhang;
Overhang overhang;
};
class Box : public CanMakeCheckedPtr {
WTF_MAKE_ISO_ALLOCATED(Box);
public:
enum class NodeType : uint8_t {
Text,
GenericElement,
ReplacedElement,
DocumentElement,
Body,
TableWrapperBox, // The table generates a principal block container box called the table wrapper box that contains the table box and any caption boxes.
TableBox, // The table box is a block-level box that contains the table's internal table boxes.
Image,
IFrame,
LineBreak,
WordBreakOpportunity,
ListMarker,
};
enum class IsAnonymous : bool { No, Yes };
struct ElementAttributes {
NodeType nodeType;
IsAnonymous isAnonymous;
};
enum BaseTypeFlag : uint8_t {
InlineTextBoxFlag = 1 << 0,
ElementBoxFlag = 1 << 1,
InitialContainingBlockFlag = 1 << 2,
};
virtual ~Box();
bool establishesFormattingContext() const;
bool establishesBlockFormattingContext() const;
bool establishesInlineFormattingContext() const;
bool establishesTableFormattingContext() const;
bool establishesFlexFormattingContext() const;
bool establishesIndependentFormattingContext() const;
bool isInFlow() const { return !isFloatingOrOutOfFlowPositioned(); }
bool isPositioned() const { return isInFlowPositioned() || isOutOfFlowPositioned(); }
bool isInFlowPositioned() const { return isRelativelyPositioned() || isStickyPositioned(); }
bool isOutOfFlowPositioned() const { return isAbsolutelyPositioned(); }
bool isRelativelyPositioned() const;
bool isStickyPositioned() const;
bool isAbsolutelyPositioned() const;
bool isFixedPositioned() const;
bool isFloatingPositioned() const;
bool hasFloatClear() const;
bool isFloatAvoider() const;
bool isFloatingOrOutOfFlowPositioned() const { return isFloatingPositioned() || isOutOfFlowPositioned(); }
bool isContainingBlockForInFlow() const;
inline bool isContainingBlockForFixedPosition() const;
inline bool isContainingBlockForOutOfFlowPosition() const;
bool isAnonymous() const { return m_isAnonymous; }
// Block level elements generate block level boxes.
bool isBlockLevelBox() const;
// A block-level box that is also a block container.
bool isBlockBox() const;
// A block-level box is also a block container box unless it is a table box or the principal box of a replaced element.
bool isBlockContainer() const;
bool isInlineLevelBox() const;
bool isInlineBox() const;
bool isAtomicInlineLevelBox() const;
bool isInlineBlockBox() const;
bool isInlineTableBox() const;
bool isInitialContainingBlock() const { return baseTypeFlags().contains(InitialContainingBlockFlag); }
bool isLayoutContainmentBox() const;
bool isSizeContainmentBox() const;
bool isDocumentBox() const { return m_nodeType == NodeType::DocumentElement; }
bool isBodyBox() const { return m_nodeType == NodeType::Body; }
bool isTableWrapperBox() const { return m_nodeType == NodeType::TableWrapperBox; }
bool isTableBox() const { return m_nodeType == NodeType::TableBox; }
bool isTableCaption() const { return style().display() == DisplayType::TableCaption; }
bool isTableHeader() const { return style().display() == DisplayType::TableHeaderGroup; }
bool isTableBody() const { return style().display() == DisplayType::TableRowGroup; }
bool isTableFooter() const { return style().display() == DisplayType::TableFooterGroup; }
bool isTableRow() const { return style().display() == DisplayType::TableRow; }
bool isTableColumnGroup() const { return style().display() == DisplayType::TableColumnGroup; }
bool isTableColumn() const { return style().display() == DisplayType::TableColumn; }
bool isTableCell() const { return style().display() == DisplayType::TableCell; }
bool isInternalTableBox() const;
bool isFlexBox() const { return style().display() == DisplayType::Flex || style().display() == DisplayType::InlineFlex; }
bool isFlexItem() const;
bool isIFrame() const { return m_nodeType == NodeType::IFrame; }
bool isImage() const { return m_nodeType == NodeType::Image; }
bool isInternalRubyBox() const { return false; }
bool isLineBreakBox() const { return m_nodeType == NodeType::LineBreak || m_nodeType == NodeType::WordBreakOpportunity; }
bool isWordBreakOpportunity() const { return m_nodeType == NodeType::WordBreakOpportunity; }
bool isListMarkerBox() const { return m_nodeType == NodeType::ListMarker; }
bool isReplacedBox() const { return m_nodeType == NodeType::ReplacedElement || m_nodeType == NodeType::Image || m_nodeType == NodeType::ListMarker; }
bool isInlineIntegrationRoot() const { return m_isInlineIntegrationRoot; }
bool isFirstChildForIntegration() const { return m_isFirstChildForIntegration; }
const ElementBox& parent() const { return *m_parent; }
const Box* nextSibling() const { return m_nextSibling.get(); }
const Box* nextInFlowSibling() const;
const Box* nextInFlowOrFloatingSibling() const;
const Box* previousSibling() const { return m_previousSibling.get(); }
const Box* previousInFlowSibling() const;
const Box* previousInFlowOrFloatingSibling() const;
bool isDescendantOf(const ElementBox&) const;
// FIXME: This is currently needed for style updates.
Box* nextSibling() { return m_nextSibling.get(); }
bool isElementBox() const { return baseTypeFlags().contains(ElementBoxFlag); }
bool isInlineTextBox() const { return baseTypeFlags().contains(InlineTextBoxFlag); }
bool isPaddingApplicable() const;
bool isOverflowVisible() const;
void updateStyle(RenderStyle&& newStyle, std::unique_ptr<RenderStyle>&& newFirstLineStyle);
const RenderStyle& style() const { return m_style; }
const RenderStyle& firstLineStyle() const { return hasRareData() && rareData().firstLineStyle ? *rareData().firstLineStyle : m_style; }
// FIXME: Find a better place for random DOM things.
void setRowSpan(size_t);
size_t rowSpan() const;
void setColumnSpan(size_t);
size_t columnSpan() const;
void setColumnWidth(LayoutUnit);
std::optional<LayoutUnit> columnWidth() const;
void setIsInlineIntegrationRoot() { m_isInlineIntegrationRoot = true; }
void setIsFirstChildForIntegration(bool value) { m_isFirstChildForIntegration = value; }
const Shape* shape() const;
void setShape(RefPtr<const Shape>);
const RubyAdjustments* rubyAdjustments() const;
void setRubyAdjustments(std::unique_ptr<RubyAdjustments>);
bool canCacheForLayoutState(const LayoutState&) const;
BoxGeometry* cachedGeometryForLayoutState(const LayoutState&) const;
void setCachedGeometryForLayoutState(LayoutState&, std::unique_ptr<BoxGeometry>) const;
UniqueRef<Box> removeFromParent();
void incrementPtrCount() const { CanMakeCheckedPtr::incrementPtrCount(); }
void decrementPtrCount() const { CanMakeCheckedPtr::decrementPtrCount(); }
protected:
Box(ElementAttributes&&, RenderStyle&&, std::unique_ptr<RenderStyle>&& firstLineStyle, OptionSet<BaseTypeFlag>);
private:
friend class ElementBox;
class BoxRareData {
WTF_MAKE_FAST_ALLOCATED;
public:
BoxRareData() = default;
CellSpan tableCellSpan;
std::optional<LayoutUnit> columnWidth;
std::unique_ptr<RenderStyle> firstLineStyle;
RefPtr<const Shape> shape;
std::unique_ptr<RubyAdjustments> rubyAdjustments;
};
bool hasRareData() const { return m_hasRareData; }
void setHasRareData(bool hasRareData) { m_hasRareData = hasRareData; }
const BoxRareData& rareData() const;
BoxRareData& ensureRareData();
void removeRareData();
OptionSet<BaseTypeFlag> baseTypeFlags() const { return OptionSet<BaseTypeFlag>::fromRaw(m_baseTypeFlags); }
typedef HashMap<const Box*, std::unique_ptr<BoxRareData>> RareDataMap;
static RareDataMap& rareDataMap();
NodeType m_nodeType : 4;
bool m_isAnonymous : 1;
unsigned m_baseTypeFlags : 4; // OptionSet<BaseTypeFlag>
bool m_hasRareData : 1 { false };
bool m_isInlineIntegrationRoot : 1 { false };
bool m_isFirstChildForIntegration : 1 { false };
RenderStyle m_style;
CheckedPtr<ElementBox> m_parent;
std::unique_ptr<Box> m_nextSibling;
CheckedPtr<Box> m_previousSibling;
// First LayoutState gets a direct cache.
mutable WeakPtr<LayoutState> m_cachedLayoutState;
mutable std::unique_ptr<BoxGeometry> m_cachedGeometryForLayoutState;
};
inline bool Box::isContainingBlockForInFlow() const
{
return isBlockContainer() || establishesFormattingContext();
}
}
}
#define SPECIALIZE_TYPE_TRAITS_LAYOUT_BOX(ToValueTypeName, predicate) \
SPECIALIZE_TYPE_TRAITS_BEGIN(WebCore::Layout::ToValueTypeName) \
static bool isType(const WebCore::Layout::Box& box) { return box.predicate; } \
SPECIALIZE_TYPE_TRAITS_END()
|