1998-12-01 19:13:49 +03: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 "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/
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
* Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
|
|
* Netscape Communications Corporation. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
#ifndef nsLineBox_h___
|
|
|
|
#define nsLineBox_h___
|
|
|
|
|
|
|
|
#include "nsVoidArray.h"
|
|
|
|
#include "nsPlaceholderFrame.h"
|
1999-05-13 04:54:28 +04:00
|
|
|
#include "nsILineIterator.h"
|
1999-10-02 06:51:03 +04:00
|
|
|
#include "nsISizeOfHandler.h"
|
1998-12-01 19:13:49 +03:00
|
|
|
|
|
|
|
class nsISpaceManager;
|
|
|
|
class nsLineBox;
|
|
|
|
|
1999-09-15 04:28:10 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
class nsFloaterCache;
|
|
|
|
class nsFloaterCacheList;
|
|
|
|
class nsFloaterCacheFreeList;
|
|
|
|
|
|
|
|
// State cached after reflowing a floater. This state is used during
|
|
|
|
// incremental reflow when we avoid reflowing a floater.
|
|
|
|
class nsFloaterCache {
|
|
|
|
public:
|
|
|
|
nsFloaterCache();
|
1999-10-09 00:41:19 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
~nsFloaterCache();
|
|
|
|
#else
|
1999-09-15 04:28:10 +04:00
|
|
|
~nsFloaterCache() { }
|
1999-10-09 00:41:19 +04:00
|
|
|
#endif
|
1999-09-15 04:28:10 +04:00
|
|
|
|
|
|
|
nsFloaterCache* Next() const { return mNext; }
|
|
|
|
|
|
|
|
nsPlaceholderFrame* mPlaceholder; // nsPlaceholderFrame
|
|
|
|
|
|
|
|
// This will be true if the floater was placed on the current line
|
|
|
|
// instead of below the current line.
|
|
|
|
PRBool mIsCurrentLineFloater;
|
|
|
|
|
|
|
|
nsMargin mMargins; // computed margins
|
|
|
|
|
|
|
|
nsMargin mOffsets; // computed offsets (relative pos)
|
|
|
|
|
|
|
|
// Region in the spacemanager impacted by this floater; the
|
|
|
|
// coordinates are relative to the containing block frame. The
|
|
|
|
// region includes the margins around the floater, but doesn't
|
|
|
|
// include the relative offsets.
|
|
|
|
nsRect mRegion;
|
|
|
|
|
|
|
|
// Combined area for the floater. This will not include the margins
|
|
|
|
// for the floater. Like mRegion, the coordinates are relative to
|
|
|
|
// the containing block frame.
|
|
|
|
nsRect mCombinedArea;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsFloaterCache* mNext;
|
|
|
|
|
|
|
|
friend class nsFloaterCacheList;
|
|
|
|
friend class nsFloaterCacheFreeList;
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------
|
|
|
|
|
|
|
|
class nsFloaterCacheList {
|
|
|
|
public:
|
|
|
|
nsFloaterCacheList() : mHead(nsnull) { }
|
|
|
|
~nsFloaterCacheList();
|
|
|
|
|
|
|
|
PRBool IsEmpty() const {
|
|
|
|
return nsnull == mHead;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool NotEmpty() const {
|
|
|
|
return nsnull != mHead;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsFloaterCache* Head() const {
|
|
|
|
return mHead;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsFloaterCache* Tail() const;
|
|
|
|
|
|
|
|
nsFloaterCache* Find(nsIFrame* aOutOfFlowFrame);
|
|
|
|
|
|
|
|
void Remove(nsFloaterCache* aElement);
|
|
|
|
|
|
|
|
void Append(nsFloaterCacheFreeList& aList);
|
|
|
|
|
1999-10-02 06:51:03 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
void SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const;
|
|
|
|
#endif
|
|
|
|
|
1999-09-15 04:28:10 +04:00
|
|
|
protected:
|
|
|
|
nsFloaterCache* mHead;
|
|
|
|
|
|
|
|
friend class nsFloaterCacheFreeList;
|
|
|
|
};
|
|
|
|
|
|
|
|
//---------------------------------------
|
|
|
|
|
|
|
|
class nsFloaterCacheFreeList : public nsFloaterCacheList {
|
|
|
|
public:
|
|
|
|
nsFloaterCacheFreeList() : mTail(nsnull) { }
|
|
|
|
~nsFloaterCacheFreeList() { }
|
|
|
|
|
|
|
|
// Steal away aList's nsFloaterCache objects and put them on this
|
|
|
|
// free-list.
|
|
|
|
void Append(nsFloaterCacheList& aList);
|
|
|
|
|
|
|
|
void Append(nsFloaterCache* aFloaterCache);
|
|
|
|
|
|
|
|
// Allocate a new nsFloaterCache object
|
|
|
|
nsFloaterCache* Alloc();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsFloaterCache* mTail;
|
|
|
|
|
|
|
|
friend class nsFloaterCacheList;
|
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
1998-12-01 19:13:49 +03:00
|
|
|
/**
|
|
|
|
* The nsLineBox class represents a horizontal line of frames. It contains
|
|
|
|
* enough state to support incremental reflow of the frames, event handling
|
|
|
|
* for the frames, and rendering of the frames.
|
|
|
|
*/
|
|
|
|
class nsLineBox {
|
|
|
|
public:
|
1999-10-13 03:24:22 +04:00
|
|
|
nsLineBox(nsIFrame* aFrame, PRInt32 aCount, PRBool aIsBlock);
|
|
|
|
~nsLineBox();
|
|
|
|
|
|
|
|
PRBool IsBlock() const {
|
|
|
|
return mFlags.mBlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsInline() const {
|
|
|
|
return 0 == mFlags.mBlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX Turn into a bit-field to simplify this code
|
|
|
|
void SetTrimmed(PRBool aOn) {
|
|
|
|
mFlags.mTrimmed = aOn;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsTrimmed() const {
|
|
|
|
return mFlags.mTrimmed;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool HasBreak() const {
|
|
|
|
return NS_STYLE_CLEAR_NONE != mFlags.mBreakType;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetBreakType(PRUint8 aBreakType) {
|
|
|
|
mFlags.mBreakType = aBreakType;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint8 GetBreakType() const {
|
|
|
|
return mFlags.mBreakType;
|
|
|
|
}
|
1998-12-01 19:13:49 +03:00
|
|
|
|
|
|
|
nscoord GetCarriedOutBottomMargin() const {
|
|
|
|
return mCarriedOutBottomMargin;
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord GetHeight() const { return mBounds.height; }
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// XXX old junk
|
|
|
|
|
|
|
|
|
|
|
|
static void DeleteLineList(nsIPresContext& aPresContext, nsLineBox* aLine);
|
|
|
|
|
|
|
|
static nsLineBox* LastLine(nsLineBox* aLine);
|
|
|
|
|
1999-04-21 01:52:22 +04:00
|
|
|
static nsLineBox* FindLineContaining(nsLineBox* aLine, nsIFrame* aFrame,
|
|
|
|
PRInt32* aFrameIndexInLine);
|
1998-12-01 19:13:49 +03:00
|
|
|
|
1999-01-16 03:00:50 +03:00
|
|
|
void List(FILE* out, PRInt32 aIndent) const;
|
1998-12-01 19:13:49 +03:00
|
|
|
|
|
|
|
PRInt32 ChildCount() const {
|
|
|
|
return PRInt32(mChildCount);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* LastChild() const;
|
|
|
|
|
|
|
|
PRBool IsLastChild(nsIFrame* aFrame) const;
|
|
|
|
|
|
|
|
void SetIsBlock(PRBool aValue) {
|
1999-10-13 03:24:22 +04:00
|
|
|
mFlags.mBlock = aValue;
|
1998-12-01 19:13:49 +03:00
|
|
|
}
|
|
|
|
|
1999-09-15 04:28:10 +04:00
|
|
|
void SetLineIsImpactedByFloater(PRBool aValue) {
|
1999-10-13 03:24:22 +04:00
|
|
|
mFlags.mImpactedByFloater = aValue;
|
1999-09-15 04:28:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
PRBool IsImpactedByFloater() const {
|
1999-10-13 03:24:22 +04:00
|
|
|
return mFlags.mImpactedByFloater;
|
1999-04-20 04:22:58 +04:00
|
|
|
}
|
|
|
|
|
1998-12-01 19:13:49 +03:00
|
|
|
void MarkDirty() {
|
1999-10-13 03:24:22 +04:00
|
|
|
mFlags.mDirty = 1;
|
1998-12-01 19:13:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void ClearDirty() {
|
1999-10-13 03:24:22 +04:00
|
|
|
mFlags.mDirty = 0;
|
1998-12-01 19:13:49 +03:00
|
|
|
}
|
|
|
|
|
1999-04-28 02:12:53 +04:00
|
|
|
PRBool IsDirty() const {
|
1999-10-13 03:24:22 +04:00
|
|
|
return mFlags.mDirty;
|
1999-04-28 02:12:53 +04:00
|
|
|
}
|
|
|
|
|
1998-12-01 19:13:49 +03:00
|
|
|
char* StateToString(char* aBuf, PRInt32 aBufSize) const;
|
|
|
|
|
1999-04-21 01:52:22 +04:00
|
|
|
PRInt32 IndexOf(nsIFrame* aFrame) const;
|
|
|
|
|
|
|
|
PRBool Contains(nsIFrame* aFrame) const {
|
|
|
|
return IndexOf(aFrame) >= 0;
|
|
|
|
}
|
1998-12-01 19:13:49 +03:00
|
|
|
|
|
|
|
#ifdef NS_DEBUG
|
1999-04-21 01:52:22 +04:00
|
|
|
PRBool CheckIsBlock() const;
|
1998-12-01 19:13:49 +03:00
|
|
|
#endif
|
|
|
|
|
1999-10-02 06:51:03 +04:00
|
|
|
#ifdef DEBUG
|
1999-10-13 03:24:22 +04:00
|
|
|
PRBool SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const;
|
1999-10-02 06:51:03 +04:00
|
|
|
#endif
|
|
|
|
|
1998-12-01 19:13:49 +03:00
|
|
|
nsIFrame* mFirstChild;
|
|
|
|
PRUint16 mChildCount;
|
|
|
|
nsRect mBounds;
|
|
|
|
nsRect mCombinedArea;
|
|
|
|
nscoord mCarriedOutBottomMargin;/* XXX switch to 16 bits */
|
1999-09-15 04:28:10 +04:00
|
|
|
nsFloaterCacheList mFloaters;
|
1998-12-01 19:13:49 +03:00
|
|
|
nsLineBox* mNext;
|
1999-08-28 04:39:55 +04:00
|
|
|
nscoord mMaxElementWidth; // width part of max-element-size
|
1999-10-13 03:24:22 +04:00
|
|
|
|
|
|
|
struct FlagBits {
|
|
|
|
PRUint32 mDirty : 1;
|
|
|
|
PRUint32 mBlock : 1;
|
|
|
|
PRUint32 mImpactedByFloater : 1;
|
|
|
|
PRUint32 mTrimmed : 1;
|
|
|
|
|
|
|
|
PRUint32 reserved : 20;
|
|
|
|
|
|
|
|
PRUint32 mBreakType : 8;
|
|
|
|
};
|
|
|
|
|
|
|
|
protected:
|
|
|
|
union {
|
|
|
|
PRUint32 mAllFlags;
|
|
|
|
FlagBits mFlags;
|
|
|
|
};
|
1998-12-01 19:13:49 +03:00
|
|
|
};
|
|
|
|
|
1999-05-11 02:28:49 +04:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
1999-05-13 04:54:28 +04:00
|
|
|
class nsLineIterator : public nsILineIterator {
|
|
|
|
public:
|
1999-05-11 02:28:49 +04:00
|
|
|
nsLineIterator();
|
1999-05-13 04:54:28 +04:00
|
|
|
virtual ~nsLineIterator();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
NS_IMETHOD GetNumLines(PRInt32* aResult);
|
|
|
|
NS_IMETHOD GetDirection(PRBool* aIsRightToLeft);
|
|
|
|
NS_IMETHOD GetLine(PRInt32 aLineNumber,
|
|
|
|
nsIFrame** aFirstFrameOnLine,
|
|
|
|
PRInt32* aNumFramesOnLine,
|
1999-10-13 03:24:22 +04:00
|
|
|
nsRect& aLineBounds,
|
|
|
|
PRUint32* aLineFlags);
|
1999-05-13 04:54:28 +04:00
|
|
|
NS_IMETHOD FindLineContaining(nsIFrame* aFrame,
|
|
|
|
PRInt32* aLineNumberResult);
|
|
|
|
NS_IMETHOD FindLineAt(nscoord aY,
|
|
|
|
PRInt32* aLineNumberResult);
|
|
|
|
NS_IMETHOD FindFrameAt(PRInt32 aLineNumber,
|
|
|
|
nscoord aX,
|
|
|
|
nsIFrame** aFrameFound,
|
|
|
|
PRBool* aXIsBeforeFirstFrame,
|
|
|
|
PRBool* aXIsAfterLastFrame);
|
|
|
|
|
|
|
|
nsresult Init(nsLineBox* aLines, PRBool aRightToLeft);
|
|
|
|
|
|
|
|
protected:
|
1999-05-11 02:28:49 +04:00
|
|
|
PRInt32 NumLines() const {
|
|
|
|
return mNumLines;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsLineBox* CurrentLine() {
|
|
|
|
return mLines[mIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
nsLineBox* PrevLine() {
|
|
|
|
if (0 == mIndex) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
return mLines[--mIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
nsLineBox* NextLine() {
|
|
|
|
if (mIndex >= mNumLines - 1) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
return mLines[++mIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
nsLineBox* LineAt(PRInt32 aIndex) {
|
|
|
|
if ((aIndex < 0) || (aIndex >= mNumLines)) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
return mLines[aIndex];
|
|
|
|
}
|
|
|
|
|
|
|
|
nsLineBox** mLines;
|
|
|
|
PRInt32 mIndex;
|
|
|
|
PRInt32 mNumLines;
|
1999-05-13 04:54:28 +04:00
|
|
|
PRBool mRightToLeft;
|
1999-05-11 02:28:49 +04:00
|
|
|
};
|
|
|
|
|
1998-12-01 19:13:49 +03:00
|
|
|
#endif /* nsLineBox_h___ */
|