1998-04-14 00:24:54 +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.
|
|
|
|
*/
|
|
|
|
#ifndef nsTableCellFrame_h__
|
|
|
|
#define nsTableCellFrame_h__
|
|
|
|
|
1999-02-11 04:16:28 +03:00
|
|
|
#include "nsITableCellLayout.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nscore.h"
|
1998-10-20 21:45:07 +04:00
|
|
|
#include "nsHTMLContainerFrame.h"
|
1998-07-11 04:00:31 +04:00
|
|
|
#include "nsTableRowFrame.h" // need to actually include this here to inline GetRowIndex
|
1998-12-21 09:38:18 +03:00
|
|
|
#include "nsIStyleContext.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-05-13 02:28:01 +04:00
|
|
|
struct nsStyleSpacing;
|
1998-11-11 22:56:02 +03:00
|
|
|
class nsTableFrame;
|
|
|
|
class nsHTMLValue;
|
1998-06-24 03:23:21 +04:00
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
/**
|
|
|
|
* nsTableCellFrame
|
|
|
|
* data structure to maintain information about a single table cell's frame
|
|
|
|
*
|
1999-02-11 04:16:28 +03:00
|
|
|
* NOTE: frames are not ref counted. We expose addref and release here
|
|
|
|
* so we can change that decsion in the future. Users of nsITableCellLayout
|
|
|
|
* should refcount correctly as if this object is being ref counted, though
|
|
|
|
* no actual support is under the hood.
|
|
|
|
*
|
1998-04-14 00:24:54 +04:00
|
|
|
* @author sclark
|
|
|
|
*/
|
1999-02-11 04:16:28 +03:00
|
|
|
class nsTableCellFrame : public nsHTMLContainerFrame, nsITableCellLayout
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
|
|
|
public:
|
1998-06-11 04:13:18 +04:00
|
|
|
|
1999-02-11 04:16:28 +03:00
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
1998-12-03 23:19:01 +03:00
|
|
|
// default constructor supplied by the compiler
|
|
|
|
|
1998-09-15 21:58:24 +04:00
|
|
|
void InitCellFrame(PRInt32 aColIndex);
|
|
|
|
|
1998-12-21 09:38:18 +03:00
|
|
|
void SetBorderEdge(PRUint8 aSide,
|
|
|
|
PRInt32 aRowIndex,
|
|
|
|
PRInt32 aColIndex,
|
1998-12-21 21:54:23 +03:00
|
|
|
nsBorderEdge *border,
|
|
|
|
nscoord aOddAmountToAdd);
|
1998-12-21 09:38:18 +03:00
|
|
|
|
|
|
|
void SetBorderEdgeLength(PRUint8 aSide,
|
|
|
|
PRInt32 aIndex,
|
|
|
|
nscoord aLength);
|
|
|
|
|
|
|
|
|
1998-09-15 21:58:24 +04:00
|
|
|
/** instantiate a new instance of nsTableCellFrame.
|
|
|
|
* @param aResult the new object is returned in this out-param
|
|
|
|
*
|
|
|
|
* @return NS_OK if the frame was properly allocated, otherwise an error code
|
|
|
|
*/
|
|
|
|
friend nsresult
|
1998-12-03 09:31:43 +03:00
|
|
|
NS_NewTableCellFrame(nsIFrame*& aResult);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-04-17 05:41:24 +04:00
|
|
|
NS_IMETHOD Paint(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
1998-12-18 18:54:23 +03:00
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer);
|
1998-04-17 05:41:24 +04:00
|
|
|
|
1998-07-15 06:53:09 +04:00
|
|
|
NS_IMETHOD Reflow(nsIPresContext& aPresContext,
|
1998-10-01 08:46:11 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-02 08:10:00 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-05-25 21:31:49 +04:00
|
|
|
nsReflowStatus& aStatus);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @see nsContainerFrame
|
|
|
|
*/
|
1998-07-15 07:23:23 +04:00
|
|
|
NS_IMETHOD CreateContinuingFrame(nsIPresContext& aPresContext,
|
1998-05-07 04:08:20 +04:00
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aStyleContext,
|
|
|
|
nsIFrame*& aContinuingFrame);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-11-19 20:22:29 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsString& aResult) const;
|
|
|
|
|
1998-11-20 04:01:25 +03:00
|
|
|
virtual void VerticallyAlignChild();
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-04-23 21:29:07 +04:00
|
|
|
/** return the mapped cell's row span. Always >= 1. */
|
1998-04-14 00:24:54 +04:00
|
|
|
virtual PRInt32 GetRowSpan();
|
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
// there is no set row index because row index depends on the cell's parent row only
|
|
|
|
|
|
|
|
/** return the mapped cell's row index (starting at 0 for the first row) */
|
1999-02-11 04:16:28 +03:00
|
|
|
virtual nsresult GetRowIndex(PRInt32 &aRowIndex);
|
1998-07-11 04:00:31 +04:00
|
|
|
|
1998-04-23 21:29:07 +04:00
|
|
|
/** return the mapped cell's col span. Always >= 1. */
|
|
|
|
virtual PRInt32 GetColSpan();
|
1998-07-11 04:00:31 +04:00
|
|
|
|
1998-04-23 21:29:07 +04:00
|
|
|
/** return the mapped cell's column index (starting at 0 for the first column) */
|
1999-02-11 04:16:28 +03:00
|
|
|
virtual nsresult GetColIndex(PRInt32 &aColIndex);
|
1998-04-23 21:29:07 +04:00
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
/** return the available width given to this frame during its last reflow */
|
1998-07-02 21:40:56 +04:00
|
|
|
virtual nscoord GetPriorAvailWidth();
|
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
/** set the available width given to this frame during its last reflow */
|
1998-07-02 21:40:56 +04:00
|
|
|
virtual void SetPriorAvailWidth(nscoord aPriorAvailWidth);
|
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
/** return the desired size returned by this frame during its last reflow */
|
|
|
|
virtual nsSize GetDesiredSize();
|
|
|
|
|
|
|
|
/** set the desired size returned by this frame during its last reflow */
|
1998-10-01 08:46:11 +04:00
|
|
|
virtual void SetDesiredSize(const nsHTMLReflowMetrics & aDesiredSize);
|
1998-07-11 04:00:31 +04:00
|
|
|
|
|
|
|
/** return the desired size returned by this frame during its last reflow */
|
|
|
|
virtual nsSize GetPass1DesiredSize();
|
|
|
|
|
|
|
|
/** set the desired size returned by this frame during its last reflow */
|
1998-10-01 08:46:11 +04:00
|
|
|
virtual void SetPass1DesiredSize(const nsHTMLReflowMetrics & aDesiredSize);
|
1998-07-11 04:00:31 +04:00
|
|
|
|
|
|
|
/** return the MaxElement size returned by this frame during its last reflow
|
|
|
|
* not counting reflows where MaxElementSize is not requested.
|
|
|
|
* That is, the cell frame will always remember the last non-null MaxElementSize
|
|
|
|
*/
|
|
|
|
virtual nsSize GetPass1MaxElementSize();
|
|
|
|
|
|
|
|
/** set the MaxElement size returned by this frame during its last reflow.
|
|
|
|
* should never be called with a null MaxElementSize
|
|
|
|
*/
|
|
|
|
virtual void SetPass1MaxElementSize(const nsSize & aMaxElementSize);
|
1998-07-07 05:06:51 +04:00
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
void RecalcLayoutData(nsTableFrame* aTableFrame,
|
|
|
|
nsVoidArray* aBoundaryCells[4]);
|
1998-06-17 20:38:24 +04:00
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
|
|
|
|
NS_IMETHOD GetMargin(nsMargin& aMargin);
|
|
|
|
|
1998-12-10 22:57:42 +03:00
|
|
|
PRBool GetContentEmpty();
|
|
|
|
void SetContentEmpty(PRBool aContentEmpty);
|
|
|
|
|
1998-10-20 21:45:07 +04:00
|
|
|
protected:
|
|
|
|
/** implement abstract method on nsHTMLContainerFrame */
|
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
private:
|
|
|
|
|
|
|
|
// All these methods are support methods for RecalcLayoutData
|
|
|
|
nsIFrame* GetFrameAt(nsVoidArray* aList, PRInt32 aIndex);
|
|
|
|
|
|
|
|
nscoord GetMargin(nsIFrame* aFrame, PRUint8 aEdge) const;
|
|
|
|
|
1998-12-23 18:47:43 +03:00
|
|
|
//XXX: aTableFrame can be removed as soon as border-collapse inherits correctly
|
|
|
|
void GetCellBorder(nsMargin &aBorder, nsTableFrame *aTableFrame);
|
1998-07-11 04:00:31 +04:00
|
|
|
|
|
|
|
PRUint8 GetOpposingEdge(PRUint8 aEdge);
|
|
|
|
|
|
|
|
void CalculateBorders(nsTableFrame* aTableFrame,
|
|
|
|
nsVoidArray* aBoundaryCells[4]);
|
|
|
|
|
|
|
|
nscoord FindLargestMargin(nsVoidArray* aList,PRUint8 aEdge);
|
|
|
|
|
|
|
|
|
|
|
|
void CalculateMargins(nsTableFrame* aTableFrame,
|
|
|
|
nsVoidArray* aBoundaryCells[4]);
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
protected:
|
|
|
|
|
1998-05-02 00:44:55 +04:00
|
|
|
// Subclass hook for style post processing
|
1998-05-27 03:17:29 +04:00
|
|
|
NS_IMETHOD DidSetStyleContext(nsIPresContext* aPresContext);
|
1998-11-11 22:56:02 +03:00
|
|
|
|
1998-05-02 00:44:55 +04:00
|
|
|
void MapBorderMarginPadding(nsIPresContext* aPresContext);
|
1998-11-11 22:56:02 +03:00
|
|
|
|
|
|
|
void MapHTMLBorderStyle(nsIPresContext* aPresContext,
|
|
|
|
nsStyleSpacing& aSpacingStyle,
|
|
|
|
nscoord aBorderWidth,
|
|
|
|
nsTableFrame *aTableFrame);
|
|
|
|
|
1999-01-03 22:22:40 +03:00
|
|
|
void MapVAlignAttribute(nsIPresContext* aPresContext, nsTableFrame *aTableFrame);
|
|
|
|
void MapHAlignAttribute(nsIPresContext* aPresContext, nsTableFrame *aTableFrame);
|
|
|
|
|
1998-05-22 03:43:18 +04:00
|
|
|
PRBool ConvertToPixelValue(nsHTMLValue& aValue, PRInt32 aDefault, PRInt32& aResult);
|
1998-06-11 04:13:18 +04:00
|
|
|
|
1998-10-30 10:57:44 +03:00
|
|
|
NS_IMETHOD IR_StyleChanged(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
1998-06-11 04:13:18 +04:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/** the starting column for this cell */
|
|
|
|
int mColIndex;
|
|
|
|
|
1998-07-02 21:40:56 +04:00
|
|
|
/** the available width we were given in our previous reflow */
|
|
|
|
nscoord mPriorAvailWidth;
|
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
/** these are the last computed desired and max element sizes */
|
|
|
|
nsSize mDesiredSize;
|
|
|
|
nsSize mMaxElementSize;
|
|
|
|
|
|
|
|
/** these are the Pass 1 unconstrained desired and max element sizes */
|
|
|
|
nsSize mPass1DesiredSize;
|
|
|
|
nsSize mPass1MaxElementSize;
|
1998-07-07 05:06:51 +04:00
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
nsresult mCalculated;
|
|
|
|
nsMargin mMargin;
|
1998-12-10 22:57:42 +03:00
|
|
|
PRBool mIsContentEmpty; // PR_TRUE if the cell's contents take up no space
|
|
|
|
//XXX: mIsContentEmpty should get yanked in favor of using free a bit on the frame base class
|
|
|
|
// the FrameState slot (mState; GetFrameState/SetFrameState)
|
1998-12-30 09:48:15 +03:00
|
|
|
public:
|
1998-12-21 09:38:18 +03:00
|
|
|
nsBorderEdges mBorderEdges; // one list of border segments for each side of the table frame
|
|
|
|
// used only for the collapsing border model
|
1998-06-11 04:13:18 +04:00
|
|
|
|
1998-12-21 09:38:18 +03:00
|
|
|
};
|
1998-06-11 04:13:18 +04:00
|
|
|
|
1999-02-11 04:16:28 +03:00
|
|
|
inline nsresult nsTableCellFrame::GetRowIndex(PRInt32 &aRowIndex)
|
1998-07-11 04:00:31 +04:00
|
|
|
{
|
1999-02-11 04:16:28 +03:00
|
|
|
nsresult result;
|
1998-07-11 04:00:31 +04:00
|
|
|
nsTableRowFrame * row;
|
1999-02-10 04:36:30 +03:00
|
|
|
GetParent((nsIFrame **)&row);
|
1998-07-11 04:00:31 +04:00
|
|
|
if (nsnull!=row)
|
1999-02-11 04:16:28 +03:00
|
|
|
{
|
|
|
|
aRowIndex = row->GetRowIndex();
|
|
|
|
result = NS_OK;
|
|
|
|
}
|
1998-07-11 04:00:31 +04:00
|
|
|
else
|
1999-02-11 04:16:28 +03:00
|
|
|
{
|
|
|
|
aRowIndex = 0;
|
|
|
|
result = NS_ERROR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
return result;
|
1998-07-11 04:00:31 +04:00
|
|
|
}
|
|
|
|
|
1999-02-11 04:16:28 +03:00
|
|
|
inline nsresult nsTableCellFrame::GetColIndex(PRInt32 &aColIndex)
|
|
|
|
{
|
|
|
|
aColIndex = mColIndex;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-06-11 04:13:18 +04:00
|
|
|
|
1998-07-02 21:40:56 +04:00
|
|
|
inline nscoord nsTableCellFrame::GetPriorAvailWidth()
|
|
|
|
{ return mPriorAvailWidth;}
|
|
|
|
|
|
|
|
inline void nsTableCellFrame::SetPriorAvailWidth(nscoord aPriorAvailWidth)
|
|
|
|
{ mPriorAvailWidth = aPriorAvailWidth;}
|
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
inline nsSize nsTableCellFrame::GetDesiredSize()
|
|
|
|
{ return mDesiredSize; }
|
|
|
|
|
1998-10-01 08:46:11 +04:00
|
|
|
inline void nsTableCellFrame::SetDesiredSize(const nsHTMLReflowMetrics & aDesiredSize)
|
1998-07-11 04:00:31 +04:00
|
|
|
{
|
|
|
|
mDesiredSize.width = aDesiredSize.width;
|
|
|
|
mDesiredSize.height = aDesiredSize.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsSize nsTableCellFrame::GetPass1DesiredSize()
|
|
|
|
{ return mPass1DesiredSize; }
|
|
|
|
|
1998-10-01 08:46:11 +04:00
|
|
|
inline void nsTableCellFrame::SetPass1DesiredSize(const nsHTMLReflowMetrics & aDesiredSize)
|
1998-07-11 04:00:31 +04:00
|
|
|
{
|
|
|
|
mPass1DesiredSize.width = aDesiredSize.width;
|
|
|
|
mPass1DesiredSize.height = aDesiredSize.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsSize nsTableCellFrame::GetPass1MaxElementSize()
|
|
|
|
{ return mPass1MaxElementSize; }
|
|
|
|
|
|
|
|
inline void nsTableCellFrame::SetPass1MaxElementSize(const nsSize & aMaxElementSize)
|
|
|
|
{
|
|
|
|
mPass1MaxElementSize.width = aMaxElementSize.width;
|
|
|
|
mPass1MaxElementSize.height = aMaxElementSize.height;
|
|
|
|
}
|
1998-07-07 05:06:51 +04:00
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
inline void nsTableCellFrame::CalculateBorders(nsTableFrame* aTableFrame,
|
|
|
|
nsVoidArray* aBoundaryCells[4])
|
1998-07-07 05:06:51 +04:00
|
|
|
{
|
1998-12-16 09:33:15 +03:00
|
|
|
|
1998-07-07 05:06:51 +04:00
|
|
|
}
|
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
inline NS_METHOD nsTableCellFrame::GetMargin(nsMargin& aMargin)
|
|
|
|
{
|
|
|
|
if (mCalculated == NS_OK)
|
|
|
|
{
|
|
|
|
aMargin = mMargin;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
|
1998-12-10 22:57:42 +03:00
|
|
|
inline PRBool nsTableCellFrame::GetContentEmpty()
|
|
|
|
{
|
|
|
|
return mIsContentEmpty;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableCellFrame::SetContentEmpty(PRBool aContentEmpty)
|
|
|
|
{
|
|
|
|
mIsContentEmpty = aContentEmpty;
|
|
|
|
}
|
|
|
|
|
1998-10-15 02:23:26 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1998-07-11 04:00:31 +04:00
|
|
|
|