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.
|
|
|
|
*/
|
|
|
|
#include "nsTableRowFrame.h"
|
|
|
|
#include "nsIRenderingContext.h"
|
|
|
|
#include "nsIPresContext.h"
|
|
|
|
#include "nsIStyleContext.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsIContentDelegate.h"
|
|
|
|
#include "nsTableFrame.h"
|
1998-06-05 02:36:25 +00:00
|
|
|
#include "nsTableColFrame.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
#include "nsTableCellFrame.h"
|
1998-04-14 21:49:29 +00:00
|
|
|
#include "nsIView.h"
|
1998-06-03 00:43:53 +00:00
|
|
|
#include "nsIPtr.h"
|
1998-06-23 05:43:27 +00:00
|
|
|
#include "nsIReflowCommand.h"
|
1998-06-03 00:43:53 +00:00
|
|
|
|
|
|
|
NS_DEF_PTR(nsIStyleContext);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
static PRBool gsDebug1 = PR_FALSE;
|
|
|
|
static PRBool gsDebug2 = PR_FALSE;
|
|
|
|
//#define NOISY
|
1998-07-11 00:00:31 +00:00
|
|
|
//#define NOISY_FLOW
|
1998-04-13 20:24:54 +00:00
|
|
|
#else
|
|
|
|
static const PRBool gsDebug1 = PR_FALSE;
|
|
|
|
static const PRBool gsDebug2 = PR_FALSE;
|
|
|
|
#endif
|
|
|
|
|
1998-04-23 17:29:07 +00:00
|
|
|
/* ----------- RowReflowState ---------- */
|
|
|
|
|
|
|
|
struct RowReflowState {
|
1998-05-29 20:36:05 +00:00
|
|
|
// Our reflow state
|
|
|
|
const nsReflowState& reflowState;
|
|
|
|
|
1998-04-23 17:29:07 +00:00
|
|
|
// The body's available size (computed from the body's parent)
|
|
|
|
nsSize availSize;
|
|
|
|
|
1998-07-11 00:00:31 +00:00
|
|
|
// the running x-offset
|
|
|
|
nscoord x;
|
|
|
|
|
1998-07-01 04:55:15 +00:00
|
|
|
// Height of tallest cell (excluding cells with rowspan > 1)
|
|
|
|
nscoord maxCellHeight; // just the height of the cell frame
|
|
|
|
nscoord maxCellVertSpace; // the maximum MAX(cellheight + topMargin + bottomMargin)
|
1998-04-23 17:29:07 +00:00
|
|
|
|
|
|
|
nsTableFrame *tableFrame;
|
|
|
|
|
|
|
|
|
1998-05-29 20:36:05 +00:00
|
|
|
RowReflowState( nsIPresContext* aPresContext,
|
1998-07-10 22:56:13 +00:00
|
|
|
const nsReflowState& aReflowState,
|
|
|
|
nsTableFrame* aTableFrame)
|
1998-05-29 20:36:05 +00:00
|
|
|
: reflowState(aReflowState)
|
1998-04-23 17:29:07 +00:00
|
|
|
{
|
1998-05-29 20:36:05 +00:00
|
|
|
availSize.width = reflowState.maxSize.width;
|
|
|
|
availSize.height = reflowState.maxSize.height;
|
1998-07-01 04:55:15 +00:00
|
|
|
maxCellHeight = 0;
|
|
|
|
maxCellVertSpace = 0;
|
1998-07-10 22:56:13 +00:00
|
|
|
tableFrame = aTableFrame;
|
1998-07-11 00:00:31 +00:00
|
|
|
x=0;
|
1998-04-23 17:29:07 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ----------- nsTableRowpFrame ---------- */
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
nsTableRowFrame::nsTableRowFrame(nsIContent* aContent,
|
1998-04-23 17:29:07 +00:00
|
|
|
nsIFrame* aParentFrame)
|
1998-05-05 23:56:50 +00:00
|
|
|
: nsContainerFrame(aContent, aParentFrame),
|
1998-05-21 23:43:18 +00:00
|
|
|
mTallestCell(0),
|
|
|
|
mCellMaxTopMargin(0),
|
1998-06-24 19:13:19 +00:00
|
|
|
mCellMaxBottomMargin(0),
|
|
|
|
mMinRowSpan(1)
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTableRowFrame::~nsTableRowFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1998-07-02 20:35:23 +00:00
|
|
|
/**
|
|
|
|
* Post-reflow hook. This is where the table row does its post-processing
|
|
|
|
*/
|
|
|
|
NS_METHOD
|
|
|
|
nsTableRowFrame::DidReflow(nsIPresContext& aPresContext,
|
|
|
|
nsDidReflowStatus aStatus)
|
|
|
|
{
|
|
|
|
if (NS_FRAME_REFLOW_FINISHED == aStatus) {
|
|
|
|
// Resize and re-align the cell frames based on our row height
|
|
|
|
nscoord cellHeight = mRect.height - mCellMaxTopMargin - mCellMaxBottomMargin;
|
|
|
|
nsTableCellFrame *cellFrame = (nsTableCellFrame*)mFirstChild;
|
|
|
|
nsTableFrame* tableFrame;
|
|
|
|
mContentParent->GetContentParent((nsIFrame*&)tableFrame);
|
|
|
|
while (nsnull != cellFrame)
|
|
|
|
{
|
|
|
|
PRInt32 rowSpan = tableFrame->GetEffectiveRowSpan(mRowIndex, cellFrame);
|
|
|
|
if (1==rowSpan)
|
|
|
|
{
|
1998-07-11 00:00:31 +00:00
|
|
|
// resize the cell's height
|
1998-07-02 20:35:23 +00:00
|
|
|
nsSize cellFrameSize;
|
|
|
|
cellFrame->GetSize(cellFrameSize);
|
|
|
|
cellFrame->SizeTo(cellFrameSize.width, cellHeight);
|
|
|
|
|
1998-07-11 00:00:31 +00:00
|
|
|
// realign cell content based on the new height
|
1998-07-02 20:35:23 +00:00
|
|
|
cellFrame->VerticallyAlignChild(&aPresContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the next cell
|
|
|
|
cellFrame->GetNextSibling((nsIFrame*&)cellFrame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let our base class do the usual work
|
|
|
|
return nsContainerFrame::DidReflow(aPresContext, aStatus);
|
|
|
|
}
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
void nsTableRowFrame::ResetMaxChildHeight()
|
|
|
|
{
|
|
|
|
mTallestCell=0;
|
1998-05-21 23:43:18 +00:00
|
|
|
mCellMaxTopMargin=0;
|
|
|
|
mCellMaxBottomMargin=0;
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
1998-05-21 23:43:18 +00:00
|
|
|
void nsTableRowFrame::SetMaxChildHeight(nscoord aChildHeight, nscoord aTopMargin, nscoord aBottomMargin)
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
|
|
|
if (mTallestCell<aChildHeight)
|
|
|
|
mTallestCell = aChildHeight;
|
1998-05-21 23:43:18 +00:00
|
|
|
|
|
|
|
if (mCellMaxTopMargin<aTopMargin)
|
|
|
|
mCellMaxTopMargin = aTopMargin;
|
|
|
|
|
|
|
|
if (mCellMaxBottomMargin<aBottomMargin)
|
|
|
|
mCellMaxBottomMargin = aBottomMargin;
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_METHOD nsTableRowFrame::Paint(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect)
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
|
|
|
// for debug...
|
1998-04-30 00:27:59 +00:00
|
|
|
/*
|
1998-04-13 20:24:54 +00:00
|
|
|
if (nsIFrame::GetShowFrameBorders()) {
|
|
|
|
aRenderingContext.SetColor(NS_RGB(0,0,128));
|
|
|
|
aRenderingContext.DrawRect(0, 0, mRect.width, mRect.height);
|
|
|
|
}
|
1998-04-30 00:27:59 +00:00
|
|
|
*/
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
PaintChildren(aPresContext, aRenderingContext, aDirtyRect);
|
1998-04-17 01:41:24 +00:00
|
|
|
return NS_OK;
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** overloaded method from nsContainerFrame. The difference is that
|
|
|
|
* we don't want to clip our children, so a cell can do a rowspan
|
|
|
|
*/
|
|
|
|
void nsTableRowFrame::PaintChildren(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect)
|
|
|
|
{
|
|
|
|
nsIFrame* kid = mFirstChild;
|
|
|
|
while (nsnull != kid) {
|
1998-04-17 01:41:24 +00:00
|
|
|
nsIView *pView;
|
|
|
|
|
|
|
|
kid->GetView(pView);
|
1998-04-14 21:49:29 +00:00
|
|
|
if (nsnull == pView) {
|
|
|
|
nsRect kidRect;
|
|
|
|
kid->GetRect(kidRect);
|
1998-06-14 00:45:21 +00:00
|
|
|
nsRect damageArea;
|
|
|
|
PRBool overlap = damageArea.IntersectRect(aDirtyRect, kidRect);
|
|
|
|
if (overlap) {
|
|
|
|
// Translate damage area into kid's coordinate system
|
|
|
|
nsRect kidDamageArea(damageArea.x - kidRect.x,
|
|
|
|
damageArea.y - kidRect.y,
|
|
|
|
damageArea.width, damageArea.height);
|
|
|
|
aRenderingContext.PushState();
|
|
|
|
aRenderingContext.Translate(kidRect.x, kidRect.y);
|
|
|
|
kid->Paint(aPresContext, aRenderingContext, kidDamageArea);
|
|
|
|
if (nsIFrame::GetShowFrameBorders()) {
|
|
|
|
aRenderingContext.SetColor(NS_RGB(255,0,0));
|
|
|
|
aRenderingContext.DrawRect(0, 0, kidRect.width, kidRect.height);
|
|
|
|
}
|
|
|
|
aRenderingContext.PopState();
|
1998-04-14 21:49:29 +00:00
|
|
|
}
|
1998-04-17 01:41:24 +00:00
|
|
|
} else {
|
1998-04-14 21:49:29 +00:00
|
|
|
NS_RELEASE(pView);
|
1998-04-17 01:41:24 +00:00
|
|
|
}
|
|
|
|
kid->GetNextSibling(kid);
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-06-17 16:38:24 +00:00
|
|
|
void nsTableRowFrame::SetRowIndex (int aRowIndex)
|
|
|
|
{
|
|
|
|
mRowIndex = aRowIndex;
|
|
|
|
}
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-05-21 23:43:18 +00:00
|
|
|
/** returns the height of the tallest child in this row (ignoring any cell with rowspans) */
|
|
|
|
nscoord nsTableRowFrame::GetTallestChild() const
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
|
|
|
return mTallestCell;
|
|
|
|
}
|
|
|
|
|
1998-05-21 23:43:18 +00:00
|
|
|
nscoord nsTableRowFrame::GetChildMaxTopMargin() const
|
|
|
|
{
|
|
|
|
return mCellMaxTopMargin;
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord nsTableRowFrame::GetChildMaxBottomMargin() const
|
|
|
|
{
|
|
|
|
return mCellMaxBottomMargin;
|
|
|
|
}
|
|
|
|
|
1998-06-17 16:38:24 +00:00
|
|
|
PRInt32 nsTableRowFrame::GetMaxColumns() const
|
|
|
|
{
|
|
|
|
int sum = 0;
|
1998-06-26 00:48:44 +00:00
|
|
|
nsTableCellFrame *cell=(nsTableCellFrame *)mFirstChild;
|
1998-06-17 16:38:24 +00:00
|
|
|
while (nsnull!=cell) {
|
|
|
|
sum += cell->GetColSpan();
|
|
|
|
cell->GetNextSibling((nsIFrame *&)cell);
|
|
|
|
}
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
|
1998-06-24 19:13:19 +00:00
|
|
|
/* GetMinRowSpan is needed for deviant cases where every cell in a row has a rowspan > 1.
|
|
|
|
* It sets mMinRowSpan, which is used in FixMinCellHeight and PlaceChild
|
|
|
|
*/
|
|
|
|
void nsTableRowFrame::GetMinRowSpan()
|
|
|
|
{
|
|
|
|
PRInt32 minRowSpan=-1;
|
|
|
|
nsIFrame *frame=mFirstChild;
|
|
|
|
while (nsnull!=frame)
|
|
|
|
{
|
|
|
|
PRInt32 rowSpan = ((nsTableCellFrame *)frame)->GetRowSpan();
|
|
|
|
if (-1==minRowSpan)
|
|
|
|
minRowSpan = rowSpan;
|
|
|
|
else if (minRowSpan>rowSpan)
|
|
|
|
minRowSpan = rowSpan;
|
|
|
|
frame->GetNextSibling(frame);
|
|
|
|
}
|
|
|
|
mMinRowSpan = minRowSpan;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsTableRowFrame::FixMinCellHeight()
|
|
|
|
{
|
|
|
|
nsIFrame *frame=mFirstChild;
|
|
|
|
while (nsnull!=frame)
|
|
|
|
{
|
|
|
|
PRInt32 rowSpan = ((nsTableCellFrame *)frame)->GetRowSpan();
|
|
|
|
if (mMinRowSpan==rowSpan)
|
|
|
|
{
|
|
|
|
nsRect rect;
|
|
|
|
frame->GetRect(rect);
|
|
|
|
if (rect.height > mTallestCell)
|
|
|
|
mTallestCell = rect.height;
|
|
|
|
}
|
|
|
|
frame->GetNextSibling(frame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-04-23 17:29:07 +00:00
|
|
|
// Position and size aKidFrame and update our reflow state. The origin of
|
|
|
|
// aKidRect is relative to the upper-left origin of our frame, and includes
|
|
|
|
// any left/top margin.
|
|
|
|
void nsTableRowFrame::PlaceChild(nsIPresContext* aPresContext,
|
|
|
|
RowReflowState& aState,
|
|
|
|
nsIFrame* aKidFrame,
|
|
|
|
const nsRect& aKidRect,
|
|
|
|
nsSize* aMaxElementSize,
|
1998-07-02 17:40:56 +00:00
|
|
|
nsSize* aKidMaxElementSize)
|
1998-04-23 17:29:07 +00:00
|
|
|
{
|
|
|
|
if (PR_TRUE==gsDebug1)
|
|
|
|
printf ("row: placing cell at %d, %d, %d, %d\n",
|
|
|
|
aKidRect.x, aKidRect.y, aKidRect.width, aKidRect.height);
|
|
|
|
|
|
|
|
// Place and size the child
|
|
|
|
aKidFrame->SetRect(aKidRect);
|
|
|
|
|
1998-07-11 00:00:31 +00:00
|
|
|
// update the running total for the row width
|
|
|
|
aState.x += aKidRect.width;
|
|
|
|
|
1998-04-23 17:29:07 +00:00
|
|
|
// Update the maximum element size
|
|
|
|
PRInt32 rowSpan = ((nsTableCellFrame*)aKidFrame)->GetRowSpan();
|
1998-05-21 23:43:18 +00:00
|
|
|
if (nsnull != aMaxElementSize)
|
|
|
|
{
|
1998-07-02 17:40:56 +00:00
|
|
|
aMaxElementSize->width += aKidMaxElementSize->width;
|
|
|
|
if ((mMinRowSpan==rowSpan) && (aKidMaxElementSize->height>aMaxElementSize->height))
|
1998-04-23 17:29:07 +00:00
|
|
|
{
|
1998-07-02 17:40:56 +00:00
|
|
|
aMaxElementSize->height = aKidMaxElementSize->height;
|
1998-04-23 17:29:07 +00:00
|
|
|
}
|
|
|
|
}
|
1998-07-01 04:55:15 +00:00
|
|
|
|
|
|
|
if (mMinRowSpan == rowSpan)
|
1998-05-21 23:43:18 +00:00
|
|
|
{
|
1998-07-01 04:55:15 +00:00
|
|
|
// Update maxCellHeight
|
|
|
|
if (aKidRect.height > aState.maxCellHeight)
|
|
|
|
aState.maxCellHeight = aKidRect.height;
|
|
|
|
|
|
|
|
// Update maxCellVertSpace
|
|
|
|
nsMargin margin;
|
1998-05-21 23:43:18 +00:00
|
|
|
|
1998-06-17 16:38:24 +00:00
|
|
|
if (aState.tableFrame->GetCellMarginData((nsTableCellFrame *)aKidFrame, margin) == NS_OK)
|
1998-05-21 23:43:18 +00:00
|
|
|
{
|
|
|
|
nscoord height = aKidRect.height + margin.top + margin.bottom;
|
|
|
|
|
|
|
|
if (height > aState.maxCellVertSpace)
|
|
|
|
aState.maxCellVertSpace = height;
|
|
|
|
}
|
|
|
|
}
|
1998-04-23 17:29:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
1998-07-10 22:56:13 +00:00
|
|
|
* Called for a resize reflow. Typically because the column widths have
|
|
|
|
* changed. Reflows all the existing table cell frames
|
1998-04-23 17:29:07 +00:00
|
|
|
*/
|
1998-07-10 22:56:13 +00:00
|
|
|
nsresult nsTableRowFrame::ResizeReflow(nsIPresContext* aPresContext,
|
|
|
|
RowReflowState& aState,
|
|
|
|
nsReflowMetrics& aDesiredSize)
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
1998-04-23 17:29:07 +00:00
|
|
|
NS_PRECONDITION(nsnull != mFirstChild, "no children");
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-07-11 04:16:29 +00:00
|
|
|
nsSize kidMaxElementSize;
|
1998-07-11 00:00:31 +00:00
|
|
|
PRInt32 prevColIndex = -1; // remember the col index of the previous cell to handle rowspans into this row
|
1998-07-10 22:56:13 +00:00
|
|
|
nsSize* pKidMaxElementSize = (nsnull != aDesiredSize.maxElementSize) ?
|
|
|
|
&kidMaxElementSize : nsnull;
|
1998-05-21 23:43:18 +00:00
|
|
|
nscoord maxCellTopMargin = 0;
|
|
|
|
nscoord maxCellBottomMargin = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
// Reflow each of our existing cell frames
|
1998-04-23 17:29:07 +00:00
|
|
|
for (nsIFrame* kidFrame = mFirstChild; nsnull != kidFrame; ) {
|
1998-07-10 22:56:13 +00:00
|
|
|
// Get the frame's margins, and compare the top and bottom margin
|
1998-07-10 04:00:38 +00:00
|
|
|
// against our current max values
|
1998-07-02 05:39:10 +00:00
|
|
|
nsMargin kidMargin;
|
1998-06-17 16:38:24 +00:00
|
|
|
aState.tableFrame->GetCellMarginData((nsTableCellFrame *)kidFrame,kidMargin);
|
1998-05-21 23:43:18 +00:00
|
|
|
if (kidMargin.top > maxCellTopMargin)
|
|
|
|
maxCellTopMargin = kidMargin.top;
|
|
|
|
if (kidMargin.bottom > maxCellBottomMargin)
|
|
|
|
maxCellBottomMargin = kidMargin.bottom;
|
|
|
|
|
1998-07-06 21:00:11 +00:00
|
|
|
// left and right margins already taken into account by table layout strategy
|
1998-04-23 17:29:07 +00:00
|
|
|
|
1998-07-11 00:00:31 +00:00
|
|
|
// Compute the x-origin for the child, taking into account straddlers (cells from prior
|
|
|
|
// rows with rowspans > 1)
|
|
|
|
PRInt32 cellColIndex = ((nsTableCellFrame *)kidFrame)->GetColIndex();
|
|
|
|
if (prevColIndex != (cellColIndex-1))
|
|
|
|
{ // if this cell is not immediately adjacent to the previous cell, factor in missing col info
|
|
|
|
for (PRInt32 colIndex=prevColIndex+1; colIndex<cellColIndex; colIndex++)
|
|
|
|
{
|
|
|
|
aState.x += aState.tableFrame->GetColumnWidth(colIndex);
|
|
|
|
aState.x += kidMargin.left + kidMargin.right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
aState.x += kidMargin.left;
|
|
|
|
|
|
|
|
// at this point, we know the column widths.
|
|
|
|
// so we get the avail width from the known column widths
|
|
|
|
PRInt32 cellColSpan = ((nsTableCellFrame *)kidFrame)->GetColSpan();
|
|
|
|
nscoord availWidth = 0;
|
|
|
|
for (PRInt32 numColSpan=0; numColSpan<cellColSpan; numColSpan++)
|
|
|
|
{
|
|
|
|
availWidth += aState.tableFrame->GetColumnWidth(cellColIndex+numColSpan);
|
|
|
|
if (0<numColSpan)
|
|
|
|
{
|
|
|
|
availWidth += kidMargin.right;
|
|
|
|
if (0!=cellColIndex)
|
|
|
|
availWidth += kidMargin.left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
prevColIndex = cellColIndex + (cellColSpan-1); // remember the rightmost column this cell spans into
|
1998-06-24 18:09:47 +00:00
|
|
|
|
1998-07-10 05:23:05 +00:00
|
|
|
// If the available width is the same as last time we reflowed the cell,
|
1998-07-10 04:00:38 +00:00
|
|
|
// then just use the previous desired size
|
|
|
|
//
|
1998-07-10 05:23:05 +00:00
|
|
|
// XXX Wouldn't it be cleaner (but slightly less efficient) for the row to
|
|
|
|
// just reflow the cell, and have the cell decide whether it could use the
|
|
|
|
// cached value rather than having the row make that determination?
|
1998-07-11 04:16:29 +00:00
|
|
|
nsReflowMetrics desiredSize(pKidMaxElementSize);
|
1998-07-12 00:19:17 +00:00
|
|
|
|
|
|
|
// XXX kipp added the check for a non-null pKidMaxElementSize; if
|
|
|
|
// we need the max-element-size we must reflow the child to get
|
|
|
|
// it, right?
|
|
|
|
if ((nsnull != pKidMaxElementSize) ||
|
|
|
|
(availWidth != ((nsTableCellFrame *)kidFrame)->GetPriorAvailWidth()))
|
1998-04-23 17:29:07 +00:00
|
|
|
{
|
1998-07-10 22:56:13 +00:00
|
|
|
// Always let the cell be as high as it wants. We ignore the height that's
|
|
|
|
// passed in and always place the entire row. Let the row group decide
|
|
|
|
// whether we fit or wehther the entire row is pushed
|
1998-07-10 05:23:05 +00:00
|
|
|
nsSize kidAvailSize(availWidth, NS_UNCONSTRAINEDSIZE);
|
1998-07-11 00:00:31 +00:00
|
|
|
|
1998-07-02 17:40:56 +00:00
|
|
|
// Reflow the child
|
|
|
|
kidFrame->WillReflow(*aPresContext);
|
1998-07-11 00:00:31 +00:00
|
|
|
kidFrame->MoveTo(aState.x, kidMargin.top);
|
1998-07-02 17:40:56 +00:00
|
|
|
nsReflowState kidReflowState(kidFrame, aState.reflowState, kidAvailSize,
|
|
|
|
eReflowReason_Resize);
|
1998-07-10 22:56:13 +00:00
|
|
|
nsReflowStatus status = ReflowChild(kidFrame, aPresContext, desiredSize,
|
|
|
|
kidReflowState);
|
1998-07-10 05:23:05 +00:00
|
|
|
NS_ASSERTION(NS_FRAME_IS_COMPLETE(status), "unexpected reflow status");
|
1998-07-02 17:40:56 +00:00
|
|
|
|
|
|
|
if (gsDebug1)
|
|
|
|
{
|
|
|
|
if (nsnull!=pKidMaxElementSize)
|
|
|
|
printf("reflow of cell returned result = %s with desired=%d,%d, min = %d,%d\n",
|
|
|
|
NS_FRAME_IS_COMPLETE(status)?"complete":"NOT complete",
|
|
|
|
desiredSize.width, desiredSize.height,
|
|
|
|
pKidMaxElementSize->width, pKidMaxElementSize->height);
|
|
|
|
else
|
|
|
|
printf("reflow of cell returned result = %s with desired=%d,%d, min = nsnull\n",
|
|
|
|
NS_FRAME_IS_COMPLETE(status)?"complete":"NOT complete",
|
|
|
|
desiredSize.width, desiredSize.height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1998-07-11 00:00:31 +00:00
|
|
|
nsSize priorSize = ((nsTableCellFrame *)kidFrame)->GetDesiredSize();
|
1998-07-07 01:06:51 +00:00
|
|
|
desiredSize.width = priorSize.width;
|
|
|
|
desiredSize.height = priorSize.height;
|
1998-04-23 17:29:07 +00:00
|
|
|
}
|
|
|
|
|
1998-07-11 04:16:29 +00:00
|
|
|
// Place the child after taking into account its margin and attributes
|
1998-06-03 00:43:53 +00:00
|
|
|
nscoord specifiedHeight = 0;
|
|
|
|
nscoord cellHeight = desiredSize.height;
|
|
|
|
nsIStyleContextPtr kidSC;
|
|
|
|
kidFrame->GetStyleContext(aPresContext, kidSC.AssignRef());
|
1998-06-05 06:09:09 +00:00
|
|
|
const nsStylePosition* kidPosition = (const nsStylePosition*)
|
|
|
|
kidSC->GetStyleData(eStyleStruct_Position);
|
1998-06-03 00:43:53 +00:00
|
|
|
switch (kidPosition->mHeight.GetUnit()) {
|
|
|
|
case eStyleUnit_Coord:
|
|
|
|
specifiedHeight = kidPosition->mHeight.GetCoordValue();
|
|
|
|
break;
|
|
|
|
|
1998-06-05 02:36:25 +00:00
|
|
|
case eStyleUnit_Inherit:
|
|
|
|
// XXX for now, do nothing
|
1998-06-03 00:43:53 +00:00
|
|
|
default:
|
|
|
|
case eStyleUnit_Auto:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (specifiedHeight>cellHeight)
|
|
|
|
cellHeight = specifiedHeight;
|
1998-06-23 23:23:21 +00:00
|
|
|
|
|
|
|
nscoord cellWidth = desiredSize.width;
|
|
|
|
// begin special Nav4 compatibility code
|
|
|
|
if (0==cellWidth)
|
|
|
|
{
|
|
|
|
cellWidth = aState.tableFrame->GetColumnWidth(cellColIndex);
|
|
|
|
}
|
|
|
|
// end special Nav4 compatibility code
|
|
|
|
|
1998-06-24 18:09:47 +00:00
|
|
|
// Place the child
|
1998-07-11 00:00:31 +00:00
|
|
|
nsRect kidRect (aState.x, kidMargin.top, cellWidth, cellHeight);
|
1998-06-23 23:23:21 +00:00
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
PlaceChild(aPresContext, aState, kidFrame, kidRect, aDesiredSize.maxElementSize,
|
1998-07-02 17:40:56 +00:00
|
|
|
pKidMaxElementSize);
|
1998-07-11 00:00:31 +00:00
|
|
|
aState.x += kidMargin.right; // add in right margin only after cell has been placed
|
1998-04-23 17:29:07 +00:00
|
|
|
|
|
|
|
// Get the next child
|
|
|
|
kidFrame->GetNextSibling(kidFrame);
|
|
|
|
}
|
|
|
|
|
1998-05-21 23:43:18 +00:00
|
|
|
SetMaxChildHeight(aState.maxCellHeight,maxCellTopMargin, maxCellBottomMargin); // remember height of tallest child who doesn't have a row span
|
1998-04-23 17:29:07 +00:00
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
// Return our desired size. Note that our desired width is just whatever width
|
|
|
|
// we were given by the row group frame
|
|
|
|
aDesiredSize.width = aState.availSize.width;
|
|
|
|
aDesiredSize.height = aState.maxCellVertSpace;
|
1998-04-23 17:29:07 +00:00
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
return NS_OK;
|
1998-04-23 17:29:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
1998-07-10 22:56:13 +00:00
|
|
|
* Called for the initial reflow. Creates each table cell frame, and
|
|
|
|
* reflows it to gets its minimum and maximum sizes
|
1998-04-23 17:29:07 +00:00
|
|
|
*/
|
1998-07-10 22:56:13 +00:00
|
|
|
nsresult
|
|
|
|
nsTableRowFrame::InitialReflow(nsIPresContext* aPresContext,
|
|
|
|
RowReflowState& aState,
|
|
|
|
nsReflowMetrics& aDesiredSize)
|
1998-04-23 17:29:07 +00:00
|
|
|
{
|
1998-07-10 22:56:13 +00:00
|
|
|
// For our initial reflow we expect to be given an unconstrained width
|
|
|
|
NS_PRECONDITION(NS_UNCONSTRAINEDSIZE == aState.availSize.width, "bad size");
|
|
|
|
|
1998-04-23 17:29:07 +00:00
|
|
|
// Place our children, one at a time, until we are out of children
|
1998-07-10 04:00:38 +00:00
|
|
|
nsSize kidMaxElementSize;
|
|
|
|
PRInt32 kidIndex = 0;
|
|
|
|
nsIFrame* prevKidFrame = nsnull;
|
1998-05-21 23:43:18 +00:00
|
|
|
nscoord maxTopMargin = 0;
|
|
|
|
nscoord maxBottomMargin = 0;
|
1998-07-10 22:56:13 +00:00
|
|
|
nscoord x = 0;
|
|
|
|
nsresult result;
|
1998-05-21 23:43:18 +00:00
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
for (;;) {
|
1998-04-23 17:29:07 +00:00
|
|
|
// Get the next content object
|
|
|
|
nsIContent* cell = mContent->ChildAt(kidIndex);
|
1998-04-20 22:49:15 +00:00
|
|
|
if (nsnull == cell) {
|
1998-07-10 04:00:38 +00:00
|
|
|
break; // no more content
|
1998-04-23 17:29:07 +00:00
|
|
|
}
|
|
|
|
|
1998-06-05 02:36:25 +00:00
|
|
|
// Create a child frame -- always an nsTableCell frame
|
1998-07-10 04:00:38 +00:00
|
|
|
nsIStyleContext* kidSC = aPresContext->ResolveStyleContextFor(cell, this, PR_TRUE);
|
|
|
|
nsIContentDelegate* kidDel = cell->GetDelegate(aPresContext);
|
|
|
|
nsIFrame* kidFrame;
|
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
nsresult result = kidDel->CreateFrame(aPresContext, cell, this, kidSC, kidFrame);
|
1998-07-10 04:00:38 +00:00
|
|
|
NS_RELEASE(kidDel);
|
|
|
|
NS_RELEASE(cell);
|
1998-07-10 22:56:13 +00:00
|
|
|
if (NS_FAILED(result)) {
|
|
|
|
NS_RELEASE(kidSC);
|
|
|
|
break;
|
|
|
|
}
|
1998-07-10 04:00:38 +00:00
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
// Because we're not splittable always allow the child to be as high as
|
|
|
|
// it wants. The default available width is also unconstrained so we can
|
|
|
|
// get the child's maximum width
|
1998-07-10 04:00:38 +00:00
|
|
|
nsSize kidAvailSize(NS_UNCONSTRAINEDSIZE, NS_UNCONSTRAINEDSIZE);
|
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
// See if there's a width constraint for the cell
|
1998-06-29 20:38:22 +00:00
|
|
|
const nsStylePosition* cellPosition = (const nsStylePosition*)
|
1998-07-10 04:00:38 +00:00
|
|
|
kidSC->GetStyleData(eStyleStruct_Position);
|
|
|
|
if (eStyleUnit_Coord == cellPosition->mWidth.GetUnit())
|
1998-06-29 20:38:22 +00:00
|
|
|
{
|
|
|
|
kidAvailSize.width = cellPosition->mWidth.GetCoordValue();
|
|
|
|
}
|
1998-07-10 04:00:38 +00:00
|
|
|
NS_RELEASE(kidSC);
|
1998-05-21 23:43:18 +00:00
|
|
|
|
1998-07-10 04:00:38 +00:00
|
|
|
// Get the child's margins
|
|
|
|
nsMargin margin;
|
1998-05-21 23:43:18 +00:00
|
|
|
nscoord topMargin = 0;
|
|
|
|
|
1998-06-17 16:38:24 +00:00
|
|
|
if (aState.tableFrame->GetCellMarginData((nsTableCellFrame *)kidFrame, margin) == NS_OK)
|
1998-05-21 23:43:18 +00:00
|
|
|
{
|
|
|
|
topMargin = margin.top;
|
|
|
|
}
|
|
|
|
|
1998-07-10 04:00:38 +00:00
|
|
|
maxTopMargin = PR_MAX(margin.top, maxTopMargin);
|
|
|
|
maxBottomMargin = PR_MAX(margin.bottom, maxBottomMargin);
|
1998-05-21 23:43:18 +00:00
|
|
|
|
1998-06-24 16:35:21 +00:00
|
|
|
// Link child frame into the list of children
|
|
|
|
if (nsnull != prevKidFrame) {
|
|
|
|
prevKidFrame->SetNextSibling(kidFrame);
|
|
|
|
} else {
|
|
|
|
mFirstChild = kidFrame; // our first child
|
1998-07-10 04:00:38 +00:00
|
|
|
SetFirstContentOffset(kidIndex);
|
1998-06-24 16:35:21 +00:00
|
|
|
}
|
|
|
|
mChildCount++;
|
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
// Reflow the child. We always want back the max element size even if the
|
|
|
|
// caller doesn't ask for it, because the table needs it to compute column
|
|
|
|
// widths
|
1998-07-10 04:00:38 +00:00
|
|
|
nsReflowMetrics kidSize(&kidMaxElementSize);
|
|
|
|
nsReflowState kidReflowState(kidFrame, aState.reflowState, kidAvailSize,
|
|
|
|
eReflowReason_Initial);
|
|
|
|
nsReflowStatus status;
|
1998-06-24 16:35:21 +00:00
|
|
|
|
|
|
|
kidFrame->WillReflow(*aPresContext);
|
1998-07-10 04:00:38 +00:00
|
|
|
status = ReflowChild(kidFrame, aPresContext, kidSize, kidReflowState);
|
1998-07-11 00:00:31 +00:00
|
|
|
((nsTableCellFrame *)kidFrame)->SetPass1DesiredSize(kidSize);
|
|
|
|
((nsTableCellFrame *)kidFrame)->SetPass1MaxElementSize(kidMaxElementSize);
|
1998-07-10 04:00:38 +00:00
|
|
|
NS_ASSERTION(NS_FRAME_IS_COMPLETE(status), "unexpected child reflow status");
|
|
|
|
|
1998-07-02 17:40:56 +00:00
|
|
|
if (gsDebug1)
|
1998-04-16 22:21:32 +00:00
|
|
|
{
|
1998-07-02 17:40:56 +00:00
|
|
|
printf("reflow of cell returned result = %s with desired=%d,%d, min = %d,%d\n",
|
|
|
|
NS_FRAME_IS_COMPLETE(status)?"complete":"NOT complete",
|
1998-07-10 04:00:38 +00:00
|
|
|
kidSize.width, kidSize.height,
|
|
|
|
kidMaxElementSize.width, kidMaxElementSize.height);
|
1998-04-16 22:21:32 +00:00
|
|
|
}
|
1998-06-24 18:09:47 +00:00
|
|
|
|
1998-04-23 17:29:07 +00:00
|
|
|
// Place the child
|
1998-07-10 22:56:13 +00:00
|
|
|
x += margin.left;
|
|
|
|
nsRect kidRect(x, topMargin, kidSize.width, kidSize.height);
|
|
|
|
PlaceChild(aPresContext, aState, kidFrame, kidRect, aDesiredSize.maxElementSize,
|
|
|
|
&kidMaxElementSize);
|
|
|
|
x += kidSize.width + margin.right;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-07-10 04:00:38 +00:00
|
|
|
// Move to the next content child
|
1998-04-13 20:24:54 +00:00
|
|
|
prevKidFrame = kidFrame;
|
|
|
|
kidIndex++;
|
|
|
|
}
|
|
|
|
|
1998-05-21 23:43:18 +00:00
|
|
|
SetMaxChildHeight(aState.maxCellHeight, maxTopMargin, maxBottomMargin); // remember height of tallest child who doesn't have a row span
|
1998-04-23 17:29:07 +00:00
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
// Return our desired size
|
|
|
|
aDesiredSize.width = x;
|
|
|
|
aDesiredSize.height = aState.maxCellVertSpace;
|
|
|
|
|
1998-04-23 17:29:07 +00:00
|
|
|
// Update the content mapping
|
1998-07-10 04:00:38 +00:00
|
|
|
if (nsnull != prevKidFrame) {
|
|
|
|
SetLastContentOffset(kidIndex - 1);
|
1998-04-23 17:29:07 +00:00
|
|
|
#ifdef NS_DEBUG
|
1998-07-10 04:00:38 +00:00
|
|
|
NS_ASSERTION(IsLastChild(prevKidFrame), "bad last child");
|
|
|
|
PRInt32 len = LengthOf(mFirstChild);
|
|
|
|
NS_ASSERTION(len == mChildCount, "bad child count");
|
1998-04-23 17:29:07 +00:00
|
|
|
#endif
|
1998-07-10 04:00:38 +00:00
|
|
|
}
|
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
return result;
|
1998-04-23 17:29:07 +00:00
|
|
|
}
|
|
|
|
|
1998-07-01 03:03:32 +00:00
|
|
|
// Recover the reflow state to what it should be if aKidFrame is about
|
|
|
|
// to be reflowed
|
1998-07-10 22:56:13 +00:00
|
|
|
//
|
|
|
|
// The things in the RowReflowState object we need to restore are:
|
|
|
|
// - maxCellHeight
|
|
|
|
// - maxVertCellSpace
|
1998-07-14 15:29:50 +00:00
|
|
|
// - x
|
1998-07-01 03:03:32 +00:00
|
|
|
nsresult nsTableRowFrame::RecoverState(RowReflowState& aState,
|
|
|
|
nsIFrame* aKidFrame)
|
|
|
|
{
|
1998-07-14 15:29:50 +00:00
|
|
|
// Walk the list of children looking for aKidFrame. While we're at
|
|
|
|
// it get the maxCellHeight and maxVertCellSpace for all the
|
|
|
|
// frames except aKidFrame
|
1998-07-01 03:03:32 +00:00
|
|
|
nsIFrame* prevKidFrame = nsnull;
|
1998-07-14 15:29:50 +00:00
|
|
|
for (nsIFrame* frame = mFirstChild; nsnull != frame;) {
|
|
|
|
if (frame != aKidFrame) {
|
|
|
|
PRInt32 rowSpan = ((nsTableCellFrame*)frame)->GetRowSpan();
|
|
|
|
if (mMinRowSpan == rowSpan) {
|
|
|
|
// XXX This isn't quite right. We also need to check whether the cell
|
|
|
|
// has a height property that affects the cell...
|
|
|
|
nsSize desiredSize = ((nsTableCellFrame *)frame)->GetDesiredSize();
|
|
|
|
|
|
|
|
// Update maxCellHeight
|
|
|
|
if (desiredSize.height > aState.maxCellHeight) {
|
|
|
|
aState.maxCellHeight = desiredSize.height;
|
|
|
|
}
|
1998-07-01 04:55:15 +00:00
|
|
|
|
1998-07-14 15:29:50 +00:00
|
|
|
// Update maxCellVertHeight
|
|
|
|
nsMargin margin;
|
|
|
|
|
|
|
|
if (aState.tableFrame->GetCellMarginData((nsTableCellFrame *)frame, margin) == NS_OK)
|
|
|
|
{
|
|
|
|
nscoord height = desiredSize.height + margin.top + margin.bottom;
|
|
|
|
if (height > aState.maxCellVertSpace) {
|
|
|
|
aState.maxCellVertSpace = height;
|
|
|
|
}
|
1998-07-01 04:55:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-07-14 15:29:50 +00:00
|
|
|
// XXX We also need to recover the max element size if requested by the
|
|
|
|
// caller...
|
|
|
|
//
|
|
|
|
// We should be using GetReflowMetrics() to get information from the
|
|
|
|
// table cell, and that will include the max element size...
|
|
|
|
}
|
1998-07-01 04:55:15 +00:00
|
|
|
|
|
|
|
// Remember the frame that precedes aKidFrame
|
1998-07-01 03:03:32 +00:00
|
|
|
prevKidFrame = frame;
|
|
|
|
frame->GetNextSibling(frame);
|
|
|
|
}
|
|
|
|
|
1998-07-14 15:29:50 +00:00
|
|
|
// Update the running x-offset based on the frame's current x-origin
|
|
|
|
nsPoint origin;
|
|
|
|
aKidFrame->GetOrigin(origin);
|
|
|
|
aState.x = origin.x;
|
|
|
|
|
1998-07-02 05:39:10 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-07-14 15:29:50 +00:00
|
|
|
nsresult nsTableRowFrame::IncrementalReflow(nsIPresContext* aPresContext,
|
|
|
|
RowReflowState& aState,
|
|
|
|
nsReflowMetrics& aDesiredSize)
|
1998-07-02 05:39:10 +00:00
|
|
|
{
|
|
|
|
nsresult status;
|
|
|
|
|
|
|
|
// XXX Deal with the case where the reflow command is targeted at us
|
|
|
|
nsIFrame* target;
|
1998-07-14 15:29:50 +00:00
|
|
|
aState.reflowState.reflowCommand->GetTarget(target);
|
1998-07-02 05:39:10 +00:00
|
|
|
if (this == target) {
|
|
|
|
NS_NOTYETIMPLEMENTED("unexpected reflow command");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the next frame in the reflow chain
|
|
|
|
nsIFrame* kidFrame;
|
1998-07-14 15:29:50 +00:00
|
|
|
aState.reflowState.reflowCommand->GetNext(kidFrame);
|
1998-07-02 05:39:10 +00:00
|
|
|
|
|
|
|
// Recover our reflow state
|
|
|
|
RecoverState(aState, kidFrame);
|
|
|
|
|
1998-07-11 04:16:29 +00:00
|
|
|
// Get the frame's margins
|
1998-07-02 05:39:10 +00:00
|
|
|
nsMargin kidMargin;
|
1998-07-14 15:29:50 +00:00
|
|
|
aState.tableFrame->GetCellMarginData((nsTableCellFrame *)kidFrame, kidMargin);
|
1998-07-02 05:39:10 +00:00
|
|
|
|
1998-07-14 15:29:50 +00:00
|
|
|
// At this point, we know the column widths. Get the available width
|
|
|
|
// from the known column widths
|
1998-07-11 00:00:31 +00:00
|
|
|
PRInt32 cellColIndex = ((nsTableCellFrame *)kidFrame)->GetColIndex();
|
|
|
|
PRInt32 cellColSpan = ((nsTableCellFrame *)kidFrame)->GetColSpan();
|
|
|
|
nscoord availWidth = 0;
|
|
|
|
for (PRInt32 numColSpan=0; numColSpan<cellColSpan; numColSpan++)
|
1998-07-14 15:29:50 +00:00
|
|
|
{
|
|
|
|
availWidth += aState.tableFrame->GetColumnWidth(cellColIndex+numColSpan);
|
|
|
|
if (0<numColSpan)
|
|
|
|
{
|
|
|
|
availWidth += kidMargin.right;
|
|
|
|
if (0!=cellColIndex)
|
|
|
|
availWidth += kidMargin.left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always let the cell be as high as it wants. We ignore the height that's
|
|
|
|
// passed in and always place the entire row. Let the row group decide
|
|
|
|
// whether we fit or wehther the entire row is pushed
|
|
|
|
nsSize kidAvailSize(availWidth, NS_UNCONSTRAINEDSIZE);
|
1998-07-02 05:39:10 +00:00
|
|
|
|
1998-07-14 15:29:50 +00:00
|
|
|
// Pass along the reflow command
|
1998-07-02 05:39:10 +00:00
|
|
|
nsSize kidMaxElementSize;
|
|
|
|
nsReflowMetrics desiredSize(&kidMaxElementSize);
|
1998-07-14 15:29:50 +00:00
|
|
|
nsReflowState kidReflowState(kidFrame, aState.reflowState, kidAvailSize);
|
1998-07-02 05:39:10 +00:00
|
|
|
kidFrame->WillReflow(*aPresContext);
|
1998-07-14 15:29:50 +00:00
|
|
|
kidFrame->MoveTo(aState.x, kidMargin.top);
|
1998-07-02 05:39:10 +00:00
|
|
|
|
|
|
|
// XXX Unfortunately we need to reflow the child several times.
|
|
|
|
// The first time is for the incremental reflow command. We can't pass in
|
|
|
|
// a max width of NS_UNCONSTRAINEDSIZE, because the max width must match
|
|
|
|
// the width of the previous reflow...
|
|
|
|
status = ReflowChild(kidFrame, aPresContext, desiredSize, kidReflowState);
|
|
|
|
|
|
|
|
// Now do the regular pass 1 reflow and gather the max width and max element
|
|
|
|
// size.
|
|
|
|
// XXX It would be nice if we could skip this step and the next step if the
|
|
|
|
// column width isn't dependent on the max cell width...
|
|
|
|
kidReflowState.reason = eReflowReason_Resize;
|
|
|
|
kidReflowState.reflowCommand = nsnull;
|
|
|
|
kidReflowState.maxSize.width = NS_UNCONSTRAINEDSIZE;
|
|
|
|
status = ReflowChild(kidFrame, aPresContext, desiredSize, kidReflowState);
|
|
|
|
|
1998-07-11 00:00:31 +00:00
|
|
|
// Update the cell layout data.
|
|
|
|
((nsTableCellFrame *)kidFrame)->SetPass1DesiredSize(desiredSize);
|
|
|
|
((nsTableCellFrame *)kidFrame)->SetPass1MaxElementSize(kidMaxElementSize);
|
1998-07-02 05:39:10 +00:00
|
|
|
|
|
|
|
// Now reflow the cell again this time constraining the width
|
|
|
|
// XXX Ignore for now the possibility that the column width has changed...
|
|
|
|
kidReflowState.maxSize.width = availWidth;
|
|
|
|
status = ReflowChild(kidFrame, aPresContext, desiredSize, kidReflowState);
|
|
|
|
|
1998-07-11 00:00:31 +00:00
|
|
|
// Place the child after taking into account it's margin and attributes
|
1998-07-02 05:39:10 +00:00
|
|
|
nscoord specifiedHeight = 0;
|
|
|
|
nscoord cellHeight = desiredSize.height;
|
|
|
|
nsIStyleContextPtr kidSC;
|
|
|
|
kidFrame->GetStyleContext(aPresContext, kidSC.AssignRef());
|
|
|
|
const nsStylePosition* kidPosition = (const nsStylePosition*)
|
|
|
|
kidSC->GetStyleData(eStyleStruct_Position);
|
|
|
|
switch (kidPosition->mHeight.GetUnit()) {
|
|
|
|
case eStyleUnit_Coord:
|
|
|
|
specifiedHeight = kidPosition->mHeight.GetCoordValue();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eStyleUnit_Inherit:
|
|
|
|
// XXX for now, do nothing
|
|
|
|
default:
|
|
|
|
case eStyleUnit_Auto:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (specifiedHeight>cellHeight)
|
|
|
|
cellHeight = specifiedHeight;
|
|
|
|
|
|
|
|
nscoord cellWidth = desiredSize.width;
|
|
|
|
// begin special Nav4 compatibility code
|
|
|
|
if (0==cellWidth)
|
|
|
|
{
|
|
|
|
cellWidth = aState.tableFrame->GetColumnWidth(cellColIndex);
|
|
|
|
}
|
|
|
|
// end special Nav4 compatibility code
|
|
|
|
|
|
|
|
// Now place the child
|
1998-07-14 15:29:50 +00:00
|
|
|
nsRect kidRect (aState.x, kidMargin.top, cellWidth, cellHeight);
|
1998-07-02 05:39:10 +00:00
|
|
|
|
1998-07-14 15:29:50 +00:00
|
|
|
PlaceChild(aPresContext, aState, kidFrame, kidRect, aDesiredSize.maxElementSize,
|
1998-07-02 17:40:56 +00:00
|
|
|
&kidMaxElementSize);
|
1998-07-02 05:39:10 +00:00
|
|
|
|
1998-07-14 15:29:50 +00:00
|
|
|
// XXX This needs to be computed somehow...
|
1998-07-02 05:39:10 +00:00
|
|
|
nscoord maxCellTopMargin = 0;
|
|
|
|
nscoord maxCellBottomMargin = 0;
|
1998-07-14 15:29:50 +00:00
|
|
|
SetMaxChildHeight(aState.maxCellHeight, maxCellTopMargin, maxCellBottomMargin);
|
1998-07-02 05:39:10 +00:00
|
|
|
|
1998-07-14 15:29:50 +00:00
|
|
|
// Return our desired size. Note that our desired width is just whatever width
|
|
|
|
// we were given by the row group frame
|
|
|
|
aDesiredSize.width = aState.availSize.width;
|
|
|
|
aDesiredSize.height = aState.maxCellVertSpace;
|
1998-07-01 03:03:32 +00:00
|
|
|
|
1998-07-02 05:39:10 +00:00
|
|
|
return status;
|
1998-07-01 03:03:32 +00:00
|
|
|
}
|
1998-05-21 23:43:18 +00:00
|
|
|
|
1998-04-23 17:29:07 +00:00
|
|
|
/** Layout the entire row.
|
1998-07-02 05:39:10 +00:00
|
|
|
* This method stacks cells horizontally according to HTML 4.0 rules.
|
1998-04-23 17:29:07 +00:00
|
|
|
*/
|
|
|
|
NS_METHOD
|
1998-05-25 17:31:49 +00:00
|
|
|
nsTableRowFrame::Reflow(nsIPresContext* aPresContext,
|
|
|
|
nsReflowMetrics& aDesiredSize,
|
|
|
|
const nsReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
1998-04-23 17:29:07 +00:00
|
|
|
{
|
|
|
|
if (gsDebug1==PR_TRUE)
|
1998-05-25 17:31:49 +00:00
|
|
|
printf("nsTableRowFrame::Reflow - aMaxSize = %d, %d\n",
|
|
|
|
aReflowState.maxSize.width, aReflowState.maxSize.height);
|
1998-04-23 17:29:07 +00:00
|
|
|
#ifdef NS_DEBUG
|
|
|
|
PreReflowCheck();
|
1998-04-21 18:25:52 +00:00
|
|
|
#endif
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
// Initialize 'out' parameters
|
|
|
|
if (nsnull != aDesiredSize.maxElementSize) {
|
|
|
|
aDesiredSize.maxElementSize->width = 0;
|
|
|
|
aDesiredSize.maxElementSize->height = 0;
|
1998-04-23 17:29:07 +00:00
|
|
|
}
|
1998-07-10 22:56:13 +00:00
|
|
|
aStatus = NS_FRAME_COMPLETE; // we're never continued
|
|
|
|
|
|
|
|
// Initialize our internal data
|
|
|
|
ResetMaxChildHeight();
|
1998-04-23 17:29:07 +00:00
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
// Initialize our automatic state object
|
|
|
|
nsTableFrame* tableFrame;
|
|
|
|
mContentParent->GetContentParent((nsIFrame*&)tableFrame);
|
|
|
|
RowReflowState state(aPresContext, aReflowState, tableFrame);
|
|
|
|
|
|
|
|
// Do the reflow
|
|
|
|
nsresult result;
|
|
|
|
|
|
|
|
switch (aReflowState.reason) {
|
|
|
|
case eReflowReason_Initial:
|
|
|
|
NS_ASSERTION(nsnull == mFirstChild, "unexpected reflow reason");
|
|
|
|
result = InitialReflow(aPresContext, state, aDesiredSize);
|
|
|
|
GetMinRowSpan();
|
|
|
|
FixMinCellHeight();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eReflowReason_Resize:
|
|
|
|
result = ResizeReflow(aPresContext, state, aDesiredSize);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eReflowReason_Incremental:
|
1998-07-14 15:29:50 +00:00
|
|
|
result = IncrementalReflow(aPresContext, state, aDesiredSize);
|
1998-07-10 22:56:13 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
1998-07-02 05:39:10 +00:00
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#ifdef NS_DEBUG
|
1998-04-17 01:41:24 +00:00
|
|
|
PostReflowCheck(aStatus);
|
1998-04-13 20:24:54 +00:00
|
|
|
#endif
|
|
|
|
|
1998-04-14 21:45:28 +00:00
|
|
|
if (gsDebug1==PR_TRUE)
|
|
|
|
{
|
1998-05-25 17:31:49 +00:00
|
|
|
if (nsnull!=aDesiredSize.maxElementSize)
|
1998-04-14 21:45:28 +00:00
|
|
|
printf("nsTableRowFrame::RR returning: %s with aDesiredSize=%d,%d, aMES=%d,%d\n",
|
1998-05-12 04:17:56 +00:00
|
|
|
NS_FRAME_IS_COMPLETE(aStatus)?"Complete":"Not Complete",
|
1998-04-14 21:45:28 +00:00
|
|
|
aDesiredSize.width, aDesiredSize.height,
|
1998-05-25 17:31:49 +00:00
|
|
|
aDesiredSize.maxElementSize->width, aDesiredSize.maxElementSize->height);
|
1998-04-14 21:45:28 +00:00
|
|
|
else
|
|
|
|
printf("nsTableRowFrame::RR returning: %s with aDesiredSize=%d,%d, aMES=NSNULL\n",
|
1998-05-12 04:17:56 +00:00
|
|
|
NS_FRAME_IS_COMPLETE(aStatus)?"Complete":"Not Complete",
|
1998-04-14 21:45:28 +00:00
|
|
|
aDesiredSize.width, aDesiredSize.height);
|
|
|
|
}
|
1998-04-23 17:29:07 +00:00
|
|
|
|
1998-07-10 22:56:13 +00:00
|
|
|
return result;
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
1998-05-07 00:08:20 +00:00
|
|
|
NS_METHOD
|
|
|
|
nsTableRowFrame::CreateContinuingFrame(nsIPresContext* aPresContext,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aStyleContext,
|
|
|
|
nsIFrame*& aContinuingFrame)
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
1998-07-11 04:16:29 +00:00
|
|
|
// Because rows are always complete we should never be asked to create
|
|
|
|
// a continuing frame
|
|
|
|
NS_ERROR("Unexpected request");
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsTableRowFrame::NewFrame( nsIFrame** aInstancePtrResult,
|
|
|
|
nsIContent* aContent,
|
|
|
|
nsIFrame* aParent)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aInstancePtrResult, "null ptr");
|
|
|
|
if (nsnull == aInstancePtrResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
1998-05-05 23:56:50 +00:00
|
|
|
nsIFrame* it = new nsTableRowFrame(aContent, aParent);
|
1998-04-13 20:24:54 +00:00
|
|
|
if (nsnull == it) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
*aInstancePtrResult = it;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|