1998-06-18 16:25:41 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1998-06-18 16:25:41 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1998-06-18 16:25:41 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
1999-11-06 03:40:37 +00:00
|
|
|
* Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-06-18 16:25:41 +00:00
|
|
|
*/
|
1998-09-15 00:19:49 +00:00
|
|
|
#ifndef nsLineLayout_h___
|
|
|
|
#define nsLineLayout_h___
|
1998-06-18 16:25:41 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
#include "nsFrame.h"
|
1998-06-18 16:25:41 +00:00
|
|
|
#include "nsVoidArray.h"
|
1999-04-20 00:24:32 +00:00
|
|
|
#include "nsTextRun.h"
|
1998-06-18 16:25:41 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
class nsISpaceManager;
|
1998-12-05 16:05:52 +00:00
|
|
|
class nsBlockReflowState;
|
1998-08-04 21:17:56 +00:00
|
|
|
class nsPlaceholderFrame;
|
1999-03-18 21:03:25 +00:00
|
|
|
struct nsStyleText;
|
1998-06-18 16:25:41 +00:00
|
|
|
|
1999-08-27 21:49:12 +00:00
|
|
|
#define NS_LINELAYOUT_NUM_FRAMES 10
|
1999-03-29 23:46:34 +00:00
|
|
|
#define NS_LINELAYOUT_NUM_SPANS 5
|
|
|
|
|
1998-09-15 00:19:49 +00:00
|
|
|
class nsLineLayout {
|
1998-06-18 16:25:41 +00:00
|
|
|
public:
|
1998-09-23 02:31:00 +00:00
|
|
|
nsLineLayout(nsIPresContext& aPresContext,
|
1999-03-18 21:03:25 +00:00
|
|
|
nsISpaceManager* aSpaceManager,
|
|
|
|
const nsHTMLReflowState* aOuterReflowState,
|
|
|
|
PRBool aComputeMaxElementSize);
|
|
|
|
nsLineLayout(nsIPresContext& aPresContext);
|
1998-09-15 00:19:49 +00:00
|
|
|
~nsLineLayout();
|
1998-06-18 16:25:41 +00:00
|
|
|
|
1999-08-27 21:49:12 +00:00
|
|
|
void Init(nsBlockReflowState* aState, nscoord aMinLineHeight,
|
|
|
|
PRInt32 aLineNumber) {
|
1999-03-18 21:03:25 +00:00
|
|
|
mBlockRS = aState;
|
1999-08-27 21:49:12 +00:00
|
|
|
mMinLineHeight = aMinLineHeight;
|
|
|
|
mLineNumber = aLineNumber;
|
1998-08-04 21:17:56 +00:00
|
|
|
}
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
PRInt32 GetColumn() {
|
|
|
|
return mColumn;
|
1999-02-18 03:28:00 +00:00
|
|
|
}
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void SetColumn(PRInt32 aNewColumn) {
|
|
|
|
mColumn = aNewColumn;
|
1998-09-23 02:31:00 +00:00
|
|
|
}
|
1999-03-18 21:03:25 +00:00
|
|
|
|
|
|
|
PRInt32 GetLineNumber() const {
|
|
|
|
return mLineNumber;
|
1998-09-23 02:31:00 +00:00
|
|
|
}
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void BeginLineReflow(nscoord aX, nscoord aY,
|
|
|
|
nscoord aWidth, nscoord aHeight,
|
1999-03-21 01:14:05 +00:00
|
|
|
PRBool aImpactedByFloaters,
|
1999-03-18 21:03:25 +00:00
|
|
|
PRBool aIsTopOfPage);
|
1998-10-27 16:52:10 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void EndLineReflow();
|
1998-09-29 22:32:04 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void UpdateBand(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight,
|
1999-10-29 14:33:26 +00:00
|
|
|
PRBool aPlacedLeftFloater,
|
|
|
|
nsIFrame* aFloaterFrame);
|
1998-09-29 22:32:04 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
nsresult BeginSpan(nsIFrame* aFrame,
|
|
|
|
const nsHTMLReflowState* aSpanReflowState,
|
|
|
|
nscoord aLeftEdge,
|
|
|
|
nscoord aRightEdge);
|
1998-10-09 22:58:25 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void EndSpan(nsIFrame* aFrame, nsSize& aSizeResult,
|
1999-09-09 21:04:37 +00:00
|
|
|
nsSize* aMaxElementSize);
|
1999-09-03 03:47:49 +00:00
|
|
|
|
|
|
|
PRBool InStrictMode();
|
1998-10-09 22:58:25 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
PRInt32 GetCurrentSpanCount() const;
|
1998-10-09 22:58:25 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void SplitLineTo(PRInt32 aNewCount);
|
1998-06-18 16:25:41 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
PRBool IsZeroHeight();
|
1998-06-18 16:25:41 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
nsresult ReflowFrame(nsIFrame* aFrame,
|
|
|
|
nsIFrame** aNextRCFrame,
|
1999-10-29 14:33:26 +00:00
|
|
|
nsReflowStatus& aReflowStatus,
|
|
|
|
nsHTMLReflowMetrics* aMetrics = nsnull);
|
1998-06-18 16:25:41 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
nscoord GetCarriedOutBottomMargin() const {
|
1999-03-25 03:49:47 +00:00
|
|
|
return mCarriedOutBottomMargin;
|
1999-03-18 21:03:25 +00:00
|
|
|
}
|
1998-10-10 04:35:01 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
nsresult AddBulletFrame(nsIFrame* aFrame,
|
|
|
|
const nsHTMLReflowMetrics& aMetrics);
|
1998-10-20 00:22:48 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void RemoveBulletFrame(nsIFrame* aFrame) {
|
|
|
|
PushFrame(aFrame);
|
1998-10-10 04:35:01 +00:00
|
|
|
}
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void VerticalAlignFrames(nsRect& aLineBoxResult,
|
|
|
|
nsSize& aMaxElementSizeResult);
|
1998-10-10 04:35:01 +00:00
|
|
|
|
1999-10-12 23:27:32 +00:00
|
|
|
PRBool TrimTrailingWhiteSpace();
|
1998-10-10 04:35:01 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void HorizontalAlignFrames(nsRect& aLineBounds, PRBool aAllowJustify);
|
1998-10-10 04:35:01 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void RelativePositionFrames(nsRect& aCombinedArea);
|
1998-10-10 04:35:01 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
//----------------------------------------
|
1998-10-10 04:35:01 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
// Support methods for white-space compression and word-wrapping
|
|
|
|
// during line reflow
|
|
|
|
|
|
|
|
void SetEndsInWhiteSpace(PRBool aState) {
|
|
|
|
mEndsInWhiteSpace = aState;
|
1998-06-18 16:25:41 +00:00
|
|
|
}
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
PRBool GetEndsInWhiteSpace() const {
|
|
|
|
return mEndsInWhiteSpace;
|
1998-06-18 16:25:41 +00:00
|
|
|
}
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void SetUnderstandsWhiteSpace(PRBool aSetting) {
|
|
|
|
mUnderstandsWhiteSpace = aSetting;
|
1998-06-25 16:33:10 +00:00
|
|
|
}
|
1999-03-18 21:03:25 +00:00
|
|
|
|
1999-11-02 15:44:57 +00:00
|
|
|
void SetTextStartsWithNBSP(PRBool aYes) {
|
|
|
|
mTextStartsWithNBSP = aYes;
|
|
|
|
}
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void RecordWordFrame(nsIFrame* aWordFrame) {
|
|
|
|
mWordFrames.AppendElement(aWordFrame);
|
1998-10-17 01:06:17 +00:00
|
|
|
}
|
1998-06-25 16:33:10 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
PRBool InWord() const {
|
|
|
|
return 0 != mWordFrames.Count();
|
|
|
|
}
|
1998-07-22 18:38:57 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void ForgetWordFrame(nsIFrame* aFrame);
|
1999-02-01 17:32:33 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
void ForgetWordFrames() {
|
|
|
|
mWordFrames.Clear();
|
|
|
|
}
|
1998-10-10 04:35:01 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
nsIFrame* FindNextText(nsIFrame* aFrame);
|
1998-11-10 18:04:19 +00:00
|
|
|
|
1999-03-24 15:41:17 +00:00
|
|
|
PRBool CanPlaceFloaterNow() const;
|
1998-10-10 04:35:01 +00:00
|
|
|
|
1999-03-24 15:41:17 +00:00
|
|
|
PRBool LineIsEmpty() const;
|
|
|
|
|
|
|
|
PRBool LineIsBreakable() const;
|
1999-03-21 01:14:05 +00:00
|
|
|
|
1999-10-29 14:33:26 +00:00
|
|
|
PRBool GetLineEndsInBR() const { return mLineEndsInBR; }
|
|
|
|
|
|
|
|
void SetLineEndsInBR(PRBool aOn) { mLineEndsInBR = aOn; }
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
//----------------------------------------
|
|
|
|
// Inform the line-layout about the presence of a floating frame
|
|
|
|
// XXX get rid of this: use get-frame-type?
|
|
|
|
void InitFloater(nsPlaceholderFrame* aFrame);
|
|
|
|
void AddFloater(nsPlaceholderFrame* aFrame);
|
1998-06-25 16:33:10 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
//----------------------------------------
|
1998-06-27 22:56:09 +00:00
|
|
|
|
1998-11-05 19:30:31 +00:00
|
|
|
PRBool GetFirstLetterStyleOK() const {
|
|
|
|
return mFirstLetterStyleOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetFirstLetterStyleOK(PRBool aSetting) {
|
|
|
|
mFirstLetterStyleOK = aSetting;
|
|
|
|
}
|
|
|
|
|
1999-03-26 00:41:36 +00:00
|
|
|
void SetFirstLetterFrame(nsIFrame* aFrame) {
|
|
|
|
mFirstLetterFrame = aFrame;
|
|
|
|
}
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
//----------------------------------------
|
|
|
|
// Text run usage methods. These methods are using during reflow to
|
|
|
|
// track the current text run and to advance through text runs.
|
|
|
|
|
|
|
|
void SetReflowTextRuns(nsTextRun* aTextRuns) {
|
|
|
|
mReflowTextRuns = aTextRuns;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------
|
|
|
|
|
|
|
|
static PRBool TreatFrameAsBlock(nsIFrame* aFrame);
|
|
|
|
|
|
|
|
//----------------------------------------
|
|
|
|
|
|
|
|
// XXX Move this out of line-layout; make some little interface to
|
|
|
|
// deal with it...
|
|
|
|
|
|
|
|
// Add another piece of text to a text-run during FindTextRuns.
|
|
|
|
// Note: continuation frames must NOT add themselves; just the
|
|
|
|
// first-in-flow
|
|
|
|
nsresult AddText(nsIFrame* aTextFrame);
|
|
|
|
|
|
|
|
// Close out a text-run during FindTextRuns.
|
|
|
|
void EndTextRun();
|
|
|
|
|
|
|
|
// This returns the first nsTextRun found during a FindTextRuns. The
|
|
|
|
// internal text-run state is reset.
|
|
|
|
nsTextRun* TakeTextRuns();
|
|
|
|
|
|
|
|
nsIPresContext& mPresContext;
|
|
|
|
|
1998-06-27 22:56:09 +00:00
|
|
|
protected:
|
1999-03-18 21:03:25 +00:00
|
|
|
// This state is constant for a given block frame doing line layout
|
|
|
|
nsISpaceManager* mSpaceManager;
|
|
|
|
const nsStyleText* mStyleText;
|
|
|
|
const nsHTMLReflowState* mBlockReflowState;
|
|
|
|
nsBlockReflowState* mBlockRS;/* XXX hack! */
|
|
|
|
nscoord mMinLineHeight;
|
|
|
|
PRBool mComputeMaxElementSize;
|
|
|
|
PRUint8 mTextAlign;
|
|
|
|
|
1999-03-22 20:45:09 +00:00
|
|
|
// This state varies during the reflow of a line but is line
|
|
|
|
// "global" state not span "local" state.
|
1999-03-26 00:41:36 +00:00
|
|
|
nsIFrame* mFirstLetterFrame;
|
1999-03-18 21:03:25 +00:00
|
|
|
PRInt32 mLineNumber;
|
|
|
|
PRInt32 mColumn;
|
1998-10-31 22:48:56 +00:00
|
|
|
PRBool mEndsInWhiteSpace;
|
|
|
|
PRBool mUnderstandsWhiteSpace;
|
1999-11-02 15:44:57 +00:00
|
|
|
PRBool mTextStartsWithNBSP;
|
1998-11-05 19:30:31 +00:00
|
|
|
PRBool mFirstLetterStyleOK;
|
1999-03-18 21:03:25 +00:00
|
|
|
PRBool mIsTopOfPage;
|
|
|
|
PRBool mUpdatedBand;
|
1999-03-21 01:14:05 +00:00
|
|
|
PRBool mImpactedByFloaters;
|
1999-10-29 14:33:26 +00:00
|
|
|
PRBool mLastFloaterWasLetterFrame;
|
1999-03-24 15:41:17 +00:00
|
|
|
PRBool mCanPlaceFloater;
|
1999-09-03 03:47:49 +00:00
|
|
|
PRBool mKnowStrictMode;
|
|
|
|
PRBool mInStrictMode;
|
1999-10-29 14:33:26 +00:00
|
|
|
PRBool mLineEndsInBR;
|
1999-03-18 21:03:25 +00:00
|
|
|
PRUint8 mPlacedFloaters;
|
1998-09-23 02:31:00 +00:00
|
|
|
PRInt32 mTotalPlacedFrames;
|
1998-10-10 04:35:01 +00:00
|
|
|
nsVoidArray mWordFrames;
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
nscoord mTopEdge;
|
|
|
|
nscoord mBottomEdge;
|
|
|
|
nscoord mMaxTopBoxHeight;
|
|
|
|
nscoord mMaxBottomBoxHeight;
|
1999-03-25 03:49:47 +00:00
|
|
|
nscoord mCarriedOutBottomMargin;
|
1999-03-18 21:03:25 +00:00
|
|
|
|
1999-10-12 23:27:32 +00:00
|
|
|
// Final computed line-height value after VerticalAlignFrames for
|
|
|
|
// the block has been called.
|
|
|
|
nscoord mFinalLineHeight;
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
nsTextRun* mReflowTextRuns;
|
|
|
|
nsTextRun* mTextRun;
|
1998-10-09 22:58:25 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
// Per-frame data recorded by the line-layout reflow logic. This
|
|
|
|
// state is the state needed to post-process the line after reflow
|
|
|
|
// has completed (vertical alignment, horizontal alignment,
|
|
|
|
// justification and relative positioning).
|
1999-03-31 04:21:53 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
struct PerSpanData;
|
1999-04-12 20:12:15 +00:00
|
|
|
struct PerFrameData;
|
|
|
|
friend struct PerSpanData;
|
|
|
|
friend struct PerFrameData;
|
1999-03-18 21:03:25 +00:00
|
|
|
struct PerFrameData {
|
|
|
|
// link to next/prev frame in same span
|
|
|
|
PerFrameData* mNext;
|
|
|
|
PerFrameData* mPrev;
|
|
|
|
|
|
|
|
// pointer to child span data if this is an inline container frame
|
|
|
|
PerSpanData* mSpan;
|
|
|
|
|
|
|
|
// The frame and its type
|
|
|
|
nsIFrame* mFrame;
|
|
|
|
nsCSSFrameType mFrameType;
|
|
|
|
|
|
|
|
// From metrics
|
|
|
|
nscoord mAscent, mDescent;
|
|
|
|
nsRect mBounds;
|
|
|
|
nsSize mMaxElementSize;
|
|
|
|
nsRect mCombinedArea;
|
|
|
|
|
|
|
|
// From reflow-state
|
|
|
|
nsMargin mMargin;
|
|
|
|
nsMargin mBorderPadding;
|
|
|
|
nsMargin mOffsets;
|
|
|
|
PRBool mRelativePos;
|
|
|
|
|
|
|
|
// Other state we use
|
|
|
|
PRUint8 mVerticalAlign;
|
1999-09-09 21:04:37 +00:00
|
|
|
PRBool mIsTextFrame;
|
1999-09-03 03:47:49 +00:00
|
|
|
PRBool mIsNonEmptyTextFrame;
|
1999-10-29 14:33:26 +00:00
|
|
|
PRBool mIsLetterFrame;
|
|
|
|
PRBool mIsSticky;
|
1999-09-21 00:14:22 +00:00
|
|
|
|
|
|
|
PerFrameData* Last() {
|
|
|
|
PerFrameData* pfd = this;
|
|
|
|
while (pfd->mNext) {
|
|
|
|
pfd = pfd->mNext;
|
|
|
|
}
|
|
|
|
return pfd;
|
|
|
|
}
|
1999-03-18 21:03:25 +00:00
|
|
|
};
|
1999-03-29 23:46:34 +00:00
|
|
|
PerFrameData mFrameDataBuf[NS_LINELAYOUT_NUM_FRAMES];
|
1999-03-18 21:03:25 +00:00
|
|
|
PerFrameData* mFrameFreeList;
|
1999-03-29 23:46:34 +00:00
|
|
|
PRInt32 mInitialFramesFreed;
|
1999-03-18 21:03:25 +00:00
|
|
|
|
1999-03-31 04:21:53 +00:00
|
|
|
#ifdef AIX
|
|
|
|
public:
|
1999-04-12 20:12:15 +00:00
|
|
|
#endif
|
1999-03-18 21:03:25 +00:00
|
|
|
struct PerSpanData {
|
1999-03-29 23:46:34 +00:00
|
|
|
union {
|
|
|
|
PerSpanData* mParent;
|
|
|
|
PerSpanData* mNextFreeSpan;
|
|
|
|
};
|
1999-03-18 21:03:25 +00:00
|
|
|
PerFrameData* mFrame;
|
|
|
|
PerFrameData* mFirstFrame;
|
|
|
|
PerFrameData* mLastFrame;
|
|
|
|
|
|
|
|
const nsHTMLReflowState* mReflowState;
|
1999-03-22 20:45:09 +00:00
|
|
|
PRBool mNoWrap;
|
|
|
|
PRUint8 mDirection;
|
1999-05-08 00:48:39 +00:00
|
|
|
PRBool mChangedFrameDirection;
|
1999-09-09 21:04:37 +00:00
|
|
|
PRBool mZeroEffectiveSpanBox;
|
1999-11-02 15:44:57 +00:00
|
|
|
PRBool mContainsFloater;
|
1999-03-22 20:45:09 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
nscoord mLeftEdge;
|
|
|
|
nscoord mX;
|
|
|
|
nscoord mRightEdge;
|
|
|
|
|
|
|
|
nscoord mTopLeading, mBottomLeading;
|
|
|
|
nscoord mLogicalHeight;
|
|
|
|
nscoord mMinY, mMaxY;
|
|
|
|
|
|
|
|
void AppendFrame(PerFrameData* pfd) {
|
|
|
|
if (nsnull == mLastFrame) {
|
|
|
|
mFirstFrame = pfd;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mLastFrame->mNext = pfd;
|
|
|
|
pfd->mPrev = mLastFrame;
|
|
|
|
}
|
|
|
|
mLastFrame = pfd;
|
|
|
|
}
|
|
|
|
};
|
1999-03-31 04:21:53 +00:00
|
|
|
#ifdef AIX
|
|
|
|
protected:
|
1999-04-12 20:12:15 +00:00
|
|
|
#endif
|
1999-03-29 23:46:34 +00:00
|
|
|
PerSpanData mSpanDataBuf[NS_LINELAYOUT_NUM_SPANS];
|
1999-03-18 21:03:25 +00:00
|
|
|
PerSpanData* mSpanFreeList;
|
1999-03-29 23:46:34 +00:00
|
|
|
PRInt32 mInitialSpansFreed;
|
1999-03-18 21:03:25 +00:00
|
|
|
PerSpanData* mRootSpan;
|
|
|
|
PerSpanData* mCurrentSpan;
|
|
|
|
PRInt32 mSpanDepth;
|
1999-03-29 23:46:34 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
PRInt32 mSpansAllocated, mSpansFreed;
|
|
|
|
PRInt32 mFramesAllocated, mFramesFreed;
|
|
|
|
#endif
|
1999-03-18 21:03:25 +00:00
|
|
|
|
|
|
|
// XXX These slots are used ONLY during FindTextRuns
|
1998-09-15 00:19:49 +00:00
|
|
|
nsTextRun* mTextRuns;
|
|
|
|
nsTextRun** mTextRunP;
|
|
|
|
nsTextRun* mNewTextRun;
|
1998-06-27 22:56:09 +00:00
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
nsresult NewPerFrameData(PerFrameData** aResult);
|
|
|
|
|
|
|
|
nsresult NewPerSpanData(PerSpanData** aResult);
|
|
|
|
|
|
|
|
void FreeSpan(PerSpanData* psd);
|
|
|
|
|
|
|
|
PRBool InBlockContext() const {
|
|
|
|
return mSpanDepth == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PushFrame(nsIFrame* aFrame);
|
|
|
|
|
|
|
|
void ApplyLeftMargin(PerFrameData* pfd,
|
|
|
|
nsHTMLReflowState& aReflowState);
|
|
|
|
|
|
|
|
PRBool CanPlaceFrame(PerFrameData* pfd,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
1999-03-22 20:45:09 +00:00
|
|
|
PRBool aNotSafeToBreak,
|
1999-03-18 21:03:25 +00:00
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
|
|
|
void PlaceFrame(PerFrameData* pfd,
|
|
|
|
nsHTMLReflowMetrics& aMetrics);
|
|
|
|
|
|
|
|
void UpdateFrames();
|
|
|
|
|
|
|
|
void VerticalAlignFrames(PerSpanData* psd);
|
|
|
|
|
|
|
|
void PlaceTopBottomFrames(PerSpanData* psd,
|
|
|
|
nscoord aDistanceFromTop,
|
|
|
|
nscoord aLineHeight);
|
|
|
|
|
|
|
|
void RelativePositionFrames(PerSpanData* psd, nsRect& aCombinedArea);
|
|
|
|
|
1999-09-21 00:14:22 +00:00
|
|
|
PRBool TrimTrailingWhiteSpaceIn(PerSpanData* psd, nscoord* aDeltaWidth);
|
|
|
|
|
1999-03-18 21:03:25 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
void DumpPerSpanData(PerSpanData* psd, PRInt32 aIndent);
|
|
|
|
#endif
|
1998-06-18 16:25:41 +00:00
|
|
|
};
|
|
|
|
|
1998-09-15 00:19:49 +00:00
|
|
|
#endif /* nsLineLayout_h___ */
|