1998-04-14 00:24:54 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
#ifndef nsTableRowFrame_h__
|
|
|
|
#define nsTableRowFrame_h__
|
|
|
|
|
|
|
|
#include "nscore.h"
|
1998-10-20 21:45:07 +04:00
|
|
|
#include "nsHTMLContainerFrame.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-05-22 03:43:18 +04:00
|
|
|
class nsTableFrame;
|
1998-06-05 06:36:25 +04:00
|
|
|
class nsTableCellFrame;
|
1998-04-23 21:29:07 +04:00
|
|
|
struct RowReflowState;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
/**
|
1998-04-15 01:45:28 +04:00
|
|
|
* 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
|
1998-04-14 00:24:54 +04:00
|
|
|
*/
|
1998-10-20 21:45:07 +04:00
|
|
|
class nsTableRowFrame : public nsHTMLContainerFrame
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
public:
|
1998-10-14 20:32:45 +04:00
|
|
|
/** Initialization of data */
|
|
|
|
NS_IMETHOD InitChildren(PRInt32 aRowIndex=-1);
|
|
|
|
|
|
|
|
void ResetInitChildren();
|
1998-04-15 01:45:28 +04:00
|
|
|
|
|
|
|
/** instantiate a new instance of nsTableRowFrame.
|
1998-09-15 21:58:24 +04:00
|
|
|
* @param aResult the new object is returned in this out-param
|
|
|
|
* @param aContent the table object to map
|
|
|
|
* @param aParent the parent of the new frame
|
1998-04-15 01:45:28 +04:00
|
|
|
*
|
|
|
|
* @return NS_OK if the frame was properly allocated, otherwise an error code
|
|
|
|
*/
|
1998-09-15 21:58:24 +04:00
|
|
|
friend nsresult
|
1998-12-03 09:31:43 +03:00
|
|
|
NS_NewTableRowFrame(nsIFrame*& aResult);
|
1998-09-16 21:19:20 +04:00
|
|
|
|
1998-11-10 09:05:32 +03:00
|
|
|
NS_IMETHOD SetInitialChildList(nsIPresContext& aPresContext,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-04-15 01:45:28 +04:00
|
|
|
/** @see nsIFrame::Paint */
|
1998-04-17 05:41:24 +04:00
|
|
|
NS_IMETHOD Paint(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
1998-12-18 18:54:23 +03:00
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-04-15 01:45:28 +04:00
|
|
|
|
|
|
|
/** ask all children to paint themselves, without clipping (for cells with rowspan>1)
|
|
|
|
* @see nsIFrame::Paint
|
|
|
|
*/
|
1998-04-14 00:24:54 +04:00
|
|
|
virtual void PaintChildren(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
1998-12-18 18:54:23 +03:00
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-05-25 21:31:49 +04:00
|
|
|
/** calls Reflow for all of its child cells.
|
1998-04-15 01:45:28 +04:00
|
|
|
* Cells with rowspan=1 are all set to the same height and stacked horizontally.
|
|
|
|
* <P> Cells are not split unless absolutely necessary.
|
|
|
|
* <P> 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.
|
|
|
|
*
|
1998-05-25 21:31:49 +04:00
|
|
|
* @see nsIFrame::Reflow
|
1998-04-15 01:45:28 +04:00
|
|
|
* @see nsTableFrame::BalanceColumnWidths
|
|
|
|
* @see nsTableFrame::ShrinkWrapChildren
|
|
|
|
*/
|
1998-07-15 06:53:09 +04:00
|
|
|
NS_IMETHOD Reflow(nsIPresContext& aPresContext,
|
1998-10-01 08:46:11 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-02 08:10:00 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-05-25 21:31:49 +04:00
|
|
|
nsReflowStatus& aStatus);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-11-20 04:01:25 +03:00
|
|
|
virtual void DidResize(nsIPresContext& aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState);
|
1998-07-03 00:35:23 +04:00
|
|
|
|
1998-04-15 01:45:28 +04:00
|
|
|
/** @see nsContainerFrame::CreateContinuingFrame */
|
1998-07-15 07:23:23 +04:00
|
|
|
NS_IMETHOD CreateContinuingFrame(nsIPresContext& aPresContext,
|
1998-05-07 04:08:20 +04:00
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aStyleContext,
|
|
|
|
nsIFrame*& aContinuingFrame);
|
1998-11-19 20:22:29 +03:00
|
|
|
|
|
|
|
NS_IMETHOD GetFrameName(nsString& aResult) const;
|
1998-04-15 01:45:28 +04:00
|
|
|
|
|
|
|
/** set mTallestCell to 0 in anticipation of recalculating it */
|
1998-04-14 00:24:54 +04:00
|
|
|
void ResetMaxChildHeight();
|
|
|
|
|
1998-04-15 01:45:28 +04:00
|
|
|
/** set mTallestCell to max(mTallestCell, aChildHeight) */
|
1998-05-22 03:43:18 +04:00
|
|
|
void SetMaxChildHeight(nscoord aChildHeight, nscoord aCellTopMargin, nscoord aCellBottomMargin);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
/** returns the tallest child in this row (ignoring any cell with rowspans) */
|
1998-05-22 03:43:18 +04:00
|
|
|
nscoord GetTallestChild() const;
|
|
|
|
nscoord GetChildMaxTopMargin() const;
|
|
|
|
nscoord GetChildMaxBottomMargin() const;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-06-17 20:38:24 +04:00
|
|
|
PRInt32 GetMaxColumns() const;
|
|
|
|
|
|
|
|
/** returns the ordinal position of this row in its table */
|
|
|
|
virtual PRInt32 GetRowIndex() const;
|
|
|
|
|
|
|
|
/** set this row's starting row index */
|
1998-12-16 07:31:38 +03:00
|
|
|
void SetRowIndex (int aRowIndex);
|
1998-06-17 20:38:24 +04:00
|
|
|
|
1998-11-18 08:25:26 +03:00
|
|
|
virtual PRBool Contains(const nsPoint& aPoint);
|
1998-11-07 03:36:37 +03:00
|
|
|
|
1998-09-03 01:59:54 +04:00
|
|
|
NS_IMETHOD List(FILE* out = stdout, PRInt32 aIndent = 0, nsIListFilter *aFilter = nsnull) const;
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
protected:
|
|
|
|
|
1998-04-15 01:45:28 +04:00
|
|
|
/** protected constructor.
|
|
|
|
* @see NewFrame
|
|
|
|
*/
|
1998-12-03 09:31:43 +03:00
|
|
|
nsTableRowFrame();
|
1998-04-23 21:29:07 +04:00
|
|
|
|
1998-10-20 21:45:07 +04:00
|
|
|
/** implement abstract method on nsHTMLContainerFrame */
|
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
1998-10-14 20:32:45 +04:00
|
|
|
/** Incremental Reflow attempts to do column balancing with the minimum number of reflow
|
|
|
|
* commands to child elements. This is done by processing the reflow command,
|
|
|
|
* rebalancing column widths (if necessary), then comparing the resulting column widths
|
|
|
|
* to the prior column widths and reflowing only those cells that require a reflow.
|
|
|
|
*
|
|
|
|
* @see Reflow
|
|
|
|
*/
|
|
|
|
NS_IMETHOD IncrementalReflow(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
|
|
|
NS_IMETHOD IR_TargetIsChild(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
|
|
|
nsIFrame * aNextFrame);
|
|
|
|
|
|
|
|
NS_IMETHOD IR_TargetIsMe(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
|
|
|
NS_IMETHOD IR_CellInserted(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
1998-10-20 19:59:56 +04:00
|
|
|
nsTableCellFrame * aInsertedFrame,
|
1998-10-14 20:32:45 +04:00
|
|
|
PRBool aReplace);
|
|
|
|
|
|
|
|
NS_IMETHOD IR_CellAppended(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
1998-10-20 19:59:56 +04:00
|
|
|
nsTableCellFrame * aAppendedFrame);
|
1998-10-14 20:32:45 +04:00
|
|
|
|
1998-10-20 19:59:56 +04:00
|
|
|
NS_IMETHOD IR_DidAppendCell(nsTableCellFrame *aRowFrame);
|
1998-10-14 20:32:45 +04:00
|
|
|
|
|
|
|
NS_IMETHOD IR_CellRemoved(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
1998-10-20 19:59:56 +04:00
|
|
|
nsTableCellFrame * aDeletedFrame);
|
1998-10-14 20:32:45 +04:00
|
|
|
|
1998-10-30 10:57:44 +03:00
|
|
|
NS_IMETHOD IR_StyleChanged(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
1998-06-24 23:13:19 +04:00
|
|
|
// row-specific methods
|
|
|
|
|
1998-07-24 04:43:09 +04:00
|
|
|
void GetMinRowSpan(nsTableFrame *aTableFrame);
|
1998-06-24 23:13:19 +04:00
|
|
|
|
1998-07-24 04:43:09 +04:00
|
|
|
void FixMinCellHeight(nsTableFrame *aTableFrame);
|
1998-06-24 23:13:19 +04:00
|
|
|
|
1998-10-20 19:59:56 +04:00
|
|
|
NS_IMETHOD RecoverState(nsIPresContext& aPresContext,
|
|
|
|
RowReflowState& aState,
|
|
|
|
nsIFrame* aKidFrame,
|
|
|
|
nscoord& aMaxCellTopMargin,
|
|
|
|
nscoord& aMaxCellBottomMargin);
|
1998-06-24 23:13:19 +04:00
|
|
|
|
1998-07-15 21:05:21 +04:00
|
|
|
void PlaceChild(nsIPresContext& aPresContext,
|
1998-07-10 08:00:38 +04:00
|
|
|
RowReflowState& aState,
|
|
|
|
nsIFrame* aKidFrame,
|
|
|
|
const nsRect& aKidRect,
|
|
|
|
nsSize* aMaxElementSize,
|
|
|
|
nsSize* aKidMaxElementSize);
|
|
|
|
|
|
|
|
nscoord ComputeCellXOffset(const RowReflowState& aState,
|
|
|
|
nsIFrame* aKidFrame,
|
|
|
|
const nsMargin& aKidMargin) const;
|
|
|
|
nscoord ComputeCellAvailWidth(const RowReflowState& aState,
|
|
|
|
nsIFrame* aKidFrame) const;
|
1998-07-02 09:39:10 +04:00
|
|
|
|
1998-11-20 04:01:25 +03:00
|
|
|
nsIFrame * GetFirstChildForDirection(PRUint8 aDir);
|
|
|
|
nsIFrame * GetNextChildForDirection(PRUint8 aDir, nsIFrame *aCurrentChild);
|
|
|
|
|
1998-04-23 21:29:07 +04:00
|
|
|
/**
|
1998-07-11 02:56:13 +04:00
|
|
|
* Called for a resize reflow. Typically because the column widths have
|
|
|
|
* changed. Reflows all the existing table cell frames
|
1998-04-23 21:29:07 +04:00
|
|
|
*/
|
1998-10-20 19:59:56 +04:00
|
|
|
NS_IMETHOD ResizeReflow(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
1998-04-23 21:29:07 +04:00
|
|
|
|
|
|
|
/**
|
1998-07-11 02:56:13 +04:00
|
|
|
* Called for the initial reflow. Creates each table cell frame, and
|
|
|
|
* reflows the cell frame to gets its minimum and maximum sizes
|
1998-04-23 21:29:07 +04:00
|
|
|
*/
|
1998-10-20 19:59:56 +04:00
|
|
|
NS_IMETHOD InitialReflow(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
|
|
|
nsTableCellFrame * aStartFrame,
|
|
|
|
PRBool aDoSiblings);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
private:
|
1998-06-11 04:13:18 +04:00
|
|
|
PRInt32 mRowIndex;
|
1998-05-22 03:43:18 +04:00
|
|
|
nscoord mTallestCell; // not my height, but the height of my tallest child
|
|
|
|
nscoord mCellMaxTopMargin;
|
|
|
|
nscoord mCellMaxBottomMargin;
|
1998-06-24 23:13:19 +04:00
|
|
|
PRInt32 mMinRowSpan; // the smallest row span among all my child cells
|
1998-10-14 20:32:45 +04:00
|
|
|
PRBool mInitializedChildren; // PR_TRUE if child cells have been initialized
|
|
|
|
// (for now, that means "added to the table", and
|
|
|
|
// is NOT the same as having nsIFrame::Init() called.)
|
1998-06-11 04:13:18 +04:00
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
1998-06-17 20:38:24 +04:00
|
|
|
inline PRInt32 nsTableRowFrame::GetRowIndex() const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(0<=mRowIndex, "bad state: row index");
|
|
|
|
return (mRowIndex);
|
|
|
|
}
|
|
|
|
|
1998-12-16 07:31:38 +03:00
|
|
|
inline void nsTableRowFrame::SetRowIndex (int aRowIndex)
|
|
|
|
{
|
|
|
|
mRowIndex = aRowIndex;
|
|
|
|
}
|
|
|
|
|
1998-10-14 20:32:45 +04:00
|
|
|
inline void nsTableRowFrame::ResetInitChildren()
|
|
|
|
{ mInitializedChildren=PR_FALSE; }
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#endif
|