2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
1998-04-14 00:24:54 +04:00
|
|
|
#ifndef nsTableRowGroupFrame_h__
|
|
|
|
#define nsTableRowGroupFrame_h__
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nscore.h"
|
2011-12-28 00:18:48 +04:00
|
|
|
#include "nsContainerFrame.h"
|
1998-04-23 21:29:07 +04:00
|
|
|
#include "nsIAtom.h"
|
2000-05-11 05:04:39 +04:00
|
|
|
#include "nsILineIterator.h"
|
2004-03-09 09:48:35 +03:00
|
|
|
#include "nsTablePainter.h"
|
2006-09-20 01:39:33 +04:00
|
|
|
#include "nsTArray.h"
|
2015-04-30 07:24:59 +03:00
|
|
|
#include "nsTableFrame.h"
|
2015-05-04 10:09:25 +03:00
|
|
|
#include "mozilla/WritingModes.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-10-14 20:32:45 +04:00
|
|
|
class nsTableRowFrame;
|
1999-06-23 07:02:21 +04:00
|
|
|
|
2001-03-13 09:38:59 +03:00
|
|
|
struct nsRowGroupReflowState {
|
1999-06-23 07:02:21 +04:00
|
|
|
const nsHTMLReflowState& reflowState; // Our reflow state
|
|
|
|
|
2001-03-13 09:38:59 +03:00
|
|
|
nsTableFrame* tableFrame;
|
|
|
|
|
1999-06-23 07:02:21 +04:00
|
|
|
// The available size (computed from the parent)
|
2015-06-20 23:00:26 +03:00
|
|
|
mozilla::LogicalSize availSize;
|
1999-06-23 07:02:21 +04:00
|
|
|
|
2015-06-20 23:00:26 +03:00
|
|
|
// Running block-offset
|
|
|
|
nscoord bCoord;
|
1999-06-23 07:02:21 +04:00
|
|
|
|
2001-03-13 09:38:59 +03:00
|
|
|
nsRowGroupReflowState(const nsHTMLReflowState& aReflowState,
|
|
|
|
nsTableFrame* aTableFrame)
|
2015-06-20 23:00:26 +03:00
|
|
|
: reflowState(aReflowState)
|
|
|
|
, tableFrame(aTableFrame)
|
|
|
|
, availSize(aReflowState.GetWritingMode(),
|
|
|
|
aReflowState.AvailableISize(),
|
|
|
|
aReflowState.AvailableBSize())
|
|
|
|
, bCoord(0)
|
1999-06-23 07:02:21 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-03-13 09:38:59 +03:00
|
|
|
~nsRowGroupReflowState() {}
|
1999-06-23 07:02:21 +04:00
|
|
|
};
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2006-09-20 01:39:33 +04:00
|
|
|
#define MIN_ROWS_NEEDING_CURSOR 20
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
/**
|
2015-04-17 21:42:05 +03:00
|
|
|
* nsTableRowGroupFrame is the frame that maps row groups
|
1998-04-15 01:45:28 +04:00
|
|
|
* (HTML tags THEAD, TFOOT, and TBODY). This class cannot be reused
|
2015-04-17 21:42:05 +03:00
|
|
|
* outside of an nsTableFrame. It assumes that its parent is an nsTableFrame, and
|
1998-04-15 01:45:28 +04:00
|
|
|
* its children are nsTableRowFrames.
|
2015-04-17 21:42:05 +03:00
|
|
|
*
|
1998-04-15 01:45:28 +04:00
|
|
|
* @see nsTableFrame
|
|
|
|
* @see nsTableRowFrame
|
1998-04-14 00:24:54 +04:00
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsTableRowGroupFrame final
|
2011-12-28 00:18:48 +04:00
|
|
|
: public nsContainerFrame
|
2008-10-30 22:17:59 +03:00
|
|
|
, public nsILineIterator
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsTableRowGroupFrame)
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
1998-04-15 01:45:28 +04:00
|
|
|
|
2005-11-04 05:38:33 +03:00
|
|
|
/** instantiate a new instance of nsTableRowFrame.
|
|
|
|
* @param aPresShell the pres shell for this frame
|
1998-04-15 01:45:28 +04:00
|
|
|
*
|
2005-11-04 05:38:33 +03:00
|
|
|
* @return the frame that was created
|
1998-04-15 01:45:28 +04:00
|
|
|
*/
|
2014-05-25 02:20:40 +04:00
|
|
|
friend nsTableRowGroupFrame* NS_NewTableRowGroupFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
2001-01-25 18:55:51 +03:00
|
|
|
virtual ~nsTableRowGroupFrame();
|
2014-03-11 02:41:17 +04:00
|
|
|
|
2015-04-30 07:24:59 +03:00
|
|
|
nsTableFrame* GetTableFrame() const
|
|
|
|
{
|
|
|
|
nsIFrame* parent = GetParent();
|
|
|
|
MOZ_ASSERT(parent && parent->GetType() == nsGkAtoms::tableFrame);
|
|
|
|
return static_cast<nsTableFrame*>(parent);
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
2014-03-11 02:41:17 +04:00
|
|
|
|
2008-10-26 13:11:34 +03:00
|
|
|
/** @see nsIFrame::DidSetStyleContext */
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext) override;
|
2015-04-17 21:42:05 +03:00
|
|
|
|
2014-05-28 23:36:58 +04:00
|
|
|
virtual void AppendFrames(ChildListID aListID,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsFrameList& aFrameList) override;
|
2014-05-28 23:36:58 +04:00
|
|
|
virtual void InsertFrames(ChildListID aListID,
|
2014-05-28 23:36:58 +04:00
|
|
|
nsIFrame* aPrevFrame,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsFrameList& aFrameList) override;
|
2014-05-28 23:36:58 +04:00
|
|
|
virtual void RemoveFrame(ChildListID aListID,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aOldFrame) override;
|
1999-08-02 02:01:37 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsMargin GetUsedMargin() const override;
|
|
|
|
virtual nsMargin GetUsedBorder() const override;
|
|
|
|
virtual nsMargin GetUsedPadding() const override;
|
2006-12-14 02:04:57 +03:00
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsDisplayListSet& aLists) override;
|
1998-11-07 03:36:37 +03:00
|
|
|
|
1998-11-18 08:25:26 +03:00
|
|
|
/** calls Reflow for all of its child rows.
|
2015-06-20 23:00:26 +03:00
|
|
|
* Rows are all set to the same isize and stacked in the block direction.
|
1998-04-15 01:45:28 +04:00
|
|
|
* <P> rows are not split unless absolutely necessary.
|
|
|
|
*
|
2015-06-20 23:00:26 +03:00
|
|
|
* @param aDesiredSize isize set to isize of rows, bsize set to
|
|
|
|
* sum of bsize of rows that fit in AvailableBSize.
|
1998-04-15 01:45:28 +04:00
|
|
|
*
|
1998-05-25 21:31:49 +04:00
|
|
|
* @see nsIFrame::Reflow
|
1998-04-15 01:45:28 +04:00
|
|
|
*/
|
2014-05-13 04:47:52 +04:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsReflowStatus& aStatus) override;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool UpdateOverflow() override;
|
2013-05-30 08:44:37 +04:00
|
|
|
|
1999-02-24 08:54:31 +03:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2007-01-30 03:06:41 +03:00
|
|
|
* @see nsGkAtoms::tableRowGroupFrame
|
1999-02-24 08:54:31 +03:00
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIAtom* GetType() const override;
|
1999-02-24 08:54:31 +03:00
|
|
|
|
2001-11-05 03:15:51 +03:00
|
|
|
nsTableRowFrame* GetFirstRow();
|
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override;
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|
1999-08-31 07:09:40 +04:00
|
|
|
|
2015-04-30 07:24:59 +03:00
|
|
|
virtual mozilla::WritingMode GetWritingMode() const override
|
|
|
|
{ return GetTableFrame()->GetWritingMode(); }
|
|
|
|
|
2001-03-13 09:38:59 +03:00
|
|
|
/** return the number of child rows (not necessarily == number of child frames) */
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t GetRowCount();
|
1998-10-20 21:45:07 +04:00
|
|
|
|
1998-12-23 18:47:43 +03:00
|
|
|
/** return the table-relative row index of the first row in this rowgroup.
|
|
|
|
* if there are no rows, -1 is returned.
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t GetStartRowIndex();
|
1998-12-23 18:47:43 +03:00
|
|
|
|
2015-04-17 21:42:05 +03:00
|
|
|
/** Adjust the row indices of all rows whose index is >= aRowIndex.
|
2006-08-04 23:15:50 +04:00
|
|
|
* @param aRowIndex - start adjusting with this index
|
|
|
|
* @param aAdjustment - shift the row index by this amount
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
void AdjustRowIndices(int32_t aRowIndex,
|
|
|
|
int32_t anAdjustment);
|
2006-08-04 23:15:50 +04:00
|
|
|
|
1999-03-03 19:33:57 +03:00
|
|
|
/**
|
|
|
|
* Used for header and footer row group frames that are repeated when
|
|
|
|
* splitting a table frame.
|
|
|
|
*
|
|
|
|
* Performs any table specific initialization
|
|
|
|
*
|
|
|
|
* @param aHeaderFooterFrame the original header or footer row group frame
|
|
|
|
* that was repeated
|
|
|
|
*/
|
2015-12-07 04:15:53 +03:00
|
|
|
nsresult InitRepeatedFrame(nsTableRowGroupFrame* aHeaderFooterFrame);
|
1999-03-03 19:33:57 +03:00
|
|
|
|
2015-04-17 21:42:05 +03:00
|
|
|
|
1999-06-14 12:22:47 +04:00
|
|
|
/**
|
2015-06-20 23:00:26 +03:00
|
|
|
* Get the total bsize of all the row rects
|
1999-06-14 12:22:47 +04:00
|
|
|
*/
|
2015-06-20 23:00:26 +03:00
|
|
|
nscoord GetBSizeBasis(const nsHTMLReflowState& aReflowState);
|
2015-04-17 21:42:05 +03:00
|
|
|
|
2015-05-04 10:09:25 +03:00
|
|
|
mozilla::LogicalMargin GetBCBorderWidth(mozilla::WritingMode aWM);
|
2004-03-09 09:48:35 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets inner border widths before collapsing with cell borders
|
2015-06-20 23:00:26 +03:00
|
|
|
* Caller must get bstart border from previous row group or from table
|
|
|
|
* GetContinuousBCBorderWidth will not overwrite aBorder.BStart()
|
2004-03-09 09:48:35 +03:00
|
|
|
* see nsTablePainter about continuous borders
|
|
|
|
*/
|
2015-06-20 23:00:26 +03:00
|
|
|
void GetContinuousBCBorderWidth(mozilla::WritingMode aWM,
|
|
|
|
mozilla::LogicalMargin& aBorder);
|
|
|
|
|
2004-03-09 09:48:35 +03:00
|
|
|
/**
|
|
|
|
* Sets full border widths before collapsing with cell borders
|
2015-06-20 23:00:26 +03:00
|
|
|
* @param aForSide - side to set; only IEnd, IStart, BEnd are valid
|
2004-03-09 09:48:35 +03:00
|
|
|
*/
|
2015-06-20 23:00:26 +03:00
|
|
|
void SetContinuousBCBorderWidth(mozilla::LogicalSide aForSide,
|
2004-03-09 09:48:35 +03:00
|
|
|
BCPixelSize aPixelValue);
|
2006-03-04 08:26:57 +03:00
|
|
|
/**
|
2015-06-22 12:33:34 +03:00
|
|
|
* Adjust to the effect of visibility:collapse on the row group and
|
2006-03-04 08:26:57 +03:00
|
|
|
* its children
|
2015-06-20 23:00:26 +03:00
|
|
|
* @return additional shift bstart-wards that should be applied
|
|
|
|
* to subsequent rowgroups due to rows and this
|
|
|
|
* rowgroup being collapsed
|
|
|
|
* @param aBTotalOffset the total amount that the rowgroup is shifted
|
|
|
|
* @param aISize new isize of the rowgroup
|
2015-06-22 12:33:34 +03:00
|
|
|
* @param aWM the table's writing mode
|
2006-03-04 08:26:57 +03:00
|
|
|
*/
|
2015-06-20 23:00:26 +03:00
|
|
|
nscoord CollapseRowGroupIfNecessary(nscoord aBTotalOffset,
|
2015-06-22 12:33:34 +03:00
|
|
|
nscoord aISize,
|
|
|
|
mozilla::WritingMode aWM);
|
2004-03-09 09:48:35 +03:00
|
|
|
|
2000-05-11 05:04:39 +04:00
|
|
|
// nsILineIterator methods
|
|
|
|
public:
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DisposeLineIterator() override { }
|
2008-10-30 22:17:59 +03:00
|
|
|
|
2015-04-17 21:42:05 +03:00
|
|
|
// The table row is the equivalent to a line in block layout.
|
2008-02-09 20:10:58 +03:00
|
|
|
// The nsILineIterator assumes that a line resides in a block, this role is
|
|
|
|
// fullfilled by the row group. Rows in table are counted relative to the
|
|
|
|
// table. The row index of row corresponds to the cellmap coordinates. The
|
2008-02-20 23:22:18 +03:00
|
|
|
// line index with respect to a row group can be computed by substracting the
|
|
|
|
// row index of the first row in the row group.
|
2015-04-17 21:42:05 +03:00
|
|
|
|
2008-02-20 23:22:18 +03:00
|
|
|
/** Get the number of rows in a row group
|
2008-10-30 22:17:59 +03:00
|
|
|
* @return the number of lines in a row group
|
2008-02-09 20:10:58 +03:00
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual int32_t GetNumLines() override;
|
2008-02-09 20:10:58 +03:00
|
|
|
|
|
|
|
/** @see nsILineIterator.h GetDirection
|
2008-10-30 22:17:59 +03:00
|
|
|
* @return true if the table is rtl
|
2008-02-09 20:10:58 +03:00
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool GetDirection() override;
|
2015-04-17 21:42:05 +03:00
|
|
|
|
|
|
|
/** Return structural information about a line.
|
2008-02-20 23:22:18 +03:00
|
|
|
* @param aLineNumber - the index of the row relative to the row group
|
2008-02-09 20:10:58 +03:00
|
|
|
* If the line-number is invalid then
|
2015-04-17 21:42:05 +03:00
|
|
|
* aFirstFrameOnLine will be nullptr and
|
2008-02-09 20:10:58 +03:00
|
|
|
* aNumFramesOnLine will be zero.
|
|
|
|
* @param aFirstFrameOnLine - the first cell frame that originates in row
|
|
|
|
* with a rowindex that matches a line number
|
|
|
|
* @param aNumFramesOnLine - return the numbers of cells originating in
|
|
|
|
* this row
|
|
|
|
* @param aLineBounds - rect of the row
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD GetLine(int32_t aLineNumber,
|
2000-05-11 05:04:39 +04:00
|
|
|
nsIFrame** aFirstFrameOnLine,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t* aNumFramesOnLine,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsRect& aLineBounds) override;
|
2015-04-17 21:42:05 +03:00
|
|
|
|
2008-02-09 20:10:58 +03:00
|
|
|
/** Given a frame that's a child of the rowgroup, find which line its on.
|
|
|
|
* @param aFrame - frame, should be a row
|
2011-09-07 06:57:46 +04:00
|
|
|
* @param aStartLine - minimal index to return
|
2008-10-30 22:17:59 +03:00
|
|
|
* @return row index relative to the row group if this a row
|
2011-09-07 06:57:46 +04:00
|
|
|
* frame and the index is at least aStartLine.
|
|
|
|
* -1 if the frame cannot be found.
|
2008-02-09 20:10:58 +03:00
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual int32_t FindLineContaining(nsIFrame* aFrame, int32_t aStartLine = 0) override;
|
2008-02-09 20:10:58 +03:00
|
|
|
|
|
|
|
/** Find the orginating cell frame on a row that is the nearest to the
|
2014-11-22 17:39:03 +03:00
|
|
|
* inline-dir coordinate of aPos.
|
2008-02-20 23:22:18 +03:00
|
|
|
* @param aLineNumber - the index of the row relative to the row group
|
2014-11-22 17:39:03 +03:00
|
|
|
* @param aPos - coordinate in twips relative to the
|
2008-02-20 23:22:18 +03:00
|
|
|
* origin of the row group
|
2008-02-09 20:10:58 +03:00
|
|
|
* @param aFrameFound - pointer to the cellframe
|
2014-11-22 17:39:03 +03:00
|
|
|
* @param aPosIsBeforeFirstFrame - the point is before the first originating
|
2008-02-09 20:10:58 +03:00
|
|
|
* cellframe
|
2014-11-22 17:39:03 +03:00
|
|
|
* @param aPosIsAfterLastFrame - the point is after the last originating
|
2008-02-09 20:10:58 +03:00
|
|
|
* cellframe
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD FindFrameAt(int32_t aLineNumber,
|
2014-11-22 17:39:03 +03:00
|
|
|
nsPoint aPos,
|
2000-05-11 05:04:39 +04:00
|
|
|
nsIFrame** aFrameFound,
|
2014-11-22 17:39:03 +03:00
|
|
|
bool* aPosIsBeforeFirstFrame,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool* aPosIsAfterLastFrame) override;
|
2000-05-11 05:04:39 +04:00
|
|
|
|
2008-02-09 20:10:58 +03:00
|
|
|
/** Check whether visual and logical order of cell frames within a line are
|
|
|
|
* identical. As the layout will reorder them this is always the case
|
|
|
|
* @param aLine - the index of the row relative to the table
|
|
|
|
* @param aIsReordered - returns false
|
|
|
|
* @param aFirstVisual - if the table is rtl first originating cell frame
|
|
|
|
* @param aLastVisual - if the table is rtl last originating cell frame
|
|
|
|
*/
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD CheckLineOrder(int32_t aLine,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool *aIsReordered,
|
2001-03-13 01:25:55 +03:00
|
|
|
nsIFrame **aFirstVisual,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame **aLastVisual) override;
|
2008-02-09 20:10:58 +03:00
|
|
|
|
2015-04-17 21:42:05 +03:00
|
|
|
/** Find the next originating cell frame that originates in the row.
|
2008-02-09 20:10:58 +03:00
|
|
|
* @param aFrame - cell frame to start with, will return the next cell
|
|
|
|
* originating in a row
|
|
|
|
* @param aLineNumber - the index of the row relative to the table
|
2015-04-17 21:42:05 +03:00
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD GetNextSiblingOnLine(nsIFrame*& aFrame, int32_t aLineNumber) override;
|
2000-05-11 05:04:39 +04:00
|
|
|
|
2006-09-20 01:39:33 +04:00
|
|
|
// row cursor methods to speed up searching for the row(s)
|
|
|
|
// containing a point. The basic idea is that we set the cursor
|
|
|
|
// property if the rows' y and yMosts are non-decreasing (considering only
|
|
|
|
// rows with nonempty overflowAreas --- empty overflowAreas never participate
|
|
|
|
// in event handling or painting), and the rowgroup has sufficient number of
|
|
|
|
// rows. The cursor property points to a "recently used" row. If we get a
|
|
|
|
// series of requests that work on rows "near" the cursor, then we can find
|
|
|
|
// those nearby rows quickly by starting our search at the cursor.
|
|
|
|
// This code is based on the line cursor code in nsBlockFrame. It's more general
|
|
|
|
// though, and could be extracted and used elsewhere.
|
|
|
|
struct FrameCursorData {
|
|
|
|
nsTArray<nsIFrame*> mFrames;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mCursorIndex;
|
2006-09-20 01:39:33 +04:00
|
|
|
nscoord mOverflowAbove;
|
|
|
|
nscoord mOverflowBelow;
|
2015-04-17 21:42:05 +03:00
|
|
|
|
2006-09-20 01:39:33 +04:00
|
|
|
FrameCursorData()
|
|
|
|
: mFrames(MIN_ROWS_NEEDING_CURSOR), mCursorIndex(0), mOverflowAbove(0),
|
|
|
|
mOverflowBelow(0) {}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool AppendFrame(nsIFrame* aFrame);
|
2015-04-17 21:42:05 +03:00
|
|
|
|
2006-09-20 01:39:33 +04:00
|
|
|
void FinishBuildingCursor() {
|
|
|
|
mFrames.Compact();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Clear out row cursor because we're disturbing the rows (e.g., Reflow)
|
|
|
|
void ClearRowCursor();
|
|
|
|
|
|
|
|
/**
|
2012-07-30 18:20:58 +04:00
|
|
|
* Get the first row that might contain y-coord 'aY', or nullptr if you must search
|
2006-09-20 01:39:33 +04:00
|
|
|
* all rows.
|
|
|
|
* The actual row returned might not contain 'aY', but if not, it is guaranteed
|
|
|
|
* to be before any row which does contain 'aY'.
|
|
|
|
* aOverflowAbove is the maximum over all rows of -row.GetOverflowRect().y.
|
|
|
|
* To find all rows that intersect the vertical interval aY/aYMost, call
|
|
|
|
* GetFirstRowContaining(aY, &overflowAbove), and then iterate through all
|
|
|
|
* rows until reaching a row where row->GetRect().y - overflowAbove >= aYMost.
|
|
|
|
* That row and all subsequent rows cannot intersect the interval.
|
|
|
|
*/
|
|
|
|
nsIFrame* GetFirstRowContaining(nscoord aY, nscoord* aOverflowAbove);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set up the row cursor. After this, call AppendFrame for every
|
|
|
|
* child frame in sibling order. Ensure that the child frame y and YMost values
|
|
|
|
* form non-decreasing sequences (should always be true for table rows);
|
2012-07-30 18:20:58 +04:00
|
|
|
* if this is violated, call ClearRowCursor(). If we return nullptr, then we
|
2006-09-20 01:39:33 +04:00
|
|
|
* decided not to use a cursor or we already have one set up.
|
|
|
|
*/
|
|
|
|
FrameCursorData* SetupRowCursor();
|
2000-05-11 05:04:39 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsILineIterator* GetLineIterator() override { return this; }
|
2008-10-30 22:17:59 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override
|
2013-03-08 06:18:45 +04:00
|
|
|
{
|
|
|
|
return nsContainerFrame::IsFrameOfType(aFlags & ~(nsIFrame::eTablePart));
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void InvalidateFrame(uint32_t aDisplayItemKey = 0) override;
|
|
|
|
virtual void InvalidateFrameWithRect(const nsRect& aRect, uint32_t aDisplayItemKey = 0) override;
|
|
|
|
virtual void InvalidateFrameForRemoval() override { InvalidateFrameSubtree(); }
|
2012-08-29 09:39:31 +04:00
|
|
|
|
1998-10-20 21:45:07 +04:00
|
|
|
protected:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsTableRowGroupFrame(nsStyleContext* aContext);
|
1998-10-20 21:45:07 +04:00
|
|
|
|
2015-04-17 21:42:05 +03:00
|
|
|
void InitChildReflowState(nsPresContext& aPresContext,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aBorderCollapse,
|
2002-02-19 18:48:28 +03:00
|
|
|
nsHTMLReflowState& aReflowState);
|
2015-04-17 21:42:05 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual LogicalSides GetLogicalSkipSides(const nsHTMLReflowState* aReflowState = nullptr) const override;
|
1998-10-20 21:45:07 +04:00
|
|
|
|
2008-04-03 01:52:04 +04:00
|
|
|
void PlaceChild(nsPresContext* aPresContext,
|
2001-03-13 09:38:59 +03:00
|
|
|
nsRowGroupReflowState& aReflowState,
|
|
|
|
nsIFrame* aKidFrame,
|
2015-06-20 23:00:26 +03:00
|
|
|
mozilla::WritingMode aWM,
|
|
|
|
const mozilla::LogicalPoint& aKidPosition,
|
2015-07-16 12:07:57 +03:00
|
|
|
const nsSize& aContainerSize,
|
2008-02-08 12:36:32 +03:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
2008-03-16 23:32:48 +03:00
|
|
|
const nsRect& aOriginalKidRect,
|
2010-10-07 08:25:46 +04:00
|
|
|
const nsRect& aOriginalKidVisualOverflow);
|
2001-03-13 09:38:59 +03:00
|
|
|
|
2015-06-20 23:00:26 +03:00
|
|
|
void CalculateRowBSizes(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState);
|
1998-10-20 21:45:07 +04:00
|
|
|
|
2007-01-28 01:22:24 +03:00
|
|
|
void DidResizeRows(nsHTMLReflowMetrics& aDesiredSize);
|
1998-10-20 21:45:07 +04:00
|
|
|
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
void SlideChild(nsRowGroupReflowState& aReflowState,
|
|
|
|
nsIFrame* aKidFrame);
|
2015-04-17 21:42:05 +03:00
|
|
|
|
1998-04-15 01:45:28 +04:00
|
|
|
/**
|
|
|
|
* Reflow the frames we've already created
|
|
|
|
*
|
|
|
|
* @param aPresContext presentation context to use
|
1998-10-14 20:32:45 +04:00
|
|
|
* @param aReflowState current inline state
|
1998-04-15 01:45:28 +04:00
|
|
|
*/
|
2014-05-13 04:47:53 +04:00
|
|
|
void ReflowChildren(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
nsRowGroupReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
|
|
|
bool* aPageBreakBeforeEnd = nullptr);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2008-04-03 01:52:04 +04:00
|
|
|
nsresult SplitRowGroup(nsPresContext* aPresContext,
|
1998-12-14 04:24:11 +03:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
1999-02-22 06:28:00 +03:00
|
|
|
nsTableFrame* aTableFrame,
|
2012-11-08 20:09:38 +04:00
|
|
|
nsReflowStatus& aStatus,
|
|
|
|
bool aRowForcedPageBreak);
|
1998-12-14 04:24:11 +03:00
|
|
|
|
2008-04-03 01:52:04 +04:00
|
|
|
void SplitSpanningCells(nsPresContext& aPresContext,
|
2002-03-27 08:50:24 +03:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsTableFrame& aTableFrame,
|
2015-04-17 21:42:05 +03:00
|
|
|
nsTableRowFrame& aFirstRow,
|
|
|
|
nsTableRowFrame& aLastRow,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aFirstRowIsTopOfPage,
|
2007-12-02 22:19:00 +03:00
|
|
|
nscoord aSpanningRowBottom,
|
2002-10-03 18:33:23 +04:00
|
|
|
nsTableRowFrame*& aContRowFrame,
|
|
|
|
nsTableRowFrame*& aFirstTruncatedRow,
|
|
|
|
nscoord& aDesiredHeight);
|
2001-04-16 18:51:52 +04:00
|
|
|
|
2004-08-01 03:15:21 +04:00
|
|
|
void CreateContinuingRowFrame(nsPresContext& aPresContext,
|
2008-04-03 01:52:04 +04:00
|
|
|
nsIFrame& aRowFrame,
|
|
|
|
nsIFrame** aContRowFrame);
|
2001-04-16 18:51:52 +04:00
|
|
|
|
2015-04-17 21:42:05 +03:00
|
|
|
bool IsSimpleRowFrame(nsTableFrame* aTableFrame,
|
2015-06-27 02:50:21 +03:00
|
|
|
nsTableRowFrame* aRowFrame);
|
1999-08-02 06:18:33 +04:00
|
|
|
|
1999-06-23 13:07:59 +04:00
|
|
|
void GetNextRowSibling(nsIFrame** aRowFrame);
|
|
|
|
|
2008-04-03 01:52:04 +04:00
|
|
|
void UndoContinuedRow(nsPresContext* aPresContext,
|
2002-10-03 18:33:23 +04:00
|
|
|
nsTableRowFrame* aRow);
|
2015-04-17 21:42:05 +03:00
|
|
|
|
2004-03-09 09:48:35 +03:00
|
|
|
private:
|
|
|
|
// border widths in pixels in the collapsing border model
|
2015-06-20 23:00:26 +03:00
|
|
|
BCPixelSize mIEndContBorderWidth;
|
|
|
|
BCPixelSize mBEndContBorderWidth;
|
|
|
|
BCPixelSize mIStartContBorderWidth;
|
2004-03-09 09:48:35 +03:00
|
|
|
|
1999-06-23 13:07:59 +04:00
|
|
|
public:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsRepeatable() const;
|
2015-06-20 23:00:26 +03:00
|
|
|
void SetRepeatable(bool aRepeatable);
|
|
|
|
bool HasStyleBSize() const;
|
|
|
|
void SetHasStyleBSize(bool aValue);
|
2011-09-29 10:19:26 +04:00
|
|
|
bool HasInternalBreakBefore() const;
|
|
|
|
bool HasInternalBreakAfter() const;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
1999-08-31 02:30:32 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
inline bool nsTableRowGroupFrame::IsRepeatable() const
|
2000-11-16 01:26:35 +03:00
|
|
|
{
|
2015-06-23 23:41:29 +03:00
|
|
|
return HasAnyStateBits(NS_ROWGROUP_REPEATABLE);
|
2000-11-16 01:26:35 +03:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
inline void nsTableRowGroupFrame::SetRepeatable(bool aRepeatable)
|
2000-11-16 01:26:35 +03:00
|
|
|
{
|
|
|
|
if (aRepeatable) {
|
2015-06-23 23:41:29 +03:00
|
|
|
AddStateBits(NS_ROWGROUP_REPEATABLE);
|
2000-11-16 01:26:35 +03:00
|
|
|
} else {
|
2015-06-23 23:41:29 +03:00
|
|
|
RemoveStateBits(NS_ROWGROUP_REPEATABLE);
|
2000-11-16 01:26:35 +03:00
|
|
|
}
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2015-06-20 23:00:26 +03:00
|
|
|
inline bool nsTableRowGroupFrame::HasStyleBSize() const
|
2001-11-05 03:15:51 +03:00
|
|
|
{
|
2015-06-23 23:41:29 +03:00
|
|
|
return HasAnyStateBits(NS_ROWGROUP_HAS_STYLE_BSIZE);
|
2001-11-05 03:15:51 +03:00
|
|
|
}
|
|
|
|
|
2015-06-20 23:00:26 +03:00
|
|
|
inline void nsTableRowGroupFrame::SetHasStyleBSize(bool aValue)
|
2001-11-05 03:15:51 +03:00
|
|
|
{
|
|
|
|
if (aValue) {
|
2015-06-23 23:41:29 +03:00
|
|
|
AddStateBits(NS_ROWGROUP_HAS_STYLE_BSIZE);
|
2001-11-05 03:15:51 +03:00
|
|
|
} else {
|
2015-06-23 23:41:29 +03:00
|
|
|
RemoveStateBits(NS_ROWGROUP_HAS_STYLE_BSIZE);
|
2001-11-05 03:15:51 +03:00
|
|
|
}
|
|
|
|
}
|
2004-03-09 09:48:35 +03:00
|
|
|
|
|
|
|
inline void
|
2015-06-20 23:00:26 +03:00
|
|
|
nsTableRowGroupFrame::GetContinuousBCBorderWidth(mozilla::WritingMode aWM,
|
|
|
|
mozilla::LogicalMargin& aBorder)
|
2004-03-09 09:48:35 +03:00
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aPixelsToTwips = nsPresContext::AppUnitsPerCSSPixel();
|
2015-06-20 23:00:26 +03:00
|
|
|
aBorder.IEnd(aWM) = BC_BORDER_START_HALF_COORD(aPixelsToTwips,
|
|
|
|
mIEndContBorderWidth);
|
|
|
|
aBorder.BEnd(aWM) = BC_BORDER_START_HALF_COORD(aPixelsToTwips,
|
|
|
|
mBEndContBorderWidth);
|
|
|
|
aBorder.IStart(aWM) = BC_BORDER_END_HALF_COORD(aPixelsToTwips,
|
|
|
|
mIStartContBorderWidth);
|
2004-03-09 09:48:35 +03:00
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
#endif
|