2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
*
|
|
|
|
* 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.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#ifndef nsTableCellFrame_h__
|
|
|
|
#define nsTableCellFrame_h__
|
|
|
|
|
|
|
|
#include "nsITableCellLayout.h"
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsHTMLContainerFrame.h"
|
|
|
|
#include "nsTableRowFrame.h" // need to actually include this here to inline GetRowIndex
|
|
|
|
#include "nsStyleContext.h"
|
|
|
|
#include "nsIPercentHeightObserver.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsLayoutUtils.h"
|
2009-02-05 01:09:50 -08:00
|
|
|
#include "nsTArray.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsTableFrame;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Additional frame-state bits
|
|
|
|
*/
|
2010-06-08 22:28:14 -07:00
|
|
|
#define NS_TABLE_CELL_CONTENT_EMPTY NS_FRAME_STATE_BIT(31)
|
|
|
|
#define NS_TABLE_CELL_HAD_SPECIAL_REFLOW NS_FRAME_STATE_BIT(29)
|
|
|
|
#define NS_TABLE_CELL_HAS_PCT_OVER_HEIGHT NS_FRAME_STATE_BIT(28)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* nsTableCellFrame
|
|
|
|
* data structure to maintain information about a single table cell's frame
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* @author sclark
|
|
|
|
*/
|
2010-04-27 09:15:01 -07:00
|
|
|
class nsTableCellFrame : public nsHTMLContainerFrame,
|
|
|
|
public nsITableCellLayout,
|
2007-03-22 10:30:00 -07:00
|
|
|
public nsIPercentHeightObserver
|
|
|
|
{
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsTableCellFrame)
|
2009-01-12 11:20:59 -08:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// default constructor supplied by the compiler
|
|
|
|
|
|
|
|
nsTableCellFrame(nsStyleContext* aContext);
|
|
|
|
~nsTableCellFrame();
|
|
|
|
|
|
|
|
NS_IMETHOD Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow);
|
|
|
|
|
|
|
|
#ifdef ACCESSIBILITY
|
2010-06-28 05:02:03 -07:00
|
|
|
virtual already_AddRefed<nsAccessible> CreateAccessible();
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_IMETHOD AttributeChanged(PRInt32 aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aModType);
|
|
|
|
|
2008-10-26 03:11:34 -07:00
|
|
|
/** @see nsIFrame::DidSetStyleContext */
|
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-01-04 11:52:38 -08:00
|
|
|
// table cells contain a block frame which does most of the work, and
|
2007-03-22 10:30:00 -07:00
|
|
|
// so these functions should never be called. They assert and return
|
|
|
|
// NS_ERROR_NOT_IMPLEMENTED
|
|
|
|
NS_IMETHOD AppendFrames(nsIAtom* aListName,
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList& aFrameList);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD InsertFrames(nsIAtom* aListName,
|
|
|
|
nsIFrame* aPrevFrame,
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList& aFrameList);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHOD RemoveFrame(nsIAtom* aListName,
|
|
|
|
nsIFrame* aOldFrame);
|
|
|
|
|
|
|
|
virtual nsIFrame* GetContentInsertionFrame() {
|
|
|
|
return GetFirstChild(nsnull)->GetContentInsertionFrame();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual nsMargin GetUsedMargin() const;
|
|
|
|
|
|
|
|
virtual void NotifyPercentHeight(const nsHTMLReflowState& aReflowState);
|
|
|
|
|
|
|
|
virtual PRBool NeedsToObserve(const nsHTMLReflowState& aReflowState);
|
|
|
|
|
|
|
|
/** instantiate a new instance of nsTableRowFrame.
|
|
|
|
* @param aPresShell the pres shell for this frame
|
|
|
|
*
|
|
|
|
* @return the frame that was created
|
|
|
|
*/
|
|
|
|
friend nsIFrame* NS_NewTableCellFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void PaintCellBackground(nsIRenderingContext& aRenderingContext,
|
2009-09-12 15:44:18 -07:00
|
|
|
const nsRect& aDirtyRect, nsPoint aPt,
|
|
|
|
PRUint32 aFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual nscoord GetMinWidth(nsIRenderingContext *aRenderingContext);
|
|
|
|
virtual nscoord GetPrefWidth(nsIRenderingContext *aRenderingContext);
|
|
|
|
virtual IntrinsicWidthOffsetData
|
|
|
|
IntrinsicWidthOffsets(nsIRenderingContext* aRenderingContext);
|
|
|
|
|
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsLayoutAtoms::tableCellFrame
|
|
|
|
*/
|
|
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
|
|
|
|
virtual PRBool IsContainingBlock() const;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void VerticallyAlignChild(nscoord aMaxAscent);
|
|
|
|
|
2010-08-31 09:05:12 -07:00
|
|
|
/*
|
|
|
|
* Get the value of vertical-align adjusted for CSS 2's rules for a
|
|
|
|
* table cell, which means the result is always
|
|
|
|
* NS_STYLE_VERTICAL_ALIGN_{TOP,MIDDLE,BOTTOM,BASELINE}.
|
|
|
|
*/
|
|
|
|
PRUint8 GetVerticalAlign() const;
|
|
|
|
|
|
|
|
PRBool HasVerticalAlignBaseline() const {
|
|
|
|
return GetVerticalAlign() == NS_STYLE_VERTICAL_ALIGN_BASELINE;
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
|
|
|
|
PRBool CellHasVisibleContent(nscoord height,
|
2008-09-13 07:38:29 -07:00
|
|
|
nsTableFrame* tableFrame,
|
|
|
|
nsIFrame* kidFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the first-line baseline of the cell relative to its top border
|
|
|
|
* edge, as if the cell were vertically aligned to the top of the row.
|
|
|
|
*/
|
|
|
|
nscoord GetCellBaseline() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* return the cell's specified row span. this is what was specified in the
|
|
|
|
* content model or in the style info, and is always >= 1.
|
|
|
|
* to get the effective row span (the actual value that applies), use GetEffectiveRowSpan()
|
|
|
|
* @see nsTableFrame::GetEffectiveRowSpan()
|
|
|
|
*/
|
|
|
|
virtual PRInt32 GetRowSpan();
|
|
|
|
|
|
|
|
// there is no set row index because row index depends on the cell's parent row only
|
|
|
|
|
|
|
|
/*---------------- nsITableCellLayout methods ------------------------*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* return the cell's starting row index (starting at 0 for the first row).
|
|
|
|
* for continued cell frames the row index is that of the cell's first-in-flow
|
|
|
|
* and the column index (starting at 0 for the first column
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetCellIndexes(PRInt32 &aRowIndex, PRInt32 &aColIndex);
|
|
|
|
|
|
|
|
/** return the mapped cell's row index (starting at 0 for the first row) */
|
|
|
|
virtual nsresult GetRowIndex(PRInt32 &aRowIndex) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* return the cell's specified col span. this is what was specified in the
|
|
|
|
* content model or in the style info, and is always >= 1.
|
|
|
|
* to get the effective col span (the actual value that applies), use GetEffectiveColSpan()
|
|
|
|
* @see nsTableFrame::GetEffectiveColSpan()
|
|
|
|
*/
|
|
|
|
virtual PRInt32 GetColSpan();
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/** return the cell's column index (starting at 0 for the first column) */
|
|
|
|
virtual nsresult GetColIndex(PRInt32 &aColIndex) const;
|
|
|
|
void SetColIndex(PRInt32 aColIndex);
|
|
|
|
|
|
|
|
/** return the available width given to this frame during its last reflow */
|
|
|
|
inline nscoord GetPriorAvailWidth();
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/** set the available width given to this frame during its last reflow */
|
|
|
|
inline void SetPriorAvailWidth(nscoord aPriorAvailWidth);
|
|
|
|
|
|
|
|
/** return the desired size returned by this frame during its last reflow */
|
|
|
|
inline nsSize GetDesiredSize();
|
|
|
|
|
|
|
|
/** set the desired size returned by this frame during its last reflow */
|
|
|
|
inline void SetDesiredSize(const nsHTMLReflowMetrics & aDesiredSize);
|
|
|
|
|
|
|
|
PRBool GetContentEmpty();
|
|
|
|
void SetContentEmpty(PRBool aContentEmpty);
|
|
|
|
|
|
|
|
PRBool HasPctOverHeight();
|
|
|
|
void SetHasPctOverHeight(PRBool aValue);
|
|
|
|
|
|
|
|
nsTableCellFrame* GetNextCell() const;
|
|
|
|
|
|
|
|
virtual nsMargin* GetBorderWidth(nsMargin& aBorder) const;
|
|
|
|
|
|
|
|
virtual void PaintBackground(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
2009-09-12 15:44:18 -07:00
|
|
|
nsPoint aPt,
|
|
|
|
PRUint32 aFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void DecorateForSelection(nsIRenderingContext& aRenderingContext,
|
|
|
|
nsPoint aPt);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
/** implement abstract method on nsHTMLContainerFrame */
|
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GetSelfOverflow says what effect the cell should have on its own
|
|
|
|
* overflow area. In the separated borders model this should just be
|
|
|
|
* the frame's size (as it is for most frames), but in the collapsed
|
|
|
|
* borders model (for which nsBCTableCellFrame overrides this virtual
|
|
|
|
* method), it considers the extents of the collapsed border so we
|
|
|
|
* handle invalidation correctly for dynamic border changes.
|
|
|
|
*/
|
|
|
|
virtual void GetSelfOverflow(nsRect& aOverflowArea);
|
|
|
|
|
|
|
|
friend class nsTableRowFrame;
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
PRUint32 mColIndex; // the starting column for this cell
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nscoord mPriorAvailWidth; // the avail width during the last reflow
|
|
|
|
nsSize mDesiredSize; // the last desired width & height
|
|
|
|
};
|
|
|
|
|
|
|
|
inline nscoord nsTableCellFrame::GetPriorAvailWidth()
|
|
|
|
{ return mPriorAvailWidth;}
|
|
|
|
|
|
|
|
inline void nsTableCellFrame::SetPriorAvailWidth(nscoord aPriorAvailWidth)
|
|
|
|
{ mPriorAvailWidth = aPriorAvailWidth;}
|
|
|
|
|
|
|
|
inline nsSize nsTableCellFrame::GetDesiredSize()
|
|
|
|
{ return mDesiredSize; }
|
|
|
|
|
|
|
|
inline void nsTableCellFrame::SetDesiredSize(const nsHTMLReflowMetrics & aDesiredSize)
|
2010-04-27 09:15:01 -07:00
|
|
|
{
|
2007-03-22 10:30:00 -07:00
|
|
|
mDesiredSize.width = aDesiredSize.width;
|
|
|
|
mDesiredSize.height = aDesiredSize.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableCellFrame::GetContentEmpty()
|
|
|
|
{
|
|
|
|
return (mState & NS_TABLE_CELL_CONTENT_EMPTY) ==
|
|
|
|
NS_TABLE_CELL_CONTENT_EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableCellFrame::SetContentEmpty(PRBool aContentEmpty)
|
|
|
|
{
|
|
|
|
if (aContentEmpty) {
|
|
|
|
mState |= NS_TABLE_CELL_CONTENT_EMPTY;
|
|
|
|
} else {
|
|
|
|
mState &= ~NS_TABLE_CELL_CONTENT_EMPTY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableCellFrame::HasPctOverHeight()
|
|
|
|
{
|
|
|
|
return (mState & NS_TABLE_CELL_HAS_PCT_OVER_HEIGHT) ==
|
|
|
|
NS_TABLE_CELL_HAS_PCT_OVER_HEIGHT;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableCellFrame::SetHasPctOverHeight(PRBool aValue)
|
|
|
|
{
|
|
|
|
if (aValue) {
|
|
|
|
mState |= NS_TABLE_CELL_HAS_PCT_OVER_HEIGHT;
|
|
|
|
} else {
|
|
|
|
mState &= ~NS_TABLE_CELL_HAS_PCT_OVER_HEIGHT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsBCTableCellFrame
|
|
|
|
class nsBCTableCellFrame : public nsTableCellFrame
|
|
|
|
{
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsBCTableCellFrame(nsStyleContext* aContext);
|
|
|
|
|
|
|
|
~nsBCTableCellFrame();
|
|
|
|
|
|
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
|
|
|
|
virtual nsMargin GetUsedBorder() const;
|
2010-09-07 15:20:35 -07:00
|
|
|
virtual PRBool GetBorderRadii(nscoord aRadii[8]) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Get the *inner half of the border only*, in twips.
|
|
|
|
virtual nsMargin* GetBorderWidth(nsMargin& aBorder) const;
|
|
|
|
|
|
|
|
// Get the *inner half of the border only*, in pixels.
|
2010-04-27 09:15:02 -07:00
|
|
|
BCPixelSize GetBorderWidth(mozilla::css::Side aSide) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Set the full (both halves) width of the border
|
2010-04-27 09:15:02 -07:00
|
|
|
void SetBorderWidth(mozilla::css::Side aSide, BCPixelSize aPixelValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual void GetSelfOverflow(nsRect& aOverflowArea);
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
virtual void PaintBackground(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
2009-09-12 15:44:18 -07:00
|
|
|
nsPoint aPt,
|
|
|
|
PRUint32 aFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
private:
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// These are the entire width of the border (the cell edge contains only
|
|
|
|
// the inner half, per the macros in nsTablePainter.h).
|
|
|
|
BCPixelSize mTopBorder;
|
|
|
|
BCPixelSize mRightBorder;
|
|
|
|
BCPixelSize mBottomBorder;
|
|
|
|
BCPixelSize mLeftBorder;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|