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"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-02-22 06:28:00 +03:00
|
|
|
class nsTableFrame;
|
1998-10-14 20:32:45 +04:00
|
|
|
class nsTableRowFrame;
|
2001-04-16 18:51:52 +04:00
|
|
|
class nsTableCellFrame;
|
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)
|
|
|
|
nsSize availSize;
|
|
|
|
|
|
|
|
// Running y-offset
|
|
|
|
nscoord y;
|
|
|
|
|
2001-03-13 09:38:59 +03:00
|
|
|
nsRowGroupReflowState(const nsHTMLReflowState& aReflowState,
|
|
|
|
nsTableFrame* aTableFrame)
|
|
|
|
:reflowState(aReflowState), tableFrame(aTableFrame)
|
1999-06-23 07:02:21 +04:00
|
|
|
{
|
2001-03-13 09:38:59 +03:00
|
|
|
availSize.width = reflowState.availableWidth;
|
1999-06-23 07:02:21 +04:00
|
|
|
availSize.height = reflowState.availableHeight;
|
2001-03-13 09:38:59 +03:00
|
|
|
y = 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
|
|
|
|
2001-11-05 03:15:51 +03:00
|
|
|
// use the following bits from nsFrame's frame state
|
|
|
|
|
2000-11-16 01:26:35 +03:00
|
|
|
// thead or tfoot should be repeated on every printed page
|
2010-06-09 09:28:14 +04:00
|
|
|
#define NS_ROWGROUP_REPEATABLE NS_FRAME_STATE_BIT(31)
|
|
|
|
#define NS_ROWGROUP_HAS_STYLE_HEIGHT NS_FRAME_STATE_BIT(30)
|
2005-02-05 07:23:52 +03:00
|
|
|
// the next is also used on rows (see nsTableRowGroupFrame::InitRepeatedFrame)
|
2010-06-09 09:28:14 +04:00
|
|
|
#define NS_REPEATED_ROW_OR_ROWGROUP NS_FRAME_STATE_BIT(28)
|
|
|
|
#define NS_ROWGROUP_HAS_ROW_CURSOR NS_FRAME_STATE_BIT(27)
|
2006-09-20 01:39:33 +04:00
|
|
|
|
|
|
|
#define MIN_ROWS_NEEDING_CURSOR 20
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
/**
|
1998-04-15 01:45:28 +04:00
|
|
|
* nsTableRowGroupFrame is the frame that maps row groups
|
|
|
|
* (HTML tags THEAD, TFOOT, and TBODY). This class cannot be reused
|
|
|
|
* outside of an nsTableFrame. It assumes that its parent is an nsTableFrame, and
|
|
|
|
* its children are nsTableRowFrames.
|
|
|
|
*
|
|
|
|
* @see nsTableFrame
|
|
|
|
* @see nsTableRowFrame
|
1998-04-14 00:24:54 +04:00
|
|
|
*/
|
2008-10-30 22:17:59 +03:00
|
|
|
class nsTableRowGroupFrame
|
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
|
|
|
*/
|
2006-03-27 01:30:36 +04:00
|
|
|
friend nsIFrame* NS_NewTableRowGroupFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2001-01-25 18:55:51 +03:00
|
|
|
virtual ~nsTableRowGroupFrame();
|
2008-10-26 13:11:34 +03:00
|
|
|
/** @see nsIFrame::DidSetStyleContext */
|
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext);
|
|
|
|
|
2011-08-25 00:54:30 +04:00
|
|
|
NS_IMETHOD AppendFrames(ChildListID aListID,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsFrameList& aFrameList) MOZ_OVERRIDE;
|
1999-08-02 06:18:33 +04:00
|
|
|
|
2011-08-25 00:54:30 +04:00
|
|
|
NS_IMETHOD InsertFrames(ChildListID aListID,
|
1999-08-02 06:18:33 +04:00
|
|
|
nsIFrame* aPrevFrame,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsFrameList& aFrameList) MOZ_OVERRIDE;
|
1999-08-02 06:18:33 +04:00
|
|
|
|
2011-08-25 00:54:30 +04:00
|
|
|
NS_IMETHOD RemoveFrame(ChildListID aListID,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsIFrame* aOldFrame) MOZ_OVERRIDE;
|
1999-08-02 02:01:37 +04:00
|
|
|
|
2006-12-14 02:04:57 +03:00
|
|
|
virtual nsMargin GetUsedMargin() const;
|
|
|
|
virtual nsMargin GetUsedBorder() const;
|
|
|
|
virtual nsMargin GetUsedPadding() const;
|
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
2012-09-14 20:10:08 +04:00
|
|
|
const nsDisplayListSet& aLists) MOZ_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.
|
1998-04-15 01:45:28 +04:00
|
|
|
* Rows are all set to the same width and stacked vertically.
|
|
|
|
* <P> rows are not split unless absolutely necessary.
|
|
|
|
*
|
|
|
|
* @param aDesiredSize width set to width of rows, height set to
|
|
|
|
* sum of height of rows that fit in aMaxSize.height.
|
|
|
|
*
|
1998-05-25 21:31:49 +04:00
|
|
|
* @see nsIFrame::Reflow
|
1998-04-15 01:45:28 +04:00
|
|
|
*/
|
2008-04-03 01:52:04 +04:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
2001-03-13 09:38:59 +03:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-02 08:10:00 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
2001-03-13 09:38:59 +03:00
|
|
|
nsReflowStatus& aStatus);
|
1998-04-14 00:24:54 +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
|
|
|
*/
|
2003-10-31 23:19:18 +03:00
|
|
|
virtual nsIAtom* GetType() const;
|
1999-02-24 08:54:31 +03:00
|
|
|
|
2001-11-05 03:15:51 +03:00
|
|
|
nsTableRowFrame* GetFirstRow();
|
|
|
|
|
1999-09-01 05:02:16 +04:00
|
|
|
#ifdef DEBUG
|
2001-11-14 04:33:42 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|
1999-08-31 07:09:40 +04:00
|
|
|
|
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
|
|
|
|
2006-08-04 23:15:50 +04:00
|
|
|
/** Adjust the row indices of all rows whose index is >= aRowIndex.
|
|
|
|
* @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
|
|
|
|
*/
|
2008-04-03 01:52:04 +04:00
|
|
|
nsresult InitRepeatedFrame(nsPresContext* aPresContext,
|
2000-01-22 04:16:50 +03:00
|
|
|
nsTableRowGroupFrame* aHeaderFooterFrame);
|
1999-03-03 19:33:57 +03:00
|
|
|
|
1999-06-14 12:22:47 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the total height of all the row rects
|
|
|
|
*/
|
2001-11-05 03:15:51 +03:00
|
|
|
nscoord GetHeightBasis(const nsHTMLReflowState& aReflowState);
|
1999-06-14 12:22:47 +04:00
|
|
|
|
2007-02-07 10:46:44 +03:00
|
|
|
nsMargin* GetBCBorderWidth(nsMargin& aBorder);
|
2004-03-09 09:48:35 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets inner border widths before collapsing with cell borders
|
|
|
|
* Caller must get top border from previous row group or from table
|
|
|
|
* GetContinuousBCBorderWidth will not overwrite aBorder.top
|
|
|
|
* see nsTablePainter about continuous borders
|
|
|
|
*/
|
2007-02-07 10:46:44 +03:00
|
|
|
void GetContinuousBCBorderWidth(nsMargin& aBorder);
|
2004-03-09 09:48:35 +03:00
|
|
|
/**
|
|
|
|
* Sets full border widths before collapsing with cell borders
|
|
|
|
* @param aForSide - side to set; only right, left, and bottom valid
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
void SetContinuousBCBorderWidth(uint8_t aForSide,
|
2004-03-09 09:48:35 +03:00
|
|
|
BCPixelSize aPixelValue);
|
2006-03-04 08:26:57 +03:00
|
|
|
/**
|
|
|
|
* Adjust to the effect of visibibility:collapse on the row group and
|
|
|
|
* its children
|
|
|
|
* @return additional shift upward that should be applied to
|
|
|
|
* subsequent rowgroups due to rows and this rowgroup
|
|
|
|
* being collapsed
|
|
|
|
* @param aYTotalOffset the total amount that the rowgroup is shifted up
|
|
|
|
* @param aWidth new width of the rowgroup
|
|
|
|
*/
|
|
|
|
nscoord CollapseRowGroupIfNecessary(nscoord aYTotalOffset,
|
2008-04-03 01:52:04 +04:00
|
|
|
nscoord aWidth);
|
2004-03-09 09:48:35 +03:00
|
|
|
|
2000-05-11 05:04:39 +04:00
|
|
|
// nsILineIterator methods
|
|
|
|
public:
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual void DisposeLineIterator() MOZ_OVERRIDE { }
|
2008-10-30 22:17:59 +03:00
|
|
|
|
2008-02-09 20:10:58 +03:00
|
|
|
// The table row is the equivalent to a line in block layout.
|
|
|
|
// 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.
|
2008-02-09 20:10:58 +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
|
|
|
*/
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual int32_t GetNumLines() MOZ_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
|
|
|
*/
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual bool GetDirection() MOZ_OVERRIDE;
|
2000-05-11 05:04:39 +04:00
|
|
|
|
2008-02-09 20:10:58 +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
|
2012-07-30 18:20:58 +04: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
|
|
|
|
* @param aLineFlags - unused set to 0
|
|
|
|
*/
|
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,
|
2000-05-11 05:04:39 +04:00
|
|
|
nsRect& aLineBounds,
|
2012-09-14 20:10:08 +04:00
|
|
|
uint32_t* aLineFlags) MOZ_OVERRIDE;
|
2000-05-11 05:04:39 +04: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
|
|
|
*/
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual int32_t FindLineContaining(nsIFrame* aFrame, int32_t aStartLine = 0) MOZ_OVERRIDE;
|
2008-02-09 20:10:58 +03:00
|
|
|
|
|
|
|
/** Find the orginating cell frame on a row that is the nearest to the
|
|
|
|
* coordinate X.
|
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
|
|
|
* @param aX - X 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
|
|
|
|
* @param aXIsBeforeFirstFrame - the point is before the first originating
|
|
|
|
* cellframe
|
|
|
|
* @param aXIsAfterLastFrame - the point is after the last originating
|
|
|
|
* cellframe
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD FindFrameAt(int32_t aLineNumber,
|
2000-05-11 05:04:39 +04:00
|
|
|
nscoord aX,
|
|
|
|
nsIFrame** aFrameFound,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool* aXIsBeforeFirstFrame,
|
2012-09-14 20:10:08 +04:00
|
|
|
bool* aXIsAfterLastFrame) MOZ_OVERRIDE;
|
2000-05-11 05:04:39 +04:00
|
|
|
|
2001-03-13 01:25:55 +03:00
|
|
|
#ifdef IBMBIDI
|
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,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsIFrame **aLastVisual) MOZ_OVERRIDE;
|
2001-03-13 01:25:55 +03:00
|
|
|
#endif
|
2008-02-09 20:10:58 +03:00
|
|
|
|
|
|
|
/** Find the next originating cell frame that originates in the row.
|
|
|
|
* @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
|
|
|
|
*/
|
2012-09-14 20:10:08 +04:00
|
|
|
NS_IMETHOD GetNextSiblingOnLine(nsIFrame*& aFrame, int32_t aLineNumber) MOZ_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;
|
|
|
|
|
|
|
|
FrameCursorData()
|
|
|
|
: mFrames(MIN_ROWS_NEEDING_CURSOR), mCursorIndex(0), mOverflowAbove(0),
|
|
|
|
mOverflowBelow(0) {}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool AppendFrame(nsIFrame* aFrame);
|
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
|
|
|
|
2008-10-30 22:17:59 +03:00
|
|
|
virtual nsILineIterator* GetLineIterator() { return this; }
|
|
|
|
|
2012-08-29 09:48:44 +04:00
|
|
|
virtual void InvalidateFrame();
|
2012-08-29 09:39:31 +04:00
|
|
|
|
1998-10-20 21:45:07 +04:00
|
|
|
protected:
|
2006-03-27 01:30:36 +04:00
|
|
|
nsTableRowGroupFrame(nsStyleContext* aContext);
|
1998-10-20 21:45:07 +04:00
|
|
|
|
2008-04-03 01:52:04 +04: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);
|
|
|
|
|
2011-12-28 00:18:48 +04:00
|
|
|
/** implement abstract method on nsContainerFrame */
|
2012-08-09 11:09:40 +04:00
|
|
|
virtual int GetSkipSides() const;
|
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,
|
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
|
|
|
|
2008-04-03 01:52:04 +04:00
|
|
|
void CalculateRowHeights(nsPresContext* aPresContext,
|
2001-03-13 09:38:59 +03:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
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
|
|
|
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);
|
1999-08-19 07:51:25 +04: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
|
|
|
* @return true if we successfully reflowed all the mapped children and false
|
|
|
|
* otherwise, e.g. we pushed children to the next in flow
|
|
|
|
*/
|
2010-10-07 08:25:46 +04:00
|
|
|
nsresult ReflowChildren(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
nsRowGroupReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
2012-07-30 18:20:58 +04:00
|
|
|
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,
|
1998-12-14 04:24:11 +03:00
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
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,
|
2002-10-03 18:33:23 +04: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
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsSimpleRowFrame(nsTableFrame* aTableFrame,
|
2001-03-13 09:38:59 +03:00
|
|
|
nsIFrame* aFrame);
|
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);
|
2004-03-09 09:48:35 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
// border widths in pixels in the collapsing border model
|
|
|
|
BCPixelSize mRightContBorderWidth;
|
|
|
|
BCPixelSize mBottomContBorderWidth;
|
|
|
|
BCPixelSize mLeftContBorderWidth;
|
|
|
|
|
1999-06-23 13:07:59 +04:00
|
|
|
public:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsRepeatable() const;
|
|
|
|
void SetRepeatable(bool aRepeatable);
|
|
|
|
bool HasStyleHeight() const;
|
|
|
|
void SetHasStyleHeight(bool aValue);
|
|
|
|
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
|
|
|
{
|
|
|
|
return (mState & NS_ROWGROUP_REPEATABLE) == NS_ROWGROUP_REPEATABLE;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
inline void nsTableRowGroupFrame::SetRepeatable(bool aRepeatable)
|
2000-11-16 01:26:35 +03:00
|
|
|
{
|
|
|
|
if (aRepeatable) {
|
|
|
|
mState |= NS_ROWGROUP_REPEATABLE;
|
|
|
|
} else {
|
|
|
|
mState &= ~NS_ROWGROUP_REPEATABLE;
|
|
|
|
}
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
inline bool nsTableRowGroupFrame::HasStyleHeight() const
|
2001-11-05 03:15:51 +03:00
|
|
|
{
|
|
|
|
return (mState & NS_ROWGROUP_HAS_STYLE_HEIGHT) == NS_ROWGROUP_HAS_STYLE_HEIGHT;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
inline void nsTableRowGroupFrame::SetHasStyleHeight(bool aValue)
|
2001-11-05 03:15:51 +03:00
|
|
|
{
|
|
|
|
if (aValue) {
|
|
|
|
mState |= NS_ROWGROUP_HAS_STYLE_HEIGHT;
|
|
|
|
} else {
|
|
|
|
mState &= ~NS_ROWGROUP_HAS_STYLE_HEIGHT;
|
|
|
|
}
|
|
|
|
}
|
2004-03-09 09:48:35 +03:00
|
|
|
|
|
|
|
inline void
|
2007-02-07 10:46:44 +03:00
|
|
|
nsTableRowGroupFrame::GetContinuousBCBorderWidth(nsMargin& aBorder)
|
2004-03-09 09:48:35 +03:00
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aPixelsToTwips = nsPresContext::AppUnitsPerCSSPixel();
|
2004-03-09 09:48:35 +03:00
|
|
|
aBorder.right = BC_BORDER_LEFT_HALF_COORD(aPixelsToTwips,
|
|
|
|
mRightContBorderWidth);
|
|
|
|
aBorder.bottom = BC_BORDER_TOP_HALF_COORD(aPixelsToTwips,
|
|
|
|
mBottomContBorderWidth);
|
|
|
|
aBorder.left = BC_BORDER_RIGHT_HALF_COORD(aPixelsToTwips,
|
|
|
|
mLeftContBorderWidth);
|
|
|
|
return;
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
#endif
|