1998-04-13 20:24:54 +00: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 nsTableRowGroupFrame_h__
|
|
|
|
#define nsTableRowGroupFrame_h__
|
|
|
|
|
|
|
|
#include "nscore.h"
|
1998-10-20 17:45:07 +00:00
|
|
|
#include "nsHTMLContainerFrame.h"
|
1998-04-23 17:29:07 +00:00
|
|
|
#include "nsIAtom.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-10-14 16:32:45 +00:00
|
|
|
class nsTableRowFrame;
|
1998-04-13 20:24:54 +00:00
|
|
|
struct RowGroupReflowState;
|
|
|
|
|
|
|
|
/**
|
1998-04-14 21:45:28 +00: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-13 20:24:54 +00:00
|
|
|
*/
|
1998-10-20 17:45:07 +00:00
|
|
|
class nsTableRowGroupFrame : public nsHTMLContainerFrame
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
|
|
|
public:
|
1998-04-14 21:45:28 +00:00
|
|
|
|
1998-12-03 20:19:01 +00:00
|
|
|
// default constructor supplied by the compiler
|
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/** instantiate a new instance of nsTableRowGroupFrame.
|
1998-09-15 17:58:24 +00: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-14 21:45:28 +00:00
|
|
|
*
|
|
|
|
* @return NS_OK if the frame was properly allocated, otherwise an error code
|
|
|
|
*/
|
1998-09-15 17:58:24 +00:00
|
|
|
friend nsresult
|
1998-12-03 06:31:43 +00:00
|
|
|
NS_NewTableRowGroupFrame(nsIFrame*& aResult);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-11-10 06:05:32 +00:00
|
|
|
NS_IMETHOD SetInitialChildList(nsIPresContext& aPresContext,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList);
|
1998-09-16 17:19:20 +00:00
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/** @see nsIFrame::Paint */
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD Paint(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
1998-12-18 15:54:23 +00:00
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/** ask all children to paint themselves, without clipping (for cells with rowspan>1)
|
|
|
|
* @see nsIFrame::Paint
|
|
|
|
*/
|
1998-04-13 20:24:54 +00:00
|
|
|
virtual void PaintChildren(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
1998-12-18 15:54:23 +00:00
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-11-07 00:36:37 +00:00
|
|
|
/**
|
1998-11-18 05:25:26 +00:00
|
|
|
* Find the correct descendant frame.
|
|
|
|
* Return PR_TRUE if a frame containing the point is found.
|
|
|
|
* @see nsContainerFrame::GetFrameForPoint
|
1998-11-07 00:36:37 +00:00
|
|
|
*/
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_IMETHOD GetFrameForPoint(const nsPoint& aPoint, nsIFrame** aFrame);
|
1998-11-07 00:36:37 +00:00
|
|
|
|
1998-11-18 05:25:26 +00:00
|
|
|
/** calls Reflow for all of its child rows.
|
1998-04-14 21:45:28 +00: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 17:31:49 +00:00
|
|
|
* @see nsIFrame::Reflow
|
1998-04-14 21:45:28 +00:00
|
|
|
*/
|
1998-07-15 02:53:09 +00:00
|
|
|
NS_IMETHOD Reflow(nsIPresContext& aPresContext,
|
1998-10-01 04:46:11 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-02 04:10:00 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-05-25 17:31:49 +00:00
|
|
|
nsReflowStatus& aStatus);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-11-19 17:22:29 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsString& aResult) const;
|
|
|
|
|
1998-10-20 17:45:07 +00:00
|
|
|
/** set aCount to the number of child rows (not necessarily == number of child frames) */
|
|
|
|
NS_METHOD GetRowCount(PRInt32 &aCount);
|
|
|
|
|
1998-10-22 05:27:11 +00:00
|
|
|
/** get the maximum number of columns taken up by any row in this rowgroup */
|
|
|
|
NS_METHOD GetMaxColumns(PRInt32 &aMaxColumns) const;
|
|
|
|
|
1998-10-20 17:45:07 +00:00
|
|
|
NS_IMETHOD List(FILE* out = stdout, PRInt32 aIndent = 0, nsIListFilter *aFilter = nsnull) const;
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/** implement abstract method on nsHTMLContainerFrame */
|
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
|
|
|
nscoord GetTopMarginFor(nsIPresContext* aCX,
|
|
|
|
RowGroupReflowState& aReflowState,
|
|
|
|
const nsMargin& aKidMargin);
|
|
|
|
|
1998-12-14 01:24:11 +00:00
|
|
|
void PlaceChild(nsIPresContext& aPresContext,
|
|
|
|
RowGroupReflowState& aReflowState,
|
|
|
|
nsIFrame* aKidFrame,
|
|
|
|
const nsRect& aKidRect,
|
|
|
|
nsSize* aMaxElementSize,
|
|
|
|
nsSize& aKidMaxElementSize);
|
1998-10-20 17:45:07 +00:00
|
|
|
|
1998-11-20 01:01:25 +00:00
|
|
|
void CalculateRowHeights(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState);
|
1998-10-20 17:45:07 +00:00
|
|
|
|
|
|
|
|
1998-10-14 16:32:45 +00: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
|
|
|
|
*/
|
1998-11-04 20:09:19 +00:00
|
|
|
NS_IMETHOD IncrementalReflow(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowGroupReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
1998-10-14 16:32:45 +00:00
|
|
|
|
|
|
|
NS_IMETHOD IR_TargetIsChild(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowGroupReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
|
|
|
nsIFrame * aNextFrame);
|
|
|
|
|
|
|
|
NS_IMETHOD IR_TargetIsMe(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowGroupReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
|
|
|
NS_IMETHOD IR_RowInserted(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowGroupReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
1998-10-19 23:43:06 +00:00
|
|
|
nsTableRowFrame * aInsertedFrame,
|
1998-10-14 16:32:45 +00:00
|
|
|
PRBool aReplace);
|
|
|
|
|
|
|
|
NS_IMETHOD IR_RowAppended(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowGroupReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
1998-10-19 23:43:06 +00:00
|
|
|
nsTableRowFrame * aAppendedFrame);
|
1998-10-14 16:32:45 +00:00
|
|
|
|
|
|
|
NS_IMETHOD IR_RowRemoved(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowGroupReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
1998-10-19 23:43:06 +00:00
|
|
|
nsTableRowFrame * aDeletedFrame);
|
1998-10-14 16:32:45 +00:00
|
|
|
|
1998-10-30 07:57:44 +00:00
|
|
|
NS_IMETHOD IR_StyleChanged(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
RowGroupReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
1998-10-19 23:43:06 +00:00
|
|
|
NS_IMETHOD DidAppendRow(nsTableRowFrame *aRowFrame);
|
|
|
|
|
|
|
|
PRBool NoRowsFollow();
|
1998-10-14 16:32:45 +00:00
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/** @see nsContainerFrame::CreateContinuingFrame */
|
1998-07-15 03:23:23 +00:00
|
|
|
NS_IMETHOD CreateContinuingFrame(nsIPresContext& aPresContext,
|
1998-05-07 00:08:20 +00:00
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aStyleContext,
|
|
|
|
nsIFrame*& aContinuingFrame);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-10-14 16:32:45 +00:00
|
|
|
nsresult AdjustSiblingsAfterReflow(nsIPresContext& aPresContext,
|
|
|
|
RowGroupReflowState& aReflowState,
|
1998-07-02 23:19:31 +00:00
|
|
|
nsIFrame* aKidFrame,
|
|
|
|
nscoord aDeltaY);
|
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/**
|
|
|
|
* Reflow the frames we've already created
|
|
|
|
*
|
|
|
|
* @param aPresContext presentation context to use
|
1998-10-14 16:32:45 +00:00
|
|
|
* @param aReflowState current inline state
|
1998-04-14 21:45:28 +00:00
|
|
|
* @return true if we successfully reflowed all the mapped children and false
|
|
|
|
* otherwise, e.g. we pushed children to the next in flow
|
|
|
|
*/
|
1998-10-19 23:43:06 +00:00
|
|
|
NS_METHOD ReflowMappedChildren(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-14 16:32:45 +00:00
|
|
|
RowGroupReflowState& aReflowState,
|
1998-10-19 23:43:06 +00:00
|
|
|
nsReflowStatus& aStatus,
|
|
|
|
nsTableRowFrame * aStartFrame,
|
|
|
|
nsReflowReason aReason,
|
|
|
|
PRBool aDoSiblings);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
/**
|
|
|
|
* Try and pull-up frames from our next-in-flow
|
|
|
|
*
|
|
|
|
* @param aPresContext presentation context to use
|
1998-10-14 16:32:45 +00:00
|
|
|
* @param aReflowState current inline state
|
1998-04-14 21:45:28 +00:00
|
|
|
* @return true if we successfully pulled-up all the children and false
|
|
|
|
* otherwise, e.g. child didn't fit
|
|
|
|
*/
|
1998-10-19 23:43:06 +00:00
|
|
|
NS_METHOD PullUpChildren(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-14 16:32:45 +00:00
|
|
|
RowGroupReflowState& aReflowState,
|
1998-10-19 23:43:06 +00:00
|
|
|
nsReflowStatus& aStatus);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-12-14 01:24:11 +00:00
|
|
|
nsresult SplitRowGroup(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
1998-04-23 17:29:07 +00:00
|
|
|
private:
|
|
|
|
nsIAtom *mType;
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|