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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
/*
* Copyright (C) 1997 Martin Jones (mjones@kde.org)
* (C) 1997 Torben Weis (weis@kde.org)
* (C) 1998 Waldo Bastian (bastian@kde.org)
* (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* Copyright (C) 2003-2025 Apple Inc. All rights reserved.
* Copyright (C) 2016 Google Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#pragma once
#include "RenderTable.h"
#include <wtf/Vector.h>
namespace WebCore {
class RenderTableCell;
class RenderTableRow;
enum CollapsedBorderSide {
CBSBefore,
CBSAfter,
CBSStart,
CBSEnd
};
// Helper class for paintObject.
struct CellSpan {
public:
explicit CellSpan(unsigned start, unsigned end)
: start(start)
, end(end)
{
}
unsigned start;
unsigned end;
};
class RenderTableSection final : public RenderBox {
WTF_MAKE_TZONE_OR_ISO_ALLOCATED(RenderTableSection);
WTF_OVERRIDE_DELETE_FOR_CHECKED_PTR(RenderTableSection);
public:
RenderTableSection(Element&, RenderStyle&&);
RenderTableSection(Document&, RenderStyle&&);
virtual ~RenderTableSection();
RenderTableRow* firstRow() const;
RenderTableRow* lastRow() const;
std::optional<LayoutUnit> firstLineBaseline() const override;
std::optional<LayoutUnit> lastLineBaseline() const override;
std::optional<LayoutUnit> baselineFromCellContentEdges(ItemPosition alignment) const;
void addCell(RenderTableCell*, RenderTableRow* row);
LayoutUnit calcRowLogicalHeight();
void layoutRows();
void computeOverflowFromCells();
RenderTable* table() const { return downcast<RenderTable>(parent()); }
struct CellStruct {
Vector<RenderTableCell*, 1> cells;
bool inColSpan { false }; // true for columns after the first in a colspan
RenderTableCell* primaryCell() { return hasCells() ? cells[cells.size() - 1] : 0; }
const RenderTableCell* primaryCell() const { return hasCells() ? cells[cells.size() - 1] : 0; }
bool hasCells() const { return cells.size() > 0; }
};
typedef Vector<CellStruct> Row;
struct RowStruct {
Row row;
RenderTableRow* rowRenderer { nullptr };
LayoutUnit baseline;
Length logicalHeight;
};
inline const BorderValue& borderAdjoiningTableStart() const;
inline const BorderValue& borderAdjoiningTableEnd() const;
const BorderValue& borderAdjoiningStartCell(const RenderTableCell&) const;
const BorderValue& borderAdjoiningEndCell(const RenderTableCell&) const;
CellStruct& cellAt(unsigned row, unsigned col);
const CellStruct& cellAt(unsigned row, unsigned col) const;
RenderTableCell* primaryCellAt(unsigned row, unsigned col);
RenderTableRow* rowRendererAt(unsigned row) const;
void appendColumn(unsigned pos);
void splitColumn(unsigned pos, unsigned first);
LayoutUnit calcOuterBorderBefore() const;
LayoutUnit calcOuterBorderAfter() const;
LayoutUnit calcOuterBorderStart() const;
LayoutUnit calcOuterBorderEnd() const;
void recalcOuterBorder();
LayoutUnit outerBorderBefore() const { return m_outerBorderBefore; }
LayoutUnit outerBorderAfter() const { return m_outerBorderAfter; }
LayoutUnit outerBorderStart() const { return m_outerBorderStart; }
LayoutUnit outerBorderEnd() const { return m_outerBorderEnd; }
inline LayoutUnit outerBorderLeft(const WritingMode) const;
inline LayoutUnit outerBorderRight(const WritingMode) const;
inline LayoutUnit outerBorderTop(const WritingMode) const;
inline LayoutUnit outerBorderBottom(const WritingMode) const;
unsigned numRows() const;
unsigned numColumns() const;
void recalcCells();
void recalcCellsIfNeeded();
void removeRedundantColumns();
bool needsCellRecalc() const { return m_needsCellRecalc; }
void setNeedsCellRecalc();
LayoutUnit rowBaseline(unsigned row);
void rowLogicalHeightChanged(unsigned rowIndex);
void clearCachedCollapsedBorders();
void removeCachedCollapsedBorders(const RenderTableCell&);
void setCachedCollapsedBorder(const RenderTableCell&, CollapsedBorderSide, CollapsedBorderValue);
CollapsedBorderValue cachedCollapsedBorder(const RenderTableCell&, CollapsedBorderSide);
// distributeExtraLogicalHeightToRows methods return the *consumed* extra logical height.
// FIXME: We may want to introduce a structure holding the in-flux layout information.
LayoutUnit distributeExtraLogicalHeightToRows(LayoutUnit extraLogicalHeight);
static RenderPtr<RenderTableSection> createAnonymousWithParentRenderer(const RenderTable&);
RenderPtr<RenderBox> createAnonymousBoxWithSameTypeAs(const RenderBox&) const override;
void paint(PaintInfo&, const LayoutPoint&) override;
void willInsertTableRow(RenderTableRow& child, RenderObject* beforeChild);
// Whether a row has opaque background depends on many factors, e.g. border spacing, border collapsing, missing cells, etc.
// For simplicity, just conservatively assume all table rows are not opaque.
bool foregroundIsKnownToBeOpaqueInRect(const LayoutRect&, unsigned) const override { return false; }
bool backgroundIsKnownToBeOpaqueInRect(const LayoutRect&) const override { return false; }
private:
void styleDidChange(StyleDifference, const RenderStyle* oldStyle) override;
static RenderPtr<RenderTableSection> createTableSectionWithStyle(Document&, const RenderStyle&);
enum ShouldIncludeAllIntersectingCells {
IncludeAllIntersectingCells,
DoNotIncludeAllIntersectingCells
};
ASCIILiteral renderName() const override { return (isAnonymous() || isPseudoElement()) ? "RenderTableSection (anonymous)"_s : "RenderTableSection"_s; }
bool canHaveChildren() const override { return true; }
void willBeRemovedFromTree() override;
void layout() override;
void paintCell(RenderTableCell*, PaintInfo&, const LayoutPoint&);
void paintObject(PaintInfo&, const LayoutPoint&) override;
void paintRowGroupBorder(const PaintInfo&, bool antialias, LayoutRect, BoxSide, CSSPropertyID borderColor, BorderStyle, BorderStyle tableBorderStyle);
void paintRowGroupBorderIfRequired(const PaintInfo&, const LayoutPoint& paintOffset, unsigned row, unsigned col, BoxSide, RenderTableCell* = 0);
LayoutUnit offsetLeftForRowGroupBorder(RenderTableCell*, const LayoutRect& rowGroupRect, unsigned row);
LayoutUnit offsetTopForRowGroupBorder(RenderTableCell*, BoxSide borderSide, unsigned row);
LayoutUnit verticalRowGroupBorderHeight(RenderTableCell*, const LayoutRect& rowGroupRect, unsigned row);
LayoutUnit horizontalRowGroupBorderWidth(RenderTableCell*, const LayoutRect& rowGroupRect, unsigned row, unsigned column);
void computeIntrinsicLogicalWidths(LayoutUnit&, LayoutUnit&) const override { }
void imageChanged(WrappedImagePtr, const IntRect* = 0) override;
bool nodeAtPoint(const HitTestRequest&, HitTestResult&, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction) override;
void ensureRows(unsigned);
void relayoutCellIfFlexed(RenderTableCell&, int rowIndex, int rowHeight);
void distributeExtraLogicalHeightToPercentRows(LayoutUnit& extraLogicalHeight, int totalPercent);
void distributeExtraLogicalHeightToAutoRows(LayoutUnit& extraLogicalHeight, unsigned autoRowsCount);
void distributeRemainingExtraLogicalHeight(LayoutUnit& extraLogicalHeight);
bool hasOverflowingCell() const { return m_overflowingCells.computeSize() || m_forceSlowPaintPathWithOverflowingCell; }
void computeOverflowFromCells(unsigned totalRows, unsigned nEffCols);
CellSpan fullTableRowSpan() const;
CellSpan fullTableColumnSpan() const { return CellSpan(0, table()->columns().size()); }
// Flip the rect so it aligns with the coordinates used by the rowPos and columnPos vectors.
LayoutRect logicalRectForWritingModeAndDirection(const LayoutRect&) const;
CellSpan dirtiedRows(const LayoutRect& repaintRect) const;
CellSpan dirtiedColumns(const LayoutRect& repaintRect) const;
// These two functions take a rectangle as input that has been flipped by logicalRectForWritingModeAndDirection.
// The returned span of rows or columns is end-exclusive, and empty if start==end.
// The IncludeAllIntersectingCells argument is used to determine which cells to include when
// an edge of the flippedRect lies exactly on a cell boundary. Using IncludeAllIntersectingCells
// will return both cells, and using DoNotIncludeAllIntersectingCells will return only the cell
// that hittesting should return.
CellSpan spannedRows(const LayoutRect& flippedRect, ShouldIncludeAllIntersectingCells) const;
CellSpan spannedColumns(const LayoutRect& flippedRect, ShouldIncludeAllIntersectingCells) const;
void setLogicalPositionForCell(RenderTableCell*, unsigned effectiveColumn) const;
void firstChild() const = delete;
void lastChild() const = delete;
Vector<RowStruct> m_grid;
Vector<LayoutUnit> m_rowPos;
// the current insertion position
unsigned m_cCol { 0 };
unsigned m_cRow { 0 };
LayoutUnit m_outerBorderStart;
LayoutUnit m_outerBorderEnd;
LayoutUnit m_outerBorderBefore;
LayoutUnit m_outerBorderAfter;
// This HashSet holds the overflowing cells for faster painting.
// If we have more than gMaxAllowedOverflowingCellRatio * total cells, it will be empty
// and m_forceSlowPaintPathWithOverflowingCell will be set to save memory.
SingleThreadWeakHashSet<RenderTableCell> m_overflowingCells;
// This map holds the collapsed border values for cells with collapsed borders.
// It is held at RenderTableSection level to spare memory consumption by table cells.
UncheckedKeyHashMap<std::pair<const RenderTableCell*, int>, CollapsedBorderValue > m_cellsCollapsedBorders;
bool m_forceSlowPaintPathWithOverflowingCell { false };
bool m_hasMultipleCellLevels { false };
bool m_needsCellRecalc { false };
};
inline RenderTableSection::CellStruct& RenderTableSection::cellAt(unsigned row, unsigned col)
{
recalcCellsIfNeeded();
return m_grid[row].row[col];
}
inline const RenderTableSection::CellStruct& RenderTableSection::cellAt(unsigned row, unsigned col) const
{
ASSERT(!m_needsCellRecalc);
return m_grid[row].row[col];
}
inline RenderTableCell* RenderTableSection::primaryCellAt(unsigned row, unsigned col)
{
recalcCellsIfNeeded();
CellStruct& c = m_grid[row].row[col];
return c.primaryCell();
}
inline RenderTableRow* RenderTableSection::rowRendererAt(unsigned row) const
{
ASSERT(!m_needsCellRecalc);
return m_grid[row].rowRenderer;
}
inline unsigned RenderTableSection::numRows() const
{
ASSERT(!m_needsCellRecalc);
return m_grid.size();
}
inline void RenderTableSection::recalcCellsIfNeeded()
{
if (m_needsCellRecalc)
recalcCells();
}
inline LayoutUnit RenderTableSection::rowBaseline(unsigned row)
{
recalcCellsIfNeeded();
return m_grid[row].baseline;
}
inline CellSpan RenderTableSection::fullTableRowSpan() const
{
ASSERT(!m_needsCellRecalc);
return CellSpan(0, m_grid.size());
}
inline RenderPtr<RenderBox> RenderTableSection::createAnonymousBoxWithSameTypeAs(const RenderBox& renderer) const
{
return RenderTableSection::createTableSectionWithStyle(renderer.document(), renderer.style());
}
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_RENDER_OBJECT(RenderTableSection, isRenderTableSection())
|