1998-06-18 20:25:41 +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.
|
|
|
|
*/
|
1998-09-23 06:25:26 +04:00
|
|
|
#include "nsHTMLContainerFrame.h"
|
|
|
|
#include "nsFrameReflowState.h"
|
|
|
|
#include "nsInlineReflow.h"
|
1998-10-01 08:46:11 +04:00
|
|
|
#include "nsIHTMLReflow.h"
|
1998-09-25 04:00:55 +04:00
|
|
|
#include "nsLineLayout.h"
|
|
|
|
#include "nsHTMLAtoms.h"
|
1998-09-23 06:25:26 +04:00
|
|
|
#include "nsHTMLIIDs.h"
|
1998-06-18 20:25:41 +04:00
|
|
|
|
1998-09-25 04:00:55 +04:00
|
|
|
#include "nsIPresContext.h"
|
|
|
|
#include "nsIReflowCommand.h"
|
1998-09-23 06:25:26 +04:00
|
|
|
#include "nsISpaceManager.h"
|
1998-09-25 04:00:55 +04:00
|
|
|
#include "nsIStyleContext.h"
|
|
|
|
|
1998-06-18 20:25:41 +04:00
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
struct nsInlineReflowState : nsFrameReflowState {
|
|
|
|
nsInlineReflowState(nsIPresContext& aPresContext,
|
1998-10-02 08:10:00 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-10-01 08:46:11 +04:00
|
|
|
const nsHTMLReflowMetrics& aMetrics);
|
1998-09-23 06:25:26 +04:00
|
|
|
~nsInlineReflowState();
|
1998-06-25 20:33:10 +04:00
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
// Last child we have reflowed (so far)
|
|
|
|
nsIFrame* mLastChild;
|
|
|
|
};
|
1998-06-25 20:33:10 +04:00
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
nsInlineReflowState::nsInlineReflowState(nsIPresContext& aPresContext,
|
1998-10-02 08:10:00 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-10-01 08:46:11 +04:00
|
|
|
const nsHTMLReflowMetrics& aMetrics)
|
1998-10-31 01:13:58 +03:00
|
|
|
: nsFrameReflowState(aPresContext, aReflowState, aMetrics),
|
|
|
|
mLastChild(nsnull)
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
1998-06-19 03:16:00 +04:00
|
|
|
}
|
1998-06-18 20:25:41 +04:00
|
|
|
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineReflowState::~nsInlineReflowState()
|
1998-06-19 03:16:00 +04:00
|
|
|
{
|
|
|
|
}
|
1998-06-18 20:25:41 +04:00
|
|
|
|
1998-06-19 03:16:00 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
class nsInlineFrame : public nsHTMLContainerFrame
|
1998-09-23 06:25:26 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsInlineFrame(nsIContent* aContent, nsIFrame* aParent);
|
|
|
|
virtual ~nsInlineFrame();
|
|
|
|
|
|
|
|
// nsIFrame
|
1998-11-10 09:05:32 +03:00
|
|
|
NS_IMETHOD SetInitialChildList(nsIPresContext& aPresContext,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList);
|
1998-09-23 06:25:26 +04:00
|
|
|
NS_IMETHOD CreateContinuingFrame(nsIPresContext& aCX,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aStyleContext,
|
|
|
|
nsIFrame*& aContinuingFrame);
|
1998-11-19 20:22:29 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsString& aResult) const;
|
1998-09-23 06:25:26 +04:00
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
// nsIHTMLReflow
|
1998-10-10 03:46:02 +04:00
|
|
|
NS_IMETHOD FindTextRuns(nsLineLayout& aLineLayout);
|
1998-10-03 08:28:05 +04:00
|
|
|
NS_IMETHOD Reflow(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
1998-10-27 19:52:10 +03:00
|
|
|
NS_IMETHOD AdjustFrameSize(nscoord aExtraSpace, nscoord& aUsedSpace);
|
|
|
|
NS_IMETHOD TrimTrailingWhiteSpace(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRC,
|
|
|
|
nscoord& aDeltaWidth);
|
1998-10-31 01:13:58 +03:00
|
|
|
NS_IMETHOD MoveInSpaceManager(nsIPresContext& aPresContext,
|
|
|
|
nsISpaceManager* aSpaceManager,
|
|
|
|
nscoord aDeltaX, nscoord aDeltaY);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
1998-10-03 01:50:53 +04:00
|
|
|
PRBool CalculateMargins(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow,
|
|
|
|
nscoord& aTopMarginResult,
|
|
|
|
nscoord& aBottomMarginResult);
|
|
|
|
|
|
|
|
void SlideFrames(nsIFrame* aKid, nscoord aDY);
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
nsresult InitialReflow(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow);
|
|
|
|
|
|
|
|
nsresult FrameAppendedReflow(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow);
|
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus FrameRemovedReflow(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow);
|
1998-09-25 09:13:06 +04:00
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
nsresult ChildIncrementalReflow(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow);
|
|
|
|
|
|
|
|
nsresult ResizeReflow(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow);
|
|
|
|
|
|
|
|
void ComputeFinalSize(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow,
|
1998-10-01 08:46:11 +04:00
|
|
|
nsHTMLReflowMetrics& aMetrics);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
|
|
|
PRBool ReflowMapped(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow,
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus& aReflowStatus);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
|
|
|
PRBool ReflowFrame(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow,
|
|
|
|
nsIFrame* aFrame,
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus& aReflowStatus);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus PullUpChildren(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
1998-11-05 22:31:16 +03:00
|
|
|
nsIFrame* PullOneChild(nsIPresContext& aPresContext,
|
|
|
|
nsInlineFrame* aNextInFlow,
|
1998-10-10 02:58:25 +04:00
|
|
|
nsIFrame* aLastChild,
|
|
|
|
nsReflowStatus& aReflowStatus);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
|
|
|
void PushKids(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow,
|
|
|
|
nsIFrame* aPushedChild);
|
|
|
|
|
1998-11-05 22:31:16 +03:00
|
|
|
void DrainOverflowLists(nsIPresContext& aPresContext);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
|
|
|
nsresult AppendNewFrames(nsIPresContext& aPresContext, nsIFrame*);
|
|
|
|
|
1998-10-15 00:10:36 +04:00
|
|
|
nsresult InsertNewFrame(nsIPresContext& aPresContext,
|
|
|
|
nsIFrame* aNewFrame,
|
|
|
|
nsIFrame* aPrevSibling);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
1998-10-10 02:58:25 +04:00
|
|
|
PRBool SafeToPull(nsIFrame* aFrame);
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
friend nsresult NS_NewInlineFrame(nsIContent* aContent,
|
|
|
|
nsIFrame* aParentFrame,
|
|
|
|
nsIFrame*& aNewFrame);
|
1998-10-28 02:13:03 +03:00
|
|
|
|
|
|
|
struct AdjustData {
|
|
|
|
nsIFrame* frame;
|
|
|
|
PRBool splittable;
|
|
|
|
nsRect bounds;
|
|
|
|
};
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
1998-09-17 08:07:58 +04:00
|
|
|
nsresult NS_NewInlineFrame(nsIContent* aContent, nsIFrame* aParentFrame,
|
|
|
|
nsIFrame*& aNewFrame)
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
1998-09-17 08:07:58 +04:00
|
|
|
aNewFrame = new nsInlineFrame(aContent, aParentFrame);
|
|
|
|
if (nsnull == aNewFrame) {
|
1998-06-18 20:25:41 +04:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame::nsInlineFrame(nsIContent* aContent, nsIFrame* aParent)
|
|
|
|
: nsHTMLContainerFrame(aContent, aParent)
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame::~nsInlineFrame()
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1998-06-19 03:16:00 +04:00
|
|
|
PRIntn
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame::GetSkipSides() const
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
1998-06-19 03:16:00 +04:00
|
|
|
PRIntn skip = 0;
|
|
|
|
if (nsnull != mPrevInFlow) {
|
|
|
|
skip |= 1 << NS_SIDE_LEFT;
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
1998-06-19 03:16:00 +04:00
|
|
|
if (nsnull != mNextInFlow) {
|
|
|
|
skip |= 1 << NS_SIDE_RIGHT;
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
1998-06-19 03:16:00 +04:00
|
|
|
return skip;
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
|
|
|
|
1998-09-12 08:46:35 +04:00
|
|
|
nsresult
|
1998-09-23 06:25:26 +04:00
|
|
|
nsInlineFrame::AppendNewFrames(nsIPresContext& aPresContext,
|
|
|
|
nsIFrame* aNewFrame)
|
1998-09-12 08:46:35 +04:00
|
|
|
{
|
1998-09-29 08:47:59 +04:00
|
|
|
// Walk the list of new frames, and see if we need to move any of them
|
|
|
|
// out of the flow
|
|
|
|
nsIFrame* prevFrame = nsnull;
|
|
|
|
for (nsIFrame* frame = aNewFrame; nsnull != frame; frame->GetNextSibling(frame)) {
|
|
|
|
const nsStyleDisplay* kidDisplay;
|
|
|
|
const nsStylePosition* kidPosition;
|
|
|
|
frame->GetStyleData(eStyleStruct_Display, (const nsStyleStruct*&)kidDisplay);
|
|
|
|
frame->GetStyleData(eStyleStruct_Position, (const nsStyleStruct*&) kidPosition);
|
|
|
|
|
1998-10-15 00:10:36 +04:00
|
|
|
// XXX encapsulte the move-out-of-flow and CreateViewForFrame
|
1998-09-29 08:47:59 +04:00
|
|
|
nsIFrame* placeholder;
|
|
|
|
if (MoveFrameOutOfFlow(aPresContext, frame, kidDisplay, kidPosition, placeholder)) {
|
|
|
|
// Reset the previous frame's next sibling pointer
|
|
|
|
if (nsnull == prevFrame) {
|
|
|
|
aNewFrame = placeholder;
|
|
|
|
} else {
|
|
|
|
prevFrame->SetNextSibling(placeholder);
|
|
|
|
}
|
|
|
|
frame = placeholder;
|
|
|
|
}
|
1998-10-15 00:10:36 +04:00
|
|
|
else {
|
|
|
|
// Wrap the frame in a view if necessary
|
|
|
|
nsIStyleContext* kidSC;
|
1998-11-03 23:33:43 +03:00
|
|
|
frame->GetStyleContext(kidSC);
|
1998-10-15 00:10:36 +04:00
|
|
|
nsresult rv = CreateViewForFrame(aPresContext, frame, kidSC, PR_FALSE);
|
|
|
|
NS_RELEASE(kidSC);
|
|
|
|
if (NS_OK != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
1998-09-29 08:47:59 +04:00
|
|
|
|
|
|
|
prevFrame = frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append the new frames to the child list
|
1998-09-12 08:46:35 +04:00
|
|
|
nsIFrame* lastFrame;
|
|
|
|
if (nsnull == mFirstChild) {
|
|
|
|
lastFrame = nsnull;
|
|
|
|
mFirstChild = aNewFrame;
|
|
|
|
} else {
|
1998-09-21 20:35:49 +04:00
|
|
|
lastFrame = LastFrame(mFirstChild);
|
1998-09-12 08:46:35 +04:00
|
|
|
lastFrame->SetNextSibling(aNewFrame);
|
|
|
|
}
|
1998-09-29 08:47:59 +04:00
|
|
|
return NS_OK;
|
1998-09-12 08:46:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1998-11-10 09:05:32 +03:00
|
|
|
nsInlineFrame::SetInitialChildList(nsIPresContext& aPresContext,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList)
|
1998-09-12 08:46:35 +04:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull == mFirstChild, "already initialized");
|
1998-10-12 18:48:02 +04:00
|
|
|
nsresult rv = AppendNewFrames(aPresContext, aChildList);
|
|
|
|
if (NS_OK != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return rv;
|
1998-09-12 08:46:35 +04:00
|
|
|
}
|
|
|
|
|
1998-06-19 22:23:28 +04:00
|
|
|
NS_IMETHODIMP
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame::CreateContinuingFrame(nsIPresContext& aCX,
|
1998-09-23 06:25:26 +04:00
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aStyleContext,
|
|
|
|
nsIFrame*& aContinuingFrame)
|
1998-06-19 22:23:28 +04:00
|
|
|
{
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame* cf = new nsInlineFrame(mContent, aParent);
|
1998-06-19 22:23:28 +04:00
|
|
|
if (nsnull == cf) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
PrepareContinuingFrame(aCX, aParent, aStyleContext, cf);
|
|
|
|
aContinuingFrame = cf;
|
1998-07-01 00:14:04 +04:00
|
|
|
NS_FRAME_TRACE(NS_FRAME_TRACE_CALLS,
|
1998-09-15 04:19:49 +04:00
|
|
|
("nsInlineFrame::CreateContinuingFrame: newFrame=%p", cf));
|
1998-06-19 22:23:28 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-06-19 03:16:00 +04:00
|
|
|
NS_IMETHODIMP
|
1998-10-10 03:46:02 +04:00
|
|
|
nsInlineFrame::FindTextRuns(nsLineLayout& aLineLayout)
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
1998-06-28 02:56:09 +04:00
|
|
|
NS_FRAME_TRACE(NS_FRAME_TRACE_CALLS,
|
1998-09-23 06:25:26 +04:00
|
|
|
("enter nsInlineFrame::FindTextRuns"));
|
1998-06-28 02:56:09 +04:00
|
|
|
|
1998-07-01 00:14:04 +04:00
|
|
|
// Gather up children from the overflow lists
|
1998-09-23 06:25:26 +04:00
|
|
|
nsresult rv = NS_OK;
|
1998-11-05 22:31:16 +03:00
|
|
|
DrainOverflowLists(aLineLayout.mPresContext);
|
1998-07-01 00:14:04 +04:00
|
|
|
|
1998-06-28 02:56:09 +04:00
|
|
|
// Ask each child frame for its text runs
|
1998-09-23 06:25:26 +04:00
|
|
|
nsIFrame* frame = mFirstChild;
|
|
|
|
while (nsnull != frame) {
|
1998-10-10 03:46:02 +04:00
|
|
|
nsIHTMLReflow* hr;
|
|
|
|
if (NS_OK == frame->QueryInterface(kIHTMLReflowIID, (void**)&hr)) {
|
|
|
|
rv = hr->FindTextRuns(aLineLayout);
|
1998-06-28 02:56:09 +04:00
|
|
|
if (NS_OK != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
1998-10-10 03:46:02 +04:00
|
|
|
// A frame that doesn't implement nsIHTMLReflow isn't text
|
1998-06-28 02:56:09 +04:00
|
|
|
// therefore it will end an open text run.
|
|
|
|
aLineLayout.EndTextRun();
|
|
|
|
}
|
|
|
|
frame->GetNextSibling(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_FRAME_TRACE(NS_FRAME_TRACE_CALLS,
|
1998-09-23 06:25:26 +04:00
|
|
|
("exit nsInlineFrame::FindTextRuns rv=%x", rv));
|
1998-06-28 02:56:09 +04:00
|
|
|
return rv;
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
|
|
|
|
1998-10-27 19:52:10 +03:00
|
|
|
// XXX This code is *almost* identical to the code in
|
|
|
|
// nsInlineReflow::JustifyFrames; factor it somehow
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsInlineFrame::AdjustFrameSize(nscoord aExtraSpace, nscoord& aUsedSpace)
|
|
|
|
{
|
|
|
|
if (0 >= aExtraSpace) {
|
|
|
|
aUsedSpace = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int NUM_AD = 50;
|
|
|
|
AdjustData adjustMem[NUM_AD];
|
|
|
|
AdjustData* ad0 = adjustMem;
|
|
|
|
AdjustData* end = ad0 + NUM_AD;
|
|
|
|
AdjustData* ad = ad0;
|
|
|
|
PRInt32 numAD = NUM_AD;
|
|
|
|
|
|
|
|
// Gather up raw data for justification
|
|
|
|
nsIFrame* frame = mFirstChild;
|
|
|
|
PRInt32 fixed = 0;
|
|
|
|
PRInt32 total = 0;
|
|
|
|
nscoord fixedWidth = 0;
|
|
|
|
for (; nsnull != frame; ad++, total++) {
|
|
|
|
// Grow temporary storage if we have to
|
|
|
|
if (ad == end) {
|
|
|
|
AdjustData* newAD = new AdjustData[numAD + numAD];
|
|
|
|
if (nsnull == newAD) {
|
|
|
|
if (ad0 != adjustMem) {
|
|
|
|
delete [] ad0;
|
|
|
|
}
|
|
|
|
aUsedSpace = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
nsCRT::memcpy(newAD, ad0, sizeof(AdjustData) * numAD);
|
|
|
|
ad = newAD + (ad - ad0);
|
|
|
|
if (ad0 != adjustMem) {
|
|
|
|
delete [] ad0;
|
|
|
|
}
|
|
|
|
ad0 = newAD;
|
|
|
|
end = ad0 + numAD;
|
|
|
|
numAD = numAD + numAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Record info about the frame
|
|
|
|
ad->frame = frame;
|
|
|
|
frame->GetRect(ad->bounds);
|
|
|
|
nsSplittableType isSplittable = NS_FRAME_NOT_SPLITTABLE;
|
|
|
|
frame->IsSplittable(isSplittable);
|
|
|
|
if ((0 == ad->bounds.width) ||
|
|
|
|
NS_FRAME_IS_NOT_SPLITTABLE(isSplittable)) {
|
|
|
|
ad->splittable = PR_FALSE;
|
|
|
|
fixed++;
|
|
|
|
fixedWidth += ad->bounds.width;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ad->splittable = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advance to the next frame
|
|
|
|
frame->GetNextSibling(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord totalUsed = 0;
|
|
|
|
nscoord variableWidth = mRect.width - fixedWidth;
|
|
|
|
if (variableWidth > 0) {
|
|
|
|
// Each variable width frame gets a portion of the available extra
|
|
|
|
// space that is proportional to the space it takes in the
|
|
|
|
// line. The extra space is given to the frame by updating its
|
|
|
|
// position and size. The frame is responsible for adjusting the
|
|
|
|
// position of its contents on its own (during rendering).
|
|
|
|
PRInt32 i, splittable = total - fixed;
|
|
|
|
nscoord extraSpace = aExtraSpace;
|
|
|
|
nscoord remainingExtra = extraSpace;
|
|
|
|
nscoord dx = 0;
|
|
|
|
float lineWidth = float(mRect.width);
|
|
|
|
ad = ad0;
|
|
|
|
for (i = 0; i < total; i++, ad++) {
|
|
|
|
nsIFrame* frame = ad->frame;
|
|
|
|
nsIHTMLReflow* ihr;
|
|
|
|
if (NS_OK == frame->QueryInterface(kIHTMLReflowIID, (void**)&ihr)) {
|
|
|
|
nsRect r;
|
|
|
|
if (ad->splittable && (ad->bounds.width > 0)) {
|
|
|
|
float pctOfLine = float(ad->bounds.width) / lineWidth;
|
|
|
|
nscoord extra = nscoord(pctOfLine * extraSpace);
|
|
|
|
if (--splittable == 0) {
|
|
|
|
extra = remainingExtra;
|
|
|
|
}
|
|
|
|
if (0 != extra) {
|
|
|
|
nscoord used;
|
|
|
|
ihr->AdjustFrameSize(extra, used);
|
|
|
|
if (used < extra) {
|
1998-10-27 19:53:48 +03:00
|
|
|
// frame->ListTag(); printf(": extra=%d used=%d\n", extra, used);
|
1998-10-27 19:52:10 +03:00
|
|
|
}
|
|
|
|
totalUsed += used;
|
|
|
|
frame->GetRect(r);
|
|
|
|
r.x += dx;
|
|
|
|
frame->SetRect(r);
|
|
|
|
dx += used;
|
|
|
|
remainingExtra -= used;
|
|
|
|
}
|
|
|
|
else if (0 != dx) {
|
|
|
|
frame->GetRect(r);
|
|
|
|
r.x += dx;
|
|
|
|
frame->SetRect(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (0 != dx) {
|
|
|
|
frame->GetRect(r);
|
|
|
|
r.x += dx;
|
|
|
|
frame->SetRect(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mRect.width += totalUsed;
|
|
|
|
aUsedSpace = totalUsed;
|
|
|
|
|
|
|
|
if (ad0 != adjustMem) {
|
|
|
|
delete [] ad0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsInlineFrame::TrimTrailingWhiteSpace(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRC,
|
|
|
|
nscoord& aDeltaWidth)
|
|
|
|
{
|
|
|
|
nsIFrame* lastFrame = LastFrame(mFirstChild);
|
|
|
|
if (nsnull == lastFrame) {
|
|
|
|
aDeltaWidth = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nsIHTMLReflow* ihr;
|
|
|
|
if (NS_OK == lastFrame->QueryInterface(kIHTMLReflowIID, (void**)&ihr)) {
|
|
|
|
ihr->TrimTrailingWhiteSpace(aPresContext, aRC, aDeltaWidth);
|
|
|
|
if (0 != aDeltaWidth) {
|
|
|
|
mRect.width -= aDeltaWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aDeltaWidth = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-10-31 01:13:58 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsInlineFrame::MoveInSpaceManager(nsIPresContext& aPresContext,
|
|
|
|
nsISpaceManager* aSpaceManager,
|
|
|
|
nscoord aDeltaX, nscoord aDeltaY)
|
|
|
|
{
|
|
|
|
nsIFrame* kid = mFirstChild;
|
|
|
|
while (nsnull != kid) {
|
|
|
|
nsIHTMLReflow* ihr;
|
|
|
|
if (NS_OK == kid->QueryInterface(kIHTMLReflowIID, (void**)&ihr)) {
|
|
|
|
ihr->MoveInSpaceManager(aPresContext, aSpaceManager, aDeltaX, aDeltaY);
|
|
|
|
}
|
|
|
|
kid->GetNextSibling(kid);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-10-15 00:10:36 +04:00
|
|
|
nsresult
|
1998-09-29 08:47:59 +04:00
|
|
|
nsInlineFrame::InsertNewFrame(nsIPresContext& aPresContext,
|
|
|
|
nsIFrame* aNewFrame,
|
|
|
|
nsIFrame* aPrevSibling)
|
1998-09-19 08:29:36 +04:00
|
|
|
{
|
1998-09-29 08:47:59 +04:00
|
|
|
const nsStyleDisplay* kidDisplay;
|
|
|
|
aNewFrame->GetStyleData(eStyleStruct_Display, (const nsStyleStruct*&)kidDisplay);
|
|
|
|
const nsStylePosition* kidPosition;
|
|
|
|
aNewFrame->GetStyleData(eStyleStruct_Position, (const nsStyleStruct*&)kidPosition);
|
|
|
|
|
|
|
|
// See if we need to move the frame outside of the flow, and insert a
|
|
|
|
// placeholder frame in its place
|
|
|
|
nsIFrame* placeholder;
|
|
|
|
if (MoveFrameOutOfFlow(aPresContext, aNewFrame, kidDisplay, kidPosition, placeholder)) {
|
|
|
|
// Add the placeholder frame to the flow
|
|
|
|
aNewFrame = placeholder;
|
|
|
|
}
|
1998-10-15 00:10:36 +04:00
|
|
|
else {
|
|
|
|
// Wrap the frame in a view if necessary
|
|
|
|
nsIStyleContext* kidSC;
|
1998-11-03 23:33:43 +03:00
|
|
|
aNewFrame->GetStyleContext(kidSC);
|
1998-10-15 00:10:36 +04:00
|
|
|
nsresult rv = CreateViewForFrame(aPresContext, aNewFrame, kidSC, PR_FALSE);
|
|
|
|
NS_RELEASE(kidSC);
|
|
|
|
if (NS_OK != rv) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
1998-09-19 08:29:36 +04:00
|
|
|
|
1998-09-29 08:47:59 +04:00
|
|
|
// Add the new frame to the child list
|
|
|
|
nsIFrame* nextSibling;
|
1998-09-19 08:29:36 +04:00
|
|
|
if (nsnull == aPrevSibling) {
|
1998-09-23 08:45:59 +04:00
|
|
|
nextSibling = mFirstChild;
|
1998-09-19 08:29:36 +04:00
|
|
|
mFirstChild = aNewFrame;
|
|
|
|
} else {
|
|
|
|
aPrevSibling->GetNextSibling(nextSibling);
|
|
|
|
aPrevSibling->SetNextSibling(aNewFrame);
|
|
|
|
}
|
|
|
|
aNewFrame->SetNextSibling(nextSibling);
|
1998-10-15 00:10:36 +04:00
|
|
|
|
|
|
|
return NS_OK;
|
1998-09-19 08:29:36 +04:00
|
|
|
}
|
|
|
|
|
1998-06-19 03:16:00 +04:00
|
|
|
NS_IMETHODIMP
|
1998-10-03 08:28:05 +04:00
|
|
|
nsInlineFrame::Reflow(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
1998-06-19 22:23:28 +04:00
|
|
|
NS_FRAME_TRACE(NS_FRAME_TRACE_CALLS,
|
1998-09-23 06:25:26 +04:00
|
|
|
("enter nsInlineFrame::InlineReflow maxSize=%d,%d reason=%d nif=%p",
|
1998-06-19 22:23:28 +04:00
|
|
|
aReflowState.maxSize.width, aReflowState.maxSize.height,
|
1998-09-23 06:25:26 +04:00
|
|
|
aReflowState.reason, mNextInFlow));
|
1998-06-19 22:23:28 +04:00
|
|
|
|
1998-06-19 03:16:00 +04:00
|
|
|
// If this is the initial reflow, generate any synthetic content
|
|
|
|
// that needs generating.
|
|
|
|
if (eReflowReason_Initial == aReflowState.reason) {
|
|
|
|
NS_ASSERTION(0 != (NS_FRAME_FIRST_REFLOW & mState), "bad mState");
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
1998-06-19 03:16:00 +04:00
|
|
|
else {
|
|
|
|
NS_ASSERTION(0 == (NS_FRAME_FIRST_REFLOW & mState), "bad mState");
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
// Prepare for reflow
|
1998-10-03 08:28:05 +04:00
|
|
|
nsInlineReflowState state(aPresContext, aReflowState, aMetrics);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
|
|
|
// If we're constrained adjust the available size so it excludes space
|
|
|
|
// needed for border/padding
|
|
|
|
nscoord width = state.maxSize.width;
|
|
|
|
if (NS_UNCONSTRAINEDSIZE != width) {
|
|
|
|
width -= state.mBorderPadding.left + state.mBorderPadding.right;
|
|
|
|
}
|
|
|
|
nscoord height = state.maxSize.height;
|
|
|
|
if (NS_UNCONSTRAINEDSIZE != height) {
|
|
|
|
height -= state.mBorderPadding.top + state.mBorderPadding.bottom;
|
|
|
|
}
|
|
|
|
const nsStyleDisplay* display;
|
|
|
|
GetStyleData(eStyleStruct_Display, (const nsStyleStruct*&)display);
|
|
|
|
|
|
|
|
// Prepare inline reflow engine
|
1998-10-03 08:28:05 +04:00
|
|
|
NS_ASSERTION(nsnull != aReflowState.lineLayout, "no line layout");
|
1998-10-10 02:58:25 +04:00
|
|
|
nsInlineReflow inlineReflow(*aReflowState.lineLayout, state, this, PR_FALSE);
|
1998-09-23 06:25:26 +04:00
|
|
|
inlineReflow.Init(state.mBorderPadding.left, state.mBorderPadding.top,
|
|
|
|
width, height);
|
1998-10-10 02:58:25 +04:00
|
|
|
aReflowState.lineLayout->PushInline(&inlineReflow);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
1998-10-03 01:50:53 +04:00
|
|
|
// ListTag(stdout); printf(": enter isMarginRoot=%c\n", state.mIsMarginRoot?'T':'F');
|
1998-09-23 06:25:26 +04:00
|
|
|
// Now translate in by our border and padding
|
1998-10-03 08:28:05 +04:00
|
|
|
NS_ASSERTION(nsnull != aReflowState.spaceManager, "no space manager");
|
|
|
|
aReflowState.spaceManager->Translate(state.mBorderPadding.left,
|
1998-09-23 06:25:26 +04:00
|
|
|
state.mBorderPadding.top);
|
|
|
|
|
|
|
|
// Based on the type of reflow, switch out to the appropriate
|
|
|
|
// routine.
|
1998-06-19 03:16:00 +04:00
|
|
|
if (eReflowReason_Initial == state.reason) {
|
1998-11-05 22:31:16 +03:00
|
|
|
DrainOverflowLists(aPresContext);
|
1998-10-03 08:28:05 +04:00
|
|
|
aStatus = InitialReflow(state, inlineReflow);
|
1998-06-24 21:52:42 +04:00
|
|
|
mState &= ~NS_FRAME_FIRST_REFLOW;
|
1998-06-19 03:16:00 +04:00
|
|
|
}
|
|
|
|
else if (eReflowReason_Incremental == state.reason) {
|
1998-07-03 01:26:34 +04:00
|
|
|
// XXX For now we drain our overflow list in case our parent
|
|
|
|
// reflowed our prev-in-flow and our prev-in-flow pushed some
|
|
|
|
// children forward to us (e.g. a speculative pullup from us that
|
|
|
|
// failed)
|
1998-11-05 22:31:16 +03:00
|
|
|
DrainOverflowLists(aPresContext);
|
1998-07-03 01:26:34 +04:00
|
|
|
|
1998-06-24 21:52:42 +04:00
|
|
|
NS_ASSERTION(nsnull == mOverflowList, "unexpected overflow list");
|
1998-06-19 03:16:00 +04:00
|
|
|
nsIFrame* target;
|
|
|
|
state.reflowCommand->GetTarget(target);
|
|
|
|
if (this == target) {
|
|
|
|
nsIReflowCommand::ReflowType type;
|
|
|
|
state.reflowCommand->GetType(type);
|
1998-09-19 08:29:36 +04:00
|
|
|
nsIFrame* newFrame;
|
|
|
|
nsIFrame* prevSibling;
|
1998-06-19 03:16:00 +04:00
|
|
|
switch (type) {
|
|
|
|
case nsIReflowCommand::FrameAppended:
|
1998-10-03 08:28:05 +04:00
|
|
|
aStatus = FrameAppendedReflow(state, inlineReflow);
|
1998-06-18 20:25:41 +04:00
|
|
|
break;
|
|
|
|
|
1998-09-19 08:29:36 +04:00
|
|
|
case nsIReflowCommand::FrameInserted:
|
|
|
|
// Link the new frame into the child list
|
|
|
|
state.reflowCommand->GetChildFrame(newFrame);
|
|
|
|
state.reflowCommand->GetPrevSiblingFrame(prevSibling);
|
1998-09-29 08:47:59 +04:00
|
|
|
InsertNewFrame(state.mPresContext, newFrame, prevSibling);
|
1998-09-25 09:13:06 +04:00
|
|
|
// XXX For now map into full reflow...
|
1998-10-03 08:28:05 +04:00
|
|
|
aStatus = ResizeReflow(state, inlineReflow);
|
1998-09-25 09:13:06 +04:00
|
|
|
break;
|
|
|
|
|
1998-09-25 20:10:49 +04:00
|
|
|
case nsIReflowCommand::FrameRemoved:
|
1998-10-03 08:28:05 +04:00
|
|
|
aStatus = FrameRemovedReflow(state, inlineReflow);
|
1998-09-25 09:13:06 +04:00
|
|
|
break;
|
1998-09-19 08:29:36 +04:00
|
|
|
|
1998-06-19 03:16:00 +04:00
|
|
|
default:
|
1998-06-19 22:23:28 +04:00
|
|
|
// XXX For now map the other incremental operations into full reflows
|
1998-10-03 08:28:05 +04:00
|
|
|
aStatus = ResizeReflow(state, inlineReflow);
|
1998-06-19 22:23:28 +04:00
|
|
|
break;
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
|
|
|
}
|
1998-06-19 03:16:00 +04:00
|
|
|
else {
|
1998-06-26 00:51:04 +04:00
|
|
|
// Get next frame in reflow command chain
|
1998-09-23 06:25:26 +04:00
|
|
|
state.reflowCommand->GetNext(state.mNextRCFrame);
|
1998-06-26 00:51:04 +04:00
|
|
|
|
|
|
|
// Continue the reflow
|
1998-10-03 08:28:05 +04:00
|
|
|
aStatus = ChildIncrementalReflow(state, inlineReflow);
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
|
|
|
}
|
1998-11-20 20:41:44 +03:00
|
|
|
else if ((eReflowReason_Resize == state.reason) ||
|
|
|
|
(eReflowReason_StyleChange == state.reason)) {
|
1998-11-05 22:31:16 +03:00
|
|
|
DrainOverflowLists(aPresContext);
|
1998-10-03 08:28:05 +04:00
|
|
|
aStatus = ResizeReflow(state, inlineReflow);
|
1998-06-19 03:16:00 +04:00
|
|
|
}
|
1998-09-23 06:25:26 +04:00
|
|
|
ComputeFinalSize(state, inlineReflow, aMetrics);
|
|
|
|
|
|
|
|
// Now translate in by our border and padding
|
1998-10-10 02:58:25 +04:00
|
|
|
aReflowState.lineLayout->PopInline();
|
1998-10-03 08:28:05 +04:00
|
|
|
aReflowState.spaceManager->Translate(-state.mBorderPadding.left,
|
1998-09-23 06:25:26 +04:00
|
|
|
-state.mBorderPadding.top);
|
1998-06-18 20:25:41 +04:00
|
|
|
|
1998-06-19 22:23:28 +04:00
|
|
|
NS_FRAME_TRACE(NS_FRAME_TRACE_CALLS,
|
1998-10-03 08:28:05 +04:00
|
|
|
("exit nsInlineFrame::InlineReflow size=%d,%d status=%x nif=%p",
|
|
|
|
aMetrics.width, aMetrics.height, aStatus, mNextInFlow));
|
|
|
|
return NS_OK;
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
// XXX factor this (into nsFrameReflowState?) so that both block and
|
|
|
|
// inline can use most of the same logic
|
|
|
|
|
1998-10-03 01:50:53 +04:00
|
|
|
PRBool
|
|
|
|
nsInlineFrame::CalculateMargins(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow,
|
|
|
|
nscoord& aTopMarginResult,
|
|
|
|
nscoord& aBottomMarginResult)
|
|
|
|
{
|
|
|
|
PRBool haveCarriedMargins = PR_FALSE;
|
|
|
|
|
|
|
|
nscoord childsCarriedOutTopMargin = aInlineReflow.GetCarriedOutTopMargin();
|
|
|
|
nscoord childsCarriedOutBottomMargin = aInlineReflow.GetCarriedOutBottomMargin();
|
|
|
|
|
|
|
|
// If the inline-reflow is wrapped up around a block or we have some
|
|
|
|
// carried out margin information then we perform margin collapsing
|
|
|
|
// (pretending we are a block...)
|
|
|
|
if (aInlineReflow.GetIsBlock() ||
|
|
|
|
(0 != childsCarriedOutTopMargin) ||
|
|
|
|
(0 != childsCarriedOutBottomMargin)) {
|
|
|
|
// Compute the collapsed top margin value from the childs margin and
|
|
|
|
// its carried out top margin.
|
|
|
|
nscoord childsTopMargin = aInlineReflow.GetTopMargin();
|
|
|
|
nscoord collapsedTopMargin =
|
1998-10-03 04:17:44 +04:00
|
|
|
nsInlineReflow::MaxMargin(childsCarriedOutTopMargin, childsTopMargin);
|
1998-10-03 01:50:53 +04:00
|
|
|
|
|
|
|
// If this frame is a root for margins then we will apply the
|
|
|
|
// collapsed top margin value ourselves. Otherwise, we pass it out
|
|
|
|
// to our parent to apply.
|
|
|
|
if (!aState.mIsMarginRoot) {
|
|
|
|
// We are not a root for margin collapsing and this is our first
|
|
|
|
// non-empty-line (with a block child presumably). Keep the
|
|
|
|
// collapsed margin value around to pass out to our parent. We
|
|
|
|
// don't apply the margin (our parent will) so zero it out.
|
|
|
|
aState.mCollapsedTopMargin = collapsedTopMargin;
|
|
|
|
collapsedTopMargin = 0;
|
|
|
|
}
|
|
|
|
aTopMarginResult = collapsedTopMargin;
|
|
|
|
|
|
|
|
// Compute the collapsed bottom margin value. This collapsed value
|
|
|
|
// will end up in aState.mPrevBottomMargin if the child frame ends
|
|
|
|
// up being placed in this block frame.
|
|
|
|
nscoord childsBottomMargin = aInlineReflow.GetBottomMargin();
|
|
|
|
nscoord collapsedBottomMargin =
|
1998-10-03 04:17:44 +04:00
|
|
|
nsInlineReflow::MaxMargin(childsCarriedOutBottomMargin,
|
|
|
|
childsBottomMargin);
|
1998-10-03 01:50:53 +04:00
|
|
|
aBottomMarginResult = collapsedBottomMargin;
|
|
|
|
haveCarriedMargins = PR_TRUE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aTopMarginResult = 0;
|
|
|
|
aBottomMarginResult = 0;
|
|
|
|
haveCarriedMargins = PR_FALSE;
|
|
|
|
}
|
|
|
|
return haveCarriedMargins;
|
|
|
|
}
|
|
|
|
|
1998-06-19 03:16:00 +04:00
|
|
|
void
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame::ComputeFinalSize(nsInlineReflowState& aState,
|
1998-09-23 06:25:26 +04:00
|
|
|
nsInlineReflow& aInlineReflow,
|
1998-10-01 08:46:11 +04:00
|
|
|
nsHTMLReflowMetrics& aMetrics)
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
1998-10-16 07:48:00 +04:00
|
|
|
// Align our child frames
|
1998-06-19 03:16:00 +04:00
|
|
|
nsRect bounds;
|
1998-10-12 22:43:41 +04:00
|
|
|
nscoord maxAscent, maxDescent;
|
|
|
|
aInlineReflow.VerticalAlignFrames(bounds, maxAscent, maxDescent);
|
1998-10-31 01:13:58 +03:00
|
|
|
aInlineReflow.RelativePositionFrames(aMetrics.mCombinedArea);
|
1998-09-23 06:25:26 +04:00
|
|
|
|
|
|
|
// Make sure that we collapse into nothingness if our content is
|
|
|
|
// zero sized
|
|
|
|
if (0 == bounds.width) {
|
|
|
|
aMetrics.width = 0;
|
1998-06-19 03:16:00 +04:00
|
|
|
}
|
1998-06-19 22:23:28 +04:00
|
|
|
else {
|
1998-09-23 06:25:26 +04:00
|
|
|
aMetrics.width = aState.mBorderPadding.left + bounds.width +
|
|
|
|
aState.mBorderPadding.right;
|
1998-06-19 22:23:28 +04:00
|
|
|
}
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
// Compute the final height. Make sure that we collapse into
|
|
|
|
// nothingness if our content is zero sized
|
|
|
|
if (0 == bounds.height) {
|
|
|
|
aMetrics.ascent = 0;
|
|
|
|
aMetrics.descent = 0;
|
|
|
|
aMetrics.height = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// XXX tip of the iceburg: when an inline is wrapping up a block frame
|
|
|
|
// it needs to go the whole hog: provide a proper spacemanager
|
|
|
|
// coordinate system; apply horizontal alignment (in case the block
|
|
|
|
// has a width set), etc. Of course the block code knows how to do
|
|
|
|
// this already...
|
|
|
|
if (aInlineReflow.GetIsBlock()) {
|
|
|
|
// Make sure the blocks top and bottom margins get applied; the
|
|
|
|
// top margin will be in bounds.y; the bottom margin we get from
|
|
|
|
// the inline reflow.
|
1998-10-03 01:50:53 +04:00
|
|
|
nscoord newY = aState.mBorderPadding.top + bounds.YMost() +
|
|
|
|
aState.mBorderPadding.bottom;
|
1998-09-23 06:25:26 +04:00
|
|
|
aMetrics.height = newY;
|
|
|
|
aMetrics.ascent = newY;
|
1998-06-19 22:23:28 +04:00
|
|
|
aMetrics.descent = 0;
|
|
|
|
}
|
|
|
|
else {
|
1998-10-12 22:43:41 +04:00
|
|
|
aMetrics.ascent = aState.mBorderPadding.top + maxAscent;
|
|
|
|
aMetrics.descent = maxDescent + aState.mBorderPadding.bottom;
|
1998-06-19 22:23:28 +04:00
|
|
|
aMetrics.height = aMetrics.ascent + aMetrics.descent;
|
|
|
|
}
|
1998-10-03 01:50:53 +04:00
|
|
|
}
|
1998-09-23 06:25:26 +04:00
|
|
|
|
1998-10-03 01:50:53 +04:00
|
|
|
// Return top and bottom margin information
|
|
|
|
if (aState.mIsMarginRoot) {
|
|
|
|
aMetrics.mCarriedOutTopMargin = 0;
|
|
|
|
aMetrics.mCarriedOutBottomMargin = 0;
|
1998-10-06 04:41:16 +04:00
|
|
|
aMetrics.mCarriedOutMarginFlags = 0;
|
1998-10-03 01:50:53 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
aMetrics.mCarriedOutTopMargin = aState.mCollapsedTopMargin;
|
|
|
|
aMetrics.mCarriedOutBottomMargin = aState.mPrevBottomMargin;
|
1998-10-06 04:41:16 +04:00
|
|
|
if (aInlineReflow.GetIsBlock()) {
|
|
|
|
aMetrics.mCarriedOutMarginFlags = aInlineReflow.GetMarginFlags();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aMetrics.mCarriedOutMarginFlags = 0;
|
|
|
|
}
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
if (aState.mComputeMaxElementSize) {
|
|
|
|
// Adjust max-element size if this frame's no-wrap flag is set.
|
1998-11-15 04:13:25 +03:00
|
|
|
nscoord maxWidth;
|
|
|
|
nscoord maxHeight;
|
1998-06-25 20:33:10 +04:00
|
|
|
if (aState.mNoWrap) {
|
1998-11-15 04:13:25 +03:00
|
|
|
maxWidth = aMetrics.width;
|
|
|
|
maxHeight = aMetrics.height;
|
1998-06-25 20:33:10 +04:00
|
|
|
}
|
|
|
|
else {
|
1998-11-15 04:13:25 +03:00
|
|
|
const nsSize& maxSize = aInlineReflow.GetMaxElementSize();
|
|
|
|
maxWidth = maxSize.width;
|
|
|
|
maxHeight = maxSize.height;
|
1998-06-25 20:33:10 +04:00
|
|
|
}
|
1998-07-11 01:45:30 +04:00
|
|
|
|
|
|
|
// Add in our border and padding to the max-element-size so that
|
|
|
|
// we don't shrink too far.
|
1998-11-15 04:13:25 +03:00
|
|
|
maxWidth += aState.mBorderPadding.left + aState.mBorderPadding.right;
|
|
|
|
maxHeight += aState.mBorderPadding.top + aState.mBorderPadding.bottom;
|
|
|
|
|
|
|
|
aMetrics.maxElementSize->width = maxWidth;
|
|
|
|
aMetrics.maxElementSize->height = maxHeight;
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
1998-10-31 01:13:58 +03:00
|
|
|
|
|
|
|
// See if the combined area of our children exceeds the bounds of
|
|
|
|
// our frame. If it does, then set the NS_FRAME_OUTSIDE_CHILDREN
|
|
|
|
// flag.
|
|
|
|
|
|
|
|
// XXX take into account the overflow->clip property!
|
|
|
|
nsRect& combinedArea = aMetrics.mCombinedArea;
|
|
|
|
if ((combinedArea.x < 0) || (combinedArea.y < 0) ||
|
|
|
|
(combinedArea.XMost() > aMetrics.width) ||
|
|
|
|
(combinedArea.YMost() > aMetrics.height)) {
|
|
|
|
mState |= NS_FRAME_OUTSIDE_CHILDREN;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mState &= ~NS_FRAME_OUTSIDE_CHILDREN;
|
|
|
|
}
|
1998-06-19 03:16:00 +04:00
|
|
|
}
|
1998-06-18 20:25:41 +04:00
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus
|
1998-09-23 06:25:26 +04:00
|
|
|
nsInlineFrame::InitialReflow(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow)
|
1998-07-01 00:14:04 +04:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull == mNextInFlow, "bad frame-appended-reflow");
|
1998-07-03 02:55:15 +04:00
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus rs = NS_FRAME_COMPLETE;
|
1998-09-23 06:25:26 +04:00
|
|
|
if (nsnull != mFirstChild) {
|
|
|
|
if (!ReflowMapped(aState, aInlineReflow, rs)) {
|
1998-07-01 00:14:04 +04:00
|
|
|
return rs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rs;
|
|
|
|
}
|
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus
|
1998-09-23 06:25:26 +04:00
|
|
|
nsInlineFrame::FrameAppendedReflow(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow)
|
1998-06-19 03:16:00 +04:00
|
|
|
{
|
1998-06-28 02:56:09 +04:00
|
|
|
NS_PRECONDITION(nsnull == mNextInFlow, "bad frame-appended-reflow");
|
1998-06-19 22:23:28 +04:00
|
|
|
|
1998-09-12 08:46:35 +04:00
|
|
|
// Get the first of the newly appended frames
|
|
|
|
nsIFrame* firstAppendedFrame;
|
|
|
|
aState.reflowCommand->GetChildFrame(firstAppendedFrame);
|
|
|
|
|
|
|
|
// Add the new frames
|
|
|
|
AppendNewFrames(aState.mPresContext, firstAppendedFrame);
|
1998-06-19 22:23:28 +04:00
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus rs = NS_FRAME_COMPLETE;
|
1998-09-23 06:25:26 +04:00
|
|
|
if (nsnull != mFirstChild) {
|
|
|
|
if (!ReflowMapped(aState, aInlineReflow, rs)) {
|
1998-06-25 20:33:10 +04:00
|
|
|
return rs;
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
|
|
|
}
|
1998-06-28 02:56:09 +04:00
|
|
|
return rs;
|
|
|
|
}
|
1998-06-19 22:23:28 +04:00
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus
|
1998-09-25 20:10:49 +04:00
|
|
|
nsInlineFrame::FrameRemovedReflow(nsInlineReflowState& aState,
|
1998-09-25 09:13:06 +04:00
|
|
|
nsInlineReflow& aInlineReflow)
|
|
|
|
{
|
|
|
|
// Get the deleted frame
|
|
|
|
nsIFrame* deletedFrame;
|
|
|
|
aState.reflowCommand->GetChildFrame(deletedFrame);
|
|
|
|
|
|
|
|
// Find the previous sibling frame
|
|
|
|
nsIFrame* prevSibling = nsnull;
|
|
|
|
for (nsIFrame* f = mFirstChild; f != deletedFrame; f->GetNextSibling(f)) {
|
|
|
|
if (nsnull == f) {
|
|
|
|
// We didn't find the deleted frame in our child list
|
|
|
|
NS_WARNING("Can't find deleted frame");
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
prevSibling = f;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Take the frame away; Note that we also have to take away any
|
|
|
|
// continuations so we loop here until deadFrame is nsnull.
|
|
|
|
nsInlineFrame* flow = this;
|
|
|
|
while (nsnull != deletedFrame) {
|
|
|
|
// Remove frame from sibling list
|
|
|
|
nsIFrame* nextSib;
|
|
|
|
deletedFrame->GetNextSibling(nextSib);
|
|
|
|
if (nsnull != prevSibling) {
|
|
|
|
prevSibling->SetNextSibling(nextSib);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
flow->mFirstChild = nextSib;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Break frame out of its flow and then destroy it
|
|
|
|
nsIFrame* nextInFlow;
|
|
|
|
deletedFrame->GetNextInFlow(nextInFlow);
|
|
|
|
deletedFrame->BreakFromNextFlow();
|
|
|
|
deletedFrame->DeleteFrame(aState.mPresContext);
|
|
|
|
deletedFrame = nextInFlow;
|
|
|
|
|
|
|
|
if (nsnull != deletedFrame) {
|
|
|
|
// Get the parent of deadFrame's continuation
|
|
|
|
deletedFrame->GetGeometricParent((nsIFrame*&) flow);
|
|
|
|
|
|
|
|
// When we move to a next-in-flow then the deadFrame will be the
|
|
|
|
// first child of the new parent. Therefore we know that
|
|
|
|
// prevSibling will be null.
|
|
|
|
prevSibling = nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX For now map into full reflow...
|
|
|
|
return ResizeReflow(aState, aInlineReflow);
|
|
|
|
}
|
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus
|
1998-09-23 06:25:26 +04:00
|
|
|
nsInlineFrame::ChildIncrementalReflow(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow)
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
1998-06-19 03:16:00 +04:00
|
|
|
// XXX we can do better SOMEDAY
|
1998-09-23 06:25:26 +04:00
|
|
|
return ResizeReflow(aState, aInlineReflow);
|
1998-06-19 03:16:00 +04:00
|
|
|
}
|
1998-06-18 20:25:41 +04:00
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus
|
1998-09-23 06:25:26 +04:00
|
|
|
nsInlineFrame::ResizeReflow(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow)
|
1998-06-19 03:16:00 +04:00
|
|
|
{
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus rs = NS_FRAME_COMPLETE;
|
1998-09-23 06:25:26 +04:00
|
|
|
if (nsnull != mFirstChild) {
|
|
|
|
if (!ReflowMapped(aState, aInlineReflow, rs)) {
|
1998-06-25 20:33:10 +04:00
|
|
|
return rs;
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
|
|
|
}
|
1998-06-19 22:23:28 +04:00
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
// Try to fit some more children from our next in flow
|
|
|
|
if (nsnull != mNextInFlow) {
|
|
|
|
rs = PullUpChildren(aState, aInlineReflow);
|
1998-06-19 03:16:00 +04:00
|
|
|
}
|
1998-06-25 20:33:10 +04:00
|
|
|
return rs;
|
1998-06-19 03:16:00 +04:00
|
|
|
}
|
1998-06-18 20:25:41 +04:00
|
|
|
|
1998-06-25 20:33:10 +04:00
|
|
|
PRBool
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame::ReflowMapped(nsInlineReflowState& aState,
|
1998-09-23 06:25:26 +04:00
|
|
|
nsInlineReflow& aInlineReflow,
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus& aReflowStatus)
|
1998-06-19 03:16:00 +04:00
|
|
|
{
|
1998-09-23 06:25:26 +04:00
|
|
|
PRBool keepGoing = PR_TRUE;
|
|
|
|
aState.mLastChild = nsnull;
|
1998-06-19 03:16:00 +04:00
|
|
|
nsIFrame* child = mFirstChild;
|
1998-06-19 22:23:28 +04:00
|
|
|
while (nsnull != child) {
|
1998-09-23 06:25:26 +04:00
|
|
|
keepGoing = ReflowFrame(aState, aInlineReflow, child, aReflowStatus);
|
|
|
|
if (!keepGoing) {
|
|
|
|
break;
|
1998-06-28 02:56:09 +04:00
|
|
|
}
|
1998-09-23 06:25:26 +04:00
|
|
|
aState.mLastChild = child;
|
|
|
|
child->GetNextSibling(child);
|
1998-06-19 22:23:28 +04:00
|
|
|
}
|
1998-06-25 20:33:10 +04:00
|
|
|
return keepGoing;
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame::PullUpChildren(nsInlineReflowState& aState,
|
1998-09-23 06:25:26 +04:00
|
|
|
nsInlineReflow& aInlineReflow)
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus reflowStatus = NS_FRAME_COMPLETE;
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame* nextInFlow = (nsInlineFrame*) mNextInFlow;
|
1998-06-19 03:16:00 +04:00
|
|
|
while (nsnull != nextInFlow) {
|
|
|
|
// Get child from our next-in-flow
|
1998-11-05 22:31:16 +03:00
|
|
|
nsIFrame* child = PullOneChild(aState.mPresContext,
|
|
|
|
nextInFlow, aState.mLastChild,
|
1998-10-10 02:58:25 +04:00
|
|
|
reflowStatus);
|
1998-06-19 03:16:00 +04:00
|
|
|
if (nsnull == child) {
|
1998-10-10 03:56:29 +04:00
|
|
|
if (NS_FRAME_NOT_COMPLETE == reflowStatus) {
|
|
|
|
break;
|
|
|
|
}
|
1998-09-15 04:19:49 +04:00
|
|
|
nextInFlow = (nsInlineFrame*) nextInFlow->mNextInFlow;
|
1998-06-19 03:16:00 +04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
// Reflow the new child; if it turns out we can't keep it then
|
|
|
|
// ReflowFrame will push it back down to the next-in-flow.
|
|
|
|
if (!ReflowFrame(aState, aInlineReflow, child, reflowStatus)) {
|
|
|
|
break;
|
1998-06-19 03:16:00 +04:00
|
|
|
}
|
1998-09-23 06:25:26 +04:00
|
|
|
aState.mLastChild = child;
|
|
|
|
}
|
|
|
|
return reflowStatus;
|
|
|
|
}
|
1998-06-18 20:25:41 +04:00
|
|
|
|
1998-10-03 01:50:53 +04:00
|
|
|
void
|
|
|
|
nsInlineFrame::SlideFrames(nsIFrame* aKid, nscoord aDY)
|
|
|
|
{
|
|
|
|
while (nsnull != aKid) {
|
|
|
|
nsRect r;
|
|
|
|
aKid->GetRect(r);
|
|
|
|
r.y += aDY;
|
|
|
|
aKid->SetRect(r);
|
|
|
|
aKid->GetNextSibling(aKid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
PRBool
|
|
|
|
nsInlineFrame::ReflowFrame(nsInlineReflowState& aState,
|
|
|
|
nsInlineReflow& aInlineReflow,
|
|
|
|
nsIFrame* aFrame,
|
1998-10-03 08:28:05 +04:00
|
|
|
nsReflowStatus& aReflowStatus)
|
1998-09-23 06:25:26 +04:00
|
|
|
{
|
1998-11-15 00:01:26 +03:00
|
|
|
#if XXX
|
|
|
|
PRBool firstLetterOK = aState.lineLayout->GetFirstLetterStyleOK();
|
|
|
|
#else
|
|
|
|
// XXX Until the CSS2 spec lawyers wrangle this out, we don't allow
|
|
|
|
// for first letter style to apply anywhere except for text which is
|
|
|
|
// a direct descendant of a block frame.
|
|
|
|
aState.lineLayout->SetFirstLetterStyleOK(PR_FALSE);
|
|
|
|
#endif
|
|
|
|
PRBool justDidFirstLetter = PR_FALSE;
|
1998-09-23 06:25:26 +04:00
|
|
|
aInlineReflow.SetIsFirstChild(aFrame == mFirstChild);
|
|
|
|
aReflowStatus = aInlineReflow.ReflowFrame(aFrame);
|
|
|
|
if (NS_IS_REFLOW_ERROR(aReflowStatus)) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
1998-11-15 00:01:26 +03:00
|
|
|
#if XXX
|
|
|
|
if (!aState.lineLayout->GetFirstLetterStyleOK() && firstLetterOK) {
|
|
|
|
justDidFirstLetter = PR_TRUE;
|
|
|
|
}
|
|
|
|
#endif
|
1998-06-28 02:56:09 +04:00
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
// XXX temporary code until blocks can return break-after naturally
|
1998-10-10 02:58:25 +04:00
|
|
|
if (aInlineReflow.GetIsBlock()) {
|
|
|
|
if (!NS_INLINE_IS_BREAK(aReflowStatus) &&
|
|
|
|
NS_FRAME_IS_COMPLETE(aReflowStatus)) {
|
|
|
|
// Force reflow status to be what the block code should have returned
|
|
|
|
aReflowStatus = NS_INLINE_LINE_BREAK_AFTER(NS_FRAME_COMPLETE);
|
|
|
|
}
|
1998-09-23 06:25:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_FRAME_TRACE(NS_FRAME_TRACE_CALLS,
|
|
|
|
("nsInlineFrame::ReflowMapped: frame=%p reflowStatus=%x",
|
|
|
|
aFrame, aReflowStatus));
|
|
|
|
|
|
|
|
if (NS_INLINE_IS_BREAK_BEFORE(aReflowStatus)) {
|
|
|
|
// When breaking before a frame there is no point in creating the
|
|
|
|
// continuation because it may not be needed when the frame is
|
|
|
|
// reflowed in it's new location.
|
|
|
|
if (aFrame != mFirstChild) {
|
|
|
|
// We have other children before the child that needs the
|
|
|
|
// break-before. Therefore map the break-before from the child
|
|
|
|
// into a break-after for us, preserving the break-type in the
|
|
|
|
// process. This is important when the break type is not just a
|
|
|
|
// simple line break.
|
|
|
|
aReflowStatus = NS_FRAME_NOT_COMPLETE | NS_INLINE_BREAK |
|
|
|
|
NS_INLINE_BREAK_AFTER | (NS_INLINE_BREAK_TYPE_MASK & aReflowStatus);
|
|
|
|
PushKids(aState, aInlineReflow, aFrame);
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
1998-10-03 01:50:53 +04:00
|
|
|
|
|
|
|
// Apply collapsing block margins. However, we only do this if a
|
|
|
|
// carried out margin was present.
|
|
|
|
nscoord topMargin, bottomMargin;
|
|
|
|
if (CalculateMargins(aState, aInlineReflow, topMargin, bottomMargin)) {
|
|
|
|
if (0 != topMargin) {
|
|
|
|
SlideFrames(mFirstChild, topMargin);
|
|
|
|
}
|
|
|
|
// Record bottom margin value for returning as our carried out
|
|
|
|
// bottom margin.
|
|
|
|
aState.mPrevBottomMargin = bottomMargin;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NS_FRAME_IS_NOT_COMPLETE(aReflowStatus)) {
|
1998-09-23 06:25:26 +04:00
|
|
|
// We may be breaking after a frame here (e.g. a child inline
|
|
|
|
// frame that contains a BR tag and more content after the BR
|
|
|
|
// tag). We will propagate that upward so that this frame gets
|
|
|
|
// continued so that it can map the childs remaining content.
|
|
|
|
|
|
|
|
// Create continuation frame for the child frame when it's not
|
|
|
|
// complete.
|
|
|
|
nsIFrame* newFrame;
|
|
|
|
nsresult rv;
|
|
|
|
rv = CreateNextInFlow(aState.mPresContext, this, aFrame, newFrame);
|
|
|
|
if (NS_OK != rv) {
|
1998-10-03 08:28:05 +04:00
|
|
|
// XXX RETURN ERROR STATUS...
|
1998-09-23 06:25:26 +04:00
|
|
|
return PR_FALSE;
|
1998-06-28 02:56:09 +04:00
|
|
|
}
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
// Advance to next frame
|
|
|
|
aState.mLastChild = aFrame;
|
|
|
|
aFrame->GetNextSibling(aFrame);
|
1998-06-28 02:56:09 +04:00
|
|
|
|
1998-11-15 00:01:26 +03:00
|
|
|
if (!justDidFirstLetter) {
|
|
|
|
// Push remaining frames, if any. There may be no more frames if
|
|
|
|
// the continuation frame already existed and it belongs to
|
|
|
|
// <b>our</b> next-in-flow.
|
|
|
|
if (nsnull != aFrame) {
|
|
|
|
PushKids(aState, aInlineReflow, aFrame);
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
1998-06-28 02:56:09 +04:00
|
|
|
}
|
1998-09-23 06:25:26 +04:00
|
|
|
}
|
1998-10-03 01:50:53 +04:00
|
|
|
|
|
|
|
if (NS_INLINE_IS_BREAK_AFTER(aReflowStatus)) {
|
1998-09-23 06:25:26 +04:00
|
|
|
// If we are breaking after a child that's complete, we may still
|
|
|
|
// be incomplete if we have more children that need
|
|
|
|
// reflowing. Check for this after advancing to the next frame.
|
|
|
|
aState.mLastChild = aFrame;
|
|
|
|
aFrame->GetNextSibling(aFrame);
|
|
|
|
if (nsnull != aFrame) {
|
|
|
|
PushKids(aState, aInlineReflow, aFrame);
|
|
|
|
aReflowStatus |= NS_FRAME_NOT_COMPLETE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// We did the easy check for our completion status, now do the
|
|
|
|
// hard one. See if any of our next-in-flows have any frames
|
|
|
|
// left in them.
|
|
|
|
nsInlineFrame* nextInFlow = (nsInlineFrame*) mNextInFlow;
|
|
|
|
while (nsnull != nextInFlow) {
|
1998-10-10 03:56:29 +04:00
|
|
|
if ((nsnull != nextInFlow->mFirstChild) ||
|
|
|
|
(nsnull != nextInFlow->mOverflowList)) {
|
1998-09-23 06:25:26 +04:00
|
|
|
// One of our next-in-flows has a child remaining. Therefore
|
|
|
|
// we are not complete and must let our parent know so that
|
|
|
|
// our parent doesn't accidently remove our next-in-flows!
|
1998-06-28 02:56:09 +04:00
|
|
|
aReflowStatus |= NS_FRAME_NOT_COMPLETE;
|
1998-09-23 06:25:26 +04:00
|
|
|
break;
|
1998-06-19 22:23:28 +04:00
|
|
|
}
|
1998-09-23 06:25:26 +04:00
|
|
|
nextInFlow = (nsInlineFrame*) nextInFlow->mNextInFlow;
|
1998-06-19 03:16:00 +04:00
|
|
|
}
|
1998-06-19 22:23:28 +04:00
|
|
|
}
|
1998-09-23 06:25:26 +04:00
|
|
|
return PR_FALSE;
|
1998-06-19 22:23:28 +04:00
|
|
|
}
|
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
return PR_TRUE;
|
1998-06-19 22:23:28 +04:00
|
|
|
}
|
|
|
|
|
1998-10-10 02:58:25 +04:00
|
|
|
PRBool
|
|
|
|
nsInlineFrame::SafeToPull(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
const nsStyleDisplay* disp;
|
|
|
|
aFrame->GetStyleData(eStyleStruct_Display, (const nsStyleStruct*&) disp);
|
|
|
|
const nsStylePosition* pos;
|
|
|
|
aFrame->GetStyleData(eStyleStruct_Position, (const nsStyleStruct*&) pos);
|
|
|
|
if ((nsnull != disp) && (nsnull != pos)) {
|
|
|
|
if (nsLineLayout::TreatFrameAsBlock(disp, pos)) {
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
1998-06-24 21:52:42 +04:00
|
|
|
nsIFrame*
|
1998-11-05 22:31:16 +03:00
|
|
|
nsInlineFrame::PullOneChild(nsIPresContext& aPresContext,
|
|
|
|
nsInlineFrame* aNextInFlow,
|
1998-10-10 02:58:25 +04:00
|
|
|
nsIFrame* aLastChild,
|
|
|
|
nsReflowStatus& aReflowStatus)
|
1998-06-24 21:52:42 +04:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aNextInFlow, "null ptr");
|
|
|
|
|
|
|
|
// Get first available frame from the next-in-flow; if it's out of
|
1998-10-10 02:58:25 +04:00
|
|
|
// frames check it's overflow list. Don't pull-up a block frame
|
|
|
|
// unless we have zero children.
|
1998-06-24 21:52:42 +04:00
|
|
|
nsIFrame* kidFrame = aNextInFlow->mFirstChild;
|
|
|
|
if (nsnull == kidFrame) {
|
|
|
|
if (nsnull == aNextInFlow->mOverflowList) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
NS_FRAME_LOG(NS_FRAME_TRACE_CALLS,
|
1998-09-15 04:19:49 +04:00
|
|
|
("nsInlineFrame::PullOneChild: from overflow list, frame=%p",
|
1998-06-24 21:52:42 +04:00
|
|
|
kidFrame));
|
|
|
|
kidFrame = aNextInFlow->mOverflowList;
|
1998-10-10 02:58:25 +04:00
|
|
|
if ((nsnull != aLastChild) && !SafeToPull(kidFrame)) {
|
|
|
|
aReflowStatus = NS_FRAME_NOT_COMPLETE;
|
|
|
|
return nsnull;
|
|
|
|
}
|
1998-06-24 21:52:42 +04:00
|
|
|
kidFrame->GetNextSibling(aNextInFlow->mOverflowList);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_FRAME_LOG(NS_FRAME_TRACE_CALLS,
|
1998-09-23 06:25:26 +04:00
|
|
|
("nsInlineFrame::PullOneChild: frame=%p",
|
|
|
|
kidFrame));
|
1998-10-10 02:58:25 +04:00
|
|
|
if ((nsnull != aLastChild) && !SafeToPull(kidFrame)) {
|
|
|
|
aReflowStatus = NS_FRAME_NOT_COMPLETE;
|
|
|
|
return nsnull;
|
|
|
|
}
|
1998-06-24 21:52:42 +04:00
|
|
|
// Take the frame away from the next-in-flow. Update it's first
|
1998-07-01 00:14:04 +04:00
|
|
|
// content offset.
|
1998-06-24 21:52:42 +04:00
|
|
|
kidFrame->GetNextSibling(aNextInFlow->mFirstChild);
|
|
|
|
}
|
|
|
|
|
1998-11-05 22:31:16 +03:00
|
|
|
// Update the frames style context
|
|
|
|
nsIFrame* oldParent;
|
|
|
|
kidFrame->GetGeometricParent(oldParent);
|
|
|
|
UpdateStyleContexts(aPresContext, kidFrame, oldParent, this);
|
|
|
|
|
1998-06-24 21:52:42 +04:00
|
|
|
// Now give the frame to this container
|
|
|
|
kidFrame->SetGeometricParent(this);
|
|
|
|
nsIFrame* contentParent;
|
|
|
|
kidFrame->GetContentParent(contentParent);
|
|
|
|
if (aNextInFlow == contentParent) {
|
|
|
|
kidFrame->SetContentParent(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the frame on our list
|
|
|
|
if (nsnull == aLastChild) {
|
|
|
|
mFirstChild = kidFrame;
|
|
|
|
} else {
|
|
|
|
aLastChild->SetNextSibling(kidFrame);
|
|
|
|
}
|
|
|
|
kidFrame->SetNextSibling(nsnull);
|
|
|
|
|
1998-10-10 02:58:25 +04:00
|
|
|
aReflowStatus = NS_FRAME_COMPLETE;
|
1998-06-24 21:52:42 +04:00
|
|
|
return kidFrame;
|
|
|
|
}
|
|
|
|
|
1998-06-19 03:16:00 +04:00
|
|
|
void
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame::PushKids(nsInlineReflowState& aState,
|
1998-09-23 06:25:26 +04:00
|
|
|
nsInlineReflow& aInlineReflow,
|
|
|
|
nsIFrame* aPushedChild)
|
1998-06-18 20:25:41 +04:00
|
|
|
{
|
1998-09-23 06:25:26 +04:00
|
|
|
#ifdef NS_DEBUG
|
1998-07-01 00:14:04 +04:00
|
|
|
NS_ASSERTION(nsnull == mOverflowList, "bad overflow list");
|
1998-09-23 06:25:26 +04:00
|
|
|
NS_ASSERTION(nsnull != aPushedChild, "bad pushkids call");
|
|
|
|
NS_ASSERTION(nsnull != aState.mLastChild, "bad pushkids call");
|
|
|
|
nsIFrame* nextSib;
|
|
|
|
aState.mLastChild->GetNextSibling(nextSib);
|
|
|
|
NS_ASSERTION(nextSib == aPushedChild, "bad pushkids call");
|
|
|
|
#endif
|
1998-07-01 00:14:04 +04:00
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
// Break sibling list
|
|
|
|
aState.mLastChild->SetNextSibling(nsnull);
|
1998-07-01 00:14:04 +04:00
|
|
|
|
1998-09-23 06:25:26 +04:00
|
|
|
// Place overflow frames on our overflow list; our next-in-flow
|
|
|
|
// will pick them up when it is reflowed
|
|
|
|
mOverflowList = aPushedChild;
|
1998-10-10 02:58:25 +04:00
|
|
|
|
|
|
|
// Count how many frames are remaining and set the
|
|
|
|
// aInlineReflow's frame count accordingly.
|
|
|
|
PRInt32 count = 0;
|
|
|
|
nsIFrame* kid = mFirstChild;
|
|
|
|
while (nsnull != kid) {
|
|
|
|
count++;
|
|
|
|
kid->GetNextSibling(kid);
|
|
|
|
}
|
|
|
|
aInlineReflow.ChangeFrameCount(count);
|
1998-06-18 20:25:41 +04:00
|
|
|
}
|
1998-07-01 00:14:04 +04:00
|
|
|
|
|
|
|
void
|
1998-11-05 22:31:16 +03:00
|
|
|
nsInlineFrame::DrainOverflowLists(nsIPresContext& aPresContext)
|
1998-07-01 00:14:04 +04:00
|
|
|
{
|
|
|
|
// Our prev-in-flows overflow list goes before my children and must
|
|
|
|
// be re-parented.
|
|
|
|
if (nsnull != mPrevInFlow) {
|
1998-09-15 04:19:49 +04:00
|
|
|
nsInlineFrame* prevInFlow = (nsInlineFrame*) mPrevInFlow;
|
1998-07-01 00:14:04 +04:00
|
|
|
if (nsnull != prevInFlow->mOverflowList) {
|
|
|
|
nsIFrame* frame = prevInFlow->mOverflowList;
|
|
|
|
nsIFrame* lastFrame = nsnull;
|
|
|
|
while (nsnull != frame) {
|
1998-11-05 22:31:16 +03:00
|
|
|
// Update the frames style context
|
|
|
|
nsIFrame* oldParent;
|
|
|
|
frame->GetGeometricParent(oldParent);
|
|
|
|
UpdateStyleContexts(aPresContext, frame, oldParent, this);
|
|
|
|
|
1998-07-01 00:14:04 +04:00
|
|
|
// Reparent the frame
|
|
|
|
frame->SetGeometricParent(this);
|
|
|
|
nsIFrame* contentParent;
|
|
|
|
frame->GetContentParent(contentParent);
|
|
|
|
if (prevInFlow == contentParent) {
|
|
|
|
frame->SetContentParent(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Advance through the list
|
|
|
|
lastFrame = frame;
|
|
|
|
frame->GetNextSibling(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Join the two frame lists together and update our child count
|
|
|
|
nsIFrame* newFirstChild = prevInFlow->mOverflowList;
|
|
|
|
lastFrame->SetNextSibling(mFirstChild);
|
|
|
|
mFirstChild = newFirstChild;
|
|
|
|
prevInFlow->mOverflowList = nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Our overflow list goes to the end of our child list
|
|
|
|
if (nsnull != mOverflowList) {
|
|
|
|
// Append the overflow list to the end of our child list
|
1998-09-19 07:24:26 +04:00
|
|
|
nsIFrame* lastFrame = LastFrame(mFirstChild);
|
1998-07-01 00:14:04 +04:00
|
|
|
if (nsnull == lastFrame) {
|
|
|
|
mFirstChild = mOverflowList;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lastFrame->SetNextSibling(mOverflowList);
|
|
|
|
}
|
|
|
|
mOverflowList = nsnull;
|
|
|
|
}
|
|
|
|
}
|
1998-10-16 03:27:41 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
1998-11-19 20:22:29 +03:00
|
|
|
nsInlineFrame::GetFrameName(nsString& aResult) const
|
1998-10-16 03:27:41 +04:00
|
|
|
{
|
1998-11-19 20:22:29 +03:00
|
|
|
return MakeFrameName("Inline", aResult);
|
1998-10-16 03:27:41 +04:00
|
|
|
}
|