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 nsTableFrame_h__
|
|
|
|
#define nsTableFrame_h__
|
|
|
|
|
|
|
|
#include "nscore.h"
|
2009-02-05 01:09:50 -08:00
|
|
|
#include "nsTPtrArray.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsHTMLContainerFrame.h"
|
|
|
|
#include "nsStyleCoord.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsITableLayout.h"
|
|
|
|
#include "nsTableColFrame.h"
|
|
|
|
#include "nsTableColGroupFrame.h"
|
|
|
|
#include "nsCellMap.h"
|
|
|
|
#include "nsGkAtoms.h"
|
2008-04-06 04:34:14 -07:00
|
|
|
#include "nsDisplayList.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsTableCellFrame;
|
|
|
|
class nsTableColFrame;
|
|
|
|
class nsTableRowGroupFrame;
|
|
|
|
class nsTableRowFrame;
|
|
|
|
class nsTableColGroupFrame;
|
|
|
|
class nsITableLayoutStrategy;
|
|
|
|
class nsStyleContext;
|
|
|
|
|
|
|
|
struct nsTableReflowState;
|
|
|
|
struct nsStylePosition;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Child list name indices
|
|
|
|
* @see #GetAdditionalChildListName()
|
|
|
|
*/
|
|
|
|
#define NS_TABLE_FRAME_COLGROUP_LIST_INDEX 0
|
|
|
|
#define NS_TABLE_FRAME_OVERFLOW_LIST_INDEX 1
|
|
|
|
#define NS_TABLE_FRAME_LAST_LIST_INDEX NS_TABLE_FRAME_OVERFLOW_LIST_INDEX
|
|
|
|
|
|
|
|
static inline PRBool IS_TABLE_CELL(nsIAtom* frameType) {
|
|
|
|
return nsGkAtoms::tableCellFrame == frameType ||
|
|
|
|
nsGkAtoms::bcTableCellFrame == frameType;
|
|
|
|
}
|
|
|
|
|
2008-04-06 04:34:14 -07:00
|
|
|
class nsDisplayTableItem : public nsDisplayItem
|
|
|
|
{
|
|
|
|
public:
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayTableItem(nsDisplayListBuilder* aBuilder, nsIFrame* aFrame) :
|
|
|
|
nsDisplayItem(aBuilder, aFrame),
|
2008-04-06 04:34:14 -07:00
|
|
|
mPartHasFixedBackground(PR_FALSE) {}
|
|
|
|
|
2010-08-13 02:54:37 -07:00
|
|
|
virtual PRBool IsVaryingRelativeToMovingFrame(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame);
|
2008-04-06 04:34:14 -07:00
|
|
|
// With collapsed borders, parts of the collapsed border can extend outside
|
|
|
|
// the table part frames, so allow this display element to blow out to our
|
|
|
|
// overflow rect. This is also useful for row frames that have spanning
|
|
|
|
// cells extending outside them.
|
|
|
|
virtual nsRect GetBounds(nsDisplayListBuilder* aBuilder);
|
|
|
|
|
|
|
|
void UpdateForFrameBackground(nsIFrame* aFrame);
|
|
|
|
|
|
|
|
private:
|
|
|
|
PRPackedBool mPartHasFixedBackground;
|
|
|
|
};
|
|
|
|
|
|
|
|
class nsAutoPushCurrentTableItem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsAutoPushCurrentTableItem() : mBuilder(nsnull) {}
|
|
|
|
|
|
|
|
void Push(nsDisplayListBuilder* aBuilder, nsDisplayTableItem* aPushItem)
|
|
|
|
{
|
|
|
|
mBuilder = aBuilder;
|
|
|
|
mOldCurrentItem = aBuilder->GetCurrentTableItem();
|
|
|
|
aBuilder->SetCurrentTableItem(aPushItem);
|
|
|
|
#ifdef DEBUG
|
|
|
|
mPushedItem = aPushItem;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
~nsAutoPushCurrentTableItem() {
|
|
|
|
if (!mBuilder)
|
|
|
|
return;
|
|
|
|
#ifdef DEBUG
|
|
|
|
NS_ASSERTION(mBuilder->GetCurrentTableItem() == mPushedItem,
|
|
|
|
"Someone messed with the current table item behind our back!");
|
|
|
|
#endif
|
|
|
|
mBuilder->SetCurrentTableItem(mOldCurrentItem);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsDisplayListBuilder* mBuilder;
|
|
|
|
nsDisplayTableItem* mOldCurrentItem;
|
|
|
|
#ifdef DEBUG
|
|
|
|
nsDisplayTableItem* mPushedItem;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* ============================================================================ */
|
|
|
|
|
|
|
|
/** nsTableFrame maps the inner portion of a table (everything except captions.)
|
|
|
|
* Used as a pseudo-frame within nsTableOuterFrame, it may also be used
|
|
|
|
* stand-alone as the top-level frame.
|
|
|
|
*
|
|
|
|
* The flowed child list contains row group frames. There is also an additional
|
|
|
|
* named child list:
|
|
|
|
* - "ColGroup-list" which contains the col group frames
|
|
|
|
*
|
|
|
|
* @see nsGkAtoms::colGroupList
|
|
|
|
*/
|
|
|
|
class nsTableFrame : public nsHTMLContainerFrame, public nsITableLayout
|
|
|
|
{
|
|
|
|
public:
|
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
|
|
|
|
|
|
|
/** nsTableOuterFrame has intimate knowledge of the inner table frame */
|
|
|
|
friend class nsTableOuterFrame;
|
|
|
|
|
|
|
|
/** instantiate a new instance of nsTableRowFrame.
|
|
|
|
* @param aPresShell the pres shell for this frame
|
|
|
|
*
|
|
|
|
* @return the frame that was created
|
|
|
|
*/
|
|
|
|
friend nsIFrame* NS_NewTableFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
|
|
|
/** sets defaults for table-specific style.
|
|
|
|
* @see nsIFrame::Init
|
|
|
|
*/
|
|
|
|
NS_IMETHOD Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow);
|
|
|
|
|
|
|
|
static float GetTwipsToPixels(nsPresContext* aPresContext);
|
|
|
|
|
2007-06-25 13:34:35 -07:00
|
|
|
// Return true if aParentReflowState.frame or any of its ancestors within
|
|
|
|
// the containing table have non-auto height. (e.g. pct or fixed height)
|
|
|
|
static PRBool AncestorsHaveStyleHeight(const nsHTMLReflowState& aParentReflowState);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// See if a special height reflow will occur due to having a pct height when
|
|
|
|
// the pct height basis may not yet be valid.
|
|
|
|
static void CheckRequestSpecialHeightReflow(const nsHTMLReflowState& aReflowState);
|
|
|
|
|
|
|
|
// Notify the frame and its ancestors (up to the containing table) that a special
|
|
|
|
// height reflow will occur.
|
|
|
|
static void RequestSpecialHeightReflow(const nsHTMLReflowState& aReflowState);
|
|
|
|
|
|
|
|
virtual PRBool IsContainingBlock() const;
|
|
|
|
|
|
|
|
static void RePositionViews(nsIFrame* aFrame);
|
|
|
|
|
2010-05-13 07:15:49 -07:00
|
|
|
static PRBool PageBreakAfter(nsIFrame* aSourceFrame,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* aNextFrame);
|
|
|
|
|
|
|
|
nsPoint GetFirstSectionOrigin(const nsHTMLReflowState& aReflowState) const;
|
|
|
|
/*
|
|
|
|
* Notification that aAttribute has changed for content inside a table (cell, row, etc)
|
|
|
|
*/
|
|
|
|
void AttributeChangedFor(nsIFrame* aFrame,
|
|
|
|
nsIContent* aContent,
|
|
|
|
nsIAtom* aAttribute);
|
|
|
|
|
2009-12-23 21:21:15 -08:00
|
|
|
/** @see nsIFrame::DestroyFrom */
|
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
2008-10-18 10:25:26 -07:00
|
|
|
|
|
|
|
/** @see nsIFrame::DidSetStyleContext */
|
2008-10-26 03:11:34 -07:00
|
|
|
virtual void DidSetStyleContext(nsStyleContext* aOldStyleContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
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 nsMargin GetUsedBorder() const;
|
|
|
|
virtual nsMargin GetUsedPadding() const;
|
|
|
|
|
|
|
|
// Get the offset from the border box to the area where the row groups fit
|
|
|
|
nsMargin GetChildAreaOffset(const nsHTMLReflowState* aReflowState) const;
|
|
|
|
|
|
|
|
/** helper method to find the table parent of any table frame object */
|
|
|
|
static nsTableFrame* GetTableFrame(nsIFrame* aSourceFrame);
|
|
|
|
|
|
|
|
typedef nsresult (* DisplayGenericTablePartTraversal)
|
|
|
|
(nsDisplayListBuilder* aBuilder, nsFrame* aFrame,
|
|
|
|
const nsRect& aDirtyRect, const nsDisplayListSet& aLists);
|
|
|
|
static nsresult GenericTraversal(nsDisplayListBuilder* aBuilder, nsFrame* aFrame,
|
|
|
|
const nsRect& aDirtyRect, const nsDisplayListSet& aLists);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper method to handle display common to table frames, rowgroup frames
|
|
|
|
* and row frames. It creates a background display item for handling events
|
|
|
|
* if necessary, an outline display item if necessary, and displays
|
|
|
|
* all the the frame's children.
|
2008-04-06 04:34:14 -07:00
|
|
|
* @param aDisplayItem the display item created for this part, or null
|
|
|
|
* if this part's border/background painting is delegated to an ancestor
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aTraversal a function that gets called to traverse the table
|
|
|
|
* part's child frames and add their display list items to a
|
|
|
|
* display list set.
|
|
|
|
*/
|
|
|
|
static nsresult DisplayGenericTablePart(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsFrame* aFrame,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists,
|
2008-04-06 04:34:14 -07:00
|
|
|
nsDisplayTableItem* aDisplayItem,
|
2007-03-22 10:30:00 -07:00
|
|
|
DisplayGenericTablePartTraversal aTraversal = GenericTraversal);
|
|
|
|
|
|
|
|
// Return the closest sibling of aPriorChildFrame (including aPriroChildFrame)
|
|
|
|
// of type aChildType.
|
|
|
|
static nsIFrame* GetFrameAtOrBefore(nsIFrame* aParentFrame,
|
|
|
|
nsIFrame* aPriorChildFrame,
|
|
|
|
nsIAtom* aChildType);
|
|
|
|
PRBool IsAutoHeight();
|
|
|
|
|
|
|
|
/** @return PR_TRUE if aDisplayType represents a rowgroup of any sort
|
|
|
|
* (header, footer, or body)
|
|
|
|
*/
|
|
|
|
PRBool IsRowGroup(PRInt32 aDisplayType) const;
|
|
|
|
|
|
|
|
/** Initialize the table frame with a set of children.
|
|
|
|
* @see nsIFrame::SetInitialChildList
|
|
|
|
*/
|
|
|
|
NS_IMETHOD SetInitialChildList(nsIAtom* aListName,
|
2009-07-28 05:53:20 -07:00
|
|
|
nsFrameList& aChildList);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-07-28 05:51:09 -07:00
|
|
|
virtual nsFrameList GetChildList(nsIAtom* aListName) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** @see nsIFrame::GetAdditionalChildListName */
|
|
|
|
virtual nsIAtom* GetAdditionalChildListName(PRInt32 aIndex) const;
|
|
|
|
|
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Paint the background of the table and its parts (column groups,
|
|
|
|
* columns, row groups, rows, and cells), and the table border, and all
|
|
|
|
* internal borders if border-collapse is on.
|
|
|
|
*/
|
|
|
|
void PaintTableBorderBackground(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect,
|
2009-09-12 15:44:18 -07:00
|
|
|
nsPoint aPt, PRUint32 aBGPaintFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-02-08 08:46:42 -08:00
|
|
|
/** Get the outer half (i.e., the part outside the height and width of
|
|
|
|
* the table) of the largest segment (?) of border-collapsed border on
|
|
|
|
* the table on each side, or 0 for non border-collapsed tables.
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsMargin GetOuterBCBorder() const;
|
|
|
|
|
2009-02-08 08:46:42 -08:00
|
|
|
/** Same as above, but only if it's included from the border-box width
|
|
|
|
* of the table.
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsMargin GetIncludedOuterBCBorder() const;
|
|
|
|
|
2009-02-08 08:46:42 -08:00
|
|
|
/** Same as above, but only if it's excluded from the border-box width
|
|
|
|
* of the table. This is the area that leaks out into the margin
|
|
|
|
* (or potentially past it, if there is no margin).
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
nsMargin GetExcludedOuterBCBorder() const;
|
|
|
|
|
2009-07-21 17:44:52 -07:00
|
|
|
/**
|
|
|
|
* In quirks mode, the size of the table background is reduced
|
|
|
|
* by the outer BC border. Compute the reduction needed.
|
|
|
|
*/
|
|
|
|
nsMargin GetDeflationForBackground(nsPresContext* aPresContext) const;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/** Get width of table + colgroup + col collapse: elements that
|
|
|
|
* continue along the length of the whole left side.
|
|
|
|
* see nsTablePainter about continuous borders
|
|
|
|
*/
|
|
|
|
nscoord GetContinuousLeftBCBorderWidth() const;
|
2009-06-21 09:31:40 -07:00
|
|
|
void SetContinuousLeftBCBorderWidth(nscoord aValue);
|
|
|
|
|
2008-10-26 03:11:34 -07:00
|
|
|
friend class nsDelayedCalcBCBorders;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void SetBCDamageArea(const nsRect& aValue);
|
2008-10-26 03:11:34 -07:00
|
|
|
PRBool BCRecalcNeeded(nsStyleContext* aOldStyleContext,
|
|
|
|
nsStyleContext* aNewStyleContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
void PaintBCBorders(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect);
|
|
|
|
|
|
|
|
virtual void MarkIntrinsicWidthsDirty();
|
|
|
|
// For border-collapse tables, the caller must not add padding and
|
|
|
|
// border to the results of these functions.
|
|
|
|
virtual nscoord GetMinWidth(nsIRenderingContext *aRenderingContext);
|
|
|
|
virtual nscoord GetPrefWidth(nsIRenderingContext *aRenderingContext);
|
|
|
|
virtual IntrinsicWidthOffsetData
|
|
|
|
IntrinsicWidthOffsets(nsIRenderingContext* aRenderingContext);
|
|
|
|
|
|
|
|
virtual nsSize ComputeSize(nsIRenderingContext *aRenderingContext,
|
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder, nsSize aPadding,
|
|
|
|
PRBool aShrinkWrap);
|
|
|
|
virtual nsSize ComputeAutoSize(nsIRenderingContext *aRenderingContext,
|
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder,
|
|
|
|
nsSize aPadding, PRBool aShrinkWrap);
|
|
|
|
/**
|
|
|
|
* A copy of nsFrame::ShrinkWidthToFit that calls a different
|
|
|
|
* GetPrefWidth, since tables have two different ones.
|
|
|
|
*/
|
|
|
|
nscoord TableShrinkWidthToFit(nsIRenderingContext *aRenderingContext,
|
|
|
|
nscoord aWidthInCB);
|
|
|
|
|
|
|
|
// XXXldb REWRITE THIS COMMENT!
|
|
|
|
/** inner tables are reflowed in two steps.
|
|
|
|
* <pre>
|
|
|
|
* if mFirstPassValid is false, this is our first time through since content was last changed
|
|
|
|
* set pass to 1
|
|
|
|
* do pass 1
|
|
|
|
* get min/max info for all cells in an infinite space
|
|
|
|
* do column balancing
|
|
|
|
* set mFirstPassValid to true
|
|
|
|
* do pass 2
|
|
|
|
* use column widths to Reflow cells
|
|
|
|
* </pre>
|
|
|
|
*
|
|
|
|
* @see nsIFrame::Reflow
|
|
|
|
*/
|
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
|
|
|
nsresult ReflowTable(nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nscoord aAvailHeight,
|
|
|
|
nsIFrame*& aLastChildReflowed,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
|
|
|
nsFrameList& GetColGroups();
|
|
|
|
|
|
|
|
NS_IMETHOD GetParentStyleContextFrame(nsPresContext* aPresContext,
|
|
|
|
nsIFrame** aProviderFrame,
|
|
|
|
PRBool* aIsChild);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsGkAtoms::tableFrame
|
|
|
|
*/
|
|
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
/** @see nsIFrame::GetFrameName */
|
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/** return the width of the column at aColIndex */
|
|
|
|
virtual PRInt32 GetColumnWidth(PRInt32 aColIndex);
|
|
|
|
|
|
|
|
/** helper to get the cell spacing X style value */
|
|
|
|
virtual nscoord GetCellSpacingX();
|
|
|
|
|
|
|
|
/** helper to get the cell spacing Y style value */
|
|
|
|
virtual nscoord GetCellSpacingY();
|
|
|
|
|
|
|
|
virtual nscoord GetBaseline() const;
|
|
|
|
/** return the row span of a cell, taking into account row span magic at the bottom
|
|
|
|
* of a table. The row span equals the number of rows spanned by aCell starting at
|
|
|
|
* aStartRowIndex, and can be smaller if aStartRowIndex is greater than the row
|
|
|
|
* index in which aCell originates.
|
|
|
|
*
|
|
|
|
* @param aStartRowIndex the cell
|
|
|
|
* @param aCell the cell
|
|
|
|
*
|
|
|
|
* @return the row span, correcting for row spans that extend beyond the bottom
|
|
|
|
* of the table.
|
|
|
|
*/
|
|
|
|
virtual PRInt32 GetEffectiveRowSpan(PRInt32 aStartRowIndex,
|
|
|
|
const nsTableCellFrame& aCell) const;
|
|
|
|
virtual PRInt32 GetEffectiveRowSpan(const nsTableCellFrame& aCell,
|
|
|
|
nsCellMap* aCellMap = nsnull);
|
|
|
|
|
|
|
|
/** return the col span of a cell, taking into account col span magic at the edge
|
|
|
|
* of a table.
|
|
|
|
*
|
|
|
|
* @param aCell the cell
|
|
|
|
*
|
|
|
|
* @return the col span, correcting for col spans that extend beyond the edge
|
|
|
|
* of the table.
|
|
|
|
*/
|
|
|
|
virtual PRInt32 GetEffectiveColSpan(const nsTableCellFrame& aCell,
|
|
|
|
nsCellMap* aCellMap = nsnull) const;
|
|
|
|
|
|
|
|
/** indicate whether the row has more than one cell that either originates
|
|
|
|
* or is spanned from the rows above
|
|
|
|
*/
|
|
|
|
PRBool HasMoreThanOneCell(PRInt32 aRowIndex) const;
|
|
|
|
|
|
|
|
/** return the column frame associated with aColIndex
|
|
|
|
* returns nsnull if the col frame has not yet been allocated, or if
|
|
|
|
* aColIndex is out of range
|
|
|
|
*/
|
|
|
|
nsTableColFrame* GetColFrame(PRInt32 aColIndex) const;
|
|
|
|
|
|
|
|
/** Insert a col frame reference into the colframe cache and adapt the cellmap
|
|
|
|
* @param aColFrame - the column frame
|
|
|
|
* @param aColIndex - index where the column should be inserted into the
|
|
|
|
* colframe cache
|
|
|
|
*/
|
|
|
|
void InsertCol(nsTableColFrame& aColFrame,
|
|
|
|
PRInt32 aColIndex);
|
|
|
|
|
|
|
|
nsTableColGroupFrame* CreateAnonymousColGroupFrame(nsTableColGroupType aType);
|
|
|
|
|
|
|
|
PRInt32 DestroyAnonymousColFrames(PRInt32 aNumFrames);
|
|
|
|
|
2009-07-28 05:53:18 -07:00
|
|
|
// Append aNumColsToAdd anonymous col frames of type eColAnonymousCell to our
|
|
|
|
// last eColGroupAnonymousCell colgroup. If we have no such colgroup, then
|
|
|
|
// create one.
|
2009-07-12 10:47:10 -07:00
|
|
|
void AppendAnonymousColFrames(PRInt32 aNumColsToAdd);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-07-28 05:53:18 -07:00
|
|
|
// Append aNumColsToAdd anonymous col frames of type aColType to
|
|
|
|
// aColGroupFrame. If aAddToTable is true, also call AddColsToTable on the
|
|
|
|
// new cols.
|
|
|
|
void AppendAnonymousColFrames(nsTableColGroupFrame* aColGroupFrame,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 aNumColsToAdd,
|
|
|
|
nsTableColType aColType,
|
2009-07-28 05:53:18 -07:00
|
|
|
PRBool aAddToTable);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void MatchCellMapToColCache(nsTableCellMap* aCellMap);
|
|
|
|
/** empty the column frame cache */
|
|
|
|
void ClearColCache();
|
|
|
|
|
|
|
|
void DidResizeColumns();
|
|
|
|
|
|
|
|
virtual void AppendCell(nsTableCellFrame& aCellFrame,
|
|
|
|
PRInt32 aRowIndex);
|
|
|
|
|
2009-02-05 01:09:50 -08:00
|
|
|
virtual void InsertCells(nsTArray<nsTableCellFrame*>& aCellFrames,
|
|
|
|
PRInt32 aRowIndex,
|
|
|
|
PRInt32 aColIndexBefore);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual void RemoveCell(nsTableCellFrame* aCellFrame,
|
|
|
|
PRInt32 aRowIndex);
|
|
|
|
|
2010-01-16 08:05:46 -08:00
|
|
|
void AppendRows(nsTableRowGroupFrame* aRowGroupFrame,
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 aRowIndex,
|
|
|
|
nsTArray<nsTableRowFrame*>& aRowFrames);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-01-16 08:05:46 -08:00
|
|
|
PRInt32 InsertRows(nsTableRowGroupFrame* aRowGroupFrame,
|
2009-02-05 01:09:50 -08:00
|
|
|
nsTArray<nsTableRowFrame*>& aFrames,
|
|
|
|
PRInt32 aRowIndex,
|
|
|
|
PRBool aConsiderSpans);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual void RemoveRows(nsTableRowFrame& aFirstRowFrame,
|
|
|
|
PRInt32 aNumRowsToRemove,
|
|
|
|
PRBool aConsiderSpans);
|
|
|
|
|
|
|
|
/** Insert multiple rowgroups into the table cellmap handling
|
2009-07-30 10:23:32 -07:00
|
|
|
* @param aRowGroups - iterator that iterates over the rowgroups to insert
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2009-07-30 10:23:32 -07:00
|
|
|
void InsertRowGroups(const nsFrameList::Slice& aRowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-07-30 10:23:32 -07:00
|
|
|
void InsertColGroups(PRInt32 aStartColIndex,
|
|
|
|
const nsFrameList::Slice& aColgroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual void RemoveCol(nsTableColGroupFrame* aColGroupFrame,
|
|
|
|
PRInt32 aColIndex,
|
|
|
|
PRBool aRemoveFromCache,
|
|
|
|
PRBool aRemoveFromCellMap);
|
|
|
|
|
2008-02-06 23:03:26 -08:00
|
|
|
NS_IMETHOD GetIndexByRowAndColumn(PRInt32 aRow, PRInt32 aColumn, PRInt32 *aIndex);
|
|
|
|
NS_IMETHOD GetRowAndColumnByIndex(PRInt32 aIndex, PRInt32 *aRow, PRInt32 *aColumn);
|
2008-09-24 10:14:35 -07:00
|
|
|
|
|
|
|
PRBool ColumnHasCellSpacingBefore(PRInt32 aColIndex) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRBool HasPctCol() const;
|
|
|
|
void SetHasPctCol(PRBool aValue);
|
|
|
|
|
|
|
|
PRBool HasCellSpanningPctCol() const;
|
|
|
|
void SetHasCellSpanningPctCol(PRBool aValue);
|
|
|
|
|
2008-02-08 01:36:32 -08:00
|
|
|
/**
|
|
|
|
* To be called on a frame by its parent after setting its size/position and
|
|
|
|
* calling DidReflow (possibly via FinishReflowChild()). This can also be
|
2009-07-27 01:47:02 -07:00
|
|
|
* used for child frames which are not being reflowed but did have their size
|
2008-02-08 01:36:32 -08:00
|
|
|
* or position changed.
|
|
|
|
*
|
|
|
|
* @param aFrame The frame to invalidate
|
|
|
|
* @param aOrigRect The original rect of aFrame (before the change).
|
2010-10-06 21:25:46 -07:00
|
|
|
* @param aOrigVisualOverflow The original overflow rect of aFrame.
|
2008-02-08 01:36:32 -08:00
|
|
|
* @param aIsFirstReflow True if the size/position change is due to the
|
|
|
|
* first reflow of aFrame.
|
|
|
|
*/
|
2008-03-16 13:32:48 -07:00
|
|
|
static void InvalidateFrame(nsIFrame* aFrame,
|
|
|
|
const nsRect& aOrigRect,
|
2010-10-06 21:25:46 -07:00
|
|
|
const nsRect& aOrigVisualOverflow,
|
2008-02-08 01:36:32 -08:00
|
|
|
PRBool aIsFirstReflow);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/** protected constructor.
|
|
|
|
* @see NewFrame
|
|
|
|
*/
|
|
|
|
nsTableFrame(nsStyleContext* aContext);
|
|
|
|
|
|
|
|
/** destructor, responsible for mColumnLayoutData */
|
|
|
|
virtual ~nsTableFrame();
|
|
|
|
|
|
|
|
void InitChildReflowState(nsHTMLReflowState& aReflowState);
|
|
|
|
|
|
|
|
/** implement abstract method on nsHTMLContainerFrame */
|
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
|
|
|
public:
|
|
|
|
PRBool IsRowInserted() const;
|
|
|
|
void SetRowInserted(PRBool aValue);
|
|
|
|
|
|
|
|
protected:
|
2007-12-04 18:32:56 -08:00
|
|
|
|
|
|
|
// A helper function to reflow a header or footer with unconstrained height
|
|
|
|
// to see if it should be made repeatable and also to determine its desired
|
|
|
|
// height.
|
|
|
|
nsresult SetupHeaderFooterChild(const nsTableReflowState& aReflowState,
|
|
|
|
nsTableRowGroupFrame* aFrame,
|
|
|
|
nscoord* aDesiredHeight);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-10-06 21:25:46 -07:00
|
|
|
nsresult ReflowChildren(nsTableReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
|
|
|
nsIFrame*& aLastChildReflowed,
|
|
|
|
nsOverflowAreas& aOverflowAreas);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// This calls the col group and column reflow methods, which do two things:
|
|
|
|
// (1) set all the dimensions to 0
|
|
|
|
// (2) notify the table about colgroups or columns with hidden visibility
|
|
|
|
void ReflowColGroups(nsIRenderingContext* aRenderingContext);
|
|
|
|
|
|
|
|
/** return the width of the table taking into account visibility collapse
|
|
|
|
* on columns and colgroups
|
|
|
|
* @param aBorderPadding the border and padding of the table
|
|
|
|
*/
|
|
|
|
nscoord GetCollapsedWidth(nsMargin aBorderPadding);
|
|
|
|
|
|
|
|
|
|
|
|
/** Adjust the table for visibilty.collapse set on rowgroups, rows, colgroups
|
|
|
|
* and cols
|
|
|
|
* @param aDesiredSize the metrics of the table
|
|
|
|
* @param aBorderPadding the border and padding of the table
|
|
|
|
*/
|
|
|
|
void AdjustForCollapsingRowsCols(nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
nsMargin aBorderPadding);
|
|
|
|
|
2008-09-24 10:14:35 -07:00
|
|
|
nsITableLayoutStrategy* LayoutStrategy() const {
|
2007-07-08 00:08:04 -07:00
|
|
|
return static_cast<nsTableFrame*>(GetFirstInFlow())->
|
2007-03-22 10:30:00 -07:00
|
|
|
mTableLayoutStrategy;
|
|
|
|
}
|
|
|
|
|
2008-02-06 14:01:41 -08:00
|
|
|
private:
|
|
|
|
/* Handle a row that got inserted during reflow. aNewHeight is the
|
|
|
|
new height of the table after reflow. */
|
|
|
|
void ProcessRowInserted(nscoord aNewHeight);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// WIDTH AND HEIGHT CALCULATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// calculate the computed height of aFrame including its border and padding given
|
|
|
|
// its reflow state.
|
|
|
|
nscoord CalcBorderBoxHeight(const nsHTMLReflowState& aReflowState);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// update the desired height of this table taking into account the current
|
|
|
|
// reflow state, the table attributes and the content driven rowgroup heights
|
|
|
|
// this function can change the overflow area
|
|
|
|
void CalcDesiredHeight(const nsHTMLReflowState& aReflowState, nsHTMLReflowMetrics& aDesiredSize);
|
|
|
|
|
|
|
|
// The following is a helper for CalcDesiredHeight
|
|
|
|
|
|
|
|
void DistributeHeightToRows(const nsHTMLReflowState& aReflowState,
|
|
|
|
nscoord aAmount);
|
|
|
|
|
|
|
|
void PlaceChild(nsTableReflowState& aReflowState,
|
|
|
|
nsIFrame* aKidFrame,
|
2008-02-08 01:36:32 -08:00
|
|
|
nsHTMLReflowMetrics& aKidDesiredSize,
|
2008-03-16 13:32:48 -07:00
|
|
|
const nsRect& aOriginalKidRect,
|
2010-10-06 21:25:46 -07:00
|
|
|
const nsRect& aOriginalKidVisualOverflow);
|
2010-05-13 07:15:49 -07:00
|
|
|
void PlaceRepeatedFooter(nsTableReflowState& aReflowState,
|
|
|
|
nsTableRowGroupFrame *aTfoot,
|
|
|
|
nscoord aFooterHeight);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsIFrame* GetFirstBodyRowGroupFrame();
|
2010-01-16 08:05:46 -08:00
|
|
|
public:
|
|
|
|
typedef nsAutoTPtrArray<nsTableRowGroupFrame, 8> RowGroupArray;
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
2010-01-16 08:05:46 -08:00
|
|
|
* Push all our child frames from the aRowGroups array, in order, starting
|
|
|
|
* from the frame at aPushFrom to the end of the array. The frames are put on
|
|
|
|
* our overflow list or moved directly to our next-in-flow if one exists.
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2010-01-16 08:05:46 -08:00
|
|
|
protected:
|
|
|
|
void PushChildren(const RowGroupArray& aRowGroups, PRInt32 aPushFrom);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
public:
|
2007-06-05 11:55:26 -07:00
|
|
|
// put the children frames in the display order (e.g. thead before tbodies
|
|
|
|
// before tfoot). This will handle calling GetRowGroupFrame() on the
|
|
|
|
// children, and not append nulls, so the array is guaranteed to contain
|
|
|
|
// nsTableRowGroupFrames. If there are multiple theads or tfoots, all but
|
|
|
|
// the first one are treated as tbodies instead.
|
2010-01-16 08:05:46 -08:00
|
|
|
|
|
|
|
void OrderRowGroups(RowGroupArray& aChildren,
|
|
|
|
nsTableRowGroupFrame** aHead = nsnull,
|
|
|
|
nsTableRowGroupFrame** aFoot = nsnull) const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-06-05 11:55:26 -07:00
|
|
|
// Return the thead, if any
|
|
|
|
nsTableRowGroupFrame* GetTHead() const;
|
|
|
|
|
|
|
|
// Return the tfoot, if any
|
|
|
|
nsTableRowGroupFrame* GetTFoot() const;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Returns PR_TRUE if there are any cells above the row at
|
|
|
|
// aRowIndex and spanning into the row at aRowIndex, the number of
|
|
|
|
// effective columns limits the search up to that column
|
|
|
|
PRBool RowIsSpannedInto(PRInt32 aRowIndex, PRInt32 aNumEffCols);
|
|
|
|
|
|
|
|
// Returns PR_TRUE if there is a cell originating in aRowIndex
|
|
|
|
// which spans into the next row, the number of effective
|
|
|
|
// columns limits the search up to that column
|
|
|
|
PRBool RowHasSpanningCells(PRInt32 aRowIndex, PRInt32 aNumEffCols);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
PRBool HaveReflowedColGroups() const;
|
|
|
|
void SetHaveReflowedColGroups(PRBool aValue);
|
|
|
|
|
|
|
|
public:
|
|
|
|
PRBool IsBorderCollapse() const;
|
|
|
|
|
|
|
|
PRBool NeedToCalcBCBorders() const;
|
|
|
|
void SetNeedToCalcBCBorders(PRBool aValue);
|
|
|
|
|
|
|
|
PRBool NeedToCollapse() const;
|
|
|
|
void SetNeedToCollapse(PRBool aValue);
|
|
|
|
|
|
|
|
PRBool HasZeroColSpans() const;
|
|
|
|
void SetHasZeroColSpans(PRBool aValue);
|
|
|
|
|
|
|
|
PRBool NeedColSpanExpansion() const;
|
|
|
|
void SetNeedColSpanExpansion(PRBool aValue);
|
|
|
|
|
2007-05-17 23:04:43 -07:00
|
|
|
/** The GeometryDirty bit is similar to the NS_FRAME_IS_DIRTY frame
|
|
|
|
* state bit, which implies that all descendants are dirty. The
|
|
|
|
* GeometryDirty still implies that all the parts of the table are
|
|
|
|
* dirty, but resizing optimizations should still apply to the
|
|
|
|
* contents of the individual cells.
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
void SetGeometryDirty() { mBits.mGeometryDirty = PR_TRUE; }
|
|
|
|
void ClearGeometryDirty() { mBits.mGeometryDirty = PR_FALSE; }
|
|
|
|
PRBool IsGeometryDirty() const { return mBits.mGeometryDirty; }
|
|
|
|
|
|
|
|
/** Get the cell map for this table frame. It is not always mCellMap.
|
|
|
|
* Only the firstInFlow has a legit cell map
|
|
|
|
*/
|
|
|
|
virtual nsTableCellMap* GetCellMap() const;
|
|
|
|
|
|
|
|
/** Iterate over the row groups and adjust the row indices of all rows
|
|
|
|
* whose index is >= aRowIndex.
|
|
|
|
* @param aRowIndex - start adjusting with this index
|
|
|
|
* @param aAdjustment - shift the row index by this amount
|
|
|
|
*/
|
|
|
|
void AdjustRowIndices(PRInt32 aRowIndex,
|
|
|
|
PRInt32 aAdjustment);
|
|
|
|
|
|
|
|
/** Reset the rowindices of all rows as they might have changed due to
|
|
|
|
* rowgroup reordering, exclude new row group frames that show in the
|
|
|
|
* reordering but are not yet inserted into the cellmap
|
2009-07-30 10:23:32 -07:00
|
|
|
* @param aRowGroupsToExclude - an iterator that will produce the row groups
|
|
|
|
* to exclude.
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2009-07-30 10:23:32 -07:00
|
|
|
void ResetRowIndices(const nsFrameList::Slice& aRowGroupsToExclude);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-02-05 01:09:50 -08:00
|
|
|
nsTArray<nsTableColFrame*>& GetColCache();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
void SetBorderCollapse(PRBool aValue);
|
|
|
|
|
|
|
|
void CalcBCBorders();
|
|
|
|
|
|
|
|
void ExpandBCDamageArea(nsRect& aRect) const;
|
|
|
|
|
|
|
|
void SetColumnDimensions(nscoord aHeight,
|
|
|
|
const nsMargin& aReflowState);
|
|
|
|
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 CollectRows(nsIFrame* aFrame,
|
|
|
|
nsTArray<nsTableRowFrame*>& aCollection);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
public: /* ----- Cell Map public methods ----- */
|
|
|
|
|
2010-01-16 08:05:46 -08:00
|
|
|
PRInt32 GetStartRowIndex(nsTableRowGroupFrame* aRowGroupFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** returns the number of rows in this table.
|
|
|
|
*/
|
|
|
|
PRInt32 GetRowCount () const
|
|
|
|
{
|
|
|
|
return GetCellMap()->GetRowCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** returns the number of columns in this table after redundant columns have been removed
|
|
|
|
*/
|
|
|
|
PRInt32 GetEffectiveColCount() const;
|
|
|
|
|
|
|
|
/* return the col count including dead cols */
|
|
|
|
PRInt32 GetColCount () const
|
|
|
|
{
|
|
|
|
return GetCellMap()->GetColCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
// return the last col index which isn't of type eColAnonymousCell
|
|
|
|
PRInt32 GetIndexOfLastRealCol();
|
|
|
|
|
|
|
|
/** returns PR_TRUE if table-layout:auto */
|
|
|
|
virtual PRBool IsAutoLayout();
|
|
|
|
|
|
|
|
/*---------------- nsITableLayout methods ------------------------*/
|
|
|
|
|
|
|
|
/** Get the cell and associated data for a table cell from the frame's cellmap */
|
|
|
|
NS_IMETHOD GetCellDataAt(PRInt32 aRowIndex, PRInt32 aColIndex,
|
|
|
|
nsIDOMElement* &aCell, //out params
|
|
|
|
PRInt32& aStartRowIndex, PRInt32& aStartColIndex,
|
|
|
|
PRInt32& aRowSpan, PRInt32& aColSpan,
|
|
|
|
PRInt32& aActualRowSpan, PRInt32& aActualColSpan,
|
|
|
|
PRBool& aIsSelected);
|
|
|
|
|
|
|
|
/** Get the number of rows and column for a table from the frame's cellmap
|
|
|
|
* Some rows may not have enough cells (the number returned is the maximum possible),
|
|
|
|
* which displays as a ragged-right edge table
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetTableSize(PRInt32& aRowCount, PRInt32& aColCount);
|
|
|
|
|
|
|
|
/*------------end of nsITableLayout methods -----------------------*/
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void Dump(PRBool aDumpRows,
|
|
|
|
PRBool aDumpCols,
|
|
|
|
PRBool aDumpCellMap);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
protected:
|
|
|
|
#ifdef DEBUG
|
|
|
|
void DumpRowGroup(nsIFrame* aChildFrame);
|
|
|
|
#endif
|
|
|
|
// DATA MEMBERS
|
2009-02-05 01:09:50 -08:00
|
|
|
nsAutoTPtrArray<nsTableColFrame, 8> mColFrames;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
struct TableBits {
|
|
|
|
PRUint32 mHaveReflowedColGroups:1; // have the col groups gotten their initial reflow
|
|
|
|
PRUint32 mHasPctCol:1; // does any cell or col have a pct width
|
|
|
|
PRUint32 mCellSpansPctCol:1; // does any cell span a col with a pct width (or containing a cell with a pct width)
|
|
|
|
PRUint32 mIsBorderCollapse:1; // border collapsing model vs. separate model
|
|
|
|
PRUint32 mRowInserted:1;
|
|
|
|
PRUint32 mNeedToCalcBCBorders:1;
|
|
|
|
PRUint32 mGeometryDirty:1;
|
|
|
|
PRUint32 mLeftContBCBorder:8;
|
|
|
|
PRUint32 mNeedToCollapse:1; // rows, cols that have visibility:collapse need to be collapsed
|
|
|
|
PRUint32 mHasZeroColSpans:1;
|
|
|
|
PRUint32 mNeedColSpanExpansion:1;
|
|
|
|
PRUint32 mResizedColumns:1; // have we resized columns since last reflow?
|
|
|
|
} mBits;
|
|
|
|
|
|
|
|
nsTableCellMap* mCellMap; // maintains the relationships between rows, cols, and cells
|
|
|
|
nsITableLayoutStrategy* mTableLayoutStrategy;// the layout strategy for this frame
|
|
|
|
nsFrameList mColGroups; // the list of colgroup frames
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
inline PRBool nsTableFrame::IsRowGroup(PRInt32 aDisplayType) const
|
|
|
|
{
|
|
|
|
return PRBool((NS_STYLE_DISPLAY_TABLE_HEADER_GROUP == aDisplayType) ||
|
|
|
|
(NS_STYLE_DISPLAY_TABLE_FOOTER_GROUP == aDisplayType) ||
|
|
|
|
(NS_STYLE_DISPLAY_TABLE_ROW_GROUP == aDisplayType));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableFrame::SetHaveReflowedColGroups(PRBool aValue)
|
|
|
|
{
|
|
|
|
mBits.mHaveReflowedColGroups = aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableFrame::HaveReflowedColGroups() const
|
|
|
|
{
|
|
|
|
return (PRBool)mBits.mHaveReflowedColGroups;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableFrame::HasPctCol() const
|
|
|
|
{
|
|
|
|
return (PRBool)mBits.mHasPctCol;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableFrame::SetHasPctCol(PRBool aValue)
|
|
|
|
{
|
|
|
|
mBits.mHasPctCol = (unsigned)aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableFrame::HasCellSpanningPctCol() const
|
|
|
|
{
|
|
|
|
return (PRBool)mBits.mCellSpansPctCol;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableFrame::SetHasCellSpanningPctCol(PRBool aValue)
|
|
|
|
{
|
|
|
|
mBits.mCellSpansPctCol = (unsigned)aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableFrame::IsRowInserted() const
|
|
|
|
{
|
|
|
|
return (PRBool)mBits.mRowInserted;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableFrame::SetRowInserted(PRBool aValue)
|
|
|
|
{
|
|
|
|
mBits.mRowInserted = (unsigned)aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableFrame::SetNeedToCollapse(PRBool aValue)
|
|
|
|
{
|
2009-06-21 09:34:03 -07:00
|
|
|
static_cast<nsTableFrame*>(GetFirstInFlow())->mBits.mNeedToCollapse = (unsigned)aValue;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableFrame::NeedToCollapse() const
|
|
|
|
{
|
2009-06-21 09:34:03 -07:00
|
|
|
return (PRBool) static_cast<nsTableFrame*>(GetFirstInFlow())->mBits.mNeedToCollapse;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableFrame::SetHasZeroColSpans(PRBool aValue)
|
|
|
|
{
|
|
|
|
mBits.mHasZeroColSpans = (unsigned)aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableFrame::HasZeroColSpans() const
|
|
|
|
{
|
|
|
|
return (PRBool)mBits.mHasZeroColSpans;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableFrame::SetNeedColSpanExpansion(PRBool aValue)
|
|
|
|
{
|
|
|
|
mBits.mNeedColSpanExpansion = (unsigned)aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableFrame::NeedColSpanExpansion() const
|
|
|
|
{
|
|
|
|
return (PRBool)mBits.mNeedColSpanExpansion;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline nsFrameList& nsTableFrame::GetColGroups()
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
return static_cast<nsTableFrame*>(GetFirstInFlow())->mColGroups;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-02-05 01:09:50 -08:00
|
|
|
inline nsTArray<nsTableColFrame*>& nsTableFrame::GetColCache()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return mColFrames;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableFrame::IsBorderCollapse() const
|
|
|
|
{
|
|
|
|
return (PRBool)mBits.mIsBorderCollapse;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableFrame::SetBorderCollapse(PRBool aValue)
|
|
|
|
{
|
|
|
|
mBits.mIsBorderCollapse = aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool nsTableFrame::NeedToCalcBCBorders() const
|
|
|
|
{
|
|
|
|
return (PRBool)mBits.mNeedToCalcBCBorders;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void nsTableFrame::SetNeedToCalcBCBorders(PRBool aValue)
|
|
|
|
{
|
|
|
|
mBits.mNeedToCalcBCBorders = (unsigned)aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nscoord
|
|
|
|
nsTableFrame::GetContinuousLeftBCBorderWidth() const
|
|
|
|
{
|
|
|
|
PRInt32 aPixelsToTwips = nsPresContext::AppUnitsPerCSSPixel();
|
|
|
|
return BC_BORDER_RIGHT_HALF_COORD(aPixelsToTwips, mBits.mLeftContBCBorder);
|
|
|
|
}
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
inline void nsTableFrame::SetContinuousLeftBCBorderWidth(nscoord aValue)
|
|
|
|
{
|
|
|
|
mBits.mLeftContBCBorder = (unsigned) aValue;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsTableIterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsTableIterator(nsIFrame& aSource);
|
|
|
|
nsTableIterator(nsFrameList& aSource);
|
|
|
|
nsIFrame* First();
|
|
|
|
nsIFrame* Next();
|
|
|
|
PRBool IsLeftToRight();
|
|
|
|
PRInt32 Count();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void Init(nsIFrame* aFirstChild);
|
|
|
|
PRBool mLeftToRight;
|
|
|
|
nsIFrame* mFirstListChild;
|
|
|
|
nsIFrame* mFirstChild;
|
|
|
|
nsIFrame* mCurrentChild;
|
|
|
|
PRInt32 mCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define ABORT0() \
|
|
|
|
{NS_ASSERTION(PR_FALSE, "CellIterator program error"); \
|
|
|
|
return;}
|
|
|
|
|
|
|
|
#define ABORT1(aReturn) \
|
|
|
|
{NS_ASSERTION(PR_FALSE, "CellIterator program error"); \
|
|
|
|
return aReturn;}
|
|
|
|
|
|
|
|
#endif
|