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 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsTableRowFrame_h__
#define nsTableRowFrame_h__
#include "mozilla/Attributes.h"
#include "nscore.h"
#include "nsContainerFrame.h"
#include "nsTableRowGroupFrame.h"
#include "mozilla/WritingModes.h"
class nsTableCellFrame;
namespace mozilla {
class PresShell;
struct TableCellReflowInput;
// Yes if table-cells should use 'vertical-align:top' in
// nsTableCellFrame::BlockDirAlignChild(). This is a hack to workaround our
// current table row group fragmentation to avoid data loss.
enum class ForceAlignTopForTableCell : uint8_t { No, Yes };
} // namespace mozilla
/**
* nsTableRowFrame is the frame that maps table rows
* (HTML tag TR). This class cannot be reused
* outside of an nsTableRowGroupFrame. It assumes that its parent is an
* nsTableRowGroupFrame, and its children are nsTableCellFrames.
*
* @see nsTableFrame
* @see nsTableRowGroupFrame
* @see nsTableCellFrame
*/
class nsTableRowFrame : public nsContainerFrame {
using TableCellReflowInput = mozilla::TableCellReflowInput;
public:
NS_DECL_QUERYFRAME
NS_DECL_FRAMEARENA_HELPERS(nsTableRowFrame)
virtual ~nsTableRowFrame();
void Init(nsIContent* aContent, nsContainerFrame* aParent,
nsIFrame* aPrevInFlow) override;
void Destroy(DestroyContext&) override;
void DidSetComputedStyle(ComputedStyle* aOldComputedStyle) override;
void AppendFrames(ChildListID aListID, nsFrameList&& aFrameList) override;
void InsertFrames(ChildListID aListID, nsIFrame* aPrevFrame,
const nsLineList::iterator* aPrevFrameLine,
nsFrameList&& aFrameList) override;
void RemoveFrame(DestroyContext&, ChildListID, nsIFrame*) override;
/** instantiate a new instance of nsTableRowFrame.
* @param aPresShell the pres shell for this frame
*
* @return the frame that was created
*/
friend nsTableRowFrame* NS_NewTableRowFrame(mozilla::PresShell* aPresShell,
ComputedStyle* aStyle);
nsTableRowGroupFrame* GetTableRowGroupFrame() const {
nsIFrame* parent = GetParent();
MOZ_ASSERT(parent && parent->IsTableRowGroupFrame());
return static_cast<nsTableRowGroupFrame*>(parent);
}
nsTableFrame* GetTableFrame() const {
return GetTableRowGroupFrame()->GetTableFrame();
}
nsMargin GetUsedMargin() const override;
nsMargin GetUsedBorder() const override;
nsMargin GetUsedPadding() const override;
void BuildDisplayList(nsDisplayListBuilder* aBuilder,
const nsDisplayListSet& aLists) override;
void PaintCellBackgroundsForFrame(nsIFrame* aFrame,
nsDisplayListBuilder* aBuilder,
const nsDisplayListSet& aLists,
const nsPoint& aOffset = nsPoint());
// Implemented in nsTableCellFrame.h, because it needs to know about the
// nsTableCellFrame class, but we can't include nsTableCellFrame.h here.
inline nsTableCellFrame* GetFirstCell() const;
/** calls Reflow for all of its child cells.
*
* Cells with rowspan=1 are all set to the same height and stacked
* horizontally.
*
* Cells are not split unless absolutely necessary.
*
* Cells are resized in nsTableFrame::BalanceColumnWidths and
* nsTableFrame::ShrinkWrapChildren
*
* @param aDesiredSize width set to width of the sum of the cells,
* height set to height of cells with rowspan=1.
*
* @see nsIFrame::Reflow
* @see nsTableFrame::BalanceColumnWidths
* @see nsTableFrame::ShrinkWrapChildren
*/
void Reflow(nsPresContext* aPresContext, ReflowOutput& aDesiredSize,
const ReflowInput& aReflowInput,
nsReflowStatus& aStatus) override;
void DidResize(mozilla::ForceAlignTopForTableCell aForceAlignTop =
mozilla::ForceAlignTopForTableCell::No);
#ifdef DEBUG_FRAME_DUMP
nsresult GetFrameName(nsAString& aResult) const override;
#endif
void UpdateBSize(nscoord aBSize, nsTableFrame* aTableFrame,
nsTableCellFrame* aCellFrame);
void ResetBSize();
// calculate the bsize, considering content bsize of the
// cells and the style bsize of the row and cells, excluding pct bsizes
nscoord CalcBSize(const ReflowInput& aReflowInput);
// Support for cells with 'vertical-align: baseline'.
/**
* returns the max-ascent amongst all the cells that have
* 'vertical-align: baseline', *including* cells with rowspans.
* returns 0 if we don't have any cell with 'vertical-align: baseline'
*/
nscoord GetMaxCellAscent() const;
/* return the row ascent
*/
Maybe<nscoord> GetRowBaseline(mozilla::WritingMode aWM);
/** returns the ordinal position of this row in its table */
virtual int32_t GetRowIndex() const;
/** set this row's starting row index */
void SetRowIndex(int aRowIndex);
// See nsTableFrame.h
int32_t GetAdjustmentForStoredIndex(int32_t aStoredIndex) const;
// See nsTableFrame.h
void AddDeletedRowIndex();
/**
* This function is called by the row group frame's SplitRowGroup() code when
* pushing a row frame that has cell frames that span into it. The cell frame
* should be reflowed with the specified available block-size.
*/
nscoord ReflowCellFrame(nsPresContext* aPresContext,
const ReflowInput& aReflowInput, bool aIsTopOfPage,
nsTableCellFrame* aCellFrame, nscoord aAvailableBSize,
nsReflowStatus& aStatus);
/**
* Collapse the row if required, apply col and colgroup visibility: collapse
* info to the cells in the row.
* @return the amount to shift bstart-wards all following rows
* @param aRowOffset - shift the row bstart-wards by this amount
* @param aISize - new isize of the row
* @param aCollapseGroup - parent rowgroup is collapsed so this row needs
* to be collapsed
* @param aDidCollapse - the row has been collapsed
*/
nscoord CollapseRowIfNecessary(nscoord aRowOffset, nscoord aISize,
bool aCollapseGroup, bool& aDidCollapse);
/**
* Insert a cell frame after the last cell frame that has a col index
* that is less than aColIndex. If no such cell frame is found the
* frame to insert is prepended to the child list.
* @param aFrame the cell frame to insert
* @param aColIndex the col index
*/
void InsertCellFrame(nsTableCellFrame* aFrame, int32_t aColIndex);
/**
* Calculate the cell frame's actual block-size given its desired block-size
* (the border-box block-size in the last reflow). This method takes into
* account the specified bsize (in the style).
*
* @return the specified block-size if it is larger than the desired
* block-size. Otherwise, the desired block-size.
*/
nscoord CalcCellActualBSize(nsTableCellFrame* aCellFrame,
const nscoord& aDesiredBSize,
mozilla::WritingMode aWM);
bool IsFirstInserted() const;
void SetFirstInserted(bool aValue);
nscoord GetContentBSize() const;
void SetContentBSize(nscoord aTwipValue);
bool HasStyleBSize() const;
bool HasFixedBSize() const;
void SetHasFixedBSize(bool aValue);
bool HasPctBSize() const;
void SetHasPctBSize(bool aValue);
nscoord GetFixedBSize() const;
void SetFixedBSize(nscoord aValue);
float GetPctBSize() const;
void SetPctBSize(float aPctValue, bool aForce = false);
nscoord GetInitialBSize(nscoord aBasis = 0) const;
nsTableRowFrame* GetPrevRow() const;
nsTableRowFrame* GetNextRow() const;
bool HasUnpaginatedBSize() const {
return HasAnyStateBits(NS_TABLE_ROW_HAS_UNPAGINATED_BSIZE);
}
nscoord GetUnpaginatedBSize() const;
void SetUnpaginatedBSize(nscoord aValue);
nscoord GetBStartBCBorderWidth() const { return mBStartBorderWidth; }
nscoord GetBEndBCBorderWidth() const { return mBEndBorderWidth; }
void SetBStartBCBorderWidth(nscoord aWidth) { mBStartBorderWidth = aWidth; }
void SetBEndBCBorderWidth(nscoord aWidth) { mBEndBorderWidth = aWidth; }
mozilla::LogicalMargin GetBCBorderWidth(mozilla::WritingMode aWM);
void InvalidateFrame(uint32_t aDisplayItemKey = 0,
bool aRebuildDisplayItems = true) override;
void InvalidateFrameWithRect(const nsRect& aRect,
uint32_t aDisplayItemKey = 0,
bool aRebuildDisplayItems = true) override;
void InvalidateFrameForRemoval() override { InvalidateFrameSubtree(); }
#ifdef ACCESSIBILITY
mozilla::a11y::AccType AccessibleType() override;
#endif
protected:
/** protected constructor.
* @see NewFrame
*/
explicit nsTableRowFrame(ComputedStyle* aStyle, nsPresContext* aPresContext,
ClassID aID = kClassID);
void InitChildReflowInput(nsPresContext& aPresContext,
const mozilla::LogicalSize& aAvailSize,
bool aBorderCollapse,
TableCellReflowInput& aReflowInput);
LogicalSides GetLogicalSkipSides() const override;
// row-specific methods
nscoord ComputeCellXOffset(const ReflowInput& aState, nsIFrame* aKidFrame,
const nsMargin& aKidMargin) const;
/**
* Called for incremental/dirty and resize reflows. If aDirtyOnly is true then
* only reflow dirty cells.
*/
void ReflowChildren(nsPresContext* aPresContext, ReflowOutput& aDesiredSize,
const ReflowInput& aReflowInput,
nsTableFrame& aTableFrame, nsReflowStatus& aStatus);
private:
struct RowBits {
unsigned mRowIndex : 29;
unsigned mHasFixedBSize : 1; // set if the dominating style bsize on the
// row or any cell is pixel based
unsigned mHasPctBSize : 1; // set if the dominating style bsize on the row
// or any cell is pct based
unsigned mFirstInserted : 1; // if true, then it was the bstart-most newly
// inserted row
} mBits;
// the desired bsize based on the content of the tallest cell in the row
nscoord mContentBSize = 0;
// the bsize based on a style percentage bsize on either the row or any cell
// if mHasPctBSize is set
nscoord mStylePctBSize = 0;
// the bsize based on a style pixel bsize on the row or any
// cell if mHasFixedBSize is set
nscoord mStyleFixedBSize = 0;
// max-ascent and max-descent amongst all cells that have
// 'vertical-align: baseline'
nscoord mMaxCellAscent = 0; // does include cells with rowspan > 1
nscoord mMaxCellDescent = 0; // does *not* include cells with rowspan > 1
// border widths in the collapsing border model of the *inner*
// half of the border only
nscoord mBStartBorderWidth = 0;
nscoord mBEndBorderWidth = 0;
nscoord mIEndContBorderWidth = 0;
nscoord mBStartContBorderWidth = 0;
nscoord mIStartContBorderWidth = 0;
/**
* Sets the NS_ROW_HAS_CELL_WITH_STYLE_BSIZE bit to indicate whether
* this row has any cells that have non-auto-bsize. (Row-spanning
* cells are ignored.)
*/
void InitHasCellWithStyleBSize(nsTableFrame* aTableFrame);
};
inline int32_t nsTableRowFrame::GetAdjustmentForStoredIndex(
int32_t aStoredIndex) const {
nsTableRowGroupFrame* parentFrame = GetTableRowGroupFrame();
return parentFrame->GetAdjustmentForStoredIndex(aStoredIndex);
}
inline void nsTableRowFrame::AddDeletedRowIndex() {
nsTableRowGroupFrame* parentFrame = GetTableRowGroupFrame();
parentFrame->AddDeletedRowIndex(int32_t(mBits.mRowIndex));
}
inline int32_t nsTableRowFrame::GetRowIndex() const {
int32_t storedRowIndex = int32_t(mBits.mRowIndex);
int32_t rowIndexAdjustment = GetAdjustmentForStoredIndex(storedRowIndex);
return (storedRowIndex - rowIndexAdjustment);
}
inline void nsTableRowFrame::SetRowIndex(int aRowIndex) {
// Note: Setting the index of a row (as in the case of adding new rows) should
// be preceded by a call to nsTableFrame::RecalculateRowIndices()
// so as to correctly clear mDeletedRowIndexRanges.
MOZ_ASSERT(
GetTableRowGroupFrame()->GetTableFrame()->IsDeletedRowIndexRangesEmpty(),
"mDeletedRowIndexRanges should be empty here!");
mBits.mRowIndex = aRowIndex;
}
inline bool nsTableRowFrame::IsFirstInserted() const {
return bool(mBits.mFirstInserted);
}
inline void nsTableRowFrame::SetFirstInserted(bool aValue) {
mBits.mFirstInserted = aValue;
}
inline bool nsTableRowFrame::HasStyleBSize() const {
return (bool)mBits.mHasFixedBSize || (bool)mBits.mHasPctBSize;
}
inline bool nsTableRowFrame::HasFixedBSize() const {
return (bool)mBits.mHasFixedBSize;
}
inline void nsTableRowFrame::SetHasFixedBSize(bool aValue) {
mBits.mHasFixedBSize = aValue;
}
inline bool nsTableRowFrame::HasPctBSize() const {
return (bool)mBits.mHasPctBSize;
}
inline void nsTableRowFrame::SetHasPctBSize(bool aValue) {
mBits.mHasPctBSize = aValue;
}
inline nscoord nsTableRowFrame::GetContentBSize() const {
return mContentBSize;
}
inline void nsTableRowFrame::SetContentBSize(nscoord aValue) {
mContentBSize = aValue;
}
inline nscoord nsTableRowFrame::GetFixedBSize() const {
if (mBits.mHasFixedBSize) {
return mStyleFixedBSize;
}
return 0;
}
inline float nsTableRowFrame::GetPctBSize() const {
if (mBits.mHasPctBSize) {
return (float)mStylePctBSize / 100.0f;
}
return 0.0f;
}
inline mozilla::LogicalMargin nsTableRowFrame::GetBCBorderWidth(
mozilla::WritingMode aWM) {
return mozilla::LogicalMargin(aWM, mBStartBorderWidth, 0, mBEndBorderWidth,
0);
}
#endif
|