2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 sw=2 et tw=80: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsTableFrame.h"
|
2011-04-07 18:04:40 -07:00
|
|
|
#include "nsRenderingContext.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsStyleContext.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsCellMap.h"
|
|
|
|
#include "nsTableCellFrame.h"
|
|
|
|
#include "nsHTMLParts.h"
|
|
|
|
#include "nsTableColFrame.h"
|
|
|
|
#include "nsTableColGroupFrame.h"
|
|
|
|
#include "nsTableRowFrame.h"
|
|
|
|
#include "nsTableRowGroupFrame.h"
|
|
|
|
#include "nsTableOuterFrame.h"
|
|
|
|
#include "nsTablePainter.h"
|
|
|
|
|
|
|
|
#include "BasicTableLayoutStrategy.h"
|
|
|
|
#include "FixedTableLayoutStrategy.h"
|
|
|
|
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsCSSRendering.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsCSSAnonBoxes.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIDOMHTMLElement.h"
|
|
|
|
#include "nsIDOMHTMLBodyElement.h"
|
|
|
|
#include "nsFrameManager.h"
|
|
|
|
#include "nsLayoutErrors.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsCSSFrameConstructor.h"
|
|
|
|
#include "nsStyleSet.h"
|
|
|
|
#include "nsDisplayList.h"
|
2009-12-13 19:40:55 -08:00
|
|
|
#include "nsIScrollableFrame.h"
|
2010-04-02 18:58:26 -07:00
|
|
|
#include "nsCSSProps.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-03-28 18:46:55 -07:00
|
|
|
using namespace mozilla;
|
2012-01-24 17:21:29 -08:00
|
|
|
using namespace mozilla::layout;
|
2010-03-28 18:46:55 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/********************************************************************************
|
|
|
|
** nsTableReflowState **
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
struct nsTableReflowState {
|
|
|
|
|
|
|
|
// the real reflow state
|
|
|
|
const nsHTMLReflowState& reflowState;
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
// The table's available size
|
2007-03-22 10:30:00 -07:00
|
|
|
nsSize availSize;
|
|
|
|
|
|
|
|
// Stationary x-offset
|
|
|
|
nscoord x;
|
|
|
|
|
|
|
|
// Running y-offset
|
|
|
|
nscoord y;
|
|
|
|
|
2009-02-18 11:47:22 -08:00
|
|
|
nsTableReflowState(nsPresContext& aPresContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsTableFrame& aTableFrame,
|
|
|
|
nscoord aAvailWidth,
|
|
|
|
nscoord aAvailHeight)
|
|
|
|
: reflowState(aReflowState)
|
|
|
|
{
|
|
|
|
Init(aPresContext, aTableFrame, aAvailWidth, aAvailHeight);
|
|
|
|
}
|
|
|
|
|
2009-02-18 11:47:22 -08:00
|
|
|
void Init(nsPresContext& aPresContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame& aTableFrame,
|
|
|
|
nscoord aAvailWidth,
|
|
|
|
nscoord aAvailHeight)
|
|
|
|
{
|
|
|
|
nsTableFrame* table = (nsTableFrame*)aTableFrame.GetFirstInFlow();
|
|
|
|
nsMargin borderPadding = table->GetChildAreaOffset(&reflowState);
|
|
|
|
nscoord cellSpacingX = table->GetCellSpacingX();
|
|
|
|
|
|
|
|
x = borderPadding.left + cellSpacingX;
|
|
|
|
y = borderPadding.top; //cellspacing added during reflow
|
|
|
|
|
|
|
|
availSize.width = aAvailWidth;
|
|
|
|
if (NS_UNCONSTRAINEDSIZE != availSize.width) {
|
|
|
|
availSize.width -= borderPadding.left + borderPadding.right
|
|
|
|
+ (2 * cellSpacingX);
|
2009-09-16 08:01:36 -07:00
|
|
|
availSize.width = NS_MAX(0, availSize.width);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
availSize.height = aAvailHeight;
|
|
|
|
if (NS_UNCONSTRAINEDSIZE != availSize.height) {
|
|
|
|
availSize.height -= borderPadding.top + borderPadding.bottom
|
|
|
|
+ (2 * table->GetCellSpacingY());
|
2009-09-16 08:01:36 -07:00
|
|
|
availSize.height = NS_MAX(0, availSize.height);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-18 11:47:22 -08:00
|
|
|
nsTableReflowState(nsPresContext& aPresContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsTableFrame& aTableFrame)
|
|
|
|
: reflowState(aReflowState)
|
|
|
|
{
|
|
|
|
Init(aPresContext, aTableFrame, aReflowState.availableWidth, aReflowState.availableHeight);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/********************************************************************************
|
|
|
|
** nsTableFrame **
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
struct BCPropertyData
|
|
|
|
{
|
2011-10-27 06:58:44 -07:00
|
|
|
BCPropertyData() : mTopBorderWidth(0), mRightBorderWidth(0),
|
|
|
|
mBottomBorderWidth(0), mLeftBorderWidth(0),
|
|
|
|
mLeftCellBorderWidth(0), mRightCellBorderWidth(0) {}
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect mDamageArea;
|
2007-03-22 10:30:00 -07:00
|
|
|
BCPixelSize mTopBorderWidth;
|
|
|
|
BCPixelSize mRightBorderWidth;
|
|
|
|
BCPixelSize mBottomBorderWidth;
|
|
|
|
BCPixelSize mLeftBorderWidth;
|
2009-02-08 08:46:42 -08:00
|
|
|
BCPixelSize mLeftCellBorderWidth;
|
|
|
|
BCPixelSize mRightCellBorderWidth;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2011-09-12 09:08:07 -07:00
|
|
|
nsIFrame*
|
2012-02-15 01:28:21 -08:00
|
|
|
nsTableFrame::GetParentStyleContextFrame() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Since our parent, the table outer frame, returned this frame, we
|
|
|
|
// must return whatever our parent would normally have returned.
|
|
|
|
|
|
|
|
NS_PRECONDITION(mParent, "table constructed without outer table");
|
2009-10-29 14:17:56 -07:00
|
|
|
if (!mContent->GetParent() && !GetStyleContext()->GetPseudo()) {
|
2007-05-07 20:59:12 -07:00
|
|
|
// We're the root. We have no style context parent.
|
2011-09-12 09:08:07 -07:00
|
|
|
return nsnull;
|
2007-05-07 20:59:12 -07:00
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2011-09-12 09:08:07 -07:00
|
|
|
return static_cast<nsFrame*>(GetParent())->DoGetParentStyleContextFrame();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsIAtom*
|
|
|
|
nsTableFrame::GetType() const
|
|
|
|
{
|
2010-04-27 09:15:01 -07:00
|
|
|
return nsGkAtoms::tableFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsTableFrame::nsTableFrame(nsStyleContext* aContext)
|
2011-12-27 12:18:48 -08:00
|
|
|
: nsContainerFrame(aContext),
|
2007-03-22 10:30:00 -07:00
|
|
|
mCellMap(nsnull),
|
|
|
|
mTableLayoutStrategy(nsnull)
|
|
|
|
{
|
2012-01-16 15:38:10 -08:00
|
|
|
memset(&mBits, 0, sizeof(mBits));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-01-12 11:20:59 -08:00
|
|
|
NS_QUERYFRAME_HEAD(nsTableFrame)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsITableLayout)
|
2011-12-27 12:18:48 -08:00
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTableFrame::Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
2012-01-16 15:38:10 -08:00
|
|
|
NS_PRECONDITION(!mCellMap, "Init called twice");
|
|
|
|
NS_PRECONDITION(!aPrevInFlow ||
|
|
|
|
aPrevInFlow->GetType() == nsGkAtoms::tableFrame,
|
|
|
|
"prev-in-flow must be of same type");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Let the base class do its processing
|
2012-01-16 15:38:10 -08:00
|
|
|
nsresult rv = nsContainerFrame::Init(aContent, aParent, aPrevInFlow);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// see if border collapse is on, if so set it
|
|
|
|
const nsStyleTableBorder* tableStyle = GetStyleTableBorder();
|
2011-09-28 23:19:26 -07:00
|
|
|
bool borderCollapse = (NS_STYLE_BORDER_COLLAPSE == tableStyle->mBorderCollapse);
|
2007-03-22 10:30:00 -07:00
|
|
|
SetBorderCollapse(borderCollapse);
|
2012-02-10 13:05:00 -08:00
|
|
|
|
|
|
|
// Transforms need to affect the outer frame, not the inner frame (bug 722777)
|
|
|
|
mState &= ~NS_FRAME_MAY_BE_TRANSFORMED;
|
|
|
|
|
2012-01-16 15:38:10 -08:00
|
|
|
// Create the cell map if this frame is the first-in-flow.
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!aPrevInFlow) {
|
|
|
|
mCellMap = new nsTableCellMap(*this, borderCollapse);
|
|
|
|
if (!mCellMap)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aPrevInFlow) {
|
|
|
|
// set my width, because all frames in a table flow are the same width and
|
|
|
|
// code in nsTableOuterFrame depends on this being set
|
|
|
|
mRect.width = aPrevInFlow->GetSize().width;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_ASSERTION(!mTableLayoutStrategy, "strategy was created before Init was called");
|
|
|
|
// create the strategy
|
|
|
|
if (IsAutoLayout())
|
|
|
|
mTableLayoutStrategy = new BasicTableLayoutStrategy(this);
|
|
|
|
else
|
|
|
|
mTableLayoutStrategy = new FixedTableLayoutStrategy(this);
|
|
|
|
if (!mTableLayoutStrategy)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTableFrame::~nsTableFrame()
|
|
|
|
{
|
2012-01-16 15:38:10 -08:00
|
|
|
delete mCellMap;
|
|
|
|
delete mTableLayoutStrategy;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-12-23 21:21:15 -08:00
|
|
|
nsTableFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-12-23 21:21:15 -08:00
|
|
|
mColGroups.DestroyFramesFrom(aDestructRoot);
|
2011-12-27 12:18:48 -08:00
|
|
|
nsContainerFrame::DestroyFrom(aDestructRoot);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure any views are positioned properly
|
|
|
|
void
|
|
|
|
nsTableFrame::RePositionViews(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
nsContainerFrame::PositionFrameView(aFrame);
|
|
|
|
nsContainerFrame::PositionChildViews(aFrame);
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2007-03-22 10:30:00 -07:00
|
|
|
IsRepeatedFrame(nsIFrame* kidFrame)
|
|
|
|
{
|
|
|
|
return (kidFrame->GetType() == nsGkAtoms::tableRowFrame ||
|
|
|
|
kidFrame->GetType() == nsGkAtoms::tableRowGroupFrame) &&
|
|
|
|
(kidFrame->GetStateBits() & NS_REPEATED_ROW_OR_ROWGROUP);
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2010-05-13 07:15:49 -07:00
|
|
|
nsTableFrame::PageBreakAfter(nsIFrame* aSourceFrame,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* aNextFrame)
|
|
|
|
{
|
2010-05-13 07:15:49 -07:00
|
|
|
const nsStyleDisplay* display = aSourceFrame->GetStyleDisplay();
|
|
|
|
nsTableRowGroupFrame* prevRg = do_QueryFrame(aSourceFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
// don't allow a page break after a repeated element ...
|
2010-05-26 22:31:11 -07:00
|
|
|
if ((display->mBreakAfter || (prevRg && prevRg->HasInternalBreakAfter())) &&
|
2010-05-13 07:15:49 -07:00
|
|
|
!IsRepeatedFrame(aSourceFrame)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
return !(aNextFrame && IsRepeatedFrame(aNextFrame)); // or before
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aNextFrame) {
|
|
|
|
display = aNextFrame->GetStyleDisplay();
|
|
|
|
// don't allow a page break before a repeated element ...
|
2010-05-13 07:15:49 -07:00
|
|
|
nsTableRowGroupFrame* nextRg = do_QueryFrame(aNextFrame);
|
2010-05-26 22:31:11 -07:00
|
|
|
if ((display->mBreakBefore ||
|
|
|
|
(nextRg && nextRg->HasInternalBreakBefore())) &&
|
2010-05-13 07:15:49 -07:00
|
|
|
!IsRepeatedFrame(aNextFrame)) {
|
|
|
|
return !IsRepeatedFrame(aSourceFrame); // or after
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// XXX this needs to be cleaned up so that the frame constructor breaks out col group
|
|
|
|
// frames into a separate child list, bug 343048.
|
|
|
|
NS_IMETHODIMP
|
2011-08-24 13:54:30 -07:00
|
|
|
nsTableFrame::SetInitialChildList(ChildListID aListID,
|
2009-07-28 05:53:20 -07:00
|
|
|
nsFrameList& aChildList)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
|
|
|
|
if (!mFrames.IsEmpty() || !mColGroups.IsEmpty()) {
|
|
|
|
// We already have child frames which means we've already been
|
|
|
|
// initialized
|
|
|
|
NS_NOTREACHED("unexpected second call to SetInitialChildList");
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
2011-08-24 13:54:30 -07:00
|
|
|
if (aListID != kPrincipalList) {
|
|
|
|
// All we know about is the principal child list.
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_NOTREACHED("unknown frame list");
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
2010-04-27 09:15:01 -07:00
|
|
|
}
|
2009-07-28 05:53:20 -07:00
|
|
|
|
|
|
|
// XXXbz the below code is an icky cesspit that's only needed in its current
|
|
|
|
// form for two reasons:
|
|
|
|
// 1) Both rowgroups and column groups come in on the principal child list.
|
2009-09-18 04:09:36 -07:00
|
|
|
while (aChildList.NotEmpty()) {
|
2009-07-28 05:53:20 -07:00
|
|
|
nsIFrame* childFrame = aChildList.FirstChild();
|
2009-09-18 04:09:36 -07:00
|
|
|
aChildList.RemoveFirstChild();
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsStyleDisplay* childDisplay = childFrame->GetStyleDisplay();
|
2009-07-28 05:53:20 -07:00
|
|
|
|
2009-09-18 04:09:36 -07:00
|
|
|
if (NS_STYLE_DISPLAY_TABLE_COLUMN_GROUP == childDisplay->mDisplay) {
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(nsGkAtoms::tableColGroupFrame == childFrame->GetType(),
|
|
|
|
"This is not a colgroup");
|
2009-09-18 04:09:36 -07:00
|
|
|
mColGroups.AppendFrame(nsnull, childFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-09-18 04:09:36 -07:00
|
|
|
else { // row groups and unknown frames go on the main list for now
|
|
|
|
mFrames.AppendFrame(nsnull, childFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a prev-in-flow, then we're a table that has been split and
|
|
|
|
// so don't treat this like an append
|
|
|
|
if (!GetPrevInFlow()) {
|
|
|
|
// process col groups first so that real cols get constructed before
|
|
|
|
// anonymous ones due to cells in rows.
|
2009-07-30 10:23:32 -07:00
|
|
|
InsertColGroups(0, mColGroups);
|
|
|
|
InsertRowGroups(mFrames);
|
2010-04-27 09:15:01 -07:00
|
|
|
// calc collapsing borders
|
2008-08-04 00:14:39 -07:00
|
|
|
if (IsBorderCollapse()) {
|
2011-10-27 06:58:44 -07:00
|
|
|
SetFullBCDamageArea();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsTableFrame::AttributeChangedFor(nsIFrame* aFrame,
|
2010-04-27 09:15:01 -07:00
|
|
|
nsIContent* aContent,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIAtom* aAttribute)
|
|
|
|
{
|
2009-03-24 15:10:06 -07:00
|
|
|
nsTableCellFrame *cellFrame = do_QueryFrame(aFrame);
|
|
|
|
if (cellFrame) {
|
2010-04-27 09:15:01 -07:00
|
|
|
if ((nsGkAtoms::rowspan == aAttribute) ||
|
2007-03-22 10:30:00 -07:00
|
|
|
(nsGkAtoms::colspan == aAttribute)) {
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
|
|
|
// for now just remove the cell from the map and reinsert it
|
|
|
|
PRInt32 rowIndex, colIndex;
|
|
|
|
cellFrame->GetRowIndex(rowIndex);
|
|
|
|
cellFrame->GetColIndex(colIndex);
|
|
|
|
RemoveCell(cellFrame, rowIndex);
|
2009-02-05 01:09:50 -08:00
|
|
|
nsAutoTArray<nsTableCellFrame*, 1> cells;
|
2007-03-22 10:30:00 -07:00
|
|
|
cells.AppendElement(cellFrame);
|
|
|
|
InsertCells(cells, rowIndex, colIndex - 1);
|
|
|
|
|
|
|
|
// XXX Should this use eStyleChange? It currently doesn't need
|
|
|
|
// to, but it might given more optimization.
|
2007-05-06 12:16:51 -07:00
|
|
|
PresContext()->PresShell()->
|
|
|
|
FrameNeedsReflow(this, nsIPresShell::eTreeChange, NS_FRAME_IS_DIRTY);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ****** CellMap methods ******* */
|
|
|
|
|
|
|
|
/* return the effective col count */
|
|
|
|
PRInt32 nsTableFrame::GetEffectiveColCount() const
|
|
|
|
{
|
|
|
|
PRInt32 colCount = GetColCount();
|
2008-09-24 10:14:35 -07:00
|
|
|
if (LayoutStrategy()->GetType() == nsITableLayoutStrategy::Auto) {
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (!cellMap) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// don't count cols at the end that don't have originating cells
|
|
|
|
for (PRInt32 colX = colCount - 1; colX >= 0; colX--) {
|
2010-04-27 09:15:01 -07:00
|
|
|
if (cellMap->GetNumCellsOriginatingInCol(colX) > 0) {
|
2008-09-24 10:14:35 -07:00
|
|
|
break;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
colCount--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return colCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 nsTableFrame::GetIndexOfLastRealCol()
|
|
|
|
{
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 numCols = mColFrames.Length();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (numCols > 0) {
|
2010-04-27 09:15:01 -07:00
|
|
|
for (PRInt32 colX = numCols - 1; colX >= 0; colX--) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableColFrame* colFrame = GetColFrame(colX);
|
|
|
|
if (colFrame) {
|
|
|
|
if (eColAnonymousCell != colFrame->GetColType()) {
|
|
|
|
return colX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
return -1;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsTableColFrame*
|
|
|
|
nsTableFrame::GetColFrame(PRInt32 aColIndex) const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!GetPrevInFlow(), "GetColFrame called on next in flow");
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 numCols = mColFrames.Length();
|
2007-03-22 10:30:00 -07:00
|
|
|
if ((aColIndex >= 0) && (aColIndex < numCols)) {
|
2009-02-05 01:09:50 -08:00
|
|
|
return mColFrames.ElementAt(aColIndex);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
NS_ERROR("invalid col index");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 nsTableFrame::GetEffectiveRowSpan(PRInt32 aRowIndex,
|
|
|
|
const nsTableCellFrame& aCell) const
|
|
|
|
{
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
NS_PRECONDITION (nsnull != cellMap, "bad call, cellMap not yet allocated.");
|
|
|
|
|
|
|
|
PRInt32 colIndex;
|
|
|
|
aCell.GetColIndex(colIndex);
|
|
|
|
return cellMap->GetEffectiveRowSpan(aRowIndex, colIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 nsTableFrame::GetEffectiveRowSpan(const nsTableCellFrame& aCell,
|
|
|
|
nsCellMap* aCellMap)
|
|
|
|
{
|
|
|
|
nsTableCellMap* tableCellMap = GetCellMap(); if (!tableCellMap) ABORT1(1);
|
|
|
|
|
|
|
|
PRInt32 colIndex, rowIndex;
|
|
|
|
aCell.GetColIndex(colIndex);
|
|
|
|
aCell.GetRowIndex(rowIndex);
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
if (aCellMap)
|
2011-10-17 07:59:28 -07:00
|
|
|
return aCellMap->GetRowSpan(rowIndex, colIndex, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
return tableCellMap->GetEffectiveRowSpan(rowIndex, colIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 nsTableFrame::GetEffectiveColSpan(const nsTableCellFrame& aCell,
|
|
|
|
nsCellMap* aCellMap) const
|
|
|
|
{
|
|
|
|
nsTableCellMap* tableCellMap = GetCellMap(); if (!tableCellMap) ABORT1(1);
|
|
|
|
|
|
|
|
PRInt32 colIndex, rowIndex;
|
|
|
|
aCell.GetColIndex(colIndex);
|
|
|
|
aCell.GetRowIndex(rowIndex);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ignore;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
if (aCellMap)
|
2007-03-22 10:30:00 -07:00
|
|
|
return aCellMap->GetEffectiveColSpan(*tableCellMap, rowIndex, colIndex, ignore);
|
|
|
|
else
|
|
|
|
return tableCellMap->GetEffectiveColSpan(rowIndex, colIndex);
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool nsTableFrame::HasMoreThanOneCell(PRInt32 aRowIndex) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsTableCellMap* tableCellMap = GetCellMap(); if (!tableCellMap) ABORT1(1);
|
|
|
|
return tableCellMap->HasMoreThanOneCell(aRowIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsTableFrame::AdjustRowIndices(PRInt32 aRowIndex,
|
|
|
|
PRInt32 aAdjustment)
|
|
|
|
{
|
2010-04-27 09:15:01 -07:00
|
|
|
// Iterate over the row groups and adjust the row indices of all rows
|
2007-03-22 10:30:00 -07:00
|
|
|
// whose index is >= aRowIndex.
|
2007-06-05 11:55:26 -07:00
|
|
|
RowGroupArray rowGroups;
|
|
|
|
OrderRowGroups(rowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-06-05 11:55:26 -07:00
|
|
|
for (PRUint32 rgX = 0; rgX < rowGroups.Length(); rgX++) {
|
|
|
|
rowGroups[rgX]->AdjustRowIndices(aRowIndex, aAdjustment);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-30 10:23:32 -07:00
|
|
|
void nsTableFrame::ResetRowIndices(const nsFrameList::Slice& aRowGroupsToExclude)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Iterate over the row groups and adjust the row indices of all rows
|
|
|
|
// omit the rowgroups that will be inserted later
|
2007-06-05 11:55:26 -07:00
|
|
|
RowGroupArray rowGroups;
|
|
|
|
OrderRowGroups(rowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRInt32 rowIndex = 0;
|
2010-01-16 08:05:46 -08:00
|
|
|
nsTHashtable<nsPtrHashKey<nsTableRowGroupFrame> > excludeRowGroups;
|
2012-05-18 10:30:49 -07:00
|
|
|
excludeRowGroups.Init();
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList::Enumerator excludeRowGroupsEnumerator(aRowGroupsToExclude);
|
2010-01-16 08:05:46 -08:00
|
|
|
while (!excludeRowGroupsEnumerator.AtEnd()) {
|
|
|
|
excludeRowGroups.PutEntry(static_cast<nsTableRowGroupFrame*>(excludeRowGroupsEnumerator.get()));
|
2009-07-30 10:23:32 -07:00
|
|
|
excludeRowGroupsEnumerator.Next();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-06-05 11:55:26 -07:00
|
|
|
for (PRUint32 rgX = 0; rgX < rowGroups.Length(); rgX++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = rowGroups[rgX];
|
2010-01-16 08:05:46 -08:00
|
|
|
if (!excludeRowGroups.GetEntry(rgFrame)) {
|
2011-08-24 13:54:30 -07:00
|
|
|
const nsFrameList& rowFrames = rgFrame->PrincipalChildList();
|
2009-07-30 10:23:32 -07:00
|
|
|
for (nsFrameList::Enumerator rows(rowFrames); !rows.AtEnd(); rows.Next()) {
|
|
|
|
if (NS_STYLE_DISPLAY_TABLE_ROW==rows.get()->GetStyleDisplay()->mDisplay) {
|
|
|
|
((nsTableRowFrame *)rows.get())->SetRowIndex(rowIndex);
|
2007-03-22 10:30:00 -07:00
|
|
|
rowIndex++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-30 10:23:32 -07:00
|
|
|
void nsTableFrame::InsertColGroups(PRInt32 aStartColIndex,
|
|
|
|
const nsFrameList::Slice& aColGroups)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
PRInt32 colIndex = aStartColIndex;
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList::Enumerator colGroups(aColGroups);
|
|
|
|
for (; !colGroups.AtEnd(); colGroups.Next()) {
|
2012-06-01 12:56:33 -07:00
|
|
|
MOZ_ASSERT(colGroups.get()->GetType() == nsGkAtoms::tableColGroupFrame);
|
2009-07-30 10:23:32 -07:00
|
|
|
nsTableColGroupFrame* cgFrame =
|
|
|
|
static_cast<nsTableColGroupFrame*>(colGroups.get());
|
|
|
|
cgFrame->SetStartColumnIndex(colIndex);
|
|
|
|
// XXXbz this sucks. AddColsToTable will actually remove colgroups from
|
|
|
|
// the list we're traversing! Need to fix things here. :( I guess this is
|
|
|
|
// why the old code used pointer-to-last-frame as opposed to
|
|
|
|
// pointer-to-frame-after-last....
|
|
|
|
|
|
|
|
// How about dealing with this by storing a const reference to the
|
|
|
|
// mNextSibling of the framelist's last frame, instead of storing a pointer
|
|
|
|
// to the first-after-next frame? Will involve making nsFrameList friend
|
|
|
|
// of nsIFrame, but it's time for that anyway.
|
2011-10-17 07:59:28 -07:00
|
|
|
cgFrame->AddColsToTable(colIndex, false,
|
2011-08-24 13:54:30 -07:00
|
|
|
colGroups.get()->PrincipalChildList());
|
2009-07-30 10:23:32 -07:00
|
|
|
PRInt32 numCols = cgFrame->GetColCount();
|
|
|
|
colIndex += numCols;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList::Enumerator remainingColgroups = colGroups.GetUnlimitedEnumerator();
|
|
|
|
if (!remainingColgroups.AtEnd()) {
|
|
|
|
nsTableColGroupFrame::ResetColIndices(
|
|
|
|
static_cast<nsTableColGroupFrame*>(remainingColgroups.get()), colIndex);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsTableFrame::InsertCol(nsTableColFrame& aColFrame,
|
|
|
|
PRInt32 aColIndex)
|
|
|
|
{
|
2009-02-05 01:09:50 -08:00
|
|
|
mColFrames.InsertElementAt(aColIndex, &aColFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableColType insertedColType = aColFrame.GetColType();
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 numCacheCols = mColFrames.Length();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
|
|
|
PRInt32 numMapCols = cellMap->GetColCount();
|
|
|
|
if (numCacheCols > numMapCols) {
|
2011-09-28 23:19:26 -07:00
|
|
|
bool removedFromCache = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (eColAnonymousCell != insertedColType) {
|
2009-02-05 01:09:50 -08:00
|
|
|
nsTableColFrame* lastCol = mColFrames.ElementAt(numCacheCols - 1);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (lastCol) {
|
|
|
|
nsTableColType lastColType = lastCol->GetColType();
|
|
|
|
if (eColAnonymousCell == lastColType) {
|
|
|
|
// remove the col from the cache
|
|
|
|
mColFrames.RemoveElementAt(numCacheCols - 1);
|
|
|
|
// remove the col from the eColGroupAnonymousCell col group
|
|
|
|
nsTableColGroupFrame* lastColGroup = (nsTableColGroupFrame *)mColGroups.LastChild();
|
|
|
|
if (lastColGroup) {
|
2011-10-17 07:59:28 -07:00
|
|
|
lastColGroup->RemoveChild(*lastCol, false);
|
2011-02-15 16:35:52 -08:00
|
|
|
|
|
|
|
// remove the col group if it is empty
|
|
|
|
if (lastColGroup->GetColCount() <= 0) {
|
|
|
|
mColGroups.DestroyFrame((nsIFrame*)lastColGroup);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
removedFromCache = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!removedFromCache) {
|
|
|
|
cellMap->AddColsAtEnd(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// for now, just bail and recalc all of the collapsing borders
|
|
|
|
if (IsBorderCollapse()) {
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea(aColIndex, 0, 1, GetRowCount());
|
2011-10-27 06:58:44 -07:00
|
|
|
AddBCDamageArea(damageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsTableFrame::RemoveCol(nsTableColGroupFrame* aColGroupFrame,
|
|
|
|
PRInt32 aColIndex,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aRemoveFromCache,
|
|
|
|
bool aRemoveFromCellMap)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (aRemoveFromCache) {
|
|
|
|
mColFrames.RemoveElementAt(aColIndex);
|
|
|
|
}
|
|
|
|
if (aRemoveFromCellMap) {
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
2009-07-12 10:47:10 -07:00
|
|
|
AppendAnonymousColFrames(1);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// for now, just bail and recalc all of the collapsing borders
|
|
|
|
if (IsBorderCollapse()) {
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea(0, 0, GetColCount(), GetRowCount());
|
2011-10-27 06:58:44 -07:00
|
|
|
AddBCDamageArea(damageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the cell map for this table frame. It is not always mCellMap.
|
|
|
|
* Only the firstInFlow has a legit cell map
|
|
|
|
*/
|
|
|
|
nsTableCellMap* nsTableFrame::GetCellMap() const
|
|
|
|
{
|
|
|
|
nsTableFrame* firstInFlow = (nsTableFrame *)GetFirstInFlow();
|
|
|
|
return firstInFlow->mCellMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX this needs to be moved to nsCSSFrameConstructor
|
|
|
|
nsTableColGroupFrame*
|
|
|
|
nsTableFrame::CreateAnonymousColGroupFrame(nsTableColGroupType aColGroupType)
|
|
|
|
{
|
|
|
|
nsIContent* colGroupContent = GetContent();
|
2007-03-30 14:11:41 -07:00
|
|
|
nsPresContext* presContext = PresContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIPresShell *shell = presContext->PresShell();
|
|
|
|
|
|
|
|
nsRefPtr<nsStyleContext> colGroupStyle;
|
2009-12-10 23:37:40 -08:00
|
|
|
colGroupStyle = shell->StyleSet()->
|
|
|
|
ResolveAnonymousBoxStyle(nsCSSAnonBoxes::tableColGroup, mStyleContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
// Create a col group frame
|
|
|
|
nsIFrame* newFrame = NS_NewTableColGroupFrame(shell, colGroupStyle);
|
|
|
|
if (newFrame) {
|
|
|
|
((nsTableColGroupFrame *)newFrame)->SetColType(aColGroupType);
|
|
|
|
newFrame->Init(colGroupContent, this, nsnull);
|
|
|
|
}
|
|
|
|
return (nsTableColGroupFrame *)newFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-07-12 10:47:10 -07:00
|
|
|
nsTableFrame::AppendAnonymousColFrames(PRInt32 aNumColsToAdd)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// get the last col group frame
|
2009-07-28 05:53:18 -07:00
|
|
|
nsTableColGroupFrame* colGroupFrame =
|
|
|
|
static_cast<nsTableColGroupFrame*>(mColGroups.LastChild());
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-07-28 05:53:18 -07:00
|
|
|
if (!colGroupFrame ||
|
|
|
|
(colGroupFrame->GetColType() != eColGroupAnonymousCell)) {
|
2009-07-12 10:47:10 -07:00
|
|
|
PRInt32 colIndex = (colGroupFrame) ?
|
|
|
|
colGroupFrame->GetStartColumnIndex() +
|
|
|
|
colGroupFrame->GetColCount() : 0;
|
|
|
|
colGroupFrame = CreateAnonymousColGroupFrame(eColGroupAnonymousCell);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!colGroupFrame) {
|
|
|
|
return;
|
|
|
|
}
|
2009-07-12 10:47:10 -07:00
|
|
|
// add the new frame to the child list
|
|
|
|
mColGroups.AppendFrame(this, colGroupFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
colGroupFrame->SetStartColumnIndex(colIndex);
|
|
|
|
}
|
2009-07-28 05:53:18 -07:00
|
|
|
AppendAnonymousColFrames(colGroupFrame, aNumColsToAdd, eColAnonymousCell,
|
2011-10-17 07:59:28 -07:00
|
|
|
true);
|
2009-07-12 10:47:10 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// XXX this needs to be moved to nsCSSFrameConstructor
|
2010-04-27 09:15:01 -07:00
|
|
|
// Right now it only creates the col frames at the end
|
2007-03-22 10:30:00 -07:00
|
|
|
void
|
2009-07-28 05:53:18 -07:00
|
|
|
nsTableFrame::AppendAnonymousColFrames(nsTableColGroupFrame* aColGroupFrame,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 aNumColsToAdd,
|
|
|
|
nsTableColType aColType,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aAddToTable)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aColGroupFrame, "null frame");
|
2007-12-05 11:38:26 -08:00
|
|
|
NS_PRECONDITION(aColType != eColAnonymousCol, "Shouldn't happen");
|
|
|
|
|
2009-07-28 05:53:18 -07:00
|
|
|
nsIPresShell *shell = PresContext()->PresShell();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Get the last col frame
|
2009-09-18 04:09:36 -07:00
|
|
|
nsFrameList newColFrames;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 startIndex = mColFrames.Length();
|
2010-04-27 09:15:01 -07:00
|
|
|
PRInt32 lastIndex = startIndex + aNumColsToAdd - 1;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
for (PRInt32 childX = startIndex; childX <= lastIndex; childX++) {
|
|
|
|
nsIContent* iContent;
|
|
|
|
nsRefPtr<nsStyleContext> styleContext;
|
|
|
|
nsStyleContext* parentStyleContext;
|
|
|
|
|
2007-12-05 11:38:26 -08:00
|
|
|
// all anonymous cols that we create here use a pseudo style context of the
|
|
|
|
// col group
|
|
|
|
iContent = aColGroupFrame->GetContent();
|
|
|
|
parentStyleContext = aColGroupFrame->GetStyleContext();
|
2009-12-10 23:37:40 -08:00
|
|
|
styleContext = shell->StyleSet()->
|
|
|
|
ResolveAnonymousBoxStyle(nsCSSAnonBoxes::tableCol, parentStyleContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
// ASSERTION to check for bug 54454 sneaking back in...
|
|
|
|
NS_ASSERTION(iContent, "null content in CreateAnonymousColFrames");
|
|
|
|
|
|
|
|
// create the new col frame
|
|
|
|
nsIFrame* colFrame = NS_NewTableColFrame(shell, styleContext);
|
|
|
|
((nsTableColFrame *) colFrame)->SetColType(aColType);
|
|
|
|
colFrame->Init(iContent, aColGroupFrame, nsnull);
|
|
|
|
|
2009-09-18 04:09:36 -07:00
|
|
|
newColFrames.AppendFrame(nsnull, colFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-07-28 05:53:18 -07:00
|
|
|
nsFrameList& cols = aColGroupFrame->GetWritableChildList();
|
|
|
|
nsIFrame* oldLastCol = cols.LastChild();
|
2009-07-30 10:23:32 -07:00
|
|
|
const nsFrameList::Slice& newCols =
|
|
|
|
cols.InsertFrames(nsnull, oldLastCol, newColFrames);
|
2009-07-28 05:53:18 -07:00
|
|
|
if (aAddToTable) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// get the starting col index in the cache
|
2009-07-28 05:53:18 -07:00
|
|
|
PRInt32 startColIndex;
|
|
|
|
if (oldLastCol) {
|
|
|
|
startColIndex =
|
|
|
|
static_cast<nsTableColFrame*>(oldLastCol)->GetColIndex() + 1;
|
|
|
|
} else {
|
|
|
|
startColIndex = aColGroupFrame->GetStartColumnIndex();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-07-28 05:53:18 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
aColGroupFrame->AddColsToTable(startColIndex, true, newCols);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsTableFrame::MatchCellMapToColCache(nsTableCellMap* aCellMap)
|
|
|
|
{
|
|
|
|
PRInt32 numColsInMap = GetColCount();
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 numColsInCache = mColFrames.Length();
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 numColsToAdd = numColsInMap - numColsInCache;
|
|
|
|
if (numColsToAdd > 0) {
|
|
|
|
// this sets the child list, updates the col cache and cell map
|
2009-07-12 10:47:10 -07:00
|
|
|
AppendAnonymousColFrames(numColsToAdd);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (numColsToAdd < 0) {
|
|
|
|
PRInt32 numColsNotRemoved = DestroyAnonymousColFrames(-numColsToAdd);
|
|
|
|
// if the cell map has fewer cols than the cache, correct it
|
|
|
|
if (numColsNotRemoved > 0) {
|
|
|
|
aCellMap->AddColsAtEnd(numColsNotRemoved);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (numColsToAdd && HasZeroColSpans()) {
|
2011-10-17 07:59:28 -07:00
|
|
|
SetNeedColSpanExpansion(true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (NeedColSpanExpansion()) {
|
|
|
|
// This flag can be set in two ways -- either by changing
|
|
|
|
// the number of columns (that happens in the block above),
|
|
|
|
// or by adding a cell with colspan="0" to the cellmap. To
|
|
|
|
// handle the latter case we need to explicitly check the
|
|
|
|
// flag here -- it may be set even if the number of columns
|
|
|
|
// did not change.
|
|
|
|
//
|
|
|
|
// @see nsCellMap::AppendCell
|
|
|
|
|
|
|
|
aCellMap->ExpandZeroColSpans();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsTableFrame::DidResizeColumns()
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(!GetPrevInFlow(),
|
|
|
|
"should only be called on first-in-flow");
|
|
|
|
if (mBits.mResizedColumns)
|
|
|
|
return; // already marked
|
|
|
|
|
|
|
|
for (nsTableFrame *f = this; f;
|
2007-07-08 00:08:04 -07:00
|
|
|
f = static_cast<nsTableFrame*>(f->GetNextInFlow()))
|
2011-10-17 07:59:28 -07:00
|
|
|
f->mBits.mResizedColumns = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsTableFrame::AppendCell(nsTableCellFrame& aCellFrame,
|
|
|
|
PRInt32 aRowIndex)
|
|
|
|
{
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea(0,0,0,0);
|
2011-10-17 07:59:28 -07:00
|
|
|
cellMap->AppendCell(aCellFrame, aRowIndex, true, damageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
MatchCellMapToColCache(cellMap);
|
|
|
|
if (IsBorderCollapse()) {
|
2011-10-27 06:58:44 -07:00
|
|
|
AddBCDamageArea(damageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-05 01:09:50 -08:00
|
|
|
void nsTableFrame::InsertCells(nsTArray<nsTableCellFrame*>& aCellFrames,
|
|
|
|
PRInt32 aRowIndex,
|
|
|
|
PRInt32 aColIndexBefore)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea(0,0,0,0);
|
2007-03-22 10:30:00 -07:00
|
|
|
cellMap->InsertCells(aCellFrames, aRowIndex, aColIndexBefore, damageArea);
|
|
|
|
MatchCellMapToColCache(cellMap);
|
|
|
|
if (IsBorderCollapse()) {
|
2011-10-27 06:58:44 -07:00
|
|
|
AddBCDamageArea(damageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// this removes the frames from the col group and table, but not the cell map
|
2010-04-27 09:15:01 -07:00
|
|
|
PRInt32
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::DestroyAnonymousColFrames(PRInt32 aNumFrames)
|
|
|
|
{
|
|
|
|
// only remove cols that are of type eTypeAnonymous cell (they are at the end)
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 endIndex = mColFrames.Length() - 1;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 startIndex = (endIndex - aNumFrames) + 1;
|
|
|
|
PRInt32 numColsRemoved = 0;
|
|
|
|
for (PRInt32 colX = endIndex; colX >= startIndex; colX--) {
|
|
|
|
nsTableColFrame* colFrame = GetColFrame(colX);
|
|
|
|
if (colFrame && (eColAnonymousCell == colFrame->GetColType())) {
|
|
|
|
nsTableColGroupFrame* cgFrame =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsTableColGroupFrame*>(colFrame->GetParent());
|
2007-03-22 10:30:00 -07:00
|
|
|
// remove the frame from the colgroup
|
2011-10-17 07:59:28 -07:00
|
|
|
cgFrame->RemoveChild(*colFrame, false);
|
2010-04-27 09:15:01 -07:00
|
|
|
// remove the frame from the cache, but not the cell map
|
2011-10-17 07:59:28 -07:00
|
|
|
RemoveCol(nsnull, colX, true, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
numColsRemoved++;
|
|
|
|
}
|
|
|
|
else {
|
2010-04-27 09:15:01 -07:00
|
|
|
break;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return (aNumFrames - numColsRemoved);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsTableFrame::RemoveCell(nsTableCellFrame* aCellFrame,
|
|
|
|
PRInt32 aRowIndex)
|
|
|
|
{
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea(0,0,0,0);
|
2007-03-22 10:30:00 -07:00
|
|
|
cellMap->RemoveCell(aCellFrame, aRowIndex, damageArea);
|
|
|
|
MatchCellMapToColCache(cellMap);
|
|
|
|
if (IsBorderCollapse()) {
|
2011-10-27 06:58:44 -07:00
|
|
|
AddBCDamageArea(damageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32
|
2010-01-16 08:05:46 -08:00
|
|
|
nsTableFrame::GetStartRowIndex(nsTableRowGroupFrame* aRowGroupFrame)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-06-05 11:55:26 -07:00
|
|
|
RowGroupArray orderedRowGroups;
|
|
|
|
OrderRowGroups(orderedRowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRInt32 rowIndex = 0;
|
2007-06-05 11:55:26 -07:00
|
|
|
for (PRUint32 rgIndex = 0; rgIndex < orderedRowGroups.Length(); rgIndex++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = orderedRowGroups[rgIndex];
|
2010-01-16 08:05:46 -08:00
|
|
|
if (rgFrame == aRowGroupFrame) {
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
PRInt32 numRows = rgFrame->GetRowCount();
|
|
|
|
rowIndex += numRows;
|
|
|
|
}
|
|
|
|
return rowIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this cannot extend beyond a single row group
|
2010-01-16 08:05:46 -08:00
|
|
|
void nsTableFrame::AppendRows(nsTableRowGroupFrame* aRowGroupFrame,
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 aRowIndex,
|
|
|
|
nsTArray<nsTableRowFrame*>& aRowFrames)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
|
|
|
PRInt32 absRowIndex = GetStartRowIndex(aRowGroupFrame) + aRowIndex;
|
2011-10-17 07:59:28 -07:00
|
|
|
InsertRows(aRowGroupFrame, aRowFrames, absRowIndex, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// this cannot extend beyond a single row group
|
|
|
|
PRInt32
|
2010-01-16 08:05:46 -08:00
|
|
|
nsTableFrame::InsertRows(nsTableRowGroupFrame* aRowGroupFrame,
|
2009-02-05 01:09:50 -08:00
|
|
|
nsTArray<nsTableRowFrame*>& aRowFrames,
|
|
|
|
PRInt32 aRowIndex,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aConsiderSpans)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
#ifdef DEBUG_TABLE_CELLMAP
|
|
|
|
printf("=== insertRowsBefore firstRow=%d \n", aRowIndex);
|
2011-10-17 07:59:28 -07:00
|
|
|
Dump(true, false, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
PRInt32 numColsToAdd = 0;
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea(0,0,0,0);
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 origNumRows = cellMap->GetRowCount();
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 numNewRows = aRowFrames.Length();
|
2007-03-22 10:30:00 -07:00
|
|
|
cellMap->InsertRows(aRowGroupFrame, aRowFrames, aRowIndex, aConsiderSpans, damageArea);
|
|
|
|
MatchCellMapToColCache(cellMap);
|
|
|
|
if (aRowIndex < origNumRows) {
|
|
|
|
AdjustRowIndices(aRowIndex, numNewRows);
|
|
|
|
}
|
|
|
|
// assign the correct row indices to the new rows. If they were adjusted above
|
|
|
|
// it may not have been done correctly because each row is constructed with index 0
|
2009-06-21 09:31:40 -07:00
|
|
|
for (PRInt32 rowY = 0; rowY < numNewRows; rowY++) {
|
|
|
|
nsTableRowFrame* rowFrame = aRowFrames.ElementAt(rowY);
|
|
|
|
rowFrame->SetRowIndex(aRowIndex + rowY);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (IsBorderCollapse()) {
|
2011-10-27 06:58:44 -07:00
|
|
|
AddBCDamageArea(damageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef DEBUG_TABLE_CELLMAP
|
|
|
|
printf("=== insertRowsAfter \n");
|
2011-10-17 07:59:28 -07:00
|
|
|
Dump(true, false, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return numColsToAdd;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this cannot extend beyond a single row group
|
|
|
|
void nsTableFrame::RemoveRows(nsTableRowFrame& aFirstRowFrame,
|
|
|
|
PRInt32 aNumRowsToRemove,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aConsiderSpans)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
#ifdef TBD_OPTIMIZATION
|
2010-04-27 09:15:01 -07:00
|
|
|
// decide if we need to rebalance. we have to do this here because the row group
|
2007-03-22 10:30:00 -07:00
|
|
|
// cannot do it when it gets the dirty reflow corresponding to the frame being destroyed
|
2011-09-28 23:19:26 -07:00
|
|
|
bool stopTelling = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
for (nsIFrame* kidFrame = aFirstFrame.FirstChild(); (kidFrame && !stopAsking);
|
|
|
|
kidFrame = kidFrame->GetNextSibling()) {
|
2009-03-24 15:10:06 -07:00
|
|
|
nsTableCellFrame *cellFrame = do_QueryFrame(kidFrame);
|
|
|
|
if (cellFrame) {
|
2010-04-27 09:15:01 -07:00
|
|
|
stopTelling = tableFrame->CellChangedWidth(*cellFrame, cellFrame->GetPass1MaxElementWidth(),
|
2011-10-17 07:59:28 -07:00
|
|
|
cellFrame->GetMaximumWidth(), true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
// XXX need to consider what happens if there are cells that have rowspans
|
2007-03-22 10:30:00 -07:00
|
|
|
// into the deleted row. Need to consider moving rows if a rebalance doesn't happen
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PRInt32 firstRowIndex = aFirstRowFrame.GetRowIndex();
|
|
|
|
#ifdef DEBUG_TABLE_CELLMAP
|
|
|
|
printf("=== removeRowsBefore firstRow=%d numRows=%d\n", firstRowIndex, aNumRowsToRemove);
|
2011-10-17 07:59:28 -07:00
|
|
|
Dump(true, false, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea(0,0,0,0);
|
2007-03-22 10:30:00 -07:00
|
|
|
cellMap->RemoveRows(firstRowIndex, aNumRowsToRemove, aConsiderSpans, damageArea);
|
|
|
|
MatchCellMapToColCache(cellMap);
|
|
|
|
if (IsBorderCollapse()) {
|
2011-10-27 06:58:44 -07:00
|
|
|
AddBCDamageArea(damageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
AdjustRowIndices(firstRowIndex, -aNumRowsToRemove);
|
|
|
|
#ifdef DEBUG_TABLE_CELLMAP
|
|
|
|
printf("=== removeRowsAfter\n");
|
2011-10-17 07:59:28 -07:00
|
|
|
Dump(true, true, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// collect the rows ancestors of aFrame
|
|
|
|
PRInt32
|
2009-02-05 01:09:50 -08:00
|
|
|
nsTableFrame::CollectRows(nsIFrame* aFrame,
|
|
|
|
nsTArray<nsTableRowFrame*>& aCollection)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-01-16 08:05:46 -08:00
|
|
|
NS_PRECONDITION(aFrame, "null frame");
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 numRows = 0;
|
2011-08-24 13:54:30 -07:00
|
|
|
nsIFrame* childFrame = aFrame->GetFirstPrincipalChild();
|
2010-01-16 08:05:46 -08:00
|
|
|
while (childFrame) {
|
|
|
|
aCollection.AppendElement(static_cast<nsTableRowFrame*>(childFrame));
|
|
|
|
numRows++;
|
|
|
|
childFrame = childFrame->GetNextSibling();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
return numRows;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-07-30 10:23:32 -07:00
|
|
|
nsTableFrame::InsertRowGroups(const nsFrameList::Slice& aRowGroups)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
#ifdef DEBUG_TABLE_CELLMAP
|
|
|
|
printf("=== insertRowGroupsBefore\n");
|
2011-10-17 07:59:28 -07:00
|
|
|
Dump(true, false, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
2007-06-05 11:55:26 -07:00
|
|
|
RowGroupArray orderedRowGroups;
|
|
|
|
OrderRowGroups(orderedRowGroups);
|
|
|
|
|
2009-02-05 01:09:50 -08:00
|
|
|
nsAutoTArray<nsTableRowFrame*, 8> rows;
|
2007-03-22 10:30:00 -07:00
|
|
|
// Loop over the rowgroups and check if some of them are new, if they are
|
|
|
|
// insert cellmaps in the order that is predefined by OrderRowGroups,
|
2009-07-30 10:23:32 -07:00
|
|
|
// XXXbz this code is O(N*M) where N is number of new rowgroups
|
|
|
|
// and M is number of rowgroups we have!
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 rgIndex;
|
2007-06-05 11:55:26 -07:00
|
|
|
for (rgIndex = 0; rgIndex < orderedRowGroups.Length(); rgIndex++) {
|
2009-07-30 10:23:32 -07:00
|
|
|
for (nsFrameList::Enumerator rowgroups(aRowGroups); !rowgroups.AtEnd();
|
|
|
|
rowgroups.Next()) {
|
2010-01-16 08:05:46 -08:00
|
|
|
if (orderedRowGroups[rgIndex] == rowgroups.get()) {
|
2007-06-05 11:55:26 -07:00
|
|
|
nsTableRowGroupFrame* priorRG =
|
2010-04-27 09:15:01 -07:00
|
|
|
(0 == rgIndex) ? nsnull : orderedRowGroups[rgIndex - 1];
|
2007-03-22 10:30:00 -07:00
|
|
|
// create and add the cell map for the row group
|
2010-01-16 08:05:46 -08:00
|
|
|
cellMap->InsertGroupCellMap(orderedRowGroups[rgIndex], priorRG);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cellMap->Synchronize(this);
|
2009-07-30 10:23:32 -07:00
|
|
|
ResetRowIndices(aRowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//now that the cellmaps are reordered too insert the rows
|
2007-06-05 11:55:26 -07:00
|
|
|
for (rgIndex = 0; rgIndex < orderedRowGroups.Length(); rgIndex++) {
|
2009-07-30 10:23:32 -07:00
|
|
|
for (nsFrameList::Enumerator rowgroups(aRowGroups); !rowgroups.AtEnd();
|
|
|
|
rowgroups.Next()) {
|
2010-01-16 08:05:46 -08:00
|
|
|
if (orderedRowGroups[rgIndex] == rowgroups.get()) {
|
2007-06-05 11:55:26 -07:00
|
|
|
nsTableRowGroupFrame* priorRG =
|
2010-04-27 09:15:01 -07:00
|
|
|
(0 == rgIndex) ? nsnull : orderedRowGroups[rgIndex - 1];
|
2007-03-22 10:30:00 -07:00
|
|
|
// collect the new row frames in an array and add them to the table
|
2009-07-30 10:23:32 -07:00
|
|
|
PRInt32 numRows = CollectRows(rowgroups.get(), rows);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (numRows > 0) {
|
|
|
|
PRInt32 rowIndex = 0;
|
|
|
|
if (priorRG) {
|
|
|
|
PRInt32 priorNumRows = priorRG->GetRowCount();
|
|
|
|
rowIndex = priorRG->GetStartRowIndex() + priorNumRows;
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
InsertRows(orderedRowGroups[rgIndex], rows, rowIndex, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
rows.Clear();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
#ifdef DEBUG_TABLE_CELLMAP
|
|
|
|
printf("=== insertRowGroupsAfter\n");
|
2011-10-17 07:59:28 -07:00
|
|
|
Dump(true, true, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Child frame enumeration
|
|
|
|
|
2012-03-07 17:57:37 -08:00
|
|
|
const nsFrameList&
|
2011-08-24 13:54:29 -07:00
|
|
|
nsTableFrame::GetChildList(ChildListID aListID) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-08-24 13:54:29 -07:00
|
|
|
if (aListID == kColGroupList) {
|
2009-07-28 05:51:09 -07:00
|
|
|
return mColGroups;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2011-12-27 12:18:48 -08:00
|
|
|
return nsContainerFrame::GetChildList(aListID);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-08-24 13:54:29 -07:00
|
|
|
void
|
|
|
|
nsTableFrame::GetChildLists(nsTArray<ChildList>* aLists) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-12-27 12:18:48 -08:00
|
|
|
nsContainerFrame::GetChildLists(aLists);
|
2011-08-24 13:54:29 -07:00
|
|
|
mColGroups.AppendIfNonempty(aLists, kColGroupList);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-04-06 04:34:14 -07:00
|
|
|
nsRect
|
2012-04-10 04:24:18 -07:00
|
|
|
nsDisplayTableItem::GetBounds(nsDisplayListBuilder* aBuilder, bool* aSnap) {
|
|
|
|
*aSnap = false;
|
2011-10-12 18:01:27 -07:00
|
|
|
return mFrame->GetVisualOverflowRectRelativeToSelf() + ToReferenceFrame();
|
2008-04-06 04:34:14 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2010-08-13 02:54:37 -07:00
|
|
|
nsDisplayTableItem::IsVaryingRelativeToMovingFrame(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsIFrame* aFrame)
|
2008-04-06 04:34:14 -07:00
|
|
|
{
|
|
|
|
if (!mPartHasFixedBackground)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2008-04-06 04:34:14 -07:00
|
|
|
|
2010-08-13 02:54:37 -07:00
|
|
|
// If aFrame is mFrame or an ancestor in this document, and aFrame is
|
|
|
|
// not the viewport frame, then moving aFrame will move mFrame
|
|
|
|
// relative to the viewport, so our fixed-pos background will change.
|
|
|
|
return mFrame == aFrame ||
|
|
|
|
nsLayoutUtils::IsProperAncestorFrame(aFrame, mFrame);
|
2008-04-06 04:34:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
nsDisplayTableItem::UpdateForFrameBackground(nsIFrame* aFrame)
|
|
|
|
{
|
2010-04-02 18:58:26 -07:00
|
|
|
nsStyleContext *bgSC;
|
|
|
|
if (!nsCSSRendering::FindBackground(aFrame->PresContext(), aFrame, &bgSC))
|
2008-04-06 04:34:14 -07:00
|
|
|
return;
|
2010-04-02 18:58:26 -07:00
|
|
|
if (!bgSC->GetStyleBackground()->HasFixedBackground())
|
2008-04-06 04:34:14 -07:00
|
|
|
return;
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mPartHasFixedBackground = true;
|
2008-04-06 04:34:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
class nsDisplayTableBorderBackground : public nsDisplayTableItem {
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
2010-08-13 03:01:13 -07:00
|
|
|
nsDisplayTableBorderBackground(nsDisplayListBuilder* aBuilder,
|
|
|
|
nsTableFrame* aFrame) :
|
|
|
|
nsDisplayTableItem(aBuilder, aFrame) {
|
2007-03-22 10:30:00 -07:00
|
|
|
MOZ_COUNT_CTOR(nsDisplayTableBorderBackground);
|
|
|
|
}
|
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
virtual ~nsDisplayTableBorderBackground() {
|
|
|
|
MOZ_COUNT_DTOR(nsDisplayTableBorderBackground);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-06 17:35:14 -07:00
|
|
|
virtual void Paint(nsDisplayListBuilder* aBuilder,
|
2011-04-07 18:04:40 -07:00
|
|
|
nsRenderingContext* aCtx);
|
2010-07-15 14:07:49 -07:00
|
|
|
NS_DISPLAY_DECL_NAME("TableBorderBackground", TYPE_TABLE_BORDER_BACKGROUND)
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
nsDisplayTableBorderBackground::Paint(nsDisplayListBuilder* aBuilder,
|
2011-04-07 18:04:40 -07:00
|
|
|
nsRenderingContext* aCtx)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsTableFrame*>(mFrame)->
|
2009-09-06 17:35:14 -07:00
|
|
|
PaintTableBorderBackground(*aCtx, mVisibleRect,
|
2010-08-13 03:01:58 -07:00
|
|
|
ToReferenceFrame(),
|
2009-09-12 15:44:18 -07:00
|
|
|
aBuilder->GetBackgroundPaintFlags());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt32 GetTablePartRank(nsDisplayItem* aItem)
|
|
|
|
{
|
|
|
|
nsIAtom* type = aItem->GetUnderlyingFrame()->GetType();
|
|
|
|
if (type == nsGkAtoms::tableFrame)
|
|
|
|
return 0;
|
|
|
|
if (type == nsGkAtoms::tableRowGroupFrame)
|
|
|
|
return 1;
|
|
|
|
if (type == nsGkAtoms::tableRowFrame)
|
|
|
|
return 2;
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool CompareByTablePartRank(nsDisplayItem* aItem1, nsDisplayItem* aItem2,
|
2007-03-22 10:30:00 -07:00
|
|
|
void* aClosure)
|
|
|
|
{
|
|
|
|
return GetTablePartRank(aItem1) <= GetTablePartRank(aItem2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ nsresult
|
|
|
|
nsTableFrame::GenericTraversal(nsDisplayListBuilder* aBuilder, nsFrame* aFrame,
|
|
|
|
const nsRect& aDirtyRect, const nsDisplayListSet& aLists)
|
|
|
|
{
|
|
|
|
// This is similar to what nsContainerFrame::BuildDisplayListForNonBlockChildren
|
|
|
|
// does, except that we allow the children's background and borders to go
|
|
|
|
// in our BorderBackground list. This doesn't really affect background
|
|
|
|
// painting --- the children won't actually draw their own backgrounds
|
|
|
|
// because the nsTableFrame already drew them, unless a child has its own
|
|
|
|
// stacking context, in which case the child won't use its passed-in
|
|
|
|
// BorderBackground list anyway. It does affect cell borders though; this
|
|
|
|
// lets us get cell borders into the nsTableFrame's BorderBackground list.
|
2011-08-24 13:54:30 -07:00
|
|
|
nsIFrame* kid = aFrame->GetFirstPrincipalChild();
|
2007-03-22 10:30:00 -07:00
|
|
|
while (kid) {
|
|
|
|
nsresult rv = aFrame->BuildDisplayListForChild(aBuilder, kid, aDirtyRect, aLists);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
kid = kid->GetNextSibling();
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ nsresult
|
|
|
|
nsTableFrame::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)
|
|
|
|
{
|
|
|
|
nsDisplayList eventsBorderBackground;
|
|
|
|
// If we need to sort the event backgrounds, then we'll put descendants'
|
|
|
|
// display items into their own set of lists.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool sortEventBackgrounds = aDisplayItem && aBuilder->IsForEventDelivery();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDisplayListCollection separatedCollection;
|
|
|
|
const nsDisplayListSet* lists = sortEventBackgrounds ? &separatedCollection : &aLists;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2008-04-06 04:34:14 -07:00
|
|
|
nsAutoPushCurrentTableItem pushTableItem;
|
|
|
|
if (aDisplayItem) {
|
|
|
|
pushTableItem.Push(aBuilder, aDisplayItem);
|
|
|
|
}
|
2009-12-12 10:50:25 -08:00
|
|
|
|
|
|
|
if (aFrame->IsVisibleForPainting(aBuilder)) {
|
|
|
|
nsDisplayTableItem* currentItem = aBuilder->GetCurrentTableItem();
|
2009-12-12 10:50:30 -08:00
|
|
|
// currentItem may be null, when none of the table parts have a
|
|
|
|
// background or border
|
|
|
|
if (currentItem) {
|
|
|
|
currentItem->UpdateForFrameBackground(aFrame);
|
|
|
|
}
|
|
|
|
|
2009-12-12 10:50:25 -08:00
|
|
|
// Paint the outset box-shadows for the table frames
|
2011-09-28 23:19:26 -07:00
|
|
|
bool hasBoxShadow = aFrame->GetStyleBorder()->mBoxShadow != nsnull;
|
2009-12-12 10:50:25 -08:00
|
|
|
if (hasBoxShadow) {
|
2010-08-13 03:01:13 -07:00
|
|
|
nsresult rv = lists->BorderBackground()->AppendNewToTop(
|
|
|
|
new (aBuilder) nsDisplayBoxShadowOuter(aBuilder, aFrame));
|
2009-12-12 10:50:25 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
2008-12-02 17:20:21 -08:00
|
|
|
|
2009-12-12 10:50:25 -08:00
|
|
|
// Create dedicated background display items per-frame when we're
|
|
|
|
// handling events.
|
|
|
|
// XXX how to handle collapsed borders?
|
|
|
|
if (aBuilder->IsForEventDelivery()) {
|
2010-08-13 03:01:13 -07:00
|
|
|
nsresult rv = lists->BorderBackground()->AppendNewToTop(
|
|
|
|
new (aBuilder) nsDisplayBackground(aBuilder, aFrame));
|
2009-12-12 10:50:25 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-12-12 10:50:25 -08:00
|
|
|
// Paint the inset box-shadows for the table frames
|
|
|
|
if (hasBoxShadow) {
|
2010-08-13 03:01:13 -07:00
|
|
|
nsresult rv = lists->BorderBackground()->AppendNewToTop(
|
|
|
|
new (aBuilder) nsDisplayBoxShadowInner(aBuilder, aFrame));
|
2009-12-12 10:50:25 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
2009-02-10 00:45:13 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult rv = aTraversal(aBuilder, aFrame, aDirtyRect, *lists);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (sortEventBackgrounds) {
|
|
|
|
// Ensure that the table frame event background goes before the
|
|
|
|
// table rowgroups event backgrounds, before the table row event backgrounds,
|
|
|
|
// before everything else (cells and their blocks)
|
|
|
|
separatedCollection.BorderBackground()->Sort(aBuilder, CompareByTablePartRank, nsnull);
|
|
|
|
separatedCollection.MoveTo(aLists);
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return aFrame->DisplayOutline(aBuilder, aLists);
|
|
|
|
}
|
|
|
|
|
2009-12-12 10:50:25 -08:00
|
|
|
#ifdef DEBUG
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2009-12-12 10:50:25 -08:00
|
|
|
IsFrameAllowedInTable(nsIAtom* aType)
|
|
|
|
{
|
|
|
|
return IS_TABLE_CELL(aType) ||
|
|
|
|
nsGkAtoms::tableRowFrame == aType ||
|
|
|
|
nsGkAtoms::tableRowGroupFrame == aType ||
|
|
|
|
nsGkAtoms::scrollFrame == aType ||
|
|
|
|
nsGkAtoms::tableFrame == aType ||
|
|
|
|
nsGkAtoms::tableColFrame == aType ||
|
|
|
|
nsGkAtoms::tableColGroupFrame == aType;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2010-02-11 13:40:46 -08:00
|
|
|
AnyTablePartHasBorderOrBackground(nsIFrame* aStart, nsIFrame* aEnd)
|
2009-12-12 10:50:25 -08:00
|
|
|
{
|
2010-02-11 13:40:46 -08:00
|
|
|
for (nsIFrame* f = aStart; f != aEnd; f = f->GetNextSibling()) {
|
2010-02-01 15:21:13 -08:00
|
|
|
NS_ASSERTION(IsFrameAllowedInTable(f->GetType()), "unexpected frame type");
|
|
|
|
|
2012-07-03 17:24:55 -07:00
|
|
|
if (f->GetStyleVisibility()->IsVisible() &&
|
|
|
|
(!f->GetStyleBackground()->IsTransparent() ||
|
|
|
|
f->GetStyleDisplay()->mAppearance ||
|
|
|
|
f->GetStyleBorder()->HasBorder()))
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2009-12-12 10:50:30 -08:00
|
|
|
|
2010-02-01 15:21:13 -08:00
|
|
|
nsTableCellFrame *cellFrame = do_QueryFrame(f);
|
|
|
|
if (cellFrame)
|
|
|
|
continue;
|
2009-12-12 10:50:30 -08:00
|
|
|
|
2011-08-24 13:54:30 -07:00
|
|
|
if (AnyTablePartHasBorderOrBackground(f->PrincipalChildList().FirstChild(), nsnull))
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2009-12-12 10:50:25 -08:00
|
|
|
}
|
2009-12-12 10:50:30 -08:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2009-12-12 10:50:25 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// table paint code is concerned primarily with borders and bg color
|
2010-04-27 09:15:01 -07:00
|
|
|
// SEC: TODO: adjust the rect for captions
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTableFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
|
|
|
{
|
|
|
|
DO_GLOBAL_REFLOW_COUNT_DSP_COLOR("nsTableFrame", NS_RGB(255,128,255));
|
|
|
|
|
2012-04-02 17:30:45 -07:00
|
|
|
nsDisplayTableItem* item = nsnull;
|
|
|
|
if (IsVisibleInSelection(aBuilder)) {
|
|
|
|
if (GetStyleVisibility()->IsVisible()) {
|
|
|
|
nsMargin deflate = GetDeflationForBackground(PresContext());
|
|
|
|
// If 'deflate' is (0,0,0,0) then we can paint the table background
|
|
|
|
// in its own display item, so do that to take advantage of
|
|
|
|
// opacity and visibility optimizations
|
|
|
|
if (deflate == nsMargin(0, 0, 0, 0)) {
|
2012-04-13 04:44:06 -07:00
|
|
|
nsDisplayBackground* bg;
|
|
|
|
nsresult rv = DisplayBackgroundUnconditional(aBuilder, aLists, false, &bg);
|
2012-04-02 17:30:45 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This background is created if any of the table parts are visible,
|
|
|
|
// or if we're doing event handling (since DisplayGenericTablePart
|
|
|
|
// needs the item for the |sortEventBackgrounds|-dependent code).
|
|
|
|
// Specific visibility decisions are delegated to the table background
|
|
|
|
// painter, which handles borders and backgrounds for the table.
|
|
|
|
if (aBuilder->IsForEventDelivery() ||
|
|
|
|
AnyTablePartHasBorderOrBackground(this, GetNextSibling()) ||
|
|
|
|
AnyTablePartHasBorderOrBackground(mColGroups.FirstChild(), nsnull)) {
|
|
|
|
item = new (aBuilder) nsDisplayTableBorderBackground(aBuilder, this);
|
|
|
|
nsresult rv = aLists.BorderBackground()->AppendNewToTop(item);
|
2009-07-21 17:44:52 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
}
|
2008-04-06 04:34:14 -07:00
|
|
|
return DisplayGenericTablePart(aBuilder, this, aDirtyRect, aLists, item);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-07-21 17:44:52 -07:00
|
|
|
nsMargin
|
|
|
|
nsTableFrame::GetDeflationForBackground(nsPresContext* aPresContext) const
|
|
|
|
{
|
|
|
|
if (eCompatibility_NavQuirks != aPresContext->CompatibilityMode() ||
|
|
|
|
!IsBorderCollapse())
|
|
|
|
return nsMargin(0,0,0,0);
|
|
|
|
|
|
|
|
return GetOuterBCBorder();
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// XXX We don't put the borders and backgrounds in tree order like we should.
|
|
|
|
// That requires some major surgery which we aren't going to do right now.
|
|
|
|
void
|
2011-04-07 18:04:40 -07:00
|
|
|
nsTableFrame::PaintTableBorderBackground(nsRenderingContext& aRenderingContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsRect& aDirtyRect,
|
2009-09-12 15:44:18 -07:00
|
|
|
nsPoint aPt, PRUint32 aBGPaintFlags)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-03-30 14:11:41 -07:00
|
|
|
nsPresContext* presContext = PresContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
TableBackgroundPainter painter(this, TableBackgroundPainter::eOrigin_Table,
|
2008-03-20 18:18:30 -07:00
|
|
|
presContext, aRenderingContext,
|
2009-09-12 15:44:18 -07:00
|
|
|
aDirtyRect, aPt, aBGPaintFlags);
|
2009-07-21 17:44:52 -07:00
|
|
|
nsMargin deflate = GetDeflationForBackground(presContext);
|
|
|
|
// If 'deflate' is (0,0,0,0) then we'll paint the table background
|
|
|
|
// in a separate display item, so don't do it here.
|
2011-04-18 20:07:22 -07:00
|
|
|
nsresult rv = painter.PaintTable(this, deflate, deflate != nsMargin(0, 0, 0, 0));
|
2009-07-21 17:44:52 -07:00
|
|
|
if (NS_FAILED(rv)) return;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (GetStyleVisibility()->IsVisible()) {
|
|
|
|
if (!IsBorderCollapse()) {
|
|
|
|
PRIntn skipSides = GetSkipSides();
|
2008-03-20 18:18:30 -07:00
|
|
|
nsRect rect(aPt, mRect.Size());
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCSSRendering::PaintBorder(presContext, aRenderingContext, this,
|
2010-04-02 18:58:26 -07:00
|
|
|
aDirtyRect, rect, mStyleContext, skipSides);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2008-03-20 18:18:30 -07:00
|
|
|
// XXX we should probably get rid of this translation at some stage
|
|
|
|
// But that would mean modifying PaintBCBorders, ugh
|
2011-04-07 18:04:40 -07:00
|
|
|
nsRenderingContext::AutoPushTranslation translate(&aRenderingContext, aPt);
|
2008-03-20 18:18:30 -07:00
|
|
|
PaintBCBorders(aRenderingContext, aDirtyRect - aPt);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRIntn
|
|
|
|
nsTableFrame::GetSkipSides() const
|
|
|
|
{
|
|
|
|
PRIntn skip = 0;
|
|
|
|
// frame attribute was accounted for in nsHTMLTableElement::MapTableBorderInto
|
|
|
|
// account for pagination
|
|
|
|
if (nsnull != GetPrevInFlow()) {
|
|
|
|
skip |= 1 << NS_SIDE_TOP;
|
|
|
|
}
|
|
|
|
if (nsnull != GetNextInFlow()) {
|
|
|
|
skip |= 1 << NS_SIDE_BOTTOM;
|
|
|
|
}
|
|
|
|
return skip;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsTableFrame::SetColumnDimensions(nscoord aHeight,
|
|
|
|
const nsMargin& aBorderPadding)
|
|
|
|
{
|
|
|
|
nscoord cellSpacingX = GetCellSpacingX();
|
|
|
|
nscoord cellSpacingY = GetCellSpacingY();
|
|
|
|
nscoord colHeight = aHeight -= aBorderPadding.top + aBorderPadding.bottom +
|
|
|
|
2* cellSpacingY;
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
nsTableIterator iter(mColGroups);
|
2008-08-04 00:27:32 -07:00
|
|
|
nsIFrame* colGroupFrame = iter.First();
|
2011-09-28 23:19:26 -07:00
|
|
|
bool tableIsLTR = GetStyleVisibility()->mDirection == NS_STYLE_DIRECTION_LTR;
|
2009-09-16 08:01:36 -07:00
|
|
|
PRInt32 colX =tableIsLTR ? 0 : NS_MAX(0, GetColCount() - 1);
|
2010-04-27 09:15:01 -07:00
|
|
|
PRInt32 tableColIncr = tableIsLTR ? 1 : -1;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsPoint colGroupOrigin(aBorderPadding.left + cellSpacingX,
|
|
|
|
aBorderPadding.top + cellSpacingY);
|
2012-06-01 12:56:33 -07:00
|
|
|
while (colGroupFrame) {
|
|
|
|
MOZ_ASSERT(colGroupFrame->GetType() == nsGkAtoms::tableColGroupFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord colGroupWidth = 0;
|
2010-04-27 09:15:01 -07:00
|
|
|
nsTableIterator iterCol(*colGroupFrame);
|
2008-08-04 00:27:32 -07:00
|
|
|
nsIFrame* colFrame = iterCol.First();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsPoint colOrigin(0,0);
|
2012-06-01 12:56:33 -07:00
|
|
|
while (colFrame) {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_STYLE_DISPLAY_TABLE_COLUMN ==
|
|
|
|
colFrame->GetStyleDisplay()->mDisplay) {
|
|
|
|
NS_ASSERTION(colX < GetColCount(), "invalid number of columns");
|
|
|
|
nscoord colWidth = GetColumnWidth(colX);
|
|
|
|
nsRect colRect(colOrigin.x, colOrigin.y, colWidth, colHeight);
|
|
|
|
colFrame->SetRect(colRect);
|
|
|
|
colOrigin.x += colWidth + cellSpacingX;
|
|
|
|
colGroupWidth += colWidth + cellSpacingX;
|
2008-08-04 00:27:32 -07:00
|
|
|
colX += tableColIncr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
colFrame = iterCol.Next();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (colGroupWidth) {
|
|
|
|
colGroupWidth -= cellSpacingX;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect colGroupRect(colGroupOrigin.x, colGroupOrigin.y, colGroupWidth, colHeight);
|
|
|
|
colGroupFrame->SetRect(colGroupRect);
|
2008-08-04 00:27:32 -07:00
|
|
|
colGroupFrame = iter.Next();
|
2007-03-22 10:30:00 -07:00
|
|
|
colGroupOrigin.x += colGroupWidth + cellSpacingX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SEC: TODO need to worry about continuing frames prev/next in flow for splitting across pages.
|
|
|
|
|
|
|
|
// XXX this could be made more general to handle row modifications that change the
|
|
|
|
// table height, but first we need to scrutinize every Invalidate
|
2008-02-06 14:01:41 -08:00
|
|
|
void
|
|
|
|
nsTableFrame::ProcessRowInserted(nscoord aNewHeight)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
SetRowInserted(false); // reset the bit that got us here
|
2007-06-05 11:55:26 -07:00
|
|
|
nsTableFrame::RowGroupArray rowGroups;
|
2008-02-06 14:01:41 -08:00
|
|
|
OrderRowGroups(rowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
// find the row group containing the inserted row
|
2007-06-05 11:55:26 -07:00
|
|
|
for (PRUint32 rgX = 0; rgX < rowGroups.Length(); rgX++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = rowGroups[rgX];
|
|
|
|
NS_ASSERTION(rgFrame, "Must have rgFrame here");
|
2011-08-24 13:54:30 -07:00
|
|
|
nsIFrame* childFrame = rgFrame->GetFirstPrincipalChild();
|
2007-03-22 10:30:00 -07:00
|
|
|
// find the row that was inserted first
|
|
|
|
while (childFrame) {
|
2009-03-24 15:10:06 -07:00
|
|
|
nsTableRowFrame *rowFrame = do_QueryFrame(childFrame);
|
|
|
|
if (rowFrame) {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (rowFrame->IsFirstInserted()) {
|
2011-10-17 07:59:28 -07:00
|
|
|
rowFrame->SetFirstInserted(false);
|
2008-02-06 14:01:41 -08:00
|
|
|
// damage the table from the 1st row inserted to the end of the table
|
2012-07-03 17:24:55 -07:00
|
|
|
nscoord damageY = rgFrame->GetPosition().y + rowFrame->GetPosition().y;
|
|
|
|
nsRect damageRect(0, damageY, GetSize().width, aNewHeight - damageY);
|
|
|
|
|
|
|
|
Invalidate(damageRect);
|
2008-02-06 14:01:41 -08:00
|
|
|
// XXXbz didn't we do this up front? Why do we need to do it again?
|
2011-10-17 07:59:28 -07:00
|
|
|
SetRowInserted(false);
|
2007-03-22 10:30:00 -07:00
|
|
|
return; // found it, so leave
|
|
|
|
}
|
|
|
|
}
|
|
|
|
childFrame = childFrame->GetNextSibling();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ void
|
|
|
|
nsTableFrame::MarkIntrinsicWidthsDirty()
|
|
|
|
{
|
2010-11-14 10:26:36 -08:00
|
|
|
nsITableLayoutStrategy* tls = LayoutStrategy();
|
|
|
|
if (NS_UNLIKELY(!tls)) {
|
|
|
|
// This is a FrameNeedsReflow() from nsBlockFrame::RemoveFrame()
|
|
|
|
// walking up the ancestor chain in a table next-in-flow. In this case
|
|
|
|
// our original first-in-flow (which owns the TableLayoutStrategy) has
|
|
|
|
// already been destroyed and unhooked from the flow chain and thusly
|
|
|
|
// LayoutStrategy() returns null. All the frames in the flow will be
|
|
|
|
// destroyed so no need to mark anything dirty here. See bug 595758.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
tls->MarkIntrinsicWidthsDirty();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// XXXldb Call SetBCDamageArea?
|
|
|
|
|
2011-12-27 12:18:48 -08:00
|
|
|
nsContainerFrame::MarkIntrinsicWidthsDirty();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nscoord
|
2011-04-07 18:04:40 -07:00
|
|
|
nsTableFrame::GetMinWidth(nsRenderingContext *aRenderingContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (NeedToCalcBCBorders())
|
|
|
|
CalcBCBorders();
|
|
|
|
|
|
|
|
ReflowColGroups(aRenderingContext);
|
|
|
|
|
|
|
|
return LayoutStrategy()->GetMinWidth(aRenderingContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nscoord
|
2011-04-07 18:04:40 -07:00
|
|
|
nsTableFrame::GetPrefWidth(nsRenderingContext *aRenderingContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (NeedToCalcBCBorders())
|
|
|
|
CalcBCBorders();
|
|
|
|
|
|
|
|
ReflowColGroups(aRenderingContext);
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return LayoutStrategy()->GetPrefWidth(aRenderingContext, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nsIFrame::IntrinsicWidthOffsetData
|
2011-04-07 18:04:40 -07:00
|
|
|
nsTableFrame::IntrinsicWidthOffsets(nsRenderingContext* aRenderingContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
IntrinsicWidthOffsetData result =
|
2011-12-27 12:18:48 -08:00
|
|
|
nsContainerFrame::IntrinsicWidthOffsets(aRenderingContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
Bug 659828 - Part 1: Apply table margins to the outer table frame instead of the inner table frame (also fixes bug 87277); r=dbaron
Outer table frames act as CSS2.1 table wrapper boxes. We used to lay them out
without taking their margins into the account, which meant that their width was
always equal to the available width. This breaks horizontal positioning of
absolutely positioned kids of a table frame.
The main purpose of this patch is to apply the margins of tables to their outer
frame, instead of the inner frame. This means that the inner table frame will
always have a zero margin, which means that a lot of the stuff which used to
rely on the fact that table margins are applied to the inner frame need to
change.
In particular, in order to get the computed margins of a table, we used to query
the inner table frame, and this patch corrects that. Also, when shrink wrapping
tables, we used to not take the margins of the inner table frame into account,
which is fixed by this patch too. nsBlockReflowState::
ComputeReplacedBlockOffsetsForFloats also needed to be changed to read the
margin values from the outer frame too.
Also, as part of this patch, we start to respect the CSS2.1 margin model for
captions on all sides. This means that in particular, the top/bottom margins on
the top-outside and bottom-outside captions will not be collapsed with the
top/bottom margins of the table, and that the margins of the caption element
contribute to the width and height of the outer table frame. The
427129-table-caption reftest has been modified to match this new behavior.
Another side effect of this bug is fixing bug 87277, and the reftests for that
bug are marked as passing in this patch.
2011-05-31 16:02:56 -07:00
|
|
|
result.hMargin = 0;
|
|
|
|
result.hPctMargin = 0;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (IsBorderCollapse()) {
|
|
|
|
result.hPadding = 0;
|
|
|
|
result.hPctPadding = 0;
|
|
|
|
|
|
|
|
nsMargin outerBC = GetIncludedOuterBCBorder();
|
|
|
|
result.hBorder = outerBC.LeftRight();
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nsSize
|
2011-04-07 18:04:40 -07:00
|
|
|
nsTableFrame::ComputeSize(nsRenderingContext *aRenderingContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder, nsSize aPadding,
|
2012-03-16 11:01:05 -07:00
|
|
|
PRUint32 aFlags)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsSize result =
|
2011-12-27 12:18:48 -08:00
|
|
|
nsContainerFrame::ComputeSize(aRenderingContext, aCBSize, aAvailableWidth,
|
2012-03-16 11:01:05 -07:00
|
|
|
aMargin, aBorder, aPadding, aFlags);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-01-24 17:21:29 -08:00
|
|
|
// If we're a container for font size inflation, then shrink
|
|
|
|
// wrapping inside of us should not apply font size inflation.
|
2012-05-20 22:18:27 -07:00
|
|
|
AutoMaybeDisableFontInflation an(this);
|
2012-01-24 17:21:29 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Tables never shrink below their min width.
|
|
|
|
nscoord minWidth = GetMinWidth(aRenderingContext);
|
|
|
|
if (minWidth > result.width)
|
|
|
|
result.width = minWidth;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord
|
2011-04-07 18:04:40 -07:00
|
|
|
nsTableFrame::TableShrinkWidthToFit(nsRenderingContext *aRenderingContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord aWidthInCB)
|
|
|
|
{
|
2012-01-24 17:21:29 -08:00
|
|
|
// If we're a container for font size inflation, then shrink
|
|
|
|
// wrapping inside of us should not apply font size inflation.
|
2012-05-20 22:18:27 -07:00
|
|
|
AutoMaybeDisableFontInflation an(this);
|
2012-01-24 17:21:29 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord result;
|
|
|
|
nscoord minWidth = GetMinWidth(aRenderingContext);
|
|
|
|
if (minWidth > aWidthInCB) {
|
|
|
|
result = minWidth;
|
|
|
|
} else {
|
|
|
|
// Tables shrink width to fit with a slightly different algorithm
|
|
|
|
// from the one they use for their intrinsic widths (the difference
|
|
|
|
// relates to handling of percentage widths on columns). So this
|
|
|
|
// function differs from nsFrame::ShrinkWidthToFit by only the
|
|
|
|
// following line.
|
|
|
|
// Since we've already called GetMinWidth, we don't need to do any
|
|
|
|
// of the other stuff GetPrefWidth does.
|
|
|
|
nscoord prefWidth =
|
2011-10-17 07:59:28 -07:00
|
|
|
LayoutStrategy()->GetPrefWidth(aRenderingContext, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (prefWidth > aWidthInCB) {
|
|
|
|
result = aWidthInCB;
|
|
|
|
} else {
|
|
|
|
result = prefWidth;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nsSize
|
2011-04-07 18:04:40 -07:00
|
|
|
nsTableFrame::ComputeAutoSize(nsRenderingContext *aRenderingContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder, nsSize aPadding,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aShrinkWrap)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Tables always shrink-wrap.
|
|
|
|
nscoord cbBased = aAvailableWidth - aMargin.width - aBorder.width -
|
|
|
|
aPadding.width;
|
|
|
|
return nsSize(TableShrinkWidthToFit(aRenderingContext, cbBased),
|
|
|
|
NS_UNCONSTRAINEDSIZE);
|
|
|
|
}
|
|
|
|
|
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)
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2007-06-25 13:34:35 -07:00
|
|
|
nsTableFrame::AncestorsHaveStyleHeight(const nsHTMLReflowState& aParentReflowState)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-06-25 13:34:35 -07:00
|
|
|
for (const nsHTMLReflowState* rs = &aParentReflowState;
|
|
|
|
rs && rs->frame; rs = rs->parentReflowState) {
|
|
|
|
nsIAtom* frameType = rs->frame->GetType();
|
|
|
|
if (IS_TABLE_CELL(frameType) ||
|
2007-03-22 10:30:00 -07:00
|
|
|
(nsGkAtoms::tableRowFrame == frameType) ||
|
|
|
|
(nsGkAtoms::tableRowGroupFrame == frameType)) {
|
2010-08-25 03:17:55 -07:00
|
|
|
const nsStyleCoord &height = rs->mStylePosition->mHeight;
|
|
|
|
// calc() treated like 'auto' on internal table elements
|
|
|
|
if (height.GetUnit() != eStyleUnit_Auto && !height.IsCalcUnit()) {
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (nsGkAtoms::tableFrame == frameType) {
|
|
|
|
// we reached the containing table, so always return
|
2007-06-25 13:34:35 -07:00
|
|
|
if (rs->mStylePosition->mHeight.GetUnit() != eStyleUnit_Auto) {
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
else return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// See if a special height reflow needs to occur and if so, call RequestSpecialHeightReflow
|
|
|
|
void
|
|
|
|
nsTableFrame::CheckRequestSpecialHeightReflow(const nsHTMLReflowState& aReflowState)
|
|
|
|
{
|
2010-08-25 03:17:55 -07:00
|
|
|
NS_ASSERTION(IS_TABLE_CELL(aReflowState.frame->GetType()) ||
|
|
|
|
aReflowState.frame->GetType() == nsGkAtoms::tableRowFrame ||
|
|
|
|
aReflowState.frame->GetType() == nsGkAtoms::tableRowGroupFrame ||
|
|
|
|
aReflowState.frame->GetType() == nsGkAtoms::tableFrame,
|
|
|
|
"unexpected frame type");
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!aReflowState.frame->GetPrevInFlow() && // 1st in flow
|
2007-08-02 11:08:05 -07:00
|
|
|
(NS_UNCONSTRAINEDSIZE == aReflowState.ComputedHeight() || // no computed height
|
2010-04-27 09:15:01 -07:00
|
|
|
0 == aReflowState.ComputedHeight()) &&
|
2007-06-25 13:34:35 -07:00
|
|
|
eStyleUnit_Percent == aReflowState.mStylePosition->mHeight.GetUnit() && // pct height
|
|
|
|
nsTableFrame::AncestorsHaveStyleHeight(*aReflowState.parentReflowState)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::RequestSpecialHeightReflow(aReflowState);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Notify the frame and its ancestors (up to the containing table) that a special
|
|
|
|
// height reflow will occur. During a special height reflow, a table, row group,
|
2010-04-27 09:15:01 -07:00
|
|
|
// row, or cell returns the last size it was reflowed at. However, the table may
|
|
|
|
// change the height of row groups, rows, cells in DistributeHeightToRows after.
|
2007-03-22 10:30:00 -07:00
|
|
|
// And the row group can change the height of rows, cells in CalculateRowHeights.
|
|
|
|
void
|
|
|
|
nsTableFrame::RequestSpecialHeightReflow(const nsHTMLReflowState& aReflowState)
|
|
|
|
{
|
|
|
|
// notify the frame and its ancestors of the special reflow, stopping at the containing table
|
|
|
|
for (const nsHTMLReflowState* rs = &aReflowState; rs && rs->frame; rs = rs->parentReflowState) {
|
|
|
|
nsIAtom* frameType = rs->frame->GetType();
|
2009-12-12 11:35:26 -08:00
|
|
|
NS_ASSERTION(IS_TABLE_CELL(frameType) ||
|
|
|
|
nsGkAtoms::tableRowFrame == frameType ||
|
|
|
|
nsGkAtoms::tableRowGroupFrame == frameType ||
|
|
|
|
nsGkAtoms::tableFrame == frameType,
|
|
|
|
"unexpected frame type");
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
rs->frame->AddStateBits(NS_FRAME_CONTAINS_RELATIVE_HEIGHT);
|
|
|
|
if (nsGkAtoms::tableFrame == frameType) {
|
|
|
|
NS_ASSERTION(rs != &aReflowState,
|
|
|
|
"should not request special height reflow for table");
|
|
|
|
// always stop when we reach a table
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************************
|
|
|
|
* Before reflow, intrinsic width calculation is done using GetMinWidth
|
|
|
|
* and GetPrefWidth. This used to be known as pass 1 reflow.
|
|
|
|
*
|
|
|
|
* After the intrinsic width calculation, the table determines the
|
|
|
|
* column widths using BalanceColumnWidths() and
|
|
|
|
* then reflows each child again with a constrained avail width. This reflow is referred to
|
2010-04-27 09:15:01 -07:00
|
|
|
* as the pass 2 reflow.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* A special height reflow (pass 3 reflow) can occur during an initial or resize reflow
|
2010-04-27 09:15:01 -07:00
|
|
|
* if (a) a row group, row, cell, or a frame inside a cell has a percent height but no computed
|
|
|
|
* height or (b) in paginated mode, a table has a height. (a) supports percent nested tables
|
|
|
|
* contained inside cells whose heights aren't known until after the pass 2 reflow. (b) is
|
|
|
|
* necessary because the table cannot split until after the pass 2 reflow. The mechanics of
|
|
|
|
* the special height reflow (variety a) are as follows:
|
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* 1) Each table related frame (table, row group, row, cell) implements NeedsSpecialReflow()
|
2010-04-27 09:15:01 -07:00
|
|
|
* to indicate that it should get the reflow. It does this when it has a percent height but
|
2007-03-22 10:30:00 -07:00
|
|
|
* no computed height by calling CheckRequestSpecialHeightReflow(). This method calls
|
2010-04-27 09:15:01 -07:00
|
|
|
* RequestSpecialHeightReflow() which calls SetNeedSpecialReflow() on its ancestors until
|
|
|
|
* it reaches the containing table and calls SetNeedToInitiateSpecialReflow() on it. For
|
2007-03-22 10:30:00 -07:00
|
|
|
* percent height frames inside cells, during DidReflow(), the cell's NotifyPercentHeight()
|
2010-04-27 09:15:01 -07:00
|
|
|
* is called (the cell is the reflow state's mPercentHeightObserver in this case).
|
2007-03-22 10:30:00 -07:00
|
|
|
* NotifyPercentHeight() calls RequestSpecialHeightReflow().
|
|
|
|
*
|
|
|
|
* 2) After the pass 2 reflow, if the table's NeedToInitiateSpecialReflow(true) was called, it
|
|
|
|
* will do the special height reflow, setting the reflow state's mFlags.mSpecialHeightReflow
|
|
|
|
* to true and mSpecialHeightInitiator to itself. It won't do this if IsPrematureSpecialHeightReflow()
|
|
|
|
* returns true because in that case another special height reflow will be coming along with the
|
|
|
|
* containing table as the mSpecialHeightInitiator. It is only relevant to do the reflow when
|
|
|
|
* the mSpecialHeightInitiator is the containing table, because if it is a remote ancestor, then
|
|
|
|
* appropriate heights will not be known.
|
|
|
|
*
|
|
|
|
* 3) Since the heights of the table, row groups, rows, and cells was determined during the pass 2
|
|
|
|
* reflow, they return their last desired sizes during the special height reflow. The reflow only
|
|
|
|
* permits percent height frames inside the cells to resize based on the cells height and that height
|
|
|
|
* was determined during the pass 2 reflow.
|
|
|
|
*
|
|
|
|
* So, in the case of deeply nested tables, all of the tables that were told to initiate a special
|
|
|
|
* reflow will do so, but if a table is already in a special reflow, it won't inititate the reflow
|
|
|
|
* until the current initiator is its containing table. Since these reflows are only received by
|
|
|
|
* frames that need them and they don't cause any rebalancing of tables, the extra overhead is minimal.
|
|
|
|
*
|
|
|
|
* The type of special reflow that occurs during printing (variety b) follows the same mechanism except
|
|
|
|
* that all frames will receive the reflow even if they don't really need them.
|
|
|
|
*
|
|
|
|
* Open issues with the special height reflow:
|
|
|
|
*
|
2010-04-27 09:15:01 -07:00
|
|
|
* 1) At some point there should be 2 kinds of special height reflows because (a) and (b) above are
|
|
|
|
* really quite different. This would avoid unnecessary reflows during printing.
|
|
|
|
* 2) When a cell contains frames whose percent heights > 100%, there is data loss (see bug 115245).
|
|
|
|
* However, this can also occur if a cell has a fixed height and there is no special height reflow.
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* XXXldb Special height reflow should really be its own method, not
|
|
|
|
* part of nsIFrame::Reflow. It should then call nsIFrame::Reflow on
|
|
|
|
* the contents of the cells to do the necessary vertical resizing.
|
|
|
|
*
|
|
|
|
******************************************************************************************/
|
|
|
|
|
|
|
|
/* Layout the entire inner table. */
|
2009-02-18 11:47:22 -08:00
|
|
|
NS_METHOD nsTableFrame::Reflow(nsPresContext* aPresContext,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
|
|
|
{
|
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsTableFrame");
|
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isPaginated = aPresContext->IsPaginated();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!GetPrevInFlow() && !mTableLayoutStrategy) {
|
2011-10-17 07:59:28 -07:00
|
|
|
NS_ASSERTION(false, "strategy should have been created in Init");
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
// see if collapsing borders need to be calculated
|
|
|
|
if (!GetPrevInFlow() && IsBorderCollapse() && NeedToCalcBCBorders()) {
|
|
|
|
CalcBCBorders();
|
|
|
|
}
|
|
|
|
|
|
|
|
aDesiredSize.width = aReflowState.availableWidth;
|
|
|
|
|
|
|
|
// Check for an overflow list, and append any row group frames being pushed
|
|
|
|
MoveOverflowToChildList(aPresContext);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool haveDesiredHeight = false;
|
2011-10-17 07:59:28 -07:00
|
|
|
SetHaveReflowedColGroups(false);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
// Reflow the entire table (pass 2 and possibly pass 3). This phase is necessary during a
|
|
|
|
// constrained initial reflow and other reflows which require either a strategy init or balance.
|
|
|
|
// This isn't done during an unconstrained reflow, because it will occur later when the parent
|
2007-03-22 10:30:00 -07:00
|
|
|
// reflows with a constrained width.
|
2007-05-06 12:16:51 -07:00
|
|
|
if (NS_SUBTREE_DIRTY(this) ||
|
2007-03-22 10:30:00 -07:00
|
|
|
aReflowState.ShouldReflowAllKids() ||
|
|
|
|
IsGeometryDirty() ||
|
2008-11-25 13:27:53 -08:00
|
|
|
aReflowState.mFlags.mVResize) {
|
2008-11-25 13:27:53 -08:00
|
|
|
|
|
|
|
if (aReflowState.ComputedHeight() != NS_UNCONSTRAINEDSIZE ||
|
|
|
|
// Also check mVResize, to handle the first Reflow preceding a
|
|
|
|
// special height Reflow, when we've already had a special height
|
|
|
|
// Reflow (where mComputedHeight would not be
|
|
|
|
// NS_UNCONSTRAINEDSIZE, but without a style change in between).
|
|
|
|
aReflowState.mFlags.mVResize) {
|
|
|
|
// XXX Eventually, we should modify DistributeHeightToRows to use
|
|
|
|
// nsTableRowFrame::GetHeight instead of nsIFrame::GetSize().height.
|
|
|
|
// That way, it will make its calculations based on internal table
|
|
|
|
// frame heights as they are before they ever had any extra height
|
|
|
|
// distributed to them. In the meantime, this reflows all the
|
|
|
|
// internal table frames, which restores them to their state before
|
|
|
|
// DistributeHeightToRows was called.
|
|
|
|
SetGeometryDirty();
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool needToInitiateSpecialReflow =
|
2008-11-25 13:27:53 -08:00
|
|
|
!!(GetStateBits() & NS_FRAME_CONTAINS_RELATIVE_HEIGHT);
|
2010-04-27 09:15:01 -07:00
|
|
|
// see if an extra reflow will be necessary in pagination mode when there is a specified table height
|
2007-03-22 10:30:00 -07:00
|
|
|
if (isPaginated && !GetPrevInFlow() && (NS_UNCONSTRAINEDSIZE != aReflowState.availableHeight)) {
|
|
|
|
nscoord tableSpecifiedHeight = CalcBorderBoxHeight(aReflowState);
|
2010-04-27 09:15:01 -07:00
|
|
|
if ((tableSpecifiedHeight > 0) &&
|
2007-03-22 10:30:00 -07:00
|
|
|
(tableSpecifiedHeight != NS_UNCONSTRAINEDSIZE)) {
|
2011-10-17 07:59:28 -07:00
|
|
|
needToInitiateSpecialReflow = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
nsIFrame* lastChildReflowed = nsnull;
|
|
|
|
|
2007-10-08 19:39:06 -07:00
|
|
|
NS_ASSERTION(!aReflowState.mFlags.mSpecialHeightReflow,
|
|
|
|
"Shouldn't be in special height reflow here!");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
// do the pass 2 reflow unless this is a special height reflow and we will be
|
2007-03-22 10:30:00 -07:00
|
|
|
// initiating a special height reflow
|
|
|
|
// XXXldb I changed this. Should I change it back?
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
// if we need to initiate a special height reflow, then don't constrain the
|
2007-03-22 10:30:00 -07:00
|
|
|
// height of the reflow before that
|
2010-04-27 09:15:01 -07:00
|
|
|
nscoord availHeight = needToInitiateSpecialReflow
|
2007-03-22 10:30:00 -07:00
|
|
|
? NS_UNCONSTRAINEDSIZE : aReflowState.availableHeight;
|
|
|
|
|
|
|
|
ReflowTable(aDesiredSize, aReflowState, availHeight,
|
|
|
|
lastChildReflowed, aStatus);
|
|
|
|
|
|
|
|
// reevaluate special height reflow conditions
|
|
|
|
if (GetStateBits() & NS_FRAME_CONTAINS_RELATIVE_HEIGHT)
|
2011-10-17 07:59:28 -07:00
|
|
|
needToInitiateSpecialReflow = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// XXXldb Are all these conditions correct?
|
|
|
|
if (needToInitiateSpecialReflow && NS_FRAME_IS_COMPLETE(aStatus)) {
|
|
|
|
// XXXldb Do we need to set the mVResize flag on any reflow states?
|
|
|
|
|
2007-10-08 19:39:06 -07:00
|
|
|
nsHTMLReflowState &mutable_rs =
|
|
|
|
const_cast<nsHTMLReflowState&>(aReflowState);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// distribute extra vertical space to rows
|
2010-04-27 09:15:01 -07:00
|
|
|
CalcDesiredHeight(aReflowState, aDesiredSize);
|
2011-10-17 07:59:28 -07:00
|
|
|
mutable_rs.mFlags.mSpecialHeightReflow = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
ReflowTable(aDesiredSize, aReflowState, aReflowState.availableHeight,
|
2007-03-22 10:30:00 -07:00
|
|
|
lastChildReflowed, aStatus);
|
|
|
|
|
|
|
|
if (lastChildReflowed && NS_FRAME_IS_NOT_COMPLETE(aStatus)) {
|
|
|
|
// if there is an incomplete child, then set the desired height to include it but not the next one
|
|
|
|
nsMargin borderPadding = GetChildAreaOffset(&aReflowState);
|
|
|
|
aDesiredSize.height = borderPadding.bottom + GetCellSpacingY() +
|
|
|
|
lastChildReflowed->GetRect().YMost();
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
haveDesiredHeight = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mutable_rs.mFlags.mSpecialHeightReflow = false;
|
2007-10-08 19:39:06 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-08-07 07:19:33 -07:00
|
|
|
else {
|
|
|
|
// Calculate the overflow area contribution from our children.
|
2011-08-24 13:54:30 -07:00
|
|
|
for (nsIFrame* kid = GetFirstPrincipalChild(); kid; kid = kid->GetNextSibling()) {
|
2010-10-06 21:25:46 -07:00
|
|
|
ConsiderChildOverflow(aDesiredSize.mOverflowAreas, kid);
|
2008-08-07 07:19:33 -07:00
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
aDesiredSize.width = aReflowState.ComputedWidth() +
|
|
|
|
aReflowState.mComputedBorderPadding.LeftRight();
|
|
|
|
if (!haveDesiredHeight) {
|
2010-04-27 09:15:01 -07:00
|
|
|
CalcDesiredHeight(aReflowState, aDesiredSize);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (IsRowInserted()) {
|
2008-02-06 14:01:41 -08:00
|
|
|
ProcessRowInserted(aDesiredSize.height);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsMargin borderPadding = GetChildAreaOffset(&aReflowState);
|
|
|
|
SetColumnDimensions(aDesiredSize.height, borderPadding);
|
|
|
|
if (NeedToCollapse() &&
|
|
|
|
(NS_UNCONSTRAINEDSIZE != aReflowState.availableWidth)) {
|
|
|
|
AdjustForCollapsingRowsCols(aDesiredSize, borderPadding);
|
|
|
|
}
|
|
|
|
|
|
|
|
// make sure the table overflow area does include the table rect.
|
|
|
|
nsRect tableRect(0, 0, aDesiredSize.width, aDesiredSize.height) ;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2012-01-18 12:04:51 -08:00
|
|
|
if (!ApplyOverflowClipping(this, aReflowState.mStyleDisplay)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// collapsed border may leak out
|
|
|
|
nsMargin bcMargin = GetExcludedOuterBCBorder();
|
|
|
|
tableRect.Inflate(bcMargin);
|
|
|
|
}
|
2010-10-06 21:25:46 -07:00
|
|
|
aDesiredSize.mOverflowAreas.UnionAllWith(tableRect);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2012-07-03 17:24:55 -07:00
|
|
|
if (GetStateBits() & NS_FRAME_FIRST_REFLOW) {
|
|
|
|
// Fulfill the promise InvalidateFrame makes.
|
|
|
|
Invalidate(aDesiredSize.VisualOverflow());
|
|
|
|
} else {
|
|
|
|
CheckInvalidateSizeChange(aDesiredSize);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
FinishAndStoreOverflow(&aDesiredSize);
|
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2011-06-15 14:03:49 -07:00
|
|
|
bool
|
|
|
|
nsTableFrame::UpdateOverflow()
|
|
|
|
{
|
|
|
|
nsRect bounds(nsPoint(0, 0), GetSize());
|
|
|
|
|
|
|
|
// As above in Reflow, make sure the table overflow area includes the table
|
|
|
|
// rect, and check for collapsed borders leaking out.
|
2012-01-18 12:04:51 -08:00
|
|
|
if (!ApplyOverflowClipping(this, GetStyleDisplay())) {
|
2011-06-15 14:03:49 -07:00
|
|
|
nsMargin bcMargin = GetExcludedOuterBCBorder();
|
|
|
|
bounds.Inflate(bcMargin);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsOverflowAreas overflowAreas(bounds, bounds);
|
|
|
|
nsLayoutUtils::UnionChildOverflow(this, overflowAreas);
|
|
|
|
|
|
|
|
return FinishAndStoreOverflow(overflowAreas, GetSize());
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
nsresult
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::ReflowTable(nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nscoord aAvailHeight,
|
|
|
|
nsIFrame*& aLastChildReflowed,
|
|
|
|
nsReflowStatus& aStatus)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
aLastChildReflowed = nsnull;
|
|
|
|
|
|
|
|
if (!GetPrevInFlow()) {
|
|
|
|
mTableLayoutStrategy->ComputeColumnWidths(aReflowState);
|
|
|
|
}
|
|
|
|
// Constrain our reflow width to the computed table width (of the 1st in flow).
|
|
|
|
// and our reflow height to our avail height minus border, padding, cellspacing
|
|
|
|
aDesiredSize.width = aReflowState.ComputedWidth() +
|
|
|
|
aReflowState.mComputedBorderPadding.LeftRight();
|
2007-03-30 14:11:41 -07:00
|
|
|
nsTableReflowState reflowState(*PresContext(), aReflowState, *this,
|
2007-03-22 10:30:00 -07:00
|
|
|
aDesiredSize.width, aAvailHeight);
|
|
|
|
ReflowChildren(reflowState, aStatus, aLastChildReflowed,
|
2010-10-06 21:25:46 -07:00
|
|
|
aDesiredSize.mOverflowAreas);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
ReflowColGroups(aReflowState.rendContext);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
nsTableFrame::GetFirstBodyRowGroupFrame()
|
|
|
|
{
|
|
|
|
nsIFrame* headerFrame = nsnull;
|
|
|
|
nsIFrame* footerFrame = nsnull;
|
|
|
|
|
|
|
|
for (nsIFrame* kidFrame = mFrames.FirstChild(); nsnull != kidFrame; ) {
|
|
|
|
const nsStyleDisplay* childDisplay = kidFrame->GetStyleDisplay();
|
|
|
|
|
|
|
|
// We expect the header and footer row group frames to be first, and we only
|
|
|
|
// allow one header and one footer
|
|
|
|
if (NS_STYLE_DISPLAY_TABLE_HEADER_GROUP == childDisplay->mDisplay) {
|
|
|
|
if (headerFrame) {
|
|
|
|
// We already have a header frame and so this header frame is treated
|
|
|
|
// like an ordinary body row group frame
|
|
|
|
return kidFrame;
|
|
|
|
}
|
|
|
|
headerFrame = kidFrame;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
} else if (NS_STYLE_DISPLAY_TABLE_FOOTER_GROUP == childDisplay->mDisplay) {
|
|
|
|
if (footerFrame) {
|
|
|
|
// We already have a footer frame and so this footer frame is treated
|
|
|
|
// like an ordinary body row group frame
|
|
|
|
return kidFrame;
|
|
|
|
}
|
|
|
|
footerFrame = kidFrame;
|
|
|
|
|
|
|
|
} else if (NS_STYLE_DISPLAY_TABLE_ROW_GROUP == childDisplay->mDisplay) {
|
|
|
|
return kidFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the next child
|
|
|
|
kidFrame = kidFrame->GetNextSibling();
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Table specific version that takes into account repeated header and footer
|
|
|
|
// frames when continuing table frames
|
|
|
|
void
|
2010-01-16 08:05:46 -08:00
|
|
|
nsTableFrame::PushChildren(const RowGroupArray& aRowGroups,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 aPushFrom)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aPushFrom > 0, "pushing first child");
|
|
|
|
|
|
|
|
// extract the frames from the array into a sibling list
|
|
|
|
nsFrameList frames;
|
|
|
|
PRUint32 childX;
|
2010-01-16 08:05:46 -08:00
|
|
|
for (childX = aPushFrom; childX < aRowGroups.Length(); ++childX) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = aRowGroups[childX];
|
2010-12-09 02:57:03 -08:00
|
|
|
if (!rgFrame->IsRepeatable()) {
|
2010-01-16 08:05:46 -08:00
|
|
|
mFrames.RemoveFrame(rgFrame);
|
|
|
|
frames.AppendFrame(nsnull, rgFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-07 09:27:46 -08:00
|
|
|
if (frames.IsEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-11-07 09:27:46 -08:00
|
|
|
nsTableFrame* nextInFlow = static_cast<nsTableFrame*>(GetNextInFlow());
|
|
|
|
if (nextInFlow) {
|
|
|
|
// Insert the frames after any repeated header and footer frames.
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* firstBodyFrame = nextInFlow->GetFirstBodyRowGroupFrame();
|
|
|
|
nsIFrame* prevSibling = nsnull;
|
|
|
|
if (firstBodyFrame) {
|
2009-10-02 09:27:37 -07:00
|
|
|
prevSibling = firstBodyFrame->GetPrevSibling();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// When pushing and pulling frames we need to check for whether any
|
|
|
|
// views need to be reparented.
|
2009-07-30 10:23:32 -07:00
|
|
|
ReparentFrameViewList(PresContext(), frames, this, nextInFlow);
|
|
|
|
nextInFlow->mFrames.InsertFrames(nextInFlow, prevSibling,
|
|
|
|
frames);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-11-07 09:27:46 -08:00
|
|
|
else {
|
|
|
|
// Add the frames to our overflow list.
|
2009-07-28 05:51:09 -07:00
|
|
|
SetOverflowFrames(PresContext(), frames);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// collapsing row groups, rows, col groups and cols are accounted for after both passes of
|
|
|
|
// reflow so that it has no effect on the calculations of reflow.
|
|
|
|
void
|
|
|
|
nsTableFrame::AdjustForCollapsingRowsCols(nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
nsMargin aBorderPadding)
|
|
|
|
{
|
|
|
|
nscoord yTotalOffset = 0; // total offset among all rows in all row groups
|
|
|
|
|
2009-05-16 07:22:56 -07:00
|
|
|
// reset the bit, it will be set again if row/rowgroup or col/colgroup are
|
|
|
|
// collapsed
|
2011-10-17 07:59:28 -07:00
|
|
|
SetNeedToCollapse(false);
|
2009-06-21 09:34:03 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// collapse the rows and/or row groups as necessary
|
|
|
|
// Get the ordered children
|
2007-06-05 11:55:26 -07:00
|
|
|
RowGroupArray rowGroups;
|
|
|
|
OrderRowGroups(rowGroups);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:34:03 -07:00
|
|
|
nsTableFrame* firstInFlow = static_cast<nsTableFrame*> (GetFirstInFlow());
|
|
|
|
nscoord width = firstInFlow->GetCollapsedWidth(aBorderPadding);
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord rgWidth = width - 2 * GetCellSpacingX();
|
2010-10-06 21:25:45 -07:00
|
|
|
nsOverflowAreas overflow;
|
2007-03-22 10:30:00 -07:00
|
|
|
// Walk the list of children
|
2007-06-05 11:55:26 -07:00
|
|
|
for (PRUint32 childX = 0; childX < rowGroups.Length(); childX++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = rowGroups[childX];
|
|
|
|
NS_ASSERTION(rgFrame, "Must have row group frame here");
|
2007-03-22 10:30:00 -07:00
|
|
|
yTotalOffset += rgFrame->CollapseRowGroupIfNecessary(yTotalOffset, rgWidth);
|
2010-10-06 21:25:45 -07:00
|
|
|
ConsiderChildOverflow(overflow, rgFrame);
|
2010-04-27 09:15:01 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
aDesiredSize.height -= yTotalOffset;
|
|
|
|
aDesiredSize.width = width;
|
2010-10-06 21:25:45 -07:00
|
|
|
overflow.UnionAllWith(nsRect(0, 0, aDesiredSize.width, aDesiredSize.height));
|
|
|
|
FinishAndStoreOverflow(overflow,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsSize(aDesiredSize.width, aDesiredSize.height));
|
|
|
|
}
|
|
|
|
|
2009-06-21 09:34:03 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord
|
|
|
|
nsTableFrame::GetCollapsedWidth(nsMargin aBorderPadding)
|
|
|
|
{
|
2009-06-21 09:34:03 -07:00
|
|
|
NS_ASSERTION(!GetPrevInFlow(), "GetCollapsedWidth called on next in flow");
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord cellSpacingX = GetCellSpacingX();
|
|
|
|
nscoord width = cellSpacingX;
|
|
|
|
width += aBorderPadding.left + aBorderPadding.right;
|
|
|
|
for (nsIFrame* groupFrame = mColGroups.FirstChild(); groupFrame;
|
|
|
|
groupFrame = groupFrame->GetNextSibling()) {
|
|
|
|
const nsStyleVisibility* groupVis = groupFrame->GetStyleVisibility();
|
2011-09-28 23:19:26 -07:00
|
|
|
bool collapseGroup = (NS_STYLE_VISIBILITY_COLLAPSE == groupVis->mVisible);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableColGroupFrame* cgFrame = (nsTableColGroupFrame*)groupFrame;
|
|
|
|
for (nsTableColFrame* colFrame = cgFrame->GetFirstColumn(); colFrame;
|
|
|
|
colFrame = colFrame->GetNextCol()) {
|
|
|
|
const nsStyleDisplay* colDisplay = colFrame->GetStyleDisplay();
|
|
|
|
PRInt32 colX = colFrame->GetColIndex();
|
|
|
|
if (NS_STYLE_DISPLAY_TABLE_COLUMN == colDisplay->mDisplay) {
|
|
|
|
const nsStyleVisibility* colVis = colFrame->GetStyleVisibility();
|
2011-09-28 23:19:26 -07:00
|
|
|
bool collapseCol = (NS_STYLE_VISIBILITY_COLLAPSE == colVis->mVisible);
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 colWidth = GetColumnWidth(colX);
|
|
|
|
if (!collapseGroup && !collapseCol) {
|
|
|
|
width += colWidth;
|
2008-09-24 10:14:35 -07:00
|
|
|
if (ColumnHasCellSpacingBefore(colX))
|
2007-03-22 10:30:00 -07:00
|
|
|
width += cellSpacingX;
|
|
|
|
}
|
2009-06-21 09:34:03 -07:00
|
|
|
else {
|
2011-10-17 07:59:28 -07:00
|
|
|
SetNeedToCollapse(true);
|
2009-06-21 09:34:03 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return width;
|
|
|
|
}
|
|
|
|
|
2008-11-01 01:52:29 -07:00
|
|
|
/* virtual */ void
|
2008-10-26 03:11:34 -07:00
|
|
|
nsTableFrame::DidSetStyleContext(nsStyleContext* aOldStyleContext)
|
2008-10-18 10:25:26 -07:00
|
|
|
{
|
2012-01-16 15:38:10 -08:00
|
|
|
if (!aOldStyleContext) //avoid this on init
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (IsBorderCollapse() &&
|
|
|
|
BCRecalcNeeded(aOldStyleContext, GetStyleContext())) {
|
|
|
|
SetFullBCDamageArea();
|
|
|
|
}
|
|
|
|
|
|
|
|
//avoid this on init or nextinflow
|
|
|
|
if (!mTableLayoutStrategy || GetPrevInFlow())
|
|
|
|
return;
|
|
|
|
|
|
|
|
bool isAuto = IsAutoLayout();
|
|
|
|
if (isAuto != (LayoutStrategy()->GetType() == nsITableLayoutStrategy::Auto)) {
|
|
|
|
nsITableLayoutStrategy* temp;
|
|
|
|
if (isAuto)
|
|
|
|
temp = new BasicTableLayoutStrategy(this);
|
|
|
|
else
|
|
|
|
temp = new FixedTableLayoutStrategy(this);
|
|
|
|
|
|
|
|
if (temp) {
|
|
|
|
delete mTableLayoutStrategy;
|
|
|
|
mTableLayoutStrategy = temp;
|
|
|
|
}
|
2008-10-18 10:25:26 -07:00
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-08-24 13:54:30 -07:00
|
|
|
nsTableFrame::AppendFrames(ChildListID aListID,
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList& aFrameList)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-08-24 13:54:30 -07:00
|
|
|
NS_ASSERTION(aListID == kPrincipalList || aListID == kColGroupList,
|
2007-03-22 10:30:00 -07:00
|
|
|
"unexpected child list");
|
|
|
|
|
|
|
|
// Because we actually have two child lists, one for col group frames and one
|
|
|
|
// for everything else, we need to look at each frame individually
|
|
|
|
// XXX The frame construction code should be separating out child frames
|
|
|
|
// based on the type, bug 343048.
|
2009-07-30 10:23:32 -07:00
|
|
|
while (!aFrameList.IsEmpty()) {
|
|
|
|
nsIFrame* f = aFrameList.FirstChild();
|
|
|
|
aFrameList.RemoveFrame(f);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// See what kind of frame we have
|
|
|
|
const nsStyleDisplay* display = f->GetStyleDisplay();
|
|
|
|
|
|
|
|
if (NS_STYLE_DISPLAY_TABLE_COLUMN_GROUP == display->mDisplay) {
|
2009-07-30 10:23:32 -07:00
|
|
|
nsTableColGroupFrame* lastColGroup =
|
|
|
|
nsTableColGroupFrame::GetLastRealColGroup(this);
|
2010-04-27 09:15:01 -07:00
|
|
|
PRInt32 startColIndex = (lastColGroup)
|
2007-03-22 10:30:00 -07:00
|
|
|
? lastColGroup->GetStartColumnIndex() + lastColGroup->GetColCount() : 0;
|
2009-07-30 10:23:32 -07:00
|
|
|
mColGroups.InsertFrame(nsnull, lastColGroup, f);
|
2007-03-22 10:30:00 -07:00
|
|
|
// Insert the colgroup and its cols into the table
|
2009-07-30 10:23:32 -07:00
|
|
|
InsertColGroups(startColIndex,
|
|
|
|
nsFrameList::Slice(mColGroups, f, f->GetNextSibling()));
|
2007-03-22 10:30:00 -07:00
|
|
|
} else if (IsRowGroup(display->mDisplay)) {
|
|
|
|
// Append the new row group frame to the sibling chain
|
|
|
|
mFrames.AppendFrame(nsnull, f);
|
|
|
|
|
|
|
|
// insert the row group and its rows into the table
|
2009-07-30 10:23:32 -07:00
|
|
|
InsertRowGroups(nsFrameList::Slice(mFrames, f, nsnull));
|
2007-03-22 10:30:00 -07:00
|
|
|
} else {
|
|
|
|
// Nothing special to do, just add the frame to our child list
|
2009-07-30 10:23:32 -07:00
|
|
|
NS_NOTREACHED("How did we get here? Frame construction screwed up");
|
2007-03-22 10:30:00 -07:00
|
|
|
mFrames.AppendFrame(nsnull, f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_TABLE_CELLMAP
|
|
|
|
printf("=== TableFrame::AppendFrames\n");
|
2011-10-17 07:59:28 -07:00
|
|
|
Dump(true, true, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2007-05-06 12:16:51 -07:00
|
|
|
PresContext()->PresShell()->FrameNeedsReflow(this, nsIPresShell::eTreeChange,
|
|
|
|
NS_FRAME_HAS_DIRTY_CHILDREN);
|
2007-03-22 10:30:00 -07:00
|
|
|
SetGeometryDirty();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-06-01 12:56:33 -07:00
|
|
|
// Needs to be at file scope or ArrayLength fails to compile.
|
|
|
|
struct ChildListInsertions {
|
|
|
|
nsIFrame::ChildListID mID;
|
|
|
|
nsFrameList mList;
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
2011-08-24 13:54:30 -07:00
|
|
|
nsTableFrame::InsertFrames(ChildListID aListID,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* aPrevFrame,
|
2009-07-30 10:23:32 -07:00
|
|
|
nsFrameList& aFrameList)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-06-01 12:56:33 -07:00
|
|
|
// The frames in aFrameList can be a mix of row group frames and col group
|
|
|
|
// frames. The problem is that they should go in separate child lists so
|
|
|
|
// we need to deal with that here...
|
2007-03-22 10:30:00 -07:00
|
|
|
// XXX The frame construction code should be separating out child frames
|
|
|
|
// based on the type, bug 343048.
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(!aPrevFrame || aPrevFrame->GetParent() == this,
|
|
|
|
"inserting after sibling frame with different parent");
|
|
|
|
|
2009-04-23 07:17:46 -07:00
|
|
|
if ((aPrevFrame && !aPrevFrame->GetNextSibling()) ||
|
2011-08-24 13:54:30 -07:00
|
|
|
(!aPrevFrame && GetChildList(aListID).IsEmpty())) {
|
2009-04-23 07:17:46 -07:00
|
|
|
// Treat this like an append; still a workaround for bug 343048.
|
2011-08-24 13:54:30 -07:00
|
|
|
return AppendFrames(aListID, aFrameList);
|
2009-04-23 07:17:46 -07:00
|
|
|
}
|
|
|
|
|
2012-06-01 12:56:33 -07:00
|
|
|
// Collect ColGroupFrames into a separate list and insert those separately
|
|
|
|
// from the other frames (bug 759249).
|
|
|
|
ChildListInsertions insertions[2]; // ColGroup, other
|
|
|
|
const nsStyleDisplay* display = aFrameList.FirstChild()->GetStyleDisplay();
|
|
|
|
nsFrameList::FrameLinkEnumerator e(aFrameList);
|
|
|
|
for (; !aFrameList.IsEmpty(); e.Next()) {
|
|
|
|
nsIFrame* next = e.NextFrame();
|
|
|
|
if (!next || next->GetStyleDisplay()->mDisplay != display->mDisplay) {
|
|
|
|
nsFrameList head = aFrameList.ExtractHead(e);
|
|
|
|
if (display->mDisplay == NS_STYLE_DISPLAY_TABLE_COLUMN_GROUP) {
|
|
|
|
insertions[0].mID = kColGroupList;
|
|
|
|
insertions[0].mList.AppendFrames(nsnull, head);
|
|
|
|
} else {
|
|
|
|
insertions[1].mID = kPrincipalList;
|
|
|
|
insertions[1].mList.AppendFrames(nsnull, head);
|
|
|
|
}
|
|
|
|
if (!next) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
display = next->GetStyleDisplay();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (PRUint32 i = 0; i < ArrayLength(insertions); ++i) {
|
|
|
|
// We pass aPrevFrame for both ColGroup and other frames since
|
|
|
|
// HomogenousInsertFrames will only use it if it's a suitable
|
|
|
|
// prev-sibling for the frames in the frame list.
|
|
|
|
if (!insertions[i].mList.IsEmpty()) {
|
|
|
|
HomogenousInsertFrames(insertions[i].mID, aPrevFrame,
|
|
|
|
insertions[i].mList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsTableFrame::HomogenousInsertFrames(ChildListID aListID,
|
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsFrameList& aFrameList)
|
|
|
|
{
|
2007-03-22 10:30:00 -07:00
|
|
|
// See what kind of frame we have
|
2009-07-30 10:23:32 -07:00
|
|
|
const nsStyleDisplay* display = aFrameList.FirstChild()->GetStyleDisplay();
|
2008-09-27 04:07:29 -07:00
|
|
|
#ifdef DEBUG
|
2012-06-01 12:56:33 -07:00
|
|
|
// Verify that either all siblings have display:table-column-group, or they
|
|
|
|
// all have display values different from table-column-group.
|
2009-07-30 10:23:32 -07:00
|
|
|
for (nsFrameList::Enumerator e(aFrameList); !e.AtEnd(); e.Next()) {
|
|
|
|
const nsStyleDisplay* nextDisplay = e.get()->GetStyleDisplay();
|
2012-06-01 12:56:33 -07:00
|
|
|
MOZ_ASSERT((display->mDisplay == NS_STYLE_DISPLAY_TABLE_COLUMN_GROUP) ==
|
|
|
|
(nextDisplay->mDisplay == NS_STYLE_DISPLAY_TABLE_COLUMN_GROUP),
|
|
|
|
"heterogenous childlist");
|
2008-09-27 04:07:29 -07:00
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aPrevFrame) {
|
|
|
|
const nsStyleDisplay* prevDisplay = aPrevFrame->GetStyleDisplay();
|
|
|
|
// Make sure they belong on the same frame list
|
|
|
|
if ((display->mDisplay == NS_STYLE_DISPLAY_TABLE_COLUMN_GROUP) !=
|
|
|
|
(prevDisplay->mDisplay == NS_STYLE_DISPLAY_TABLE_COLUMN_GROUP)) {
|
|
|
|
// the previous frame is not valid, see comment at ::AppendFrames
|
|
|
|
// XXXbz Using content indices here means XBL will get screwed
|
|
|
|
// over... Oh, well.
|
2009-07-30 10:23:32 -07:00
|
|
|
nsIFrame* pseudoFrame = aFrameList.FirstChild();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIContent* parentContent = GetContent();
|
|
|
|
nsIContent* content;
|
|
|
|
aPrevFrame = nsnull;
|
|
|
|
while (pseudoFrame && (parentContent ==
|
|
|
|
(content = pseudoFrame->GetContent()))) {
|
2011-08-24 13:54:30 -07:00
|
|
|
pseudoFrame = pseudoFrame->GetFirstPrincipalChild();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
nsCOMPtr<nsIContent> container = content->GetParent();
|
2008-01-15 15:29:53 -08:00
|
|
|
if (NS_LIKELY(container)) { // XXX need this null-check, see bug 411823.
|
|
|
|
PRInt32 newIndex = container->IndexOf(content);
|
|
|
|
nsIFrame* kidFrame;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isColGroup = (NS_STYLE_DISPLAY_TABLE_COLUMN_GROUP ==
|
2008-01-15 15:29:53 -08:00
|
|
|
display->mDisplay);
|
2008-10-26 02:20:42 -07:00
|
|
|
nsTableColGroupFrame* lastColGroup;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (isColGroup) {
|
2008-01-15 15:29:53 -08:00
|
|
|
kidFrame = mColGroups.FirstChild();
|
2009-07-30 10:23:32 -07:00
|
|
|
lastColGroup = nsTableColGroupFrame::GetLastRealColGroup(this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-01-15 15:29:53 -08:00
|
|
|
else {
|
|
|
|
kidFrame = mFrames.FirstChild();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-01-15 15:29:53 -08:00
|
|
|
// Important: need to start at a value smaller than all valid indices
|
|
|
|
PRInt32 lastIndex = -1;
|
|
|
|
while (kidFrame) {
|
|
|
|
if (isColGroup) {
|
2008-10-26 02:20:42 -07:00
|
|
|
if (kidFrame == lastColGroup) {
|
|
|
|
aPrevFrame = kidFrame; // there is no real colgroup after this one
|
|
|
|
break;
|
2008-01-15 15:29:53 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pseudoFrame = kidFrame;
|
|
|
|
while (pseudoFrame && (parentContent ==
|
|
|
|
(content = pseudoFrame->GetContent()))) {
|
2011-08-24 13:54:30 -07:00
|
|
|
pseudoFrame = pseudoFrame->GetFirstPrincipalChild();
|
2008-01-15 15:29:53 -08:00
|
|
|
}
|
|
|
|
PRInt32 index = container->IndexOf(content);
|
|
|
|
if (index > lastIndex && index < newIndex) {
|
|
|
|
lastIndex = index;
|
|
|
|
aPrevFrame = kidFrame;
|
|
|
|
}
|
|
|
|
kidFrame = kidFrame->GetNextSibling();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (NS_STYLE_DISPLAY_TABLE_COLUMN_GROUP == display->mDisplay) {
|
2012-06-01 12:56:33 -07:00
|
|
|
NS_ASSERTION(aListID == kColGroupList, "unexpected child list");
|
2009-07-30 10:23:32 -07:00
|
|
|
// Insert the column group frames
|
|
|
|
const nsFrameList::Slice& newColgroups =
|
|
|
|
mColGroups.InsertFrames(nsnull, aPrevFrame, aFrameList);
|
2007-03-22 10:30:00 -07:00
|
|
|
// find the starting col index for the first new col group
|
|
|
|
PRInt32 startColIndex = 0;
|
|
|
|
if (aPrevFrame) {
|
2010-04-27 09:15:01 -07:00
|
|
|
nsTableColGroupFrame* prevColGroup =
|
2007-03-22 10:30:00 -07:00
|
|
|
(nsTableColGroupFrame*)GetFrameAtOrBefore(this, aPrevFrame,
|
|
|
|
nsGkAtoms::tableColGroupFrame);
|
|
|
|
if (prevColGroup) {
|
|
|
|
startColIndex = prevColGroup->GetStartColumnIndex() + prevColGroup->GetColCount();
|
|
|
|
}
|
|
|
|
}
|
2009-07-30 10:23:32 -07:00
|
|
|
InsertColGroups(startColIndex, newColgroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
} else if (IsRowGroup(display->mDisplay)) {
|
2011-08-24 13:54:30 -07:00
|
|
|
NS_ASSERTION(aListID == kPrincipalList, "unexpected child list");
|
2007-03-22 10:30:00 -07:00
|
|
|
// Insert the frames in the sibling chain
|
2009-07-30 10:23:32 -07:00
|
|
|
const nsFrameList::Slice& newRowGroups =
|
|
|
|
mFrames.InsertFrames(nsnull, aPrevFrame, aFrameList);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-07-30 10:23:32 -07:00
|
|
|
InsertRowGroups(newRowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
} else {
|
2011-08-24 13:54:30 -07:00
|
|
|
NS_ASSERTION(aListID == kPrincipalList, "unexpected child list");
|
2009-07-30 10:23:32 -07:00
|
|
|
NS_NOTREACHED("How did we even get here?");
|
2007-03-22 10:30:00 -07:00
|
|
|
// Just insert the frame and don't worry about reflowing it
|
2008-09-27 04:07:29 -07:00
|
|
|
mFrames.InsertFrames(nsnull, aPrevFrame, aFrameList);
|
2012-06-01 12:56:33 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2007-05-06 12:16:51 -07:00
|
|
|
PresContext()->PresShell()->FrameNeedsReflow(this, nsIPresShell::eTreeChange,
|
|
|
|
NS_FRAME_HAS_DIRTY_CHILDREN);
|
2007-03-22 10:30:00 -07:00
|
|
|
SetGeometryDirty();
|
|
|
|
#ifdef DEBUG_TABLE_CELLMAP
|
|
|
|
printf("=== TableFrame::InsertFrames\n");
|
2011-10-17 07:59:28 -07:00
|
|
|
Dump(true, true, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2012-06-01 12:56:33 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-08-24 13:54:30 -07:00
|
|
|
nsTableFrame::RemoveFrame(ChildListID aListID,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* aOldFrame)
|
|
|
|
{
|
2011-08-24 13:54:30 -07:00
|
|
|
NS_ASSERTION(aListID == kColGroupList ||
|
2009-12-23 21:20:41 -08:00
|
|
|
NS_STYLE_DISPLAY_TABLE_COLUMN_GROUP !=
|
|
|
|
aOldFrame->GetStyleDisplay()->mDisplay,
|
2011-08-24 13:54:30 -07:00
|
|
|
"Wrong list name; use kColGroupList iff colgroup");
|
|
|
|
if (aListID == kColGroupList) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* nextColGroupFrame = aOldFrame->GetNextSibling();
|
|
|
|
nsTableColGroupFrame* colGroup = (nsTableColGroupFrame*)aOldFrame;
|
|
|
|
PRInt32 firstColIndex = colGroup->GetStartColumnIndex();
|
|
|
|
PRInt32 lastColIndex = firstColIndex + colGroup->GetColCount() - 1;
|
|
|
|
mColGroups.DestroyFrame(aOldFrame);
|
|
|
|
nsTableColGroupFrame::ResetColIndices(nextColGroupFrame, firstColIndex);
|
|
|
|
// remove the cols from the table
|
|
|
|
PRInt32 colX;
|
|
|
|
for (colX = lastColIndex; colX >= firstColIndex; colX--) {
|
2009-02-05 01:09:50 -08:00
|
|
|
nsTableColFrame* colFrame = mColFrames.SafeElementAt(colX);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (colFrame) {
|
2011-10-17 07:59:28 -07:00
|
|
|
RemoveCol(colGroup, colX, true, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-05 01:09:50 -08:00
|
|
|
PRInt32 numAnonymousColsToAdd = GetColCount() - mColFrames.Length();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (numAnonymousColsToAdd > 0) {
|
|
|
|
// this sets the child list, updates the col cache and cell map
|
2009-07-12 10:47:10 -07:00
|
|
|
AppendAnonymousColFrames(numAnonymousColsToAdd);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2011-08-24 13:54:30 -07:00
|
|
|
NS_ASSERTION(aListID == kPrincipalList, "unexpected child list");
|
2010-01-16 08:05:46 -08:00
|
|
|
nsTableRowGroupFrame* rgFrame =
|
|
|
|
static_cast<nsTableRowGroupFrame*>(aOldFrame);
|
|
|
|
// remove the row group from the cell map
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (cellMap) {
|
|
|
|
cellMap->RemoveGroupCellMap(rgFrame);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-01-16 08:05:46 -08:00
|
|
|
// remove the row group frame from the sibling chain
|
|
|
|
mFrames.DestroyFrame(aOldFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-01-16 08:05:46 -08:00
|
|
|
// the removal of a row group changes the cellmap, the columns might change
|
|
|
|
if (cellMap) {
|
|
|
|
cellMap->Synchronize(this);
|
|
|
|
// Create an empty slice
|
|
|
|
ResetRowIndices(nsFrameList::Slice(mFrames, nsnull, nsnull));
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea;
|
2011-10-17 07:59:28 -07:00
|
|
|
cellMap->RebuildConsideringCells(nsnull, nsnull, 0, 0, false, damageArea);
|
2010-01-16 08:05:46 -08:00
|
|
|
|
2011-03-25 21:37:35 -07:00
|
|
|
MatchCellMapToColCache(cellMap);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// for now, just bail and recalc all of the collapsing borders
|
2010-01-16 08:05:46 -08:00
|
|
|
// as the cellmap changes we need to recalc
|
2007-03-22 10:30:00 -07:00
|
|
|
if (IsBorderCollapse()) {
|
2011-10-27 06:58:44 -07:00
|
|
|
SetFullBCDamageArea();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-05-06 12:16:51 -07:00
|
|
|
PresContext()->PresShell()->FrameNeedsReflow(this, nsIPresShell::eTreeChange,
|
|
|
|
NS_FRAME_HAS_DIRTY_CHILDREN);
|
2007-03-22 10:30:00 -07:00
|
|
|
SetGeometryDirty();
|
|
|
|
#ifdef DEBUG_TABLE_CELLMAP
|
|
|
|
printf("=== TableFrame::RemoveFrame\n");
|
2011-10-17 07:59:28 -07:00
|
|
|
Dump(true, true, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nsMargin
|
|
|
|
nsTableFrame::GetUsedBorder() const
|
|
|
|
{
|
|
|
|
if (!IsBorderCollapse())
|
2011-12-27 12:18:48 -08:00
|
|
|
return nsContainerFrame::GetUsedBorder();
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return GetIncludedOuterBCBorder();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtual */ nsMargin
|
|
|
|
nsTableFrame::GetUsedPadding() const
|
|
|
|
{
|
|
|
|
if (!IsBorderCollapse())
|
2011-12-27 12:18:48 -08:00
|
|
|
return nsContainerFrame::GetUsedPadding();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return nsMargin(0,0,0,0);
|
|
|
|
}
|
|
|
|
|
Bug 659828 - Part 1: Apply table margins to the outer table frame instead of the inner table frame (also fixes bug 87277); r=dbaron
Outer table frames act as CSS2.1 table wrapper boxes. We used to lay them out
without taking their margins into the account, which meant that their width was
always equal to the available width. This breaks horizontal positioning of
absolutely positioned kids of a table frame.
The main purpose of this patch is to apply the margins of tables to their outer
frame, instead of the inner frame. This means that the inner table frame will
always have a zero margin, which means that a lot of the stuff which used to
rely on the fact that table margins are applied to the inner frame need to
change.
In particular, in order to get the computed margins of a table, we used to query
the inner table frame, and this patch corrects that. Also, when shrink wrapping
tables, we used to not take the margins of the inner table frame into account,
which is fixed by this patch too. nsBlockReflowState::
ComputeReplacedBlockOffsetsForFloats also needed to be changed to read the
margin values from the outer frame too.
Also, as part of this patch, we start to respect the CSS2.1 margin model for
captions on all sides. This means that in particular, the top/bottom margins on
the top-outside and bottom-outside captions will not be collapsed with the
top/bottom margins of the table, and that the margins of the caption element
contribute to the width and height of the outer table frame. The
427129-table-caption reftest has been modified to match this new behavior.
Another side effect of this bug is fixing bug 87277, and the reftests for that
bug are marked as passing in this patch.
2011-05-31 16:02:56 -07:00
|
|
|
/* virtual */ nsMargin
|
|
|
|
nsTableFrame::GetUsedMargin() const
|
|
|
|
{
|
|
|
|
// The margin is inherited to the outer table frame via
|
|
|
|
// the ::-moz-table-outer rule in ua.css.
|
|
|
|
return nsMargin(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2010-03-28 18:46:55 -07:00
|
|
|
// Destructor function for BCPropertyData properties
|
|
|
|
static void
|
|
|
|
DestroyBCProperty(void* aPropertyValue)
|
|
|
|
{
|
|
|
|
delete static_cast<BCPropertyData*>(aPropertyValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_DECLARE_FRAME_PROPERTY(TableBCProperty, DestroyBCProperty)
|
|
|
|
|
2011-10-27 06:58:44 -07:00
|
|
|
BCPropertyData*
|
|
|
|
nsTableFrame::GetBCProperty(bool aCreateIfNecessary) const
|
|
|
|
{
|
|
|
|
FrameProperties props = Properties();
|
|
|
|
BCPropertyData* value = static_cast<BCPropertyData*>
|
|
|
|
(props.Get(TableBCProperty()));
|
|
|
|
if (!value && aCreateIfNecessary) {
|
|
|
|
value = new BCPropertyData();
|
|
|
|
props.Set(TableBCProperty(), value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
static void
|
2009-11-05 01:26:00 -08:00
|
|
|
DivideBCBorderSize(BCPixelSize aPixelSize,
|
|
|
|
BCPixelSize& aSmallHalf,
|
|
|
|
BCPixelSize& aLargeHalf)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
aSmallHalf = aPixelSize / 2;
|
|
|
|
aLargeHalf = aPixelSize - aSmallHalf;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMargin
|
|
|
|
nsTableFrame::GetOuterBCBorder() const
|
|
|
|
{
|
|
|
|
if (NeedToCalcBCBorders())
|
2007-07-08 00:08:04 -07:00
|
|
|
const_cast<nsTableFrame*>(this)->CalcBCBorders();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsMargin border(0, 0, 0, 0);
|
|
|
|
PRInt32 p2t = nsPresContext::AppUnitsPerCSSPixel();
|
2011-10-27 06:58:44 -07:00
|
|
|
BCPropertyData* propData = GetBCProperty();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (propData) {
|
2009-02-08 08:46:42 -08:00
|
|
|
border.top = BC_BORDER_TOP_HALF_COORD(p2t, propData->mTopBorderWidth);
|
|
|
|
border.right = BC_BORDER_RIGHT_HALF_COORD(p2t, propData->mRightBorderWidth);
|
|
|
|
border.bottom = BC_BORDER_BOTTOM_HALF_COORD(p2t, propData->mBottomBorderWidth);
|
|
|
|
border.left = BC_BORDER_LEFT_HALF_COORD(p2t, propData->mLeftBorderWidth);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
return border;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMargin
|
|
|
|
nsTableFrame::GetIncludedOuterBCBorder() const
|
|
|
|
{
|
2009-02-08 08:46:42 -08:00
|
|
|
if (NeedToCalcBCBorders())
|
|
|
|
const_cast<nsTableFrame*>(this)->CalcBCBorders();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsMargin border(0, 0, 0, 0);
|
2009-02-08 08:46:42 -08:00
|
|
|
PRInt32 p2t = nsPresContext::AppUnitsPerCSSPixel();
|
2011-10-27 06:58:44 -07:00
|
|
|
BCPropertyData* propData = GetBCProperty();
|
2009-02-08 08:46:42 -08:00
|
|
|
if (propData) {
|
|
|
|
border.top += BC_BORDER_TOP_HALF_COORD(p2t, propData->mTopBorderWidth);
|
|
|
|
border.right += BC_BORDER_RIGHT_HALF_COORD(p2t, propData->mRightCellBorderWidth);
|
|
|
|
border.bottom += BC_BORDER_BOTTOM_HALF_COORD(p2t, propData->mBottomBorderWidth);
|
|
|
|
border.left += BC_BORDER_LEFT_HALF_COORD(p2t, propData->mLeftCellBorderWidth);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
return border;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsMargin
|
|
|
|
nsTableFrame::GetExcludedOuterBCBorder() const
|
|
|
|
{
|
2009-02-08 08:46:42 -08:00
|
|
|
return GetOuterBCBorder() - GetIncludedOuterBCBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-07-21 17:44:52 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
static
|
|
|
|
void GetSeparateModelBorderPadding(const nsHTMLReflowState* aReflowState,
|
|
|
|
nsStyleContext& aStyleContext,
|
|
|
|
nsMargin& aBorderPadding)
|
|
|
|
{
|
|
|
|
// XXXbz Either we _do_ have a reflow state and then we can use its
|
|
|
|
// mComputedBorderPadding or we don't and then we get the padding
|
|
|
|
// wrong!
|
|
|
|
const nsStyleBorder* border = aStyleContext.GetStyleBorder();
|
2012-05-30 22:19:49 -07:00
|
|
|
aBorderPadding = border->GetComputedBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aReflowState) {
|
|
|
|
aBorderPadding += aReflowState->mComputedPadding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
nsMargin
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::GetChildAreaOffset(const nsHTMLReflowState* aReflowState) const
|
|
|
|
{
|
|
|
|
nsMargin offset(0,0,0,0);
|
|
|
|
if (IsBorderCollapse()) {
|
2009-02-08 08:46:42 -08:00
|
|
|
offset = GetIncludedOuterBCBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
GetSeparateModelBorderPadding(aReflowState, *mStyleContext, offset);
|
|
|
|
}
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-04-27 09:15:01 -07:00
|
|
|
nsTableFrame::InitChildReflowState(nsHTMLReflowState& aReflowState)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsMargin collapseBorder;
|
|
|
|
nsMargin padding(0,0,0,0);
|
|
|
|
nsMargin* pCollapseBorder = nsnull;
|
2007-03-30 14:11:41 -07:00
|
|
|
nsPresContext* presContext = PresContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (IsBorderCollapse()) {
|
2010-01-16 08:05:46 -08:00
|
|
|
nsTableRowGroupFrame* rgFrame =
|
|
|
|
static_cast<nsTableRowGroupFrame*>(aReflowState.frame);
|
|
|
|
pCollapseBorder = rgFrame->GetBCBorderWidth(collapseBorder);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
aReflowState.Init(presContext, -1, -1, pCollapseBorder, &padding);
|
|
|
|
|
|
|
|
NS_ASSERTION(!mBits.mResizedColumns ||
|
|
|
|
!aReflowState.parentReflowState->mFlags.mSpecialHeightReflow,
|
|
|
|
"should not resize columns on special height reflow");
|
|
|
|
if (mBits.mResizedColumns) {
|
2011-10-17 07:59:28 -07:00
|
|
|
aReflowState.mFlags.mHResize = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Position and size aKidFrame and update our reflow state. The origin of
|
|
|
|
// aKidRect is relative to the upper-left origin of our frame
|
|
|
|
void nsTableFrame::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)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-03 17:24:55 -07:00
|
|
|
bool isFirstReflow =
|
|
|
|
(aKidFrame->GetStateBits() & NS_FRAME_FIRST_REFLOW) != 0;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Place and size the child
|
2007-03-30 14:11:41 -07:00
|
|
|
FinishReflowChild(aKidFrame, PresContext(), nsnull, aKidDesiredSize,
|
2007-03-22 10:30:00 -07:00
|
|
|
aReflowState.x, aReflowState.y, 0);
|
|
|
|
|
2012-07-03 17:24:55 -07:00
|
|
|
InvalidateFrame(aKidFrame, aOriginalKidRect, aOriginalKidVisualOverflow,
|
|
|
|
isFirstReflow);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Adjust the running y-offset
|
|
|
|
aReflowState.y += aKidDesiredSize.height;
|
|
|
|
|
|
|
|
// If our height is constrained, then update the available height
|
|
|
|
if (NS_UNCONSTRAINEDSIZE != aReflowState.availSize.height) {
|
|
|
|
aReflowState.availSize.height -= aKidDesiredSize.height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-01-16 08:05:46 -08:00
|
|
|
nsTableFrame::OrderRowGroups(RowGroupArray& aChildren,
|
|
|
|
nsTableRowGroupFrame** aHead,
|
|
|
|
nsTableRowGroupFrame** aFoot) const
|
2007-06-05 11:55:26 -07:00
|
|
|
{
|
|
|
|
aChildren.Clear();
|
|
|
|
nsTableRowGroupFrame* head = nsnull;
|
|
|
|
nsTableRowGroupFrame* foot = nsnull;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-06-05 11:55:26 -07:00
|
|
|
nsIFrame* kidFrame = mFrames.FirstChild();
|
|
|
|
while (kidFrame) {
|
|
|
|
const nsStyleDisplay* kidDisplay = kidFrame->GetStyleDisplay();
|
2010-01-16 08:05:46 -08:00
|
|
|
nsTableRowGroupFrame* rowGroup =
|
|
|
|
static_cast<nsTableRowGroupFrame*>(kidFrame);
|
|
|
|
|
|
|
|
switch (kidDisplay->mDisplay) {
|
|
|
|
case NS_STYLE_DISPLAY_TABLE_HEADER_GROUP:
|
|
|
|
if (head) { // treat additional thead like tbody
|
2007-06-05 11:55:26 -07:00
|
|
|
aChildren.AppendElement(rowGroup);
|
|
|
|
}
|
2010-01-16 08:05:46 -08:00
|
|
|
else {
|
|
|
|
head = rowGroup;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-01-16 08:05:46 -08:00
|
|
|
break;
|
|
|
|
case NS_STYLE_DISPLAY_TABLE_FOOTER_GROUP:
|
|
|
|
if (foot) { // treat additional tfoot like tbody
|
|
|
|
aChildren.AppendElement(rowGroup);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
foot = rowGroup;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NS_STYLE_DISPLAY_TABLE_ROW_GROUP:
|
|
|
|
aChildren.AppendElement(rowGroup);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
NS_NOTREACHED("How did this produce an nsTableRowGroupFrame?");
|
|
|
|
// Just ignore it
|
|
|
|
break;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// Get the next sibling but skip it if it's also the next-in-flow, since
|
|
|
|
// a next-in-flow will not be part of the current table.
|
|
|
|
while (kidFrame) {
|
|
|
|
nsIFrame* nif = kidFrame->GetNextInFlow();
|
|
|
|
kidFrame = kidFrame->GetNextSibling();
|
2010-04-27 09:15:01 -07:00
|
|
|
if (kidFrame != nif)
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-01-16 08:05:46 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// put the thead first
|
|
|
|
if (head) {
|
2007-06-05 11:55:26 -07:00
|
|
|
aChildren.InsertElementAt(0, head);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-01-16 08:05:46 -08:00
|
|
|
if (aHead)
|
|
|
|
*aHead = head;
|
2007-03-22 10:30:00 -07:00
|
|
|
// put the tfoot after the last tbody
|
|
|
|
if (foot) {
|
2007-06-05 11:55:26 -07:00
|
|
|
aChildren.AppendElement(foot);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-01-16 08:05:46 -08:00
|
|
|
if (aFoot)
|
|
|
|
*aFoot = foot;
|
2007-06-05 11:55:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsTableRowGroupFrame*
|
|
|
|
nsTableFrame::GetTHead() const
|
|
|
|
{
|
|
|
|
nsIFrame* kidFrame = mFrames.FirstChild();
|
|
|
|
while (kidFrame) {
|
|
|
|
if (kidFrame->GetStyleDisplay()->mDisplay ==
|
|
|
|
NS_STYLE_DISPLAY_TABLE_HEADER_GROUP) {
|
2010-01-16 08:05:46 -08:00
|
|
|
return static_cast<nsTableRowGroupFrame*>(kidFrame);
|
2007-06-05 11:55:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the next sibling but skip it if it's also the next-in-flow, since
|
|
|
|
// a next-in-flow will not be part of the current table.
|
|
|
|
while (kidFrame) {
|
|
|
|
nsIFrame* nif = kidFrame->GetNextInFlow();
|
|
|
|
kidFrame = kidFrame->GetNextSibling();
|
2010-04-27 09:15:01 -07:00
|
|
|
if (kidFrame != nif)
|
2007-06-05 11:55:26 -07:00
|
|
|
break;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-06-05 11:55:26 -07:00
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTableRowGroupFrame*
|
|
|
|
nsTableFrame::GetTFoot() const
|
|
|
|
{
|
|
|
|
nsIFrame* kidFrame = mFrames.FirstChild();
|
|
|
|
while (kidFrame) {
|
|
|
|
if (kidFrame->GetStyleDisplay()->mDisplay ==
|
|
|
|
NS_STYLE_DISPLAY_TABLE_FOOTER_GROUP) {
|
2010-01-16 08:05:46 -08:00
|
|
|
return static_cast<nsTableRowGroupFrame*>(kidFrame);
|
2007-06-05 11:55:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the next sibling but skip it if it's also the next-in-flow, since
|
|
|
|
// a next-in-flow will not be part of the current table.
|
|
|
|
while (kidFrame) {
|
|
|
|
nsIFrame* nif = kidFrame->GetNextInFlow();
|
|
|
|
kidFrame = kidFrame->GetNextSibling();
|
2010-04-27 09:15:01 -07:00
|
|
|
if (kidFrame != nif)
|
2007-06-05 11:55:26 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2007-12-04 18:32:56 -08:00
|
|
|
IsRepeatable(nscoord aFrameHeight, nscoord aPageHeight)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-12-04 18:32:56 -08:00
|
|
|
return aFrameHeight < (aPageHeight / 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsTableFrame::SetupHeaderFooterChild(const nsTableReflowState& aReflowState,
|
|
|
|
nsTableRowGroupFrame* aFrame,
|
|
|
|
nscoord* aDesiredHeight)
|
|
|
|
{
|
|
|
|
nsPresContext* presContext = PresContext();
|
|
|
|
nscoord pageHeight = presContext->GetPageSize().height;
|
|
|
|
|
|
|
|
// Reflow the child with unconstrainted height
|
|
|
|
nsHTMLReflowState kidReflowState(presContext, aReflowState.reflowState,
|
|
|
|
aFrame,
|
|
|
|
nsSize(aReflowState.availSize.width, NS_UNCONSTRAINEDSIZE),
|
2011-10-17 07:59:28 -07:00
|
|
|
-1, -1, false);
|
2007-12-04 18:32:56 -08:00
|
|
|
InitChildReflowState(kidReflowState);
|
2011-10-17 07:59:28 -07:00
|
|
|
kidReflowState.mFlags.mIsTopOfPage = true;
|
2007-12-04 18:32:56 -08:00
|
|
|
nsHTMLReflowMetrics desiredSize;
|
|
|
|
desiredSize.width = desiredSize.height = 0;
|
|
|
|
nsReflowStatus status;
|
|
|
|
nsresult rv = ReflowChild(aFrame, presContext, desiredSize, kidReflowState,
|
|
|
|
aReflowState.x, aReflowState.y, 0, status);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// The child will be reflowed again "for real" so no need to place it now
|
|
|
|
|
|
|
|
aFrame->SetRepeatable(IsRepeatable(desiredSize.height, pageHeight));
|
|
|
|
*aDesiredHeight = desiredSize.height;
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-05-13 07:15:49 -07:00
|
|
|
void
|
|
|
|
nsTableFrame::PlaceRepeatedFooter(nsTableReflowState& aReflowState,
|
|
|
|
nsTableRowGroupFrame *aTfoot,
|
|
|
|
nscoord aFooterHeight)
|
|
|
|
{
|
|
|
|
nsPresContext* presContext = PresContext();
|
|
|
|
nsSize kidAvailSize(aReflowState.availSize);
|
|
|
|
kidAvailSize.height = aFooterHeight;
|
|
|
|
nsHTMLReflowState footerReflowState(presContext,
|
|
|
|
aReflowState.reflowState,
|
|
|
|
aTfoot, kidAvailSize,
|
2011-10-17 07:59:28 -07:00
|
|
|
-1, -1, false);
|
2010-05-13 07:15:49 -07:00
|
|
|
InitChildReflowState(footerReflowState);
|
|
|
|
aReflowState.y += GetCellSpacingY();
|
|
|
|
|
|
|
|
nsRect origTfootRect = aTfoot->GetRect();
|
2010-10-06 21:25:46 -07:00
|
|
|
nsRect origTfootVisualOverflow = aTfoot->GetVisualOverflowRect();
|
2010-05-13 07:15:49 -07:00
|
|
|
|
|
|
|
nsReflowStatus footerStatus;
|
|
|
|
nsHTMLReflowMetrics desiredSize;
|
|
|
|
desiredSize.width = desiredSize.height = 0;
|
|
|
|
ReflowChild(aTfoot, presContext, desiredSize, footerReflowState,
|
|
|
|
aReflowState.x, aReflowState.y,
|
|
|
|
NS_FRAME_INVALIDATE_ON_MOVE, footerStatus);
|
|
|
|
PlaceChild(aReflowState, aTfoot, desiredSize, origTfootRect,
|
2010-10-06 21:25:46 -07:00
|
|
|
origTfootVisualOverflow);
|
2010-05-13 07:15:49 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Reflow the children based on the avail size and reason in aReflowState
|
|
|
|
// update aReflowMetrics a aStatus
|
2010-10-06 21:25:46 -07:00
|
|
|
nsresult
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::ReflowChildren(nsTableReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
|
|
|
nsIFrame*& aLastChildReflowed,
|
2010-10-06 21:25:46 -07:00
|
|
|
nsOverflowAreas& aOverflowAreas)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
|
|
|
aLastChildReflowed = nsnull;
|
|
|
|
|
|
|
|
nsIFrame* prevKidFrame = nsnull;
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nscoord cellSpacingY = GetCellSpacingY();
|
|
|
|
|
2007-03-30 14:11:41 -07:00
|
|
|
nsPresContext* presContext = PresContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
// XXXldb Should we be checking constrained height instead?
|
2011-08-13 09:37:43 -07:00
|
|
|
// tables are not able to pull back children from its next inflow, so even
|
|
|
|
// under paginated contexts tables are should not paginate if they are inside
|
|
|
|
// column set
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isPaginated = presContext->IsPaginated() &&
|
2011-08-13 09:37:43 -07:00
|
|
|
NS_UNCONSTRAINEDSIZE != aReflowState.availSize.height &&
|
|
|
|
aReflowState.reflowState.mFlags.mTableIsSplittable;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-10-06 21:25:46 -07:00
|
|
|
aOverflowAreas.Clear();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool reflowAllKids = aReflowState.reflowState.ShouldReflowAllKids() ||
|
2007-05-17 23:04:43 -07:00
|
|
|
mBits.mResizedColumns ||
|
|
|
|
IsGeometryDirty();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-01-16 08:05:46 -08:00
|
|
|
RowGroupArray rowGroups;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableRowGroupFrame *thead, *tfoot;
|
2010-01-16 08:05:46 -08:00
|
|
|
OrderRowGroups(rowGroups, &thead, &tfoot);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool pageBreak = false;
|
2007-12-04 18:32:56 -08:00
|
|
|
nscoord footerHeight = 0;
|
|
|
|
|
|
|
|
// Determine the repeatablility of headers and footers, and also the desired
|
|
|
|
// height of any repeatable footer.
|
|
|
|
// The repeatability of headers on continued tables is handled
|
|
|
|
// when they are created in nsCSSFrameConstructor::CreateContinuingTableFrame.
|
|
|
|
// We handle the repeatability of footers again here because we need to
|
|
|
|
// determine the footer's height anyway. We could perhaps optimize by
|
|
|
|
// using the footer's prev-in-flow's height instead of reflowing it again,
|
|
|
|
// but there's no real need.
|
|
|
|
if (isPaginated) {
|
|
|
|
if (thead && !GetPrevInFlow()) {
|
|
|
|
nscoord desiredHeight;
|
|
|
|
rv = SetupHeaderFooterChild(aReflowState, thead, &desiredHeight);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if (tfoot) {
|
|
|
|
rv = SetupHeaderFooterChild(aReflowState, tfoot, &footerHeight);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
2010-05-13 07:15:49 -07:00
|
|
|
// if the child is a tbody in paginated mode reduce the height by a repeated footer
|
2011-09-28 23:19:26 -07:00
|
|
|
bool allowRepeatedFooter = false;
|
2010-01-16 08:05:46 -08:00
|
|
|
for (PRUint32 childX = 0; childX < rowGroups.Length(); childX++) {
|
2007-06-05 11:55:26 -07:00
|
|
|
nsIFrame* kidFrame = rowGroups[childX];
|
2007-03-22 10:30:00 -07:00
|
|
|
// Get the frame state bits
|
|
|
|
// See if we should only reflow the dirty child frames
|
|
|
|
if (reflowAllKids ||
|
2007-05-06 12:16:51 -07:00
|
|
|
NS_SUBTREE_DIRTY(kidFrame) ||
|
2007-03-22 10:30:00 -07:00
|
|
|
(aReflowState.reflowState.mFlags.mSpecialHeightReflow &&
|
|
|
|
(isPaginated || (kidFrame->GetStateBits() &
|
|
|
|
NS_FRAME_CONTAINS_RELATIVE_HEIGHT)))) {
|
|
|
|
if (pageBreak) {
|
2010-05-13 07:15:49 -07:00
|
|
|
if (allowRepeatedFooter) {
|
|
|
|
PlaceRepeatedFooter(aReflowState, tfoot, footerHeight);
|
|
|
|
}
|
2011-08-13 09:37:43 -07:00
|
|
|
else if (tfoot && tfoot->IsRepeatable()) {
|
2011-10-17 07:59:28 -07:00
|
|
|
tfoot->SetRepeatable(false);
|
2011-08-13 09:37:43 -07:00
|
|
|
}
|
|
|
|
PushChildren(rowGroups, childX);
|
2007-03-22 10:30:00 -07:00
|
|
|
aStatus = NS_FRAME_NOT_COMPLETE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSize kidAvailSize(aReflowState.availSize);
|
2011-10-17 07:59:28 -07:00
|
|
|
allowRepeatedFooter = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (isPaginated && (NS_UNCONSTRAINEDSIZE != kidAvailSize.height)) {
|
2010-01-16 08:05:46 -08:00
|
|
|
nsTableRowGroupFrame* kidRG =
|
|
|
|
static_cast<nsTableRowGroupFrame*>(kidFrame);
|
2007-12-04 18:32:56 -08:00
|
|
|
if (kidRG != thead && kidRG != tfoot && tfoot && tfoot->IsRepeatable()) {
|
|
|
|
// the child is a tbody and there is a repeatable footer
|
|
|
|
NS_ASSERTION(tfoot == rowGroups[rowGroups.Length() - 1], "Missing footer!");
|
|
|
|
if (footerHeight + cellSpacingY < kidAvailSize.height) {
|
2011-10-17 07:59:28 -07:00
|
|
|
allowRepeatedFooter = true;
|
2007-12-04 18:32:56 -08:00
|
|
|
kidAvailSize.height -= footerHeight + cellSpacingY;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRect oldKidRect = kidFrame->GetRect();
|
2010-10-06 21:25:46 -07:00
|
|
|
nsRect oldKidVisualOverflow = kidFrame->GetVisualOverflowRect();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsHTMLReflowMetrics desiredSize;
|
|
|
|
desiredSize.width = desiredSize.height = 0;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Reflow the child into the available space
|
|
|
|
nsHTMLReflowState kidReflowState(presContext, aReflowState.reflowState,
|
|
|
|
kidFrame, kidAvailSize,
|
2011-10-17 07:59:28 -07:00
|
|
|
-1, -1, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
InitChildReflowState(kidReflowState);
|
|
|
|
|
2008-04-17 11:18:41 -07:00
|
|
|
// If this isn't the first row group, and the previous row group has a
|
|
|
|
// nonzero YMost, then we can't be at the top of the page.
|
|
|
|
// We ignore the head row group in this check, because a head row group
|
|
|
|
// may be automatically added at the top of *every* page. This prevents
|
|
|
|
// infinite loops in some circumstances - see bug 344883.
|
|
|
|
if (childX > (thead ? 1 : 0) &&
|
|
|
|
(rowGroups[childX - 1]->GetRect().YMost() > 0)) {
|
2011-10-17 07:59:28 -07:00
|
|
|
kidReflowState.mFlags.mIsTopOfPage = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
aReflowState.y += cellSpacingY;
|
|
|
|
if (NS_UNCONSTRAINEDSIZE != aReflowState.availSize.height) {
|
|
|
|
aReflowState.availSize.height -= cellSpacingY;
|
|
|
|
}
|
|
|
|
// record the presence of a next in flow, it might get destroyed so we
|
|
|
|
// need to reorder the row group array
|
2011-09-28 23:19:26 -07:00
|
|
|
bool reorder = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (kidFrame->GetNextInFlow())
|
2011-10-17 07:59:28 -07:00
|
|
|
reorder = true;
|
2008-02-08 01:36:32 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
rv = ReflowChild(kidFrame, presContext, desiredSize, kidReflowState,
|
2008-02-08 01:36:32 -08:00
|
|
|
aReflowState.x, aReflowState.y,
|
|
|
|
NS_FRAME_INVALIDATE_ON_MOVE, aStatus);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (reorder) {
|
|
|
|
// reorder row groups the reflow may have changed the nextinflows
|
2010-01-16 08:05:46 -08:00
|
|
|
OrderRowGroups(rowGroups, &thead, &tfoot);
|
2007-06-05 11:55:26 -07:00
|
|
|
childX = rowGroups.IndexOf(kidFrame);
|
|
|
|
if (childX == RowGroupArray::NoIndex) {
|
|
|
|
// XXXbz can this happen?
|
2010-01-16 08:05:46 -08:00
|
|
|
childX = rowGroups.Length();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// see if the rowgroup did not fit on this page might be pushed on
|
|
|
|
// the next page
|
|
|
|
if (NS_FRAME_IS_COMPLETE(aStatus) && isPaginated &&
|
|
|
|
(NS_UNCONSTRAINEDSIZE != kidReflowState.availableHeight) &&
|
|
|
|
kidReflowState.availableHeight < desiredSize.height) {
|
|
|
|
// if we are on top of the page place with dataloss
|
|
|
|
if (kidReflowState.mFlags.mIsTopOfPage) {
|
2007-06-05 11:55:26 -07:00
|
|
|
if (childX+1 < rowGroups.Length()) {
|
|
|
|
nsIFrame* nextRowGroupFrame = rowGroups[childX + 1];
|
2007-03-22 10:30:00 -07:00
|
|
|
if (nextRowGroupFrame) {
|
2008-03-16 13:32:48 -07:00
|
|
|
PlaceChild(aReflowState, kidFrame, desiredSize, oldKidRect,
|
2010-10-06 21:25:46 -07:00
|
|
|
oldKidVisualOverflow);
|
2010-05-13 07:15:49 -07:00
|
|
|
if (allowRepeatedFooter) {
|
|
|
|
PlaceRepeatedFooter(aReflowState, tfoot, footerHeight);
|
|
|
|
}
|
2011-08-13 09:37:43 -07:00
|
|
|
else if (tfoot && tfoot->IsRepeatable()) {
|
2011-10-17 07:59:28 -07:00
|
|
|
tfoot->SetRepeatable(false);
|
2011-08-13 09:37:43 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
aStatus = NS_FRAME_NOT_COMPLETE;
|
|
|
|
PushChildren(rowGroups, childX + 1);
|
|
|
|
aLastChildReflowed = kidFrame;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { // we are not on top, push this rowgroup onto the next page
|
|
|
|
if (prevKidFrame) { // we had a rowgroup before so push this
|
2010-05-13 07:15:49 -07:00
|
|
|
if (allowRepeatedFooter) {
|
|
|
|
PlaceRepeatedFooter(aReflowState, tfoot, footerHeight);
|
|
|
|
}
|
2011-08-13 09:37:43 -07:00
|
|
|
else if (tfoot && tfoot->IsRepeatable()) {
|
2011-10-17 07:59:28 -07:00
|
|
|
tfoot->SetRepeatable(false);
|
2011-08-13 09:37:43 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
aStatus = NS_FRAME_NOT_COMPLETE;
|
|
|
|
PushChildren(rowGroups, childX);
|
|
|
|
aLastChildReflowed = prevKidFrame;
|
|
|
|
break;
|
|
|
|
}
|
2011-07-26 10:22:46 -07:00
|
|
|
else { // we can't push so lets make clear how much space we need
|
|
|
|
PlaceChild(aReflowState, kidFrame, desiredSize, oldKidRect,
|
|
|
|
oldKidVisualOverflow);
|
|
|
|
aLastChildReflowed = kidFrame;
|
|
|
|
if (allowRepeatedFooter) {
|
|
|
|
PlaceRepeatedFooter(aReflowState, tfoot, footerHeight);
|
|
|
|
aLastChildReflowed = tfoot;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aLastChildReflowed = kidFrame;
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
pageBreak = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
// see if there is a page break after this row group or before the next one
|
2010-04-27 09:15:01 -07:00
|
|
|
if (NS_FRAME_IS_COMPLETE(aStatus) && isPaginated &&
|
2007-03-22 10:30:00 -07:00
|
|
|
(NS_UNCONSTRAINEDSIZE != kidReflowState.availableHeight)) {
|
2007-06-05 11:55:26 -07:00
|
|
|
nsIFrame* nextKid =
|
2010-01-16 08:05:46 -08:00
|
|
|
(childX + 1 < rowGroups.Length()) ? rowGroups[childX + 1] : nsnull;
|
2010-05-13 07:15:49 -07:00
|
|
|
pageBreak = PageBreakAfter(kidFrame, nextKid);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Place the child
|
2008-03-16 13:32:48 -07:00
|
|
|
PlaceChild(aReflowState, kidFrame, desiredSize, oldKidRect,
|
2010-10-06 21:25:46 -07:00
|
|
|
oldKidVisualOverflow);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Remember where we just were in case we end up pushing children
|
|
|
|
prevKidFrame = kidFrame;
|
|
|
|
|
|
|
|
// Special handling for incomplete children
|
2010-04-27 09:15:01 -07:00
|
|
|
if (NS_FRAME_IS_NOT_COMPLETE(aStatus)) {
|
2011-03-28 13:50:13 -07:00
|
|
|
nsIFrame* kidNextInFlow = kidFrame->GetNextInFlow();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!kidNextInFlow) {
|
|
|
|
// The child doesn't have a next-in-flow so create a continuing
|
|
|
|
// frame. This hooks the child into the flow
|
|
|
|
rv = presContext->PresShell()->FrameConstructor()->
|
2009-09-18 04:09:35 -07:00
|
|
|
CreateContinuingFrame(presContext, kidFrame, this, &kidNextInFlow);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-09-18 04:09:35 -07:00
|
|
|
// Insert the continuing frame into the sibling list.
|
|
|
|
mFrames.InsertFrame(nsnull, kidFrame, kidNextInFlow);
|
|
|
|
|
|
|
|
// Fall through and update |rowGroups| with the new rowgroup, just as
|
|
|
|
// it would have been if we had called OrderRowGroups again.
|
|
|
|
// Note that rowGroups doesn't get used again after we PushChildren
|
|
|
|
// below, anyway.
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-09-18 04:09:35 -07:00
|
|
|
|
|
|
|
// Put the nextinflow so that it will get pushed
|
2010-01-16 08:05:46 -08:00
|
|
|
rowGroups.InsertElementAt(childX + 1,
|
|
|
|
static_cast <nsTableRowGroupFrame*>(kidNextInFlow));
|
2009-09-18 04:09:35 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// We've used up all of our available space so push the remaining
|
|
|
|
// children to the next-in-flow
|
2011-08-13 09:37:43 -07:00
|
|
|
if (allowRepeatedFooter) {
|
|
|
|
PlaceRepeatedFooter(aReflowState, tfoot, footerHeight);
|
|
|
|
}
|
|
|
|
else if (tfoot && tfoot->IsRepeatable()) {
|
2011-10-17 07:59:28 -07:00
|
|
|
tfoot->SetRepeatable(false);
|
2011-08-13 09:37:43 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* nextSibling = kidFrame->GetNextSibling();
|
|
|
|
if (nsnull != nextSibling) {
|
|
|
|
PushChildren(rowGroups, childX + 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { // it isn't being reflowed
|
|
|
|
aReflowState.y += cellSpacingY;
|
|
|
|
nsRect kidRect = kidFrame->GetRect();
|
|
|
|
if (kidRect.y != aReflowState.y) {
|
2012-07-03 17:24:55 -07:00
|
|
|
// invalidate the old position
|
|
|
|
kidFrame->InvalidateFrameSubtree();
|
2007-03-22 10:30:00 -07:00
|
|
|
kidRect.y = aReflowState.y;
|
|
|
|
kidFrame->SetRect(kidRect); // move to the new position
|
|
|
|
RePositionViews(kidFrame);
|
2012-07-03 17:24:55 -07:00
|
|
|
// invalidate the new position
|
|
|
|
kidFrame->InvalidateFrameSubtree();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
aReflowState.y += kidRect.height;
|
|
|
|
|
|
|
|
// If our height is constrained then update the available height.
|
|
|
|
if (NS_UNCONSTRAINEDSIZE != aReflowState.availSize.height) {
|
|
|
|
aReflowState.availSize.height -= cellSpacingY + kidRect.height;
|
|
|
|
}
|
|
|
|
}
|
2010-10-06 21:25:46 -07:00
|
|
|
ConsiderChildOverflow(aOverflowAreas, kidFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// We've now propagated the column resizes and geometry changes to all
|
|
|
|
// the children.
|
2011-10-17 07:59:28 -07:00
|
|
|
mBits.mResizedColumns = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
ClearGeometryDirty();
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-04-07 18:04:40 -07:00
|
|
|
nsTableFrame::ReflowColGroups(nsRenderingContext *aRenderingContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!GetPrevInFlow() && !HaveReflowedColGroups()) {
|
|
|
|
nsHTMLReflowMetrics kidMet;
|
2007-03-30 14:11:41 -07:00
|
|
|
nsPresContext *presContext = PresContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
for (nsIFrame* kidFrame = mColGroups.FirstChild(); kidFrame;
|
|
|
|
kidFrame = kidFrame->GetNextSibling()) {
|
2007-08-17 16:51:58 -07:00
|
|
|
if (NS_SUBTREE_DIRTY(kidFrame)) {
|
2007-08-17 16:58:19 -07:00
|
|
|
// The column groups don't care about dimensions or reflow states.
|
|
|
|
nsHTMLReflowState kidReflowState(presContext, kidFrame,
|
2007-03-22 10:30:00 -07:00
|
|
|
aRenderingContext, nsSize(0,0));
|
2007-08-17 16:58:19 -07:00
|
|
|
nsReflowStatus cgStatus;
|
|
|
|
ReflowChild(kidFrame, presContext, kidMet, kidReflowState, 0, 0, 0,
|
|
|
|
cgStatus);
|
|
|
|
FinishReflowChild(kidFrame, presContext, nsnull, kidMet, 0, 0, 0);
|
|
|
|
}
|
2007-08-17 16:51:58 -07:00
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
SetHaveReflowedColGroups(true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
|
|
|
nsTableFrame::CalcDesiredHeight(const nsHTMLReflowState& aReflowState, nsHTMLReflowMetrics& aDesiredSize)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (!cellMap) {
|
2011-10-17 07:59:28 -07:00
|
|
|
NS_ASSERTION(false, "never ever call me until the cell map is built!");
|
2007-03-22 10:30:00 -07:00
|
|
|
aDesiredSize.height = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
nscoord cellSpacingY = GetCellSpacingY();
|
|
|
|
nsMargin borderPadding = GetChildAreaOffset(&aReflowState);
|
|
|
|
|
2010-01-16 08:05:46 -08:00
|
|
|
// get the natural height based on the last child's (row group) rect
|
|
|
|
RowGroupArray rowGroups;
|
|
|
|
OrderRowGroups(rowGroups);
|
|
|
|
if (rowGroups.IsEmpty()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// tables can be used as rectangular items without content
|
|
|
|
nscoord tableSpecifiedHeight = CalcBorderBoxHeight(aReflowState);
|
|
|
|
if ((NS_UNCONSTRAINEDSIZE != tableSpecifiedHeight) &&
|
|
|
|
(tableSpecifiedHeight > 0) &&
|
2007-03-30 14:11:41 -07:00
|
|
|
eCompatibility_NavQuirks != PresContext()->CompatibilityMode()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// empty tables should not have a size in quirks mode
|
|
|
|
aDesiredSize.height = tableSpecifiedHeight;
|
2010-04-27 09:15:01 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
aDesiredSize.height = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PRInt32 rowCount = cellMap->GetRowCount();
|
|
|
|
PRInt32 colCount = cellMap->GetColCount();
|
|
|
|
nscoord desiredHeight = borderPadding.top + borderPadding.bottom;
|
|
|
|
if (rowCount > 0 && colCount > 0) {
|
|
|
|
desiredHeight += cellSpacingY;
|
2010-01-16 08:05:46 -08:00
|
|
|
for (PRUint32 rgX = 0; rgX < rowGroups.Length(); rgX++) {
|
2007-06-05 11:55:26 -07:00
|
|
|
desiredHeight += rowGroups[rgX]->GetSize().height + cellSpacingY;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// see if a specified table height requires dividing additional space to rows
|
|
|
|
if (!GetPrevInFlow()) {
|
|
|
|
nscoord tableSpecifiedHeight = CalcBorderBoxHeight(aReflowState);
|
2010-04-27 09:15:01 -07:00
|
|
|
if ((tableSpecifiedHeight > 0) &&
|
2007-03-22 10:30:00 -07:00
|
|
|
(tableSpecifiedHeight != NS_UNCONSTRAINEDSIZE) &&
|
|
|
|
(tableSpecifiedHeight > desiredHeight)) {
|
|
|
|
// proportionately distribute the excess height to unconstrained rows in each
|
2007-05-17 23:04:43 -07:00
|
|
|
// unconstrained row group.
|
|
|
|
DistributeHeightToRows(aReflowState, tableSpecifiedHeight - desiredHeight);
|
|
|
|
// this might have changed the overflow area incorporate the childframe overflow area.
|
|
|
|
for (nsIFrame* kidFrame = mFrames.FirstChild(); kidFrame; kidFrame = kidFrame->GetNextSibling()) {
|
2010-10-06 21:25:46 -07:00
|
|
|
ConsiderChildOverflow(aDesiredSize.mOverflowAreas, kidFrame);
|
2010-04-27 09:15:01 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
desiredHeight = tableSpecifiedHeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
aDesiredSize.height = desiredHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void ResizeCells(nsTableFrame& aTableFrame)
|
|
|
|
{
|
2007-06-05 11:55:26 -07:00
|
|
|
nsTableFrame::RowGroupArray rowGroups;
|
|
|
|
aTableFrame.OrderRowGroups(rowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsHTMLReflowMetrics tableDesiredSize;
|
|
|
|
nsRect tableRect = aTableFrame.GetRect();
|
|
|
|
tableDesiredSize.width = tableRect.width;
|
|
|
|
tableDesiredSize.height = tableRect.height;
|
2010-10-06 21:25:46 -07:00
|
|
|
tableDesiredSize.SetOverflowAreasToDesiredBounds();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-06-05 11:55:26 -07:00
|
|
|
for (PRUint32 rgX = 0; rgX < rowGroups.Length(); rgX++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = rowGroups[rgX];
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsRect rowGroupRect = rgFrame->GetRect();
|
|
|
|
nsHTMLReflowMetrics groupDesiredSize;
|
|
|
|
groupDesiredSize.width = rowGroupRect.width;
|
|
|
|
groupDesiredSize.height = rowGroupRect.height;
|
2010-10-06 21:25:46 -07:00
|
|
|
groupDesiredSize.SetOverflowAreasToDesiredBounds();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableRowFrame* rowFrame = rgFrame->GetFirstRow();
|
|
|
|
while (rowFrame) {
|
|
|
|
rowFrame->DidResize();
|
2010-10-06 21:25:46 -07:00
|
|
|
rgFrame->ConsiderChildOverflow(groupDesiredSize.mOverflowAreas, rowFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
rowFrame = rowFrame->GetNextRow();
|
|
|
|
}
|
2010-10-06 21:25:45 -07:00
|
|
|
rgFrame->FinishAndStoreOverflow(&groupDesiredSize);
|
2010-10-06 21:25:46 -07:00
|
|
|
tableDesiredSize.mOverflowAreas.UnionWith(groupDesiredSize.mOverflowAreas +
|
|
|
|
rgFrame->GetPosition());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-10-06 21:25:45 -07:00
|
|
|
aTableFrame.FinishAndStoreOverflow(&tableDesiredSize);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsTableFrame::DistributeHeightToRows(const nsHTMLReflowState& aReflowState,
|
|
|
|
nscoord aAmount)
|
|
|
|
{
|
|
|
|
nscoord cellSpacingY = GetCellSpacingY();
|
|
|
|
|
|
|
|
nsMargin borderPadding = GetChildAreaOffset(&aReflowState);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-06-05 11:55:26 -07:00
|
|
|
RowGroupArray rowGroups;
|
|
|
|
OrderRowGroups(rowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nscoord amountUsed = 0;
|
2010-04-27 09:15:01 -07:00
|
|
|
// distribute space to each pct height row whose row group doesn't have a computed
|
|
|
|
// height, and base the pct on the table height. If the row group had a computed
|
2007-03-22 10:30:00 -07:00
|
|
|
// height, then this was already done in nsTableRowGroupFrame::CalculateRowHeights
|
2007-08-02 11:08:05 -07:00
|
|
|
nscoord pctBasis = aReflowState.ComputedHeight() - (GetCellSpacingY() * (GetRowCount() + 1));
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord yOriginRG = borderPadding.top + GetCellSpacingY();
|
|
|
|
nscoord yEndRG = yOriginRG;
|
|
|
|
PRUint32 rgX;
|
2007-06-05 11:55:26 -07:00
|
|
|
for (rgX = 0; rgX < rowGroups.Length(); rgX++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = rowGroups[rgX];
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord amountUsedByRG = 0;
|
|
|
|
nscoord yOriginRow = 0;
|
|
|
|
nsRect rgRect = rgFrame->GetRect();
|
2007-06-05 11:55:26 -07:00
|
|
|
if (!rgFrame->HasStyleHeight()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableRowFrame* rowFrame = rgFrame->GetFirstRow();
|
|
|
|
while (rowFrame) {
|
|
|
|
nsRect rowRect = rowFrame->GetRect();
|
|
|
|
if ((amountUsed < aAmount) && rowFrame->HasPctHeight()) {
|
|
|
|
nscoord pctHeight = rowFrame->GetHeight(pctBasis);
|
2009-09-16 08:01:36 -07:00
|
|
|
nscoord amountForRow = NS_MIN(aAmount - amountUsed, pctHeight - rowRect.height);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (amountForRow > 0) {
|
2008-02-08 01:36:32 -08:00
|
|
|
nsRect oldRowRect = rowRect;
|
2007-03-22 10:30:00 -07:00
|
|
|
rowRect.height += amountForRow;
|
2008-02-08 01:36:32 -08:00
|
|
|
// XXXbz we don't need to change rowRect.y to be yOriginRow?
|
2007-03-22 10:30:00 -07:00
|
|
|
rowFrame->SetRect(rowRect);
|
|
|
|
yOriginRow += rowRect.height + cellSpacingY;
|
|
|
|
yEndRG += rowRect.height + cellSpacingY;
|
|
|
|
amountUsed += amountForRow;
|
|
|
|
amountUsedByRG += amountForRow;
|
2010-04-27 09:15:01 -07:00
|
|
|
//rowFrame->DidResize();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::RePositionViews(rowFrame);
|
2012-07-03 17:24:55 -07:00
|
|
|
|
|
|
|
rgFrame->InvalidateRectDifference(oldRowRect, rowRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2008-02-08 01:36:32 -08:00
|
|
|
if (amountUsed > 0 && yOriginRow != rowRect.y &&
|
|
|
|
!(GetStateBits() & NS_FRAME_FIRST_REFLOW)) {
|
2012-07-03 17:24:55 -07:00
|
|
|
rowFrame->InvalidateFrameSubtree();
|
2007-03-22 10:30:00 -07:00
|
|
|
rowFrame->SetPosition(nsPoint(rowRect.x, yOriginRow));
|
|
|
|
nsTableFrame::RePositionViews(rowFrame);
|
2012-07-03 17:24:55 -07:00
|
|
|
rowFrame->InvalidateFrameSubtree();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
yOriginRow += rowRect.height + cellSpacingY;
|
|
|
|
yEndRG += rowRect.height + cellSpacingY;
|
|
|
|
}
|
|
|
|
rowFrame = rowFrame->GetNextRow();
|
|
|
|
}
|
|
|
|
if (amountUsed > 0) {
|
2012-07-03 17:24:55 -07:00
|
|
|
if (rgRect.y != yOriginRG) {
|
|
|
|
rgFrame->InvalidateFrameSubtree();
|
|
|
|
}
|
|
|
|
|
2008-02-08 01:36:32 -08:00
|
|
|
nsRect origRgRect = rgRect;
|
2010-10-06 21:25:46 -07:00
|
|
|
nsRect origRgVisualOverflow = rgFrame->GetVisualOverflowRect();
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
rgRect.y = yOriginRG;
|
|
|
|
rgRect.height += amountUsedByRG;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
rgFrame->SetRect(rgRect);
|
2012-07-03 17:24:55 -07:00
|
|
|
|
|
|
|
nsTableFrame::InvalidateFrame(rgFrame, origRgRect,
|
|
|
|
origRgVisualOverflow, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2008-08-06 13:53:36 -07:00
|
|
|
else if (amountUsed > 0 && yOriginRG != rgRect.y) {
|
2012-07-03 17:24:55 -07:00
|
|
|
rgFrame->InvalidateFrameSubtree();
|
2008-08-06 13:53:36 -07:00
|
|
|
rgFrame->SetPosition(nsPoint(rgRect.x, yOriginRG));
|
2007-03-22 10:30:00 -07:00
|
|
|
// Make sure child views are properly positioned
|
|
|
|
nsTableFrame::RePositionViews(rgFrame);
|
2012-07-03 17:24:55 -07:00
|
|
|
rgFrame->InvalidateFrameSubtree();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
yOriginRG = yEndRG;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (amountUsed >= aAmount) {
|
|
|
|
ResizeCells(*this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-12-15 08:08:52 -08:00
|
|
|
// get the first row without a style height where its row group has an
|
|
|
|
// unconstrained height
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableRowGroupFrame* firstUnStyledRG = nsnull;
|
|
|
|
nsTableRowFrame* firstUnStyledRow = nsnull;
|
2007-06-05 11:55:26 -07:00
|
|
|
for (rgX = 0; rgX < rowGroups.Length() && !firstUnStyledRG; rgX++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = rowGroups[rgX];
|
|
|
|
if (!rgFrame->HasStyleHeight()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableRowFrame* rowFrame = rgFrame->GetFirstRow();
|
|
|
|
while (rowFrame) {
|
|
|
|
if (!rowFrame->HasStyleHeight()) {
|
|
|
|
firstUnStyledRG = rgFrame;
|
|
|
|
firstUnStyledRow = rowFrame;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rowFrame = rowFrame->GetNextRow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-15 08:08:52 -08:00
|
|
|
nsTableRowFrame* lastEligibleRow = nsnull;
|
|
|
|
// Accumulate the correct divisor. This will be the total total height of all
|
|
|
|
// unstyled rows inside unstyled row groups, unless there are none, in which
|
|
|
|
// case, it will be number of all rows. If the unstyled rows don't have a
|
|
|
|
// height, divide the space equally among them.
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord divisor = 0;
|
2007-12-15 12:23:10 -08:00
|
|
|
PRInt32 eligibleRows = 0;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool expandEmptyRows = false;
|
2007-12-15 08:08:52 -08:00
|
|
|
|
|
|
|
if (!firstUnStyledRow) {
|
|
|
|
// there is no unstyled row
|
|
|
|
divisor = GetRowCount();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for (rgX = 0; rgX < rowGroups.Length(); rgX++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = rowGroups[rgX];
|
|
|
|
if (!firstUnStyledRG || !rgFrame->HasStyleHeight()) {
|
|
|
|
nsTableRowFrame* rowFrame = rgFrame->GetFirstRow();
|
|
|
|
while (rowFrame) {
|
|
|
|
if (!firstUnStyledRG || !rowFrame->HasStyleHeight()) {
|
|
|
|
NS_ASSERTION(rowFrame->GetSize().height >= 0,
|
|
|
|
"negative row frame height");
|
|
|
|
divisor += rowFrame->GetSize().height;
|
|
|
|
eligibleRows++;
|
|
|
|
lastEligibleRow = rowFrame;
|
|
|
|
}
|
|
|
|
rowFrame = rowFrame->GetNextRow();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-12-15 08:08:52 -08:00
|
|
|
}
|
|
|
|
}
|
2007-12-15 12:23:10 -08:00
|
|
|
if (divisor <= 0) {
|
|
|
|
if (eligibleRows > 0) {
|
2011-10-17 07:59:28 -07:00
|
|
|
expandEmptyRows = true;
|
2007-12-15 12:23:10 -08:00
|
|
|
}
|
2007-12-15 08:08:52 -08:00
|
|
|
else {
|
|
|
|
NS_ERROR("invalid divisor");
|
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// allocate the extra height to the unstyled row groups and rows
|
2007-12-15 08:08:52 -08:00
|
|
|
nscoord heightToDistribute = aAmount - amountUsed;
|
2007-03-22 10:30:00 -07:00
|
|
|
yOriginRG = borderPadding.top + cellSpacingY;
|
|
|
|
yEndRG = yOriginRG;
|
2007-06-05 11:55:26 -07:00
|
|
|
for (rgX = 0; rgX < rowGroups.Length(); rgX++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = rowGroups[rgX];
|
2007-03-22 10:30:00 -07:00
|
|
|
nscoord amountUsedByRG = 0;
|
|
|
|
nscoord yOriginRow = 0;
|
|
|
|
nsRect rgRect = rgFrame->GetRect();
|
2010-10-06 21:25:46 -07:00
|
|
|
nsRect rgVisualOverflow = rgFrame->GetVisualOverflowRect();
|
2007-12-15 08:08:52 -08:00
|
|
|
// see if there is an eligible row group or we distribute to all rows
|
|
|
|
if (!firstUnStyledRG || !rgFrame->HasStyleHeight() || !eligibleRows) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableRowFrame* rowFrame = rgFrame->GetFirstRow();
|
|
|
|
while (rowFrame) {
|
|
|
|
nsRect rowRect = rowFrame->GetRect();
|
2010-10-06 21:25:46 -07:00
|
|
|
nsRect rowVisualOverflow = rowFrame->GetVisualOverflowRect();
|
2007-12-15 08:08:52 -08:00
|
|
|
// see if there is an eligible row or we distribute to all rows
|
2010-04-27 09:15:01 -07:00
|
|
|
if (!firstUnStyledRow || !rowFrame->HasStyleHeight() || !eligibleRows) {
|
2007-12-15 08:08:52 -08:00
|
|
|
float ratio;
|
|
|
|
if (eligibleRows) {
|
|
|
|
if (!expandEmptyRows) {
|
|
|
|
// The amount of additional space each row gets is proportional to
|
|
|
|
// its height
|
|
|
|
ratio = float(rowRect.height) / float(divisor);
|
|
|
|
} else {
|
|
|
|
// empty rows get all the same additional space
|
|
|
|
ratio = 1.0f / float(eligibleRows);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// all rows get the same additional space
|
|
|
|
ratio = 1.0f / float(divisor);
|
2007-11-13 17:24:21 -08:00
|
|
|
}
|
2007-12-15 08:08:52 -08:00
|
|
|
// give rows their additional space, except for the last row which
|
|
|
|
// gets the remainder
|
2010-04-27 09:15:01 -07:00
|
|
|
nscoord amountForRow = (rowFrame == lastEligibleRow)
|
2007-12-15 08:08:52 -08:00
|
|
|
? aAmount - amountUsed : NSToCoordRound(((float)(heightToDistribute)) * ratio);
|
2009-09-16 08:01:36 -07:00
|
|
|
amountForRow = NS_MIN(amountForRow, aAmount - amountUsed);
|
2008-02-08 01:36:32 -08:00
|
|
|
|
2012-07-03 17:24:55 -07:00
|
|
|
if (yOriginRow != rowRect.y) {
|
|
|
|
rowFrame->InvalidateFrameSubtree();
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// update the row height
|
2008-02-08 01:36:32 -08:00
|
|
|
nsRect newRowRect(rowRect.x, yOriginRow, rowRect.width,
|
|
|
|
rowRect.height + amountForRow);
|
2007-03-22 10:30:00 -07:00
|
|
|
rowFrame->SetRect(newRowRect);
|
2008-02-08 01:36:32 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
yOriginRow += newRowRect.height + cellSpacingY;
|
|
|
|
yEndRG += newRowRect.height + cellSpacingY;
|
|
|
|
|
|
|
|
amountUsed += amountForRow;
|
|
|
|
amountUsedByRG += amountForRow;
|
|
|
|
NS_ASSERTION((amountUsed <= aAmount), "invalid row allocation");
|
2010-04-27 09:15:01 -07:00
|
|
|
//rowFrame->DidResize();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::RePositionViews(rowFrame);
|
2012-07-03 17:24:55 -07:00
|
|
|
|
|
|
|
nsTableFrame::InvalidateFrame(rowFrame, rowRect, rowVisualOverflow,
|
|
|
|
false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2008-02-08 01:36:32 -08:00
|
|
|
if (amountUsed > 0 && yOriginRow != rowRect.y) {
|
2012-07-03 17:24:55 -07:00
|
|
|
rowFrame->InvalidateFrameSubtree();
|
2007-03-22 10:30:00 -07:00
|
|
|
rowFrame->SetPosition(nsPoint(rowRect.x, yOriginRow));
|
|
|
|
nsTableFrame::RePositionViews(rowFrame);
|
2012-07-03 17:24:55 -07:00
|
|
|
rowFrame->InvalidateFrameSubtree();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
yOriginRow += rowRect.height + cellSpacingY;
|
|
|
|
yEndRG += rowRect.height + cellSpacingY;
|
|
|
|
}
|
|
|
|
rowFrame = rowFrame->GetNextRow();
|
|
|
|
}
|
|
|
|
if (amountUsed > 0) {
|
2012-07-03 17:24:55 -07:00
|
|
|
if (rgRect.y != yOriginRG) {
|
|
|
|
rgFrame->InvalidateFrameSubtree();
|
|
|
|
}
|
|
|
|
|
2008-02-08 01:36:32 -08:00
|
|
|
rgFrame->SetRect(nsRect(rgRect.x, yOriginRG, rgRect.width,
|
|
|
|
rgRect.height + amountUsedByRG));
|
2012-07-03 17:24:55 -07:00
|
|
|
|
|
|
|
nsTableFrame::InvalidateFrame(rgFrame, rgRect, rgVisualOverflow,
|
|
|
|
false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// Make sure child views are properly positioned
|
|
|
|
}
|
2008-08-06 13:53:36 -07:00
|
|
|
else if (amountUsed > 0 && yOriginRG != rgRect.y) {
|
2012-07-03 17:24:55 -07:00
|
|
|
rgFrame->InvalidateFrameSubtree();
|
2008-08-06 13:53:36 -07:00
|
|
|
rgFrame->SetPosition(nsPoint(rgRect.x, yOriginRG));
|
2007-03-22 10:30:00 -07:00
|
|
|
// Make sure child views are properly positioned
|
|
|
|
nsTableFrame::RePositionViews(rgFrame);
|
2012-07-03 17:24:55 -07:00
|
|
|
rgFrame->InvalidateFrameSubtree();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
yOriginRG = yEndRG;
|
|
|
|
}
|
|
|
|
|
|
|
|
ResizeCells(*this);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 nsTableFrame::GetColumnWidth(PRInt32 aColIndex)
|
|
|
|
{
|
2012-01-16 15:38:10 -08:00
|
|
|
nsTableFrame* firstInFlow = static_cast<nsTableFrame*>(GetFirstInFlow());
|
2007-03-22 10:30:00 -07:00
|
|
|
if (this == firstInFlow) {
|
|
|
|
nsTableColFrame* colFrame = GetColFrame(aColIndex);
|
2012-01-16 15:38:10 -08:00
|
|
|
return colFrame ? colFrame->GetFinalWidth() : 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2012-01-16 15:38:10 -08:00
|
|
|
return firstInFlow->GetColumnWidth(aColIndex);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: could cache this. But be sure to check style changes if you do!
|
|
|
|
nscoord nsTableFrame::GetCellSpacingX()
|
|
|
|
{
|
|
|
|
if (IsBorderCollapse())
|
|
|
|
return 0;
|
|
|
|
|
2008-09-12 20:45:37 -07:00
|
|
|
return GetStyleTableBorder()->mBorderSpacingX;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// XXX: could cache this. But be sure to check style changes if you do!
|
|
|
|
nscoord nsTableFrame::GetCellSpacingY()
|
|
|
|
{
|
|
|
|
if (IsBorderCollapse())
|
|
|
|
return 0;
|
|
|
|
|
2008-09-12 20:45:37 -07:00
|
|
|
return GetStyleTableBorder()->mBorderSpacingY;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* virtual */ nscoord
|
|
|
|
nsTableFrame::GetBaseline() const
|
|
|
|
{
|
|
|
|
nscoord ascent = 0;
|
2007-06-05 11:55:26 -07:00
|
|
|
RowGroupArray orderedRowGroups;
|
|
|
|
OrderRowGroups(orderedRowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableRowFrame* firstRow = nsnull;
|
2007-06-05 11:55:26 -07:00
|
|
|
for (PRUint32 rgIndex = 0; rgIndex < orderedRowGroups.Length(); rgIndex++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = orderedRowGroups[rgIndex];
|
2007-03-22 10:30:00 -07:00
|
|
|
if (rgFrame->GetRowCount()) {
|
2010-04-27 09:15:01 -07:00
|
|
|
firstRow = rgFrame->GetFirstRow();
|
2007-03-22 10:30:00 -07:00
|
|
|
ascent = rgFrame->GetRect().y + firstRow->GetRect().y + firstRow->GetRowBaseline();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!firstRow)
|
|
|
|
ascent = GetRect().height;
|
|
|
|
return ascent;
|
|
|
|
}
|
|
|
|
/* ----- global methods ----- */
|
|
|
|
|
|
|
|
nsIFrame*
|
|
|
|
NS_NewTableFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
|
|
|
{
|
|
|
|
return new (aPresShell) nsTableFrame(aContext);
|
|
|
|
}
|
|
|
|
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsTableFrame)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame*
|
2012-01-16 15:38:10 -08:00
|
|
|
nsTableFrame::GetTableFrame(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
for (nsIFrame* ancestor = aFrame->GetParent(); ancestor;
|
|
|
|
ancestor = ancestor->GetParent()) {
|
|
|
|
if (nsGkAtoms::tableFrame == ancestor->GetType()) {
|
|
|
|
return static_cast<nsTableFrame*>(ancestor);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2012-01-16 15:38:10 -08:00
|
|
|
NS_RUNTIMEABORT("unable to find table parent");
|
2007-03-22 10:30:00 -07:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::IsAutoHeight()
|
|
|
|
{
|
2010-08-25 03:17:55 -07:00
|
|
|
const nsStyleCoord &height = GetStylePosition()->mHeight;
|
|
|
|
// Don't consider calc() here like this quirk for percent.
|
|
|
|
return height.GetUnit() == eStyleUnit_Auto ||
|
|
|
|
(height.GetUnit() == eStyleUnit_Percent &&
|
|
|
|
height.GetPercentValue() <= 0.0f);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
nscoord
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::CalcBorderBoxHeight(const nsHTMLReflowState& aState)
|
|
|
|
{
|
2007-08-02 11:08:05 -07:00
|
|
|
nscoord height = aState.ComputedHeight();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_AUTOHEIGHT != height) {
|
2009-02-08 08:46:42 -08:00
|
|
|
nsMargin borderPadding = GetChildAreaOffset(&aState);
|
2007-03-22 10:30:00 -07:00
|
|
|
height += borderPadding.top + borderPadding.bottom;
|
|
|
|
}
|
2009-09-16 08:01:36 -07:00
|
|
|
height = NS_MAX(0, height);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::IsAutoLayout()
|
|
|
|
{
|
2007-05-03 16:11:00 -07:00
|
|
|
if (GetStyleTable()->mLayoutStrategy == NS_STYLE_TABLE_LAYOUT_AUTO)
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2007-03-22 10:30:00 -07:00
|
|
|
// a fixed-layout inline-table must have a width
|
2007-11-15 10:10:31 -08:00
|
|
|
// and tables with 'width: -moz-max-content' must be auto-layout
|
2007-05-03 16:11:00 -07:00
|
|
|
// (at least as long as FixedTableLayoutStrategy::GetPrefWidth returns
|
|
|
|
// nscoord_MAX)
|
|
|
|
const nsStyleCoord &width = GetStylePosition()->mWidth;
|
2007-10-21 21:40:02 -07:00
|
|
|
return (width.GetUnit() == eStyleUnit_Auto) ||
|
2007-05-03 16:11:00 -07:00
|
|
|
(width.GetUnit() == eStyleUnit_Enumerated &&
|
2007-11-15 10:10:31 -08:00
|
|
|
width.GetIntValue() == NS_STYLE_WIDTH_MAX_CONTENT);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTableFrame::GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("Table"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Find the closet sibling before aPriorChildFrame (including aPriorChildFrame) that
|
|
|
|
// is of type aChildType
|
2010-04-27 09:15:01 -07:00
|
|
|
nsIFrame*
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::GetFrameAtOrBefore(nsIFrame* aParentFrame,
|
|
|
|
nsIFrame* aPriorChildFrame,
|
|
|
|
nsIAtom* aChildType)
|
|
|
|
{
|
|
|
|
nsIFrame* result = nsnull;
|
|
|
|
if (!aPriorChildFrame) {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
if (aChildType == aPriorChildFrame->GetType()) {
|
|
|
|
return aPriorChildFrame;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
// aPriorChildFrame is not of type aChildType, so we need start from
|
|
|
|
// the beginnng and find the closest one
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* lastMatchingFrame = nsnull;
|
2011-08-24 13:54:30 -07:00
|
|
|
nsIFrame* childFrame = aParentFrame->GetFirstPrincipalChild();
|
2007-03-22 10:30:00 -07:00
|
|
|
while (childFrame && (childFrame != aPriorChildFrame)) {
|
|
|
|
if (aChildType == childFrame->GetType()) {
|
|
|
|
lastMatchingFrame = childFrame;
|
|
|
|
}
|
|
|
|
childFrame = childFrame->GetNextSibling();
|
|
|
|
}
|
|
|
|
return lastMatchingFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::DumpRowGroup(nsIFrame* aKidFrame)
|
|
|
|
{
|
2010-01-16 08:05:46 -08:00
|
|
|
if (!aKidFrame)
|
|
|
|
return;
|
|
|
|
|
2011-08-24 13:54:30 -07:00
|
|
|
nsIFrame* cFrame = aKidFrame->GetFirstPrincipalChild();
|
2010-01-16 08:05:46 -08:00
|
|
|
while (cFrame) {
|
|
|
|
nsTableRowFrame *rowFrame = do_QueryFrame(cFrame);
|
|
|
|
if (rowFrame) {
|
2010-01-17 15:11:06 -08:00
|
|
|
printf("row(%d)=%p ", rowFrame->GetRowIndex(),
|
|
|
|
static_cast<void*>(rowFrame));
|
2011-08-24 13:54:30 -07:00
|
|
|
nsIFrame* childFrame = cFrame->GetFirstPrincipalChild();
|
2010-01-16 08:05:46 -08:00
|
|
|
while (childFrame) {
|
|
|
|
nsTableCellFrame *cellFrame = do_QueryFrame(childFrame);
|
|
|
|
if (cellFrame) {
|
|
|
|
PRInt32 colIndex;
|
|
|
|
cellFrame->GetColIndex(colIndex);
|
2010-02-02 12:06:58 -08:00
|
|
|
printf("cell(%d)=%p ", colIndex, static_cast<void*>(childFrame));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-01-16 08:05:46 -08:00
|
|
|
childFrame = childFrame->GetNextSibling();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-01-16 08:05:46 -08:00
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DumpRowGroup(rowFrame);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-01-16 08:05:46 -08:00
|
|
|
cFrame = cFrame->GetNextSibling();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2011-09-28 23:19:26 -07:00
|
|
|
nsTableFrame::Dump(bool aDumpRows,
|
|
|
|
bool aDumpCols,
|
|
|
|
bool aDumpCellMap)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
printf("***START TABLE DUMP*** \n");
|
|
|
|
// dump the columns widths array
|
|
|
|
printf("mColWidths=");
|
|
|
|
PRInt32 numCols = GetColCount();
|
|
|
|
PRInt32 colX;
|
|
|
|
for (colX = 0; colX < numCols; colX++) {
|
|
|
|
printf("%d ", GetColumnWidth(colX));
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
if (aDumpRows) {
|
|
|
|
nsIFrame* kidFrame = mFrames.FirstChild();
|
|
|
|
while (kidFrame) {
|
|
|
|
DumpRowGroup(kidFrame);
|
|
|
|
kidFrame = kidFrame->GetNextSibling();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aDumpCols) {
|
|
|
|
// output col frame cache
|
|
|
|
printf("\n col frame cache ->");
|
|
|
|
for (colX = 0; colX < numCols; colX++) {
|
2009-02-05 01:09:50 -08:00
|
|
|
nsTableColFrame* colFrame = mColFrames.ElementAt(colX);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (0 == (colX % 8)) {
|
|
|
|
printf("\n");
|
|
|
|
}
|
2010-01-17 15:11:06 -08:00
|
|
|
printf ("%d=%p ", colX, static_cast<void*>(colFrame));
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableColType colType = colFrame->GetColType();
|
|
|
|
switch (colType) {
|
|
|
|
case eColContent:
|
|
|
|
printf(" content ");
|
|
|
|
break;
|
2010-04-27 09:15:01 -07:00
|
|
|
case eColAnonymousCol:
|
2007-03-22 10:30:00 -07:00
|
|
|
printf(" anonymous-column ");
|
|
|
|
break;
|
|
|
|
case eColAnonymousColGroup:
|
|
|
|
printf(" anonymous-colgroup ");
|
|
|
|
break;
|
2010-04-27 09:15:01 -07:00
|
|
|
case eColAnonymousCell:
|
2007-03-22 10:30:00 -07:00
|
|
|
printf(" anonymous-cell ");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("\n colgroups->");
|
|
|
|
for (nsIFrame* childFrame = mColGroups.FirstChild(); childFrame;
|
|
|
|
childFrame = childFrame->GetNextSibling()) {
|
|
|
|
if (nsGkAtoms::tableColGroupFrame == childFrame->GetType()) {
|
|
|
|
nsTableColGroupFrame* colGroupFrame = (nsTableColGroupFrame *)childFrame;
|
|
|
|
colGroupFrame->Dump(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (colX = 0; colX < numCols; colX++) {
|
|
|
|
printf("\n");
|
|
|
|
nsTableColFrame* colFrame = GetColFrame(colX);
|
|
|
|
colFrame->Dump(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (aDumpCellMap) {
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
cellMap->Dump();
|
|
|
|
}
|
|
|
|
printf(" ***END TABLE DUMP*** \n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// nsTableIterator
|
|
|
|
nsTableIterator::nsTableIterator(nsIFrame& aSource)
|
|
|
|
{
|
2011-08-24 13:54:30 -07:00
|
|
|
nsIFrame* firstChild = aSource.GetFirstPrincipalChild();
|
2007-03-22 10:30:00 -07:00
|
|
|
Init(firstChild);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTableIterator::nsTableIterator(nsFrameList& aSource)
|
|
|
|
{
|
|
|
|
nsIFrame* firstChild = aSource.FirstChild();
|
|
|
|
Init(firstChild);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsTableIterator::Init(nsIFrame* aFirstChild)
|
|
|
|
{
|
|
|
|
mFirstListChild = aFirstChild;
|
|
|
|
mFirstChild = aFirstChild;
|
|
|
|
mCurrentChild = nsnull;
|
2011-10-17 07:59:28 -07:00
|
|
|
mLeftToRight = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
mCount = -1;
|
|
|
|
|
|
|
|
if (!mFirstChild) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsTableFrame* table = nsTableFrame::GetTableFrame(mFirstChild);
|
2012-01-16 15:38:10 -08:00
|
|
|
mLeftToRight = (NS_STYLE_DIRECTION_LTR ==
|
|
|
|
table->GetStyleVisibility()->mDirection);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (!mLeftToRight) {
|
|
|
|
mCount = 0;
|
|
|
|
nsIFrame* nextChild = mFirstChild->GetNextSibling();
|
|
|
|
while (nsnull != nextChild) {
|
|
|
|
mCount++;
|
|
|
|
mFirstChild = nextChild;
|
|
|
|
nextChild = nextChild->GetNextSibling();
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* nsTableIterator::First()
|
|
|
|
{
|
|
|
|
mCurrentChild = mFirstChild;
|
|
|
|
return mCurrentChild;
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame* nsTableIterator::Next()
|
|
|
|
{
|
|
|
|
if (!mCurrentChild) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mLeftToRight) {
|
|
|
|
mCurrentChild = mCurrentChild->GetNextSibling();
|
|
|
|
return mCurrentChild;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nsIFrame* targetChild = mCurrentChild;
|
|
|
|
mCurrentChild = nsnull;
|
|
|
|
nsIFrame* child = mFirstListChild;
|
|
|
|
while (child && (child != targetChild)) {
|
|
|
|
mCurrentChild = child;
|
|
|
|
child = child->GetNextSibling();
|
|
|
|
}
|
|
|
|
return mCurrentChild;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool nsTableIterator::IsLeftToRight()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return mLeftToRight;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 nsTableIterator::Count()
|
|
|
|
{
|
|
|
|
if (-1 == mCount) {
|
|
|
|
mCount = 0;
|
|
|
|
nsIFrame* child = mFirstListChild;
|
|
|
|
while (nsnull != child) {
|
|
|
|
mCount++;
|
|
|
|
child = child->GetNextSibling();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return mCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------ nsITableLayout methods ------------------------------*/
|
2010-04-27 09:15:01 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTableFrame::GetCellDataAt(PRInt32 aRowIndex,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 aColIndex,
|
|
|
|
nsIDOMElement* &aCell, //out params
|
2010-04-27 09:15:01 -07:00
|
|
|
PRInt32& aStartRowIndex,
|
|
|
|
PRInt32& aStartColIndex,
|
|
|
|
PRInt32& aRowSpan,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32& aColSpan,
|
2010-04-27 09:15:01 -07:00
|
|
|
PRInt32& aActualRowSpan,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32& aActualColSpan,
|
2011-12-20 01:15:41 -08:00
|
|
|
bool& aIsSelected)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Initialize out params
|
|
|
|
aCell = nsnull;
|
|
|
|
aStartRowIndex = 0;
|
|
|
|
aStartColIndex = 0;
|
|
|
|
aRowSpan = 0;
|
|
|
|
aColSpan = 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
aIsSelected = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (!cellMap) { return NS_ERROR_NOT_INITIALIZED;}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool originates;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 colSpan; // Is this the "effective" or "html" value?
|
|
|
|
|
|
|
|
nsTableCellFrame *cellFrame = cellMap->GetCellInfoAt(aRowIndex, aColIndex, &originates, &colSpan);
|
|
|
|
if (!cellFrame) return NS_TABLELAYOUT_CELL_NOT_FOUND;
|
|
|
|
|
|
|
|
nsresult result= cellFrame->GetRowIndex(aStartRowIndex);
|
|
|
|
if (NS_FAILED(result)) return result;
|
|
|
|
result = cellFrame->GetColIndex(aStartColIndex);
|
|
|
|
if (NS_FAILED(result)) return result;
|
|
|
|
//This returns HTML value, which may be 0
|
|
|
|
aRowSpan = cellFrame->GetRowSpan();
|
|
|
|
aColSpan = cellFrame->GetColSpan();
|
|
|
|
aActualRowSpan = GetEffectiveRowSpan(*cellFrame);
|
|
|
|
aActualColSpan = GetEffectiveColSpan(*cellFrame);
|
|
|
|
|
|
|
|
// If these aren't at least 1, we have a cellmap error
|
|
|
|
if (aActualRowSpan == 0 || aActualColSpan == 0)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2011-12-20 01:15:41 -08:00
|
|
|
aIsSelected = cellFrame->IsSelected();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
// do this last, because it addrefs,
|
2007-03-22 10:30:00 -07:00
|
|
|
// and we don't want the caller leaking it on error
|
|
|
|
nsIContent* content = cellFrame->GetContent();
|
2010-04-27 09:15:01 -07:00
|
|
|
if (!content) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return CallQueryInterface(content, &aCell);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsTableFrame::GetTableSize(PRInt32& aRowCount, PRInt32& aColCount)
|
|
|
|
{
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
// Initialize out params
|
|
|
|
aRowCount = 0;
|
|
|
|
aColCount = 0;
|
|
|
|
if (!cellMap) { return NS_ERROR_NOT_INITIALIZED;}
|
|
|
|
|
|
|
|
aRowCount = cellMap->GetRowCount();
|
|
|
|
aColCount = cellMap->GetColCount();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-02-06 23:03:26 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTableFrame::GetIndexByRowAndColumn(PRInt32 aRow, PRInt32 aColumn,
|
|
|
|
PRInt32 *aIndex)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aIndex);
|
|
|
|
*aIndex = -1;
|
|
|
|
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (!cellMap)
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
*aIndex = cellMap->GetIndexByRowAndColumn(aRow, aColumn);
|
2009-06-29 03:54:26 -07:00
|
|
|
return (*aIndex == -1) ? NS_TABLELAYOUT_CELL_NOT_FOUND : NS_OK;
|
2008-02-06 23:03:26 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTableFrame::GetRowAndColumnByIndex(PRInt32 aIndex,
|
|
|
|
PRInt32 *aRow, PRInt32 *aColumn)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aRow);
|
|
|
|
*aRow = -1;
|
|
|
|
|
|
|
|
NS_ENSURE_ARG_POINTER(aColumn);
|
|
|
|
*aColumn = -1;
|
|
|
|
|
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
if (!cellMap)
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
cellMap->GetRowAndColumnByIndex(aIndex, aRow, aColumn);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/*---------------- end of nsITableLayout implementation ------------------*/
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2008-09-24 10:14:35 -07:00
|
|
|
nsTableFrame::ColumnHasCellSpacingBefore(PRInt32 aColIndex) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-09-24 10:14:35 -07:00
|
|
|
// Since fixed-layout tables should not have their column sizes change
|
|
|
|
// as they load, we assume that all columns are significant.
|
|
|
|
if (LayoutStrategy()->GetType() == nsITableLayoutStrategy::Fixed)
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2009-04-18 01:22:34 -07:00
|
|
|
// the first column is always significant
|
|
|
|
if (aColIndex == 0)
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
2010-04-27 09:15:01 -07:00
|
|
|
if (!cellMap)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2008-09-24 10:14:35 -07:00
|
|
|
return cellMap->GetNumCellsOriginatingInCol(aColIndex) > 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/********************************************************************************
|
|
|
|
* Collapsing Borders
|
|
|
|
*
|
|
|
|
* The CSS spec says to resolve border conflicts in this order:
|
|
|
|
* 1) any border with the style HIDDEN wins
|
|
|
|
* 2) the widest border with a style that is not NONE wins
|
2010-04-27 09:15:01 -07:00
|
|
|
* 3) the border styles are ranked in this order, highest to lowest precedence:
|
2007-03-22 10:30:00 -07:00
|
|
|
* double, solid, dashed, dotted, ridge, outset, groove, inset
|
|
|
|
* 4) borders that are of equal width and style (differ only in color) have this precedence:
|
|
|
|
* cell, row, rowgroup, col, colgroup, table
|
|
|
|
* 5) if all border styles are NONE, then that's the computed border style.
|
|
|
|
*******************************************************************************/
|
|
|
|
|
2011-10-27 06:58:44 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define VerifyNonNegativeDamageRect(r) \
|
|
|
|
NS_ASSERTION((r).x >= 0, "negative col index"); \
|
|
|
|
NS_ASSERTION((r).y >= 0, "negative row index"); \
|
|
|
|
NS_ASSERTION((r).width >= 0, "negative horizontal damage"); \
|
|
|
|
NS_ASSERTION((r).height >= 0, "negative vertical damage");
|
|
|
|
#define VerifyDamageRect(r) \
|
|
|
|
VerifyNonNegativeDamageRect(r); \
|
|
|
|
NS_ASSERTION((r).XMost() <= GetColCount(), \
|
|
|
|
"horizontal damage extends outside table"); \
|
|
|
|
NS_ASSERTION((r).YMost() <= GetRowCount(), \
|
|
|
|
"vertical damage extends outside table");
|
|
|
|
#endif
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2012-01-22 14:48:34 -08:00
|
|
|
nsTableFrame::AddBCDamageArea(const nsIntRect& aValue)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-27 06:58:44 -07:00
|
|
|
NS_ASSERTION(IsBorderCollapse(), "invalid AddBCDamageArea call");
|
|
|
|
#ifdef DEBUG
|
|
|
|
VerifyDamageRect(aValue);
|
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
SetNeedToCalcBCBorders(true);
|
2010-03-28 18:46:55 -07:00
|
|
|
// Get the property
|
2011-10-27 06:58:44 -07:00
|
|
|
BCPropertyData* value = GetBCProperty(true);
|
|
|
|
if (value) {
|
|
|
|
#ifdef DEBUG
|
|
|
|
VerifyNonNegativeDamageRect(value->mDamageArea);
|
|
|
|
#endif
|
|
|
|
// Clamp the old damage area to the current table area in case it shrunk.
|
|
|
|
PRInt32 cols = GetColCount();
|
|
|
|
if (value->mDamageArea.XMost() > cols) {
|
|
|
|
if (value->mDamageArea.x > cols) {
|
|
|
|
value->mDamageArea.x = cols;
|
|
|
|
value->mDamageArea.width = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
value->mDamageArea.width = cols - value->mDamageArea.x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
PRInt32 rows = GetRowCount();
|
|
|
|
if (value->mDamageArea.YMost() > rows) {
|
|
|
|
if (value->mDamageArea.y > rows) {
|
|
|
|
value->mDamageArea.y = rows;
|
|
|
|
value->mDamageArea.height = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
value->mDamageArea.height = rows - value->mDamageArea.y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Construct a union of the new and old damage areas.
|
|
|
|
value->mDamageArea.UnionRect(value->mDamageArea, aValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
|
2011-10-27 06:58:44 -07:00
|
|
|
|
|
|
|
void
|
|
|
|
nsTableFrame::SetFullBCDamageArea()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(IsBorderCollapse(), "invalid SetFullBCDamageArea call");
|
|
|
|
|
|
|
|
SetNeedToCalcBCBorders(true);
|
|
|
|
|
|
|
|
BCPropertyData* value = GetBCProperty(true);
|
|
|
|
if (value) {
|
2012-01-22 14:48:34 -08:00
|
|
|
value->mDamageArea = nsIntRect(0, 0, GetColCount(), GetRowCount());
|
2011-10-27 06:58:44 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
/* BCCellBorder represents a border segment which can be either a horizontal
|
|
|
|
* or a vertical segment. For each segment we need to know the color, width,
|
|
|
|
* style, who owns it and how long it is in cellmap coordinates.
|
|
|
|
* Ownership of these segments is important to calculate which corners should
|
|
|
|
* be bevelled. This structure has dual use, its used first to compute the
|
|
|
|
* dominant border for horizontal and vertical segments and to store the
|
|
|
|
* preliminary computed border results in the BCCellBorders structure.
|
|
|
|
* This temporary storage is not symmetric with respect to horizontal and
|
|
|
|
* vertical border segments, its always column oriented. For each column in
|
|
|
|
* the cellmap there is a temporary stored vertical and horizontal segment.
|
|
|
|
* XXX_Bernd this asymmetry is the root of those rowspan bc border errors
|
|
|
|
*/
|
|
|
|
struct BCCellBorder
|
|
|
|
{
|
|
|
|
BCCellBorder() { Reset(0, 1); }
|
|
|
|
void Reset(PRUint32 aRowIndex, PRUint32 aRowSpan);
|
|
|
|
nscolor color; // border segment color
|
|
|
|
BCPixelSize width; // border segment width in pixel coordinates !!
|
|
|
|
PRUint8 style; // border segment style, possible values are defined
|
|
|
|
// in nsStyleConsts.h as NS_STYLE_BORDER_STYLE_*
|
|
|
|
BCBorderOwner owner; // border segment owner, possible values are defined
|
|
|
|
// in celldata.h. In the cellmap for each border
|
|
|
|
// segment we store the owner and later when
|
|
|
|
// painting we know the owner and can retrieve the
|
|
|
|
// style info from the corresponding frame
|
|
|
|
PRInt32 rowIndex; // rowIndex of temporary stored horizontal border
|
|
|
|
// segments relative to the table
|
|
|
|
PRInt32 rowSpan; // row span of temporary stored horizontal border
|
|
|
|
// segments
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
BCCellBorder::Reset(PRUint32 aRowIndex,
|
|
|
|
PRUint32 aRowSpan)
|
|
|
|
{
|
|
|
|
style = NS_STYLE_BORDER_STYLE_NONE;
|
|
|
|
color = 0;
|
|
|
|
width = 0;
|
|
|
|
owner = eTableOwner;
|
|
|
|
rowIndex = aRowIndex;
|
|
|
|
rowSpan = aRowSpan;
|
|
|
|
}
|
|
|
|
|
|
|
|
class BCMapCellIterator;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/*****************************************************************
|
2009-06-21 09:31:40 -07:00
|
|
|
* BCMapCellInfo
|
|
|
|
* This structure stores information about the cellmap and all involved
|
|
|
|
* table related frames that are used during the computation of winning borders
|
|
|
|
* in CalcBCBorders so that they do need to be looked up again and again when
|
|
|
|
* iterating over the cells.
|
2007-03-22 10:30:00 -07:00
|
|
|
****************************************************************/
|
2010-04-27 09:15:01 -07:00
|
|
|
struct BCMapCellInfo
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-06-21 09:31:40 -07:00
|
|
|
BCMapCellInfo(nsTableFrame* aTableFrame);
|
|
|
|
void ResetCellInfo();
|
|
|
|
void SetInfo(nsTableRowFrame* aNewRow,
|
|
|
|
PRInt32 aColIndex,
|
|
|
|
BCCellData* aCellData,
|
|
|
|
BCMapCellIterator* aIter,
|
|
|
|
nsCellMap* aCellMap = nsnull);
|
|
|
|
// The BCMapCellInfo has functions to set the continous
|
|
|
|
// border widths (see nsTablePainter.cpp for a description of the continous
|
|
|
|
// borders concept). The widths are computed inside these functions based on
|
|
|
|
// the current position inside the table and the cached frames that correspond
|
|
|
|
// to this position. The widths are stored in member variables of the internal
|
|
|
|
// table frames.
|
|
|
|
void SetTableTopLeftContBCBorder();
|
|
|
|
void SetRowGroupLeftContBCBorder();
|
|
|
|
void SetRowGroupRightContBCBorder();
|
|
|
|
void SetRowGroupBottomContBCBorder();
|
|
|
|
void SetRowLeftContBCBorder();
|
|
|
|
void SetRowRightContBCBorder();
|
|
|
|
void SetColumnTopRightContBCBorder();
|
|
|
|
void SetColumnBottomContBCBorder();
|
|
|
|
void SetColGroupBottomContBCBorder();
|
|
|
|
void SetInnerRowGroupBottomContBCBorder(const nsIFrame* aNextRowGroup,
|
|
|
|
nsTableRowFrame* aNextRow);
|
|
|
|
|
|
|
|
// functions to set the border widths on the table related frames, where the
|
|
|
|
// knowledge about the current position in the table is used.
|
|
|
|
void SetTableTopBorderWidth(BCPixelSize aWidth);
|
|
|
|
void SetTableLeftBorderWidth(PRInt32 aRowY, BCPixelSize aWidth);
|
|
|
|
void SetTableRightBorderWidth(PRInt32 aRowY, BCPixelSize aWidth);
|
|
|
|
void SetTableBottomBorderWidth(BCPixelSize aWidth);
|
|
|
|
void SetLeftBorderWidths(BCPixelSize aWidth);
|
|
|
|
void SetRightBorderWidths(BCPixelSize aWidth);
|
|
|
|
void SetTopBorderWidths(BCPixelSize aWidth);
|
|
|
|
void SetBottomBorderWidths(BCPixelSize aWidth);
|
|
|
|
|
|
|
|
// functions to compute the borders; they depend on the
|
|
|
|
// knowledge about the current position in the table. The edge functions
|
|
|
|
// should be called if a table edge is involved, otherwise the internal
|
|
|
|
// functions should be called.
|
|
|
|
BCCellBorder GetTopEdgeBorder();
|
|
|
|
BCCellBorder GetBottomEdgeBorder();
|
|
|
|
BCCellBorder GetLeftEdgeBorder();
|
|
|
|
BCCellBorder GetRightEdgeBorder();
|
|
|
|
BCCellBorder GetRightInternalBorder();
|
|
|
|
BCCellBorder GetLeftInternalBorder();
|
|
|
|
BCCellBorder GetTopInternalBorder();
|
|
|
|
BCCellBorder GetBottomInternalBorder();
|
|
|
|
|
|
|
|
// functions to set the interal position information
|
|
|
|
void SetColumn(PRInt32 aColX);
|
|
|
|
// Increment the row as we loop over the rows of a rowspan
|
2011-09-28 23:19:26 -07:00
|
|
|
void IncrementRow(bool aResetToTopRowOfCell = false);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// Helper functions to get extent of the cell
|
|
|
|
PRInt32 GetCellEndRowIndex() const;
|
|
|
|
PRInt32 GetCellEndColIndex() const;
|
|
|
|
|
|
|
|
// storage of table information
|
|
|
|
nsTableFrame* mTableFrame;
|
|
|
|
PRInt32 mNumTableRows;
|
|
|
|
PRInt32 mNumTableCols;
|
|
|
|
BCPropertyData* mTableBCData;
|
|
|
|
|
|
|
|
// storage of table ltr information, the border collapse code swaps the sides
|
|
|
|
// to account for rtl tables, this is done through mStartSide and mEndSide
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mTableIsLTR;
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side mStartSide;
|
|
|
|
mozilla::css::Side mEndSide;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// a cell can only belong to one rowgroup
|
|
|
|
nsTableRowGroupFrame* mRowGroup;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// a cell with a rowspan has a top and a bottom row, and rows in between
|
|
|
|
nsTableRowFrame* mTopRow;
|
|
|
|
nsTableRowFrame* mBottomRow;
|
|
|
|
nsTableRowFrame* mCurrentRowFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// a cell with a colspan has a left and right column and columns in between
|
|
|
|
// they can belong to different colgroups
|
|
|
|
nsTableColGroupFrame* mColGroup;
|
|
|
|
nsTableColGroupFrame* mCurrentColGroupFrame;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
nsTableColFrame* mLeftCol;
|
|
|
|
nsTableColFrame* mRightCol;
|
|
|
|
nsTableColFrame* mCurrentColFrame;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// cell information
|
|
|
|
BCCellData* mCellData;
|
|
|
|
nsBCTableCellFrame* mCell;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
PRInt32 mRowIndex;
|
|
|
|
PRInt32 mRowSpan;
|
|
|
|
PRInt32 mColIndex;
|
|
|
|
PRInt32 mColSpan;
|
|
|
|
|
|
|
|
// flags to describe the position of the cell with respect to the row- and
|
|
|
|
// colgroups, for instance mRgAtTop documents that the top cell border hits
|
|
|
|
// a rowgroup border
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mRgAtTop;
|
|
|
|
bool mRgAtBottom;
|
|
|
|
bool mCgAtLeft;
|
|
|
|
bool mCgAtRight;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
};
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
BCMapCellInfo::BCMapCellInfo(nsTableFrame* aTableFrame)
|
|
|
|
{
|
|
|
|
mTableFrame = aTableFrame;
|
|
|
|
mTableIsLTR =
|
|
|
|
aTableFrame->GetStyleVisibility()->mDirection == NS_STYLE_DIRECTION_LTR;
|
|
|
|
if (mTableIsLTR) {
|
|
|
|
mStartSide = NS_SIDE_LEFT;
|
|
|
|
mEndSide = NS_SIDE_RIGHT;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mStartSide = NS_SIDE_RIGHT;
|
|
|
|
mEndSide = NS_SIDE_LEFT;
|
|
|
|
}
|
|
|
|
mNumTableRows = mTableFrame->GetRowCount();
|
|
|
|
mNumTableCols = mTableFrame->GetColCount();
|
2010-03-28 18:46:55 -07:00
|
|
|
mTableBCData = static_cast<BCPropertyData*>
|
|
|
|
(mTableFrame->Properties().Get(TableBCProperty()));
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
ResetCellInfo();
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
void BCMapCellInfo::ResetCellInfo()
|
|
|
|
{
|
|
|
|
mCellData = nsnull;
|
|
|
|
mRowGroup = nsnull;
|
|
|
|
mTopRow = nsnull;
|
|
|
|
mBottomRow = nsnull;
|
|
|
|
mColGroup = nsnull;
|
|
|
|
mLeftCol = nsnull;
|
|
|
|
mRightCol = nsnull;
|
|
|
|
mCell = nsnull;
|
|
|
|
mRowIndex = mRowSpan = mColIndex = mColSpan = 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
mRgAtTop = mRgAtBottom = mCgAtLeft = mCgAtRight = false;
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
inline PRInt32 BCMapCellInfo::GetCellEndRowIndex() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-06-21 09:31:40 -07:00
|
|
|
return mRowIndex + mRowSpan - 1;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
inline PRInt32 BCMapCellInfo::GetCellEndColIndex() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-06-21 09:31:40 -07:00
|
|
|
return mColIndex + mColSpan - 1;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class BCMapCellIterator
|
|
|
|
{
|
|
|
|
public:
|
2009-06-21 09:31:40 -07:00
|
|
|
BCMapCellIterator(nsTableFrame* aTableFrame,
|
2012-01-22 14:48:34 -08:00
|
|
|
const nsIntRect& aDamageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void First(BCMapCellInfo& aMapCellInfo);
|
|
|
|
|
|
|
|
void Next(BCMapCellInfo& aMapCellInfo);
|
|
|
|
|
|
|
|
void PeekRight(BCMapCellInfo& aRefInfo,
|
|
|
|
PRUint32 aRowIndex,
|
|
|
|
BCMapCellInfo& aAjaInfo);
|
|
|
|
|
|
|
|
void PeekBottom(BCMapCellInfo& aRefInfo,
|
|
|
|
PRUint32 aColIndex,
|
|
|
|
BCMapCellInfo& aAjaInfo);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsNewRow() { return mIsNewRow; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsTableRowFrame* GetPrevRow() const { return mPrevRow; }
|
2009-06-21 09:31:40 -07:00
|
|
|
nsTableRowFrame* GetCurrentRow() const { return mRow; }
|
|
|
|
nsTableRowGroupFrame* GetCurrentRowGroup() const { return mRowGroup;}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRInt32 mRowGroupStart;
|
|
|
|
PRInt32 mRowGroupEnd;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mAtEnd;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCellMap* mCellMap;
|
|
|
|
|
|
|
|
private:
|
2011-09-28 23:19:26 -07:00
|
|
|
bool SetNewRow(nsTableRowFrame* row = nsnull);
|
|
|
|
bool SetNewRowGroup(bool aFindFirstDamagedRow);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
nsTableFrame* mTableFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableCellMap* mTableCellMap;
|
2007-06-05 11:55:26 -07:00
|
|
|
nsTableFrame::RowGroupArray mRowGroups;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableRowGroupFrame* mRowGroup;
|
|
|
|
PRInt32 mRowGroupIndex;
|
2009-06-21 09:31:40 -07:00
|
|
|
PRUint32 mNumTableRows;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableRowFrame* mRow;
|
|
|
|
nsTableRowFrame* mPrevRow;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsNewRow;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 mRowIndex;
|
2009-06-21 09:31:40 -07:00
|
|
|
PRUint32 mNumTableCols;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 mColIndex;
|
|
|
|
nsPoint mAreaStart;
|
|
|
|
nsPoint mAreaEnd;
|
|
|
|
};
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
BCMapCellIterator::BCMapCellIterator(nsTableFrame* aTableFrame,
|
2012-01-22 14:48:34 -08:00
|
|
|
const nsIntRect& aDamageArea)
|
2007-03-22 10:30:00 -07:00
|
|
|
:mTableFrame(aTableFrame)
|
|
|
|
{
|
2009-06-21 09:31:40 -07:00
|
|
|
mTableCellMap = aTableFrame->GetCellMap();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
mAreaStart.x = aDamageArea.x;
|
|
|
|
mAreaStart.y = aDamageArea.y;
|
|
|
|
mAreaEnd.y = aDamageArea.y + aDamageArea.height - 1;
|
|
|
|
mAreaEnd.x = aDamageArea.x + aDamageArea.width - 1;
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
mNumTableRows = mTableFrame->GetRowCount();
|
2007-03-22 10:30:00 -07:00
|
|
|
mRow = nsnull;
|
|
|
|
mRowIndex = 0;
|
2009-06-21 09:31:40 -07:00
|
|
|
mNumTableCols = mTableFrame->GetColCount();
|
2007-03-22 10:30:00 -07:00
|
|
|
mColIndex = 0;
|
|
|
|
mRowGroupIndex = -1;
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
// Get the ordered row groups
|
2009-06-21 09:31:40 -07:00
|
|
|
aTableFrame->OrderRowGroups(mRowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mAtEnd = true; // gets reset when First() is called
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// fill fields that we need for border collapse computation on a given cell
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetInfo(nsTableRowFrame* aNewRow,
|
|
|
|
PRInt32 aColIndex,
|
|
|
|
BCCellData* aCellData,
|
|
|
|
BCMapCellIterator* aIter,
|
|
|
|
nsCellMap* aCellMap)
|
|
|
|
{
|
|
|
|
// fill the cell information
|
|
|
|
mCellData = aCellData;
|
|
|
|
mColIndex = aColIndex;
|
|
|
|
|
|
|
|
// initialize the row information if it was not previously set for cells in
|
|
|
|
// this row
|
|
|
|
mRowIndex = 0;
|
|
|
|
if (aNewRow) {
|
|
|
|
mTopRow = aNewRow;
|
|
|
|
mRowIndex = aNewRow->GetRowIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
// fill cell frame info and row information
|
|
|
|
mCell = nsnull;
|
|
|
|
mRowSpan = 1;
|
|
|
|
mColSpan = 1;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aCellData) {
|
2009-06-21 09:31:40 -07:00
|
|
|
mCell = static_cast<nsBCTableCellFrame*>(aCellData->GetCellFrame());
|
|
|
|
if (mCell) {
|
|
|
|
if (!mTopRow) {
|
|
|
|
mTopRow = static_cast<nsTableRowFrame*>(mCell->GetParent());
|
|
|
|
if (!mTopRow) ABORT0();
|
|
|
|
mRowIndex = mTopRow->GetRowIndex();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
mColSpan = mTableFrame->GetEffectiveColSpan(*mCell, aCellMap);
|
|
|
|
mRowSpan = mTableFrame->GetEffectiveRowSpan(*mCell, aCellMap);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
if (!mTopRow) {
|
|
|
|
mTopRow = aIter->GetCurrentRow();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
if (1 == mRowSpan) {
|
|
|
|
mBottomRow = mTopRow;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2009-06-21 09:31:40 -07:00
|
|
|
mBottomRow = mTopRow->GetNextRow();
|
|
|
|
if (mBottomRow) {
|
|
|
|
for (PRInt32 spanY = 2; mBottomRow && (spanY < mRowSpan); spanY++) {
|
|
|
|
mBottomRow = mBottomRow->GetNextRow();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
NS_ASSERTION(mBottomRow, "spanned row not found");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2011-10-17 07:59:28 -07:00
|
|
|
NS_ASSERTION(false, "error in cell map");
|
2009-06-21 09:31:40 -07:00
|
|
|
mRowSpan = 1;
|
|
|
|
mBottomRow = mTopRow;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// row group frame info
|
2009-06-21 09:31:40 -07:00
|
|
|
// try to reuse the rgStart and rgEnd from the iterator as calls to
|
|
|
|
// GetRowCount() are computationally expensive and should be avoided if
|
|
|
|
// possible
|
|
|
|
PRUint32 rgStart = aIter->mRowGroupStart;
|
|
|
|
PRUint32 rgEnd = aIter->mRowGroupEnd;
|
2010-01-16 08:05:46 -08:00
|
|
|
mRowGroup = static_cast<nsTableRowGroupFrame*>(mTopRow->GetParent());
|
2009-06-21 09:31:40 -07:00
|
|
|
if (mRowGroup != aIter->GetCurrentRowGroup()) {
|
|
|
|
rgStart = mRowGroup->GetStartRowIndex();
|
|
|
|
rgEnd = rgStart + mRowGroup->GetRowCount() - 1;
|
|
|
|
}
|
|
|
|
PRUint32 rowIndex = mTopRow->GetRowIndex();
|
|
|
|
mRgAtTop = (rgStart == rowIndex);
|
|
|
|
mRgAtBottom = (rgEnd == rowIndex + mRowSpan - 1);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// col frame info
|
|
|
|
mLeftCol = mTableFrame->GetColFrame(aColIndex);
|
|
|
|
if (!mLeftCol) ABORT0();
|
|
|
|
|
|
|
|
mRightCol = mLeftCol;
|
|
|
|
if (mColSpan > 1) {
|
|
|
|
nsTableColFrame* colFrame = mTableFrame->GetColFrame(aColIndex +
|
|
|
|
mColSpan -1);
|
|
|
|
if (!colFrame) ABORT0();
|
|
|
|
mRightCol = colFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// col group frame info
|
2009-06-21 09:31:40 -07:00
|
|
|
mColGroup = static_cast<nsTableColGroupFrame*>(mLeftCol->GetParent());
|
|
|
|
PRInt32 cgStart = mColGroup->GetStartColumnIndex();
|
2009-09-16 08:01:36 -07:00
|
|
|
PRInt32 cgEnd = NS_MAX(0, cgStart + mColGroup->GetColCount() - 1);
|
2009-06-21 09:31:40 -07:00
|
|
|
mCgAtLeft = (cgStart == aColIndex);
|
|
|
|
mCgAtRight = (cgEnd == aColIndex + mColSpan - 1);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2007-03-22 10:30:00 -07:00
|
|
|
BCMapCellIterator::SetNewRow(nsTableRowFrame* aRow)
|
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
mAtEnd = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
mPrevRow = mRow;
|
|
|
|
if (aRow) {
|
|
|
|
mRow = aRow;
|
|
|
|
}
|
|
|
|
else if (mRow) {
|
|
|
|
mRow = mRow->GetNextRow();
|
|
|
|
}
|
|
|
|
if (mRow) {
|
|
|
|
mRowIndex = mRow->GetRowIndex();
|
|
|
|
// get to the first entry with an originating cell
|
|
|
|
PRInt32 rgRowIndex = mRowIndex - mRowGroupStart;
|
2010-04-27 09:15:01 -07:00
|
|
|
if (PRUint32(rgRowIndex) >= mCellMap->mRows.Length())
|
2011-10-17 07:59:28 -07:00
|
|
|
ABORT1(false);
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsCellMap::CellDataArray& row = mCellMap->mRows[rgRowIndex];
|
|
|
|
|
|
|
|
for (mColIndex = mAreaStart.x; mColIndex <= mAreaEnd.x; mColIndex++) {
|
|
|
|
CellData* cellData = row.SafeElementAt(mColIndex);
|
|
|
|
if (!cellData) { // add a dead cell data
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea;
|
2011-10-27 06:58:44 -07:00
|
|
|
cellData = mCellMap->AppendCell(*mTableCellMap, nsnull, rgRowIndex,
|
|
|
|
false, 0, damageArea);
|
|
|
|
if (!cellData) ABORT1(false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (cellData && (cellData->IsOrig() || cellData->IsDead())) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsNewRow = true;
|
|
|
|
mAtEnd = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
else ABORT1(false);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return !mAtEnd;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
|
|
|
BCMapCellIterator::SetNewRowGroup(bool aFindFirstDamagedRow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
mAtEnd = true;
|
2007-06-05 11:55:26 -07:00
|
|
|
PRInt32 numRowGroups = mRowGroups.Length();
|
2007-03-22 10:30:00 -07:00
|
|
|
mCellMap = nsnull;
|
2007-12-15 12:23:10 -08:00
|
|
|
for (mRowGroupIndex++; mRowGroupIndex < numRowGroups; mRowGroupIndex++) {
|
2007-06-05 11:55:26 -07:00
|
|
|
mRowGroup = mRowGroups[mRowGroupIndex];
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 rowCount = mRowGroup->GetRowCount();
|
|
|
|
mRowGroupStart = mRowGroup->GetStartRowIndex();
|
|
|
|
mRowGroupEnd = mRowGroupStart + rowCount - 1;
|
2007-12-15 12:23:10 -08:00
|
|
|
if (rowCount > 0) {
|
2007-03-22 10:30:00 -07:00
|
|
|
mCellMap = mTableCellMap->GetMapFor(mRowGroup, mCellMap);
|
2011-10-17 07:59:28 -07:00
|
|
|
if (!mCellMap) ABORT1(false);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableRowFrame* firstRow = mRowGroup->GetFirstRow();
|
|
|
|
if (aFindFirstDamagedRow) {
|
|
|
|
if ((mAreaStart.y >= mRowGroupStart) && (mAreaStart.y <= mRowGroupEnd)) {
|
2010-04-27 09:15:01 -07:00
|
|
|
// the damage area starts in the row group
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aFindFirstDamagedRow) {
|
|
|
|
// find the correct first damaged row
|
|
|
|
PRInt32 numRows = mAreaStart.y - mRowGroupStart;
|
|
|
|
for (PRInt32 i = 0; i < numRows; i++) {
|
2007-06-05 11:55:26 -07:00
|
|
|
firstRow = firstRow->GetNextRow();
|
2011-10-17 07:59:28 -07:00
|
|
|
if (!firstRow) ABORT1(false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
else {
|
2007-03-22 10:30:00 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (SetNewRow(firstRow)) { // sets mAtEnd
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return !mAtEnd;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
BCMapCellIterator::First(BCMapCellInfo& aMapInfo)
|
|
|
|
{
|
2009-06-21 09:31:40 -07:00
|
|
|
aMapInfo.ResetCellInfo();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
SetNewRowGroup(true); // sets mAtEnd
|
2007-03-22 10:30:00 -07:00
|
|
|
while (!mAtEnd) {
|
|
|
|
if ((mAreaStart.y >= mRowGroupStart) && (mAreaStart.y <= mRowGroupEnd)) {
|
2009-06-21 09:31:40 -07:00
|
|
|
BCCellData* cellData =
|
|
|
|
static_cast<BCCellData*>(mCellMap->GetDataAt(mAreaStart.y -
|
|
|
|
mRowGroupStart,
|
|
|
|
mAreaStart.x));
|
2011-03-28 07:49:48 -07:00
|
|
|
if (cellData && (cellData->IsOrig() || cellData->IsDead())) {
|
2009-06-21 09:31:40 -07:00
|
|
|
aMapInfo.SetInfo(mRow, mAreaStart.x, cellData, this);
|
2011-03-28 07:49:48 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2009-06-21 09:31:40 -07:00
|
|
|
NS_ASSERTION(((0 == mAreaStart.x) && (mRowGroupStart == mAreaStart.y)) ,
|
|
|
|
"damage area expanded incorrectly");
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
SetNewRowGroup(true); // sets mAtEnd
|
2010-04-27 09:15:01 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
BCMapCellIterator::Next(BCMapCellInfo& aMapInfo)
|
|
|
|
{
|
|
|
|
if (mAtEnd) ABORT0();
|
2009-06-21 09:31:40 -07:00
|
|
|
aMapInfo.ResetCellInfo();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsNewRow = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
mColIndex++;
|
|
|
|
while ((mRowIndex <= mAreaEnd.y) && !mAtEnd) {
|
|
|
|
for (; mColIndex <= mAreaEnd.x; mColIndex++) {
|
|
|
|
PRInt32 rgRowIndex = mRowIndex - mRowGroupStart;
|
2009-06-21 09:31:40 -07:00
|
|
|
BCCellData* cellData =
|
|
|
|
static_cast<BCCellData*>(mCellMap->GetDataAt(rgRowIndex, mColIndex));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!cellData) { // add a dead cell data
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea;
|
2009-06-21 09:31:40 -07:00
|
|
|
cellData =
|
|
|
|
static_cast<BCCellData*>(mCellMap->AppendCell(*mTableCellMap, nsnull,
|
2011-10-27 06:58:44 -07:00
|
|
|
rgRowIndex, false, 0,
|
2009-06-21 09:31:40 -07:00
|
|
|
damageArea));
|
|
|
|
if (!cellData) ABORT0();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (cellData && (cellData->IsOrig() || cellData->IsDead())) {
|
2009-06-21 09:31:40 -07:00
|
|
|
aMapInfo.SetInfo(mRow, mColIndex, cellData, this);
|
2007-03-22 10:30:00 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mRowIndex >= mRowGroupEnd) {
|
2011-10-17 07:59:28 -07:00
|
|
|
SetNewRowGroup(false); // could set mAtEnd
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
SetNewRow(); // could set mAtEnd
|
|
|
|
}
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
mAtEnd = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
BCMapCellIterator::PeekRight(BCMapCellInfo& aRefInfo,
|
|
|
|
PRUint32 aRowIndex,
|
|
|
|
BCMapCellInfo& aAjaInfo)
|
|
|
|
{
|
2009-06-21 09:31:40 -07:00
|
|
|
aAjaInfo.ResetCellInfo();
|
|
|
|
PRInt32 colIndex = aRefInfo.mColIndex + aRefInfo.mColSpan;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 rgRowIndex = aRowIndex - mRowGroupStart;
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
BCCellData* cellData =
|
|
|
|
static_cast<BCCellData*>(mCellMap->GetDataAt(rgRowIndex, colIndex));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!cellData) { // add a dead cell data
|
|
|
|
NS_ASSERTION(colIndex < mTableCellMap->GetColCount(), "program error");
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea;
|
2009-06-21 09:31:40 -07:00
|
|
|
cellData =
|
|
|
|
static_cast<BCCellData*>(mCellMap->AppendCell(*mTableCellMap, nsnull,
|
2011-10-27 06:58:44 -07:00
|
|
|
rgRowIndex, false, 0,
|
2009-06-21 09:31:40 -07:00
|
|
|
damageArea));
|
|
|
|
if (!cellData) ABORT0();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
nsTableRowFrame* row = nsnull;
|
|
|
|
if (cellData->IsRowSpan()) {
|
|
|
|
rgRowIndex -= cellData->GetRowSpanOffset();
|
2009-06-21 09:31:40 -07:00
|
|
|
cellData =
|
|
|
|
static_cast<BCCellData*>(mCellMap->GetDataAt(rgRowIndex, colIndex));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!cellData)
|
|
|
|
ABORT0();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
row = mRow;
|
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
aAjaInfo.SetInfo(row, colIndex, cellData, this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
BCMapCellIterator::PeekBottom(BCMapCellInfo& aRefInfo,
|
|
|
|
PRUint32 aColIndex,
|
|
|
|
BCMapCellInfo& aAjaInfo)
|
|
|
|
{
|
2009-06-21 09:31:40 -07:00
|
|
|
aAjaInfo.ResetCellInfo();
|
|
|
|
PRInt32 rowIndex = aRefInfo.mRowIndex + aRefInfo.mRowSpan;
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 rgRowIndex = rowIndex - mRowGroupStart;
|
|
|
|
nsTableRowGroupFrame* rg = mRowGroup;
|
|
|
|
nsCellMap* cellMap = mCellMap;
|
|
|
|
nsTableRowFrame* nextRow = nsnull;
|
|
|
|
if (rowIndex > mRowGroupEnd) {
|
|
|
|
PRInt32 nextRgIndex = mRowGroupIndex;
|
|
|
|
do {
|
|
|
|
nextRgIndex++;
|
2007-06-05 11:55:26 -07:00
|
|
|
rg = mRowGroups.SafeElementAt(nextRgIndex);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (rg) {
|
|
|
|
cellMap = mTableCellMap->GetMapFor(rg, cellMap); if (!cellMap) ABORT0();
|
|
|
|
rgRowIndex = 0;
|
|
|
|
nextRow = rg->GetFirstRow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (rg && !nextRow);
|
|
|
|
if(!rg) return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// get the row within the same row group
|
|
|
|
nextRow = mRow;
|
2009-06-21 09:31:40 -07:00
|
|
|
for (PRInt32 i = 0; i < aRefInfo.mRowSpan; i++) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nextRow = nextRow->GetNextRow(); if (!nextRow) ABORT0();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
BCCellData* cellData =
|
|
|
|
static_cast<BCCellData*>(cellMap->GetDataAt(rgRowIndex, aColIndex));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!cellData) { // add a dead cell data
|
|
|
|
NS_ASSERTION(rgRowIndex < cellMap->GetRowCount(), "program error");
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea;
|
2009-06-21 09:31:40 -07:00
|
|
|
cellData =
|
|
|
|
static_cast<BCCellData*>(cellMap->AppendCell(*mTableCellMap, nsnull,
|
2011-10-27 06:58:44 -07:00
|
|
|
rgRowIndex, false, 0,
|
2009-06-21 09:31:40 -07:00
|
|
|
damageArea));
|
|
|
|
if (!cellData) ABORT0();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (cellData->IsColSpan()) {
|
|
|
|
aColIndex -= cellData->GetColSpanOffset();
|
2009-06-21 09:31:40 -07:00
|
|
|
cellData =
|
|
|
|
static_cast<BCCellData*>(cellMap->GetDataAt(rgRowIndex, aColIndex));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
aAjaInfo.SetInfo(nextRow, aColIndex, cellData, this, cellMap);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Assign priorities to border styles. For example, styleToPriority(NS_STYLE_BORDER_STYLE_SOLID)
|
2010-04-27 09:15:01 -07:00
|
|
|
// will return the priority of NS_STYLE_BORDER_STYLE_SOLID.
|
2007-03-22 10:30:00 -07:00
|
|
|
static PRUint8 styleToPriority[13] = { 0, // NS_STYLE_BORDER_STYLE_NONE
|
|
|
|
2, // NS_STYLE_BORDER_STYLE_GROOVE
|
|
|
|
4, // NS_STYLE_BORDER_STYLE_RIDGE
|
|
|
|
5, // NS_STYLE_BORDER_STYLE_DOTTED
|
|
|
|
6, // NS_STYLE_BORDER_STYLE_DASHED
|
|
|
|
7, // NS_STYLE_BORDER_STYLE_SOLID
|
|
|
|
8, // NS_STYLE_BORDER_STYLE_DOUBLE
|
|
|
|
1, // NS_STYLE_BORDER_STYLE_INSET
|
|
|
|
3, // NS_STYLE_BORDER_STYLE_OUTSET
|
|
|
|
9 };// NS_STYLE_BORDER_STYLE_HIDDEN
|
|
|
|
// priority rules follow CSS 2.1 spec
|
|
|
|
// 'hidden', 'double', 'solid', 'dashed', 'dotted', 'ridge', 'outset', 'groove',
|
|
|
|
// and the lowest: 'inset'. none is even weaker
|
2011-10-17 07:59:28 -07:00
|
|
|
#define CELL_CORNER true
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/** return the border style, border color for a given frame and side
|
2010-04-27 09:15:01 -07:00
|
|
|
* @param aFrame - query the info for this frame
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aSide - the side of the frame
|
|
|
|
* @param aStyle - the border style
|
|
|
|
* @param aColor - the border color
|
|
|
|
* @param aTableIsLTR - table direction is LTR
|
|
|
|
*/
|
2010-04-27 09:15:01 -07:00
|
|
|
static void
|
2007-03-22 10:30:00 -07:00
|
|
|
GetColorAndStyle(const nsIFrame* aFrame,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side aSide,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint8& aStyle,
|
|
|
|
nscolor& aColor,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aTableIsLTR)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aFrame, "null frame");
|
|
|
|
// initialize out arg
|
|
|
|
aColor = 0;
|
|
|
|
const nsStyleBorder* styleData = aFrame->GetStyleBorder();
|
|
|
|
if(!aTableIsLTR) { // revert the directions
|
|
|
|
if (NS_SIDE_RIGHT == aSide) {
|
|
|
|
aSide = NS_SIDE_LEFT;
|
|
|
|
}
|
|
|
|
else if (NS_SIDE_LEFT == aSide) {
|
|
|
|
aSide = NS_SIDE_RIGHT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
aStyle = styleData->GetBorderStyle(aSide);
|
|
|
|
|
|
|
|
if ((NS_STYLE_BORDER_STYLE_NONE == aStyle) ||
|
|
|
|
(NS_STYLE_BORDER_STYLE_HIDDEN == aStyle)) {
|
|
|
|
return;
|
|
|
|
}
|
2010-04-02 18:58:26 -07:00
|
|
|
aColor = aFrame->GetStyleContext()->GetVisitedDependentColor(
|
|
|
|
nsCSSProps::SubpropertyEntryFor(eCSSProperty_border_color)[aSide]);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/** coerce the paint style as required by CSS2.1
|
2010-04-27 09:15:01 -07:00
|
|
|
* @param aFrame - query the info for this frame
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aSide - the side of the frame
|
|
|
|
* @param aStyle - the border style
|
|
|
|
* @param aColor - the border color
|
|
|
|
* @param aTableIsLTR - table direction is LTR
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
GetPaintStyleInfo(const nsIFrame* aFrame,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side aSide,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint8& aStyle,
|
|
|
|
nscolor& aColor,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aTableIsLTR)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-01-09 07:33:03 -08:00
|
|
|
GetColorAndStyle(aFrame, aSide, aStyle, aColor, aTableIsLTR);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_STYLE_BORDER_STYLE_INSET == aStyle) {
|
|
|
|
aStyle = NS_STYLE_BORDER_STYLE_RIDGE;
|
|
|
|
}
|
|
|
|
else if (NS_STYLE_BORDER_STYLE_OUTSET == aStyle) {
|
|
|
|
aStyle = NS_STYLE_BORDER_STYLE_GROOVE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** return the border style, border color and the width in pixel for a given
|
|
|
|
* frame and side
|
2010-04-27 09:15:01 -07:00
|
|
|
* @param aFrame - query the info for this frame
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aSide - the side of the frame
|
|
|
|
* @param aStyle - the border style
|
|
|
|
* @param aColor - the border color
|
|
|
|
* @param aTableIsLTR - table direction is LTR
|
|
|
|
* @param aWidth - the border width in px.
|
|
|
|
* @param aTwipsToPixels - conversion factor from twips to pixel
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
GetColorAndStyle(const nsIFrame* aFrame,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side aSide,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint8& aStyle,
|
|
|
|
nscolor& aColor,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aTableIsLTR,
|
2009-06-21 09:31:40 -07:00
|
|
|
BCPixelSize& aWidth)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-01-09 07:33:03 -08:00
|
|
|
GetColorAndStyle(aFrame, aSide, aStyle, aColor, aTableIsLTR);
|
2007-03-22 10:30:00 -07:00
|
|
|
if ((NS_STYLE_BORDER_STYLE_NONE == aStyle) ||
|
|
|
|
(NS_STYLE_BORDER_STYLE_HIDDEN == aStyle)) {
|
|
|
|
aWidth = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const nsStyleBorder* styleData = aFrame->GetStyleBorder();
|
|
|
|
nscoord width;
|
|
|
|
if(!aTableIsLTR) { // revert the directions
|
|
|
|
if (NS_SIDE_RIGHT == aSide) {
|
|
|
|
aSide = NS_SIDE_LEFT;
|
|
|
|
}
|
|
|
|
else if (NS_SIDE_LEFT == aSide) {
|
|
|
|
aSide = NS_SIDE_RIGHT;
|
|
|
|
}
|
|
|
|
}
|
2012-05-30 22:19:49 -07:00
|
|
|
width = styleData->GetComputedBorderWidth(aSide);
|
2007-03-22 10:30:00 -07:00
|
|
|
aWidth = nsPresContext::AppUnitsToIntCSSPixels(width);
|
|
|
|
}
|
2008-10-26 03:11:34 -07:00
|
|
|
|
|
|
|
class nsDelayedCalcBCBorders : public nsRunnable {
|
|
|
|
public:
|
|
|
|
nsDelayedCalcBCBorders(nsIFrame* aFrame) :
|
|
|
|
mFrame(aFrame) {}
|
|
|
|
|
|
|
|
NS_IMETHOD Run() {
|
|
|
|
if (mFrame) {
|
|
|
|
nsTableFrame* tableFrame = static_cast <nsTableFrame*>(mFrame.GetFrame());
|
2008-11-01 01:52:29 -07:00
|
|
|
if (tableFrame->NeedToCalcBCBorders()) {
|
|
|
|
tableFrame->CalcBCBorders();
|
2008-10-26 03:11:34 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
nsWeakFrame mFrame;
|
|
|
|
};
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2008-10-26 03:11:34 -07:00
|
|
|
nsTableFrame::BCRecalcNeeded(nsStyleContext* aOldStyleContext,
|
|
|
|
nsStyleContext* aNewStyleContext)
|
|
|
|
{
|
2008-11-01 01:52:29 -07:00
|
|
|
// Attention: the old style context is the one we're forgetting,
|
|
|
|
// and hence possibly completely bogus for GetStyle* purposes.
|
|
|
|
// We use PeekStyleData instead.
|
|
|
|
|
2010-03-02 15:27:21 -08:00
|
|
|
const nsStyleBorder* oldStyleData = aOldStyleContext->PeekStyleBorder();
|
2008-11-01 01:52:29 -07:00
|
|
|
if (!oldStyleData)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2008-11-01 01:52:29 -07:00
|
|
|
|
|
|
|
const nsStyleBorder* newStyleData = aNewStyleContext->GetStyleBorder();
|
|
|
|
nsChangeHint change = newStyleData->CalcDifference(*oldStyleData);
|
2008-11-04 14:03:14 -08:00
|
|
|
if (!change)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2008-11-04 14:03:14 -08:00
|
|
|
if (change & nsChangeHint_ReflowFrame)
|
2011-10-17 07:59:28 -07:00
|
|
|
return true; // the caller only needs to mark the bc damage area
|
2008-11-04 14:03:14 -08:00
|
|
|
if (change & nsChangeHint_RepaintFrame) {
|
2008-11-02 10:41:35 -08:00
|
|
|
// we need to recompute the borders and the caller needs to mark
|
|
|
|
// the bc damage area
|
|
|
|
// XXX In principle this should only be necessary for border style changes
|
|
|
|
// However the bc painting code tries to maximize the drawn border segments
|
|
|
|
// so it stores in the cellmap where a new border segment starts and this
|
|
|
|
// introduces a unwanted cellmap data dependence on color
|
|
|
|
nsCOMPtr<nsIRunnable> evt = new nsDelayedCalcBCBorders(this);
|
|
|
|
NS_DispatchToCurrentThread(evt);
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2008-11-01 01:52:29 -07:00
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2008-10-26 03:11:34 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Compare two border segments, this comparison depends whether the two
|
|
|
|
// segments meet at a corner and whether the second segment is horizontal.
|
|
|
|
// The return value is whichever of aBorder1 or aBorder2 dominates.
|
|
|
|
static const BCCellBorder&
|
2011-09-28 23:19:26 -07:00
|
|
|
CompareBorders(bool aIsCorner, // Pass true for corner calculations
|
2007-03-22 10:30:00 -07:00
|
|
|
const BCCellBorder& aBorder1,
|
|
|
|
const BCCellBorder& aBorder2,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aSecondIsHorizontal,
|
|
|
|
bool* aFirstDominates = nsnull)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool firstDominates = true;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_STYLE_BORDER_STYLE_HIDDEN == aBorder1.style) {
|
2011-10-17 07:59:28 -07:00
|
|
|
firstDominates = (aIsCorner) ? false : true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else if (NS_STYLE_BORDER_STYLE_HIDDEN == aBorder2.style) {
|
2011-10-17 07:59:28 -07:00
|
|
|
firstDominates = (aIsCorner) ? true : false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else if (aBorder1.width < aBorder2.width) {
|
2011-10-17 07:59:28 -07:00
|
|
|
firstDominates = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else if (aBorder1.width == aBorder2.width) {
|
|
|
|
if (styleToPriority[aBorder1.style] < styleToPriority[aBorder2.style]) {
|
2011-10-17 07:59:28 -07:00
|
|
|
firstDominates = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else if (styleToPriority[aBorder1.style] == styleToPriority[aBorder2.style]) {
|
|
|
|
if (aBorder1.owner == aBorder2.owner) {
|
|
|
|
firstDominates = !aSecondIsHorizontal;
|
|
|
|
}
|
|
|
|
else if (aBorder1.owner < aBorder2.owner) {
|
2011-10-17 07:59:28 -07:00
|
|
|
firstDominates = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aFirstDominates)
|
|
|
|
*aFirstDominates = firstDominates;
|
|
|
|
|
|
|
|
if (firstDominates)
|
|
|
|
return aBorder1;
|
|
|
|
return aBorder2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** calc the dominant border by considering the table, row/col group, row/col,
|
2010-04-27 09:15:01 -07:00
|
|
|
* cell.
|
2007-03-22 10:30:00 -07:00
|
|
|
* Depending on whether the side is vertical or horizontal and whether
|
|
|
|
* adjacent frames are taken into account the ownership of a single border
|
|
|
|
* segment is defined. The return value is the dominating border
|
|
|
|
* The cellmap stores only top and left borders for each cellmap position.
|
|
|
|
* If the cell border is owned by the cell that is left of the border
|
|
|
|
* it will be an adjacent owner aka eAjaCellOwner. See celldata.h for the other
|
|
|
|
* scenarios with a adjacent owner.
|
|
|
|
* @param xxxFrame - the frame for style information, might be zero if
|
|
|
|
* it should not be considered
|
|
|
|
* @param aSide - side of the frames that should be considered
|
|
|
|
* @param aAja - the border comparison takes place from the point of
|
|
|
|
* a frame that is adjacent to the cellmap entry, for
|
|
|
|
* when a cell owns its lower border it will be the
|
|
|
|
* adjacent owner as in the cellmap only top and left
|
2010-04-27 09:15:01 -07:00
|
|
|
* borders are stored.
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aTwipsToPixels - conversion factor as borders need to be drawn pixel
|
|
|
|
* aligned.
|
|
|
|
*/
|
|
|
|
static BCCellBorder
|
|
|
|
CompareBorders(const nsIFrame* aTableFrame,
|
|
|
|
const nsIFrame* aColGroupFrame,
|
|
|
|
const nsIFrame* aColFrame,
|
|
|
|
const nsIFrame* aRowGroupFrame,
|
|
|
|
const nsIFrame* aRowFrame,
|
|
|
|
const nsIFrame* aCellFrame,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aTableIsLTR,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side aSide,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aAja)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
BCCellBorder border, tempBorder;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool horizontal = (NS_SIDE_TOP == aSide) || (NS_SIDE_BOTTOM == aSide);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// start with the table as dominant if present
|
|
|
|
if (aTableFrame) {
|
2010-01-09 07:33:03 -08:00
|
|
|
GetColorAndStyle(aTableFrame, aSide, border.style, border.color, aTableIsLTR, border.width);
|
2007-03-22 10:30:00 -07:00
|
|
|
border.owner = eTableOwner;
|
|
|
|
if (NS_STYLE_BORDER_STYLE_HIDDEN == border.style) {
|
|
|
|
return border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// see if the colgroup is dominant
|
|
|
|
if (aColGroupFrame) {
|
2010-01-09 07:33:03 -08:00
|
|
|
GetColorAndStyle(aColGroupFrame, aSide, tempBorder.style, tempBorder.color, aTableIsLTR, tempBorder.width);
|
2007-03-22 10:30:00 -07:00
|
|
|
tempBorder.owner = (aAja && !horizontal) ? eAjaColGroupOwner : eColGroupOwner;
|
2011-10-17 07:59:28 -07:00
|
|
|
// pass here and below false for aSecondIsHorizontal as it is only used for corner calculations.
|
|
|
|
border = CompareBorders(!CELL_CORNER, border, tempBorder, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_STYLE_BORDER_STYLE_HIDDEN == border.style) {
|
|
|
|
return border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// see if the col is dominant
|
|
|
|
if (aColFrame) {
|
2010-01-09 07:33:03 -08:00
|
|
|
GetColorAndStyle(aColFrame, aSide, tempBorder.style, tempBorder.color, aTableIsLTR, tempBorder.width);
|
2007-03-22 10:30:00 -07:00
|
|
|
tempBorder.owner = (aAja && !horizontal) ? eAjaColOwner : eColOwner;
|
2011-10-17 07:59:28 -07:00
|
|
|
border = CompareBorders(!CELL_CORNER, border, tempBorder, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_STYLE_BORDER_STYLE_HIDDEN == border.style) {
|
|
|
|
return border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// see if the rowgroup is dominant
|
|
|
|
if (aRowGroupFrame) {
|
2010-01-09 07:33:03 -08:00
|
|
|
GetColorAndStyle(aRowGroupFrame, aSide, tempBorder.style, tempBorder.color, aTableIsLTR, tempBorder.width);
|
2007-03-22 10:30:00 -07:00
|
|
|
tempBorder.owner = (aAja && horizontal) ? eAjaRowGroupOwner : eRowGroupOwner;
|
2011-10-17 07:59:28 -07:00
|
|
|
border = CompareBorders(!CELL_CORNER, border, tempBorder, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_STYLE_BORDER_STYLE_HIDDEN == border.style) {
|
|
|
|
return border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// see if the row is dominant
|
|
|
|
if (aRowFrame) {
|
2010-01-09 07:33:03 -08:00
|
|
|
GetColorAndStyle(aRowFrame, aSide, tempBorder.style, tempBorder.color, aTableIsLTR, tempBorder.width);
|
2007-03-22 10:30:00 -07:00
|
|
|
tempBorder.owner = (aAja && horizontal) ? eAjaRowOwner : eRowOwner;
|
2011-10-17 07:59:28 -07:00
|
|
|
border = CompareBorders(!CELL_CORNER, border, tempBorder, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_STYLE_BORDER_STYLE_HIDDEN == border.style) {
|
|
|
|
return border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// see if the cell is dominant
|
|
|
|
if (aCellFrame) {
|
2010-01-09 07:33:03 -08:00
|
|
|
GetColorAndStyle(aCellFrame, aSide, tempBorder.style, tempBorder.color, aTableIsLTR, tempBorder.width);
|
2007-03-22 10:30:00 -07:00
|
|
|
tempBorder.owner = (aAja) ? eAjaCellOwner : eCellOwner;
|
2011-10-17 07:59:28 -07:00
|
|
|
border = CompareBorders(!CELL_CORNER, border, tempBorder, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
return border;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2010-04-27 09:15:02 -07:00
|
|
|
Perpendicular(mozilla::css::Side aSide1,
|
|
|
|
mozilla::css::Side aSide2)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
switch (aSide1) {
|
|
|
|
case NS_SIDE_TOP:
|
|
|
|
return (NS_SIDE_BOTTOM != aSide2);
|
|
|
|
case NS_SIDE_RIGHT:
|
|
|
|
return (NS_SIDE_LEFT != aSide2);
|
|
|
|
case NS_SIDE_BOTTOM:
|
|
|
|
return (NS_SIDE_TOP != aSide2);
|
|
|
|
default: // NS_SIDE_LEFT
|
|
|
|
return (NS_SIDE_RIGHT != aSide2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX allocate this as number-of-cols+1 instead of number-of-cols+1 * number-of-rows+1
|
2010-04-27 09:15:01 -07:00
|
|
|
struct BCCornerInfo
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-04-27 09:15:02 -07:00
|
|
|
BCCornerInfo() { ownerColor = 0; ownerWidth = subWidth = ownerElem = subSide =
|
|
|
|
subElem = hasDashDot = numSegs = bevel = 0; ownerSide = NS_SIDE_TOP;
|
2007-03-22 10:30:00 -07:00
|
|
|
ownerStyle = 0xFF; subStyle = NS_STYLE_BORDER_STYLE_SOLID; }
|
2010-04-27 09:15:02 -07:00
|
|
|
void Set(mozilla::css::Side aSide,
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCellBorder border);
|
|
|
|
|
2010-04-27 09:15:02 -07:00
|
|
|
void Update(mozilla::css::Side aSide,
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCellBorder border);
|
|
|
|
|
|
|
|
nscolor ownerColor; // color of borderOwner
|
2010-04-27 09:15:01 -07:00
|
|
|
PRUint16 ownerWidth; // pixel width of borderOwner
|
|
|
|
PRUint16 subWidth; // pixel width of the largest border intersecting the border perpendicular
|
2007-03-22 10:30:00 -07:00
|
|
|
// to ownerSide
|
2010-04-27 09:15:02 -07:00
|
|
|
PRUint32 ownerSide:2; // mozilla::css::Side (e.g NS_SIDE_TOP, NS_SIDE_RIGHT, etc) of the border
|
|
|
|
// owning the corner relative to the corner
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 ownerElem:3; // elem type (e.g. eTable, eGroup, etc) owning the corner
|
|
|
|
PRUint32 ownerStyle:8; // border style of ownerElem
|
|
|
|
PRUint32 subSide:2; // side of border with subWidth relative to the corner
|
|
|
|
PRUint32 subElem:3; // elem type (e.g. eTable, eGroup, etc) of sub owner
|
|
|
|
PRUint32 subStyle:8; // border style of subElem
|
|
|
|
PRUint32 hasDashDot:1; // does a dashed, dotted segment enter the corner, they cannot be beveled
|
|
|
|
PRUint32 numSegs:3; // number of segments entering corner
|
|
|
|
PRUint32 bevel:1; // is the corner beveled (uses the above two fields together with subWidth)
|
|
|
|
PRUint32 unused:1;
|
|
|
|
};
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2010-04-27 09:15:02 -07:00
|
|
|
BCCornerInfo::Set(mozilla::css::Side aSide,
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCellBorder aBorder)
|
|
|
|
{
|
|
|
|
ownerElem = aBorder.owner;
|
|
|
|
ownerStyle = aBorder.style;
|
|
|
|
ownerWidth = aBorder.width;
|
|
|
|
ownerColor = aBorder.color;
|
|
|
|
ownerSide = aSide;
|
|
|
|
hasDashDot = 0;
|
|
|
|
numSegs = 0;
|
|
|
|
if (aBorder.width > 0) {
|
|
|
|
numSegs++;
|
|
|
|
hasDashDot = (NS_STYLE_BORDER_STYLE_DASHED == aBorder.style) ||
|
|
|
|
(NS_STYLE_BORDER_STYLE_DOTTED == aBorder.style);
|
|
|
|
}
|
|
|
|
bevel = 0;
|
|
|
|
subWidth = 0;
|
|
|
|
// the following will get set later
|
2010-04-27 09:15:01 -07:00
|
|
|
subSide = ((aSide == NS_SIDE_LEFT) || (aSide == NS_SIDE_RIGHT)) ? NS_SIDE_TOP : NS_SIDE_LEFT;
|
2007-03-22 10:30:00 -07:00
|
|
|
subElem = eTableOwner;
|
2010-04-27 09:15:01 -07:00
|
|
|
subStyle = NS_STYLE_BORDER_STYLE_SOLID;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2010-04-27 09:15:02 -07:00
|
|
|
BCCornerInfo::Update(mozilla::css::Side aSide,
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCellBorder aBorder)
|
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool existingWins = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (0xFF == ownerStyle) { // initial value indiating that it hasn't been set yet
|
|
|
|
Set(aSide, aBorder);
|
|
|
|
}
|
|
|
|
else {
|
2011-09-28 23:19:26 -07:00
|
|
|
bool horizontal = (NS_SIDE_LEFT == aSide) || (NS_SIDE_RIGHT == aSide); // relative to the corner
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCellBorder oldBorder, tempBorder;
|
|
|
|
oldBorder.owner = (BCBorderOwner) ownerElem;
|
|
|
|
oldBorder.style = ownerStyle;
|
|
|
|
oldBorder.width = ownerWidth;
|
|
|
|
oldBorder.color = ownerColor;
|
|
|
|
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side oldSide = mozilla::css::Side(ownerSide);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
|
|
|
tempBorder = CompareBorders(CELL_CORNER, oldBorder, aBorder, horizontal, &existingWins);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ownerElem = tempBorder.owner;
|
|
|
|
ownerStyle = tempBorder.style;
|
|
|
|
ownerWidth = tempBorder.width;
|
|
|
|
ownerColor = tempBorder.color;
|
|
|
|
if (existingWins) { // existing corner is dominant
|
2010-04-27 09:15:02 -07:00
|
|
|
if (::Perpendicular(mozilla::css::Side(ownerSide), aSide)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// see if the new sub info replaces the old
|
|
|
|
BCCellBorder subBorder;
|
|
|
|
subBorder.owner = (BCBorderOwner) subElem;
|
|
|
|
subBorder.style = subStyle;
|
|
|
|
subBorder.width = subWidth;
|
|
|
|
subBorder.color = 0; // we are not interested in subBorder color
|
2011-09-28 23:19:26 -07:00
|
|
|
bool firstWins;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
tempBorder = CompareBorders(CELL_CORNER, subBorder, aBorder, horizontal, &firstWins);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
subElem = tempBorder.owner;
|
|
|
|
subStyle = tempBorder.style;
|
|
|
|
subWidth = tempBorder.width;
|
|
|
|
if (!firstWins) {
|
2010-04-27 09:15:01 -07:00
|
|
|
subSide = aSide;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else { // input args are dominant
|
|
|
|
ownerSide = aSide;
|
2010-04-27 09:15:02 -07:00
|
|
|
if (::Perpendicular(oldSide, mozilla::css::Side(ownerSide))) {
|
2007-03-22 10:30:00 -07:00
|
|
|
subElem = oldBorder.owner;
|
|
|
|
subStyle = oldBorder.style;
|
|
|
|
subWidth = oldBorder.width;
|
|
|
|
subSide = oldSide;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (aBorder.width > 0) {
|
|
|
|
numSegs++;
|
|
|
|
if (!hasDashDot && ((NS_STYLE_BORDER_STYLE_DASHED == aBorder.style) ||
|
|
|
|
(NS_STYLE_BORDER_STYLE_DOTTED == aBorder.style))) {
|
|
|
|
hasDashDot = 1;
|
|
|
|
}
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// bevel the corner if only two perpendicular non dashed/dotted segments enter the corner
|
|
|
|
bevel = (2 == numSegs) && (subWidth > 1) && (0 == hasDashDot);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct BCCorners
|
|
|
|
{
|
|
|
|
BCCorners(PRInt32 aNumCorners,
|
|
|
|
PRInt32 aStartIndex);
|
|
|
|
|
|
|
|
~BCCorners() { delete [] corners; }
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCornerInfo& operator [](PRInt32 i) const
|
|
|
|
{ NS_ASSERTION((i >= startIndex) && (i <= endIndex), "program error");
|
2011-10-28 11:33:28 -07:00
|
|
|
return corners[clamped(i, startIndex, endIndex) - startIndex]; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRInt32 startIndex;
|
|
|
|
PRInt32 endIndex;
|
|
|
|
BCCornerInfo* corners;
|
|
|
|
};
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCorners::BCCorners(PRInt32 aNumCorners,
|
|
|
|
PRInt32 aStartIndex)
|
|
|
|
{
|
|
|
|
NS_ASSERTION((aNumCorners > 0) && (aStartIndex >= 0), "program error");
|
|
|
|
startIndex = aStartIndex;
|
|
|
|
endIndex = aStartIndex + aNumCorners - 1;
|
2010-04-27 09:15:01 -07:00
|
|
|
corners = new BCCornerInfo[aNumCorners];
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct BCCellBorders
|
|
|
|
{
|
|
|
|
BCCellBorders(PRInt32 aNumBorders,
|
|
|
|
PRInt32 aStartIndex);
|
|
|
|
|
|
|
|
~BCCellBorders() { delete [] borders; }
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCellBorder& operator [](PRInt32 i) const
|
|
|
|
{ NS_ASSERTION((i >= startIndex) && (i <= endIndex), "program error");
|
2011-10-28 11:33:28 -07:00
|
|
|
return borders[clamped(i, startIndex, endIndex) - startIndex]; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRInt32 startIndex;
|
|
|
|
PRInt32 endIndex;
|
|
|
|
BCCellBorder* borders;
|
|
|
|
};
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCellBorders::BCCellBorders(PRInt32 aNumBorders,
|
|
|
|
PRInt32 aStartIndex)
|
|
|
|
{
|
|
|
|
NS_ASSERTION((aNumBorders > 0) && (aStartIndex >= 0), "program error");
|
|
|
|
startIndex = aStartIndex;
|
|
|
|
endIndex = aStartIndex + aNumBorders - 1;
|
2010-04-27 09:15:01 -07:00
|
|
|
borders = new BCCellBorder[aNumBorders];
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// this function sets the new border properties and returns true if the border
|
2009-11-05 01:26:00 -08:00
|
|
|
// segment will start a new segment and not be accumulated into the previous
|
|
|
|
// segment.
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2007-03-22 10:30:00 -07:00
|
|
|
SetBorder(const BCCellBorder& aNewBorder,
|
|
|
|
BCCellBorder& aBorder)
|
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool changed = (aNewBorder.style != aBorder.style) ||
|
2007-03-22 10:30:00 -07:00
|
|
|
(aNewBorder.width != aBorder.width) ||
|
|
|
|
(aNewBorder.color != aBorder.color);
|
|
|
|
aBorder.color = aNewBorder.color;
|
|
|
|
aBorder.width = aNewBorder.width;
|
|
|
|
aBorder.style = aNewBorder.style;
|
|
|
|
aBorder.owner = aNewBorder.owner;
|
|
|
|
|
|
|
|
return changed;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
// this function will set the horizontal border. It will return true if the
|
2007-03-22 10:30:00 -07:00
|
|
|
// existing segment will not be continued. Having a vertical owner of a corner
|
|
|
|
// should also start a new segment.
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2007-03-22 10:30:00 -07:00
|
|
|
SetHorBorder(const BCCellBorder& aNewBorder,
|
|
|
|
const BCCornerInfo& aCorner,
|
|
|
|
BCCellBorder& aBorder)
|
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool startSeg = ::SetBorder(aNewBorder, aBorder);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!startSeg) {
|
|
|
|
startSeg = ((NS_SIDE_LEFT != aCorner.ownerSide) && (NS_SIDE_RIGHT != aCorner.ownerSide));
|
|
|
|
}
|
|
|
|
return startSeg;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
// Make the damage area larger on the top and bottom by at least one row and on the left and right
|
|
|
|
// at least one column. This is done so that adjacent elements are part of the border calculations.
|
|
|
|
// The extra segments and borders outside the actual damage area will not be updated in the cell map,
|
2007-03-22 10:30:00 -07:00
|
|
|
// because they in turn would need info from adjacent segments outside the damage area to be accurate.
|
|
|
|
void
|
2012-01-22 14:48:34 -08:00
|
|
|
nsTableFrame::ExpandBCDamageArea(nsIntRect& aRect) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
PRInt32 numRows = GetRowCount();
|
|
|
|
PRInt32 numCols = GetColCount();
|
|
|
|
|
|
|
|
PRInt32 dStartX = aRect.x;
|
|
|
|
PRInt32 dEndX = aRect.XMost() - 1;
|
|
|
|
PRInt32 dStartY = aRect.y;
|
|
|
|
PRInt32 dEndY = aRect.YMost() - 1;
|
|
|
|
|
|
|
|
// expand the damage area in each direction
|
|
|
|
if (dStartX > 0) {
|
|
|
|
dStartX--;
|
|
|
|
}
|
|
|
|
if (dEndX < (numCols - 1)) {
|
|
|
|
dEndX++;
|
|
|
|
}
|
|
|
|
if (dStartY > 0) {
|
|
|
|
dStartY--;
|
|
|
|
}
|
|
|
|
if (dEndY < (numRows - 1)) {
|
|
|
|
dEndY++;
|
|
|
|
}
|
|
|
|
// Check the damage area so that there are no cells spanning in or out. If there are any then
|
|
|
|
// make the damage area as big as the table, similarly to the way the cell map decides whether
|
|
|
|
// to rebuild versus expand. This could be optimized to expand to the smallest area that contains
|
|
|
|
// no spanners, but it may not be worth the effort in general, and it would need to be done in the
|
|
|
|
// cell map as well.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool haveSpanner = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
if ((dStartX > 0) || (dEndX < (numCols - 1)) || (dStartY > 0) || (dEndY < (numRows - 1))) {
|
|
|
|
nsTableCellMap* tableCellMap = GetCellMap(); if (!tableCellMap) ABORT0();
|
2010-04-27 09:15:01 -07:00
|
|
|
// Get the ordered row groups
|
2007-06-05 11:55:26 -07:00
|
|
|
RowGroupArray rowGroups;
|
|
|
|
OrderRowGroups(rowGroups);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Scope outside loop to be used as hint.
|
|
|
|
nsCellMap* cellMap = nsnull;
|
2007-06-05 11:55:26 -07:00
|
|
|
for (PRUint32 rgX = 0; rgX < rowGroups.Length(); rgX++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = rowGroups[rgX];
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 rgStartY = rgFrame->GetStartRowIndex();
|
|
|
|
PRInt32 rgEndY = rgStartY + rgFrame->GetRowCount() - 1;
|
2010-04-27 09:15:01 -07:00
|
|
|
if (dEndY < rgStartY)
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
cellMap = tableCellMap->GetMapFor(rgFrame, cellMap);
|
|
|
|
if (!cellMap) ABORT0();
|
|
|
|
// check for spanners from above and below
|
|
|
|
if ((dStartY > 0) && (dStartY >= rgStartY) && (dStartY <= rgEndY)) {
|
2010-04-27 09:15:01 -07:00
|
|
|
if (PRUint32(dStartY - rgStartY) >= cellMap->mRows.Length())
|
2007-03-22 10:30:00 -07:00
|
|
|
ABORT0();
|
|
|
|
const nsCellMap::CellDataArray& row =
|
|
|
|
cellMap->mRows[dStartY - rgStartY];
|
|
|
|
for (PRInt32 x = dStartX; x <= dEndX; x++) {
|
|
|
|
CellData* cellData = row.SafeElementAt(x);
|
|
|
|
if (cellData && (cellData->IsRowSpan())) {
|
2011-10-17 07:59:28 -07:00
|
|
|
haveSpanner = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (dEndY < rgEndY) {
|
2010-04-27 09:15:01 -07:00
|
|
|
if (PRUint32(dEndY + 1 - rgStartY) >= cellMap->mRows.Length())
|
2007-03-22 10:30:00 -07:00
|
|
|
ABORT0();
|
|
|
|
const nsCellMap::CellDataArray& row2 =
|
|
|
|
cellMap->mRows[dEndY + 1 - rgStartY];
|
|
|
|
for (PRInt32 x = dStartX; x <= dEndX; x++) {
|
|
|
|
CellData* cellData = row2.SafeElementAt(x);
|
|
|
|
if (cellData && (cellData->IsRowSpan())) {
|
2011-10-17 07:59:28 -07:00
|
|
|
haveSpanner = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// check for spanners on the left and right
|
|
|
|
PRInt32 iterStartY = -1;
|
|
|
|
PRInt32 iterEndY = -1;
|
|
|
|
if ((dStartY >= rgStartY) && (dStartY <= rgEndY)) {
|
|
|
|
// the damage area starts in the row group
|
|
|
|
iterStartY = dStartY;
|
2009-09-16 08:01:36 -07:00
|
|
|
iterEndY = NS_MIN(dEndY, rgEndY);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else if ((dEndY >= rgStartY) && (dEndY <= rgEndY)) {
|
|
|
|
// the damage area ends in the row group
|
|
|
|
iterStartY = rgStartY;
|
2012-01-08 22:37:16 -08:00
|
|
|
iterEndY = dEndY;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else if ((rgStartY >= dStartY) && (rgEndY <= dEndY)) {
|
|
|
|
// the damage area contains the row group
|
|
|
|
iterStartY = rgStartY;
|
|
|
|
iterEndY = rgEndY;
|
|
|
|
}
|
|
|
|
if ((iterStartY >= 0) && (iterEndY >= 0)) {
|
|
|
|
for (PRInt32 y = iterStartY; y <= iterEndY; y++) {
|
2010-04-27 09:15:01 -07:00
|
|
|
if (PRUint32(y - rgStartY) >= cellMap->mRows.Length())
|
2007-03-22 10:30:00 -07:00
|
|
|
ABORT0();
|
|
|
|
const nsCellMap::CellDataArray& row =
|
|
|
|
cellMap->mRows[y - rgStartY];
|
|
|
|
CellData* cellData = row.SafeElementAt(dStartX);
|
|
|
|
if (cellData && (cellData->IsColSpan())) {
|
2011-10-17 07:59:28 -07:00
|
|
|
haveSpanner = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (dEndX < (numCols - 1)) {
|
|
|
|
cellData = row.SafeElementAt(dEndX + 1);
|
|
|
|
if (cellData && (cellData->IsColSpan())) {
|
2011-10-17 07:59:28 -07:00
|
|
|
haveSpanner = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (haveSpanner) {
|
|
|
|
// make the damage area the whole table
|
|
|
|
aRect.x = 0;
|
|
|
|
aRect.y = 0;
|
|
|
|
aRect.width = numCols;
|
|
|
|
aRect.height = numRows;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
aRect.x = dStartX;
|
|
|
|
aRect.y = dStartY;
|
|
|
|
aRect.width = 1 + dEndX - dStartX;
|
|
|
|
aRect.height = 1 + dEndY - dStartY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
#define ADJACENT true
|
|
|
|
#define HORIZONTAL true
|
2009-06-21 09:31:40 -07:00
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetTableTopLeftContBCBorder()
|
|
|
|
{
|
|
|
|
BCCellBorder currentBorder;
|
|
|
|
//calculate continuous top first row & rowgroup border: special case
|
|
|
|
//because it must include the table in the collapse
|
|
|
|
if (mTopRow) {
|
|
|
|
currentBorder = CompareBorders(mTableFrame, nsnull, nsnull, mRowGroup,
|
|
|
|
mTopRow, nsnull, mTableIsLTR,
|
2010-01-09 07:33:03 -08:00
|
|
|
NS_SIDE_TOP, !ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
mTopRow->SetContinuousBCBorderWidth(NS_SIDE_TOP, currentBorder.width);
|
|
|
|
}
|
|
|
|
if (mCgAtRight && mColGroup) {
|
|
|
|
//calculate continuous top colgroup border once per colgroup
|
|
|
|
currentBorder = CompareBorders(mTableFrame, mColGroup, nsnull, mRowGroup,
|
|
|
|
mTopRow, nsnull, mTableIsLTR,
|
2010-01-09 07:33:03 -08:00
|
|
|
NS_SIDE_TOP, !ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
mColGroup->SetContinuousBCBorderWidth(NS_SIDE_TOP, currentBorder.width);
|
|
|
|
}
|
|
|
|
if (0 == mColIndex) {
|
|
|
|
currentBorder = CompareBorders(mTableFrame, mColGroup, mLeftCol, nsnull,
|
2010-01-09 07:33:03 -08:00
|
|
|
nsnull, nsnull, mTableIsLTR, NS_SIDE_LEFT,
|
|
|
|
!ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
mTableFrame->SetContinuousLeftBCBorderWidth(currentBorder.width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetRowGroupLeftContBCBorder()
|
|
|
|
{
|
|
|
|
BCCellBorder currentBorder;
|
|
|
|
//get row group continuous borders
|
|
|
|
if (mRgAtBottom && mRowGroup) { //once per row group, so check for bottom
|
|
|
|
currentBorder = CompareBorders(mTableFrame, mColGroup, mLeftCol, mRowGroup,
|
2010-01-09 07:33:03 -08:00
|
|
|
nsnull, nsnull, mTableIsLTR, NS_SIDE_LEFT,
|
|
|
|
!ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
mRowGroup->SetContinuousBCBorderWidth(mStartSide, currentBorder.width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetRowGroupRightContBCBorder()
|
|
|
|
{
|
|
|
|
BCCellBorder currentBorder;
|
|
|
|
//get row group continuous borders
|
|
|
|
if (mRgAtBottom && mRowGroup) { //once per mRowGroup, so check for bottom
|
|
|
|
currentBorder = CompareBorders(mTableFrame, mColGroup, mRightCol, mRowGroup,
|
2010-01-09 07:33:03 -08:00
|
|
|
nsnull, nsnull, mTableIsLTR, NS_SIDE_RIGHT,
|
|
|
|
ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
mRowGroup->SetContinuousBCBorderWidth(mEndSide, currentBorder.width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetColumnTopRightContBCBorder()
|
|
|
|
{
|
|
|
|
BCCellBorder currentBorder;
|
|
|
|
//calculate column continuous borders
|
|
|
|
//we only need to do this once, so we'll do it only on the first row
|
|
|
|
currentBorder = CompareBorders(mTableFrame, mCurrentColGroupFrame,
|
|
|
|
mCurrentColFrame, mRowGroup, mTopRow, nsnull,
|
2010-01-09 07:33:03 -08:00
|
|
|
mTableIsLTR, NS_SIDE_TOP, !ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
((nsTableColFrame*) mCurrentColFrame)->SetContinuousBCBorderWidth(NS_SIDE_TOP,
|
|
|
|
currentBorder.width);
|
|
|
|
if (mNumTableCols == GetCellEndColIndex() + 1) {
|
|
|
|
currentBorder = CompareBorders(mTableFrame, mCurrentColGroupFrame,
|
|
|
|
mCurrentColFrame, nsnull, nsnull, nsnull,
|
2010-01-09 07:33:03 -08:00
|
|
|
mTableIsLTR, NS_SIDE_RIGHT, !ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
currentBorder = CompareBorders(nsnull, mCurrentColGroupFrame,
|
|
|
|
mCurrentColFrame, nsnull,nsnull, nsnull,
|
2010-01-09 07:33:03 -08:00
|
|
|
mTableIsLTR, NS_SIDE_RIGHT, !ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
mCurrentColFrame->SetContinuousBCBorderWidth(NS_SIDE_RIGHT,
|
|
|
|
currentBorder.width);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetColumnBottomContBCBorder()
|
|
|
|
{
|
|
|
|
BCCellBorder currentBorder;
|
|
|
|
//get col continuous border
|
|
|
|
currentBorder = CompareBorders(mTableFrame, mCurrentColGroupFrame,
|
|
|
|
mCurrentColFrame, mRowGroup, mBottomRow,
|
2010-01-09 07:33:03 -08:00
|
|
|
nsnull, mTableIsLTR, NS_SIDE_BOTTOM, ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
mCurrentColFrame->SetContinuousBCBorderWidth(NS_SIDE_BOTTOM,
|
|
|
|
currentBorder.width);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetColGroupBottomContBCBorder()
|
|
|
|
{
|
|
|
|
BCCellBorder currentBorder;
|
|
|
|
if (mColGroup) {
|
|
|
|
currentBorder = CompareBorders(mTableFrame, mColGroup, nsnull, mRowGroup,
|
2010-01-09 07:33:03 -08:00
|
|
|
mBottomRow, nsnull, mTableIsLTR,
|
2009-06-21 09:31:40 -07:00
|
|
|
NS_SIDE_BOTTOM, ADJACENT);
|
|
|
|
mColGroup->SetContinuousBCBorderWidth(NS_SIDE_BOTTOM, currentBorder.width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetRowGroupBottomContBCBorder()
|
|
|
|
{
|
|
|
|
BCCellBorder currentBorder;
|
|
|
|
if (mRowGroup) {
|
|
|
|
currentBorder = CompareBorders(mTableFrame, nsnull, nsnull, mRowGroup,
|
2010-01-09 07:33:03 -08:00
|
|
|
mBottomRow, nsnull, mTableIsLTR,
|
2009-06-21 09:31:40 -07:00
|
|
|
NS_SIDE_BOTTOM, ADJACENT);
|
|
|
|
mRowGroup->SetContinuousBCBorderWidth(NS_SIDE_BOTTOM, currentBorder.width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetInnerRowGroupBottomContBCBorder(const nsIFrame* aNextRowGroup,
|
|
|
|
nsTableRowFrame* aNextRow)
|
|
|
|
{
|
|
|
|
BCCellBorder currentBorder, adjacentBorder;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
const nsIFrame* rowgroup = (mRgAtBottom) ? mRowGroup : nsnull;
|
|
|
|
currentBorder = CompareBorders(nsnull, nsnull, nsnull, rowgroup, mBottomRow,
|
2010-01-09 07:33:03 -08:00
|
|
|
nsnull, mTableIsLTR, NS_SIDE_BOTTOM, ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
|
|
|
|
adjacentBorder = CompareBorders(nsnull, nsnull, nsnull, aNextRowGroup,
|
2010-01-09 07:33:03 -08:00
|
|
|
aNextRow, nsnull, mTableIsLTR, NS_SIDE_TOP,
|
|
|
|
!ADJACENT);
|
2011-10-17 07:59:28 -07:00
|
|
|
currentBorder = CompareBorders(false, currentBorder, adjacentBorder,
|
2009-06-21 09:31:40 -07:00
|
|
|
HORIZONTAL);
|
|
|
|
if (aNextRow) {
|
|
|
|
aNextRow->SetContinuousBCBorderWidth(NS_SIDE_TOP, currentBorder.width);
|
|
|
|
}
|
|
|
|
if (mRgAtBottom && mRowGroup) {
|
|
|
|
mRowGroup->SetContinuousBCBorderWidth(NS_SIDE_BOTTOM, currentBorder.width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetRowLeftContBCBorder()
|
|
|
|
{
|
|
|
|
//get row continuous borders
|
|
|
|
if (mCurrentRowFrame) {
|
|
|
|
BCCellBorder currentBorder;
|
|
|
|
currentBorder = CompareBorders(mTableFrame, mColGroup, mLeftCol, mRowGroup,
|
|
|
|
mCurrentRowFrame, nsnull, mTableIsLTR,
|
2010-01-09 07:33:03 -08:00
|
|
|
NS_SIDE_LEFT, !ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
mCurrentRowFrame->SetContinuousBCBorderWidth(mStartSide,
|
|
|
|
currentBorder.width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetRowRightContBCBorder()
|
|
|
|
{
|
|
|
|
if (mCurrentRowFrame) {
|
|
|
|
BCCellBorder currentBorder;
|
|
|
|
currentBorder = CompareBorders(mTableFrame, mColGroup, mRightCol, mRowGroup,
|
|
|
|
mCurrentRowFrame, nsnull, mTableIsLTR,
|
2010-01-09 07:33:03 -08:00
|
|
|
NS_SIDE_RIGHT, ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
mCurrentRowFrame->SetContinuousBCBorderWidth(mEndSide,
|
|
|
|
currentBorder.width);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetTableTopBorderWidth(BCPixelSize aWidth)
|
|
|
|
{
|
2010-03-06 01:53:03 -08:00
|
|
|
mTableBCData->mTopBorderWidth = NS_MAX(mTableBCData->mTopBorderWidth, aWidth);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetTableLeftBorderWidth(PRInt32 aRowY, BCPixelSize aWidth)
|
|
|
|
{
|
|
|
|
// update the left/right first cell border
|
|
|
|
if (aRowY == 0) {
|
|
|
|
if (mTableIsLTR) {
|
|
|
|
mTableBCData->mLeftCellBorderWidth = aWidth;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mTableBCData->mRightCellBorderWidth = aWidth;
|
|
|
|
}
|
|
|
|
}
|
2010-03-06 01:53:03 -08:00
|
|
|
mTableBCData->mLeftBorderWidth = NS_MAX(mTableBCData->mLeftBorderWidth,
|
|
|
|
aWidth);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetTableRightBorderWidth(PRInt32 aRowY, BCPixelSize aWidth)
|
|
|
|
{
|
|
|
|
// update the left/right first cell border
|
|
|
|
if (aRowY == 0) {
|
|
|
|
if (mTableIsLTR) {
|
|
|
|
mTableBCData->mRightCellBorderWidth = aWidth;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mTableBCData->mLeftCellBorderWidth = aWidth;
|
|
|
|
}
|
|
|
|
}
|
2010-03-06 01:53:03 -08:00
|
|
|
mTableBCData->mRightBorderWidth = NS_MAX(mTableBCData->mRightBorderWidth,
|
|
|
|
aWidth);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetRightBorderWidths(BCPixelSize aWidth)
|
|
|
|
{
|
|
|
|
// update the borders of the cells and cols affected
|
|
|
|
if (mCell) {
|
2009-09-16 08:01:36 -07:00
|
|
|
mCell->SetBorderWidth(mEndSide, NS_MAX(aWidth,
|
2009-06-21 09:31:40 -07:00
|
|
|
mCell->GetBorderWidth(mEndSide)));
|
|
|
|
}
|
|
|
|
if (mRightCol) {
|
|
|
|
BCPixelSize half = BC_BORDER_LEFT_HALF(aWidth);
|
2009-09-16 08:01:36 -07:00
|
|
|
mRightCol->SetRightBorderWidth(NS_MAX(nscoord(half),
|
2009-06-21 09:31:40 -07:00
|
|
|
mRightCol->GetRightBorderWidth()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetBottomBorderWidths(BCPixelSize aWidth)
|
|
|
|
{
|
|
|
|
// update the borders of the affected cells and rows
|
|
|
|
if (mCell) {
|
2009-09-16 08:01:36 -07:00
|
|
|
mCell->SetBorderWidth(NS_SIDE_BOTTOM, NS_MAX(aWidth,
|
2009-06-21 09:31:40 -07:00
|
|
|
mCell->GetBorderWidth(NS_SIDE_BOTTOM)));
|
|
|
|
}
|
|
|
|
if (mBottomRow) {
|
|
|
|
BCPixelSize half = BC_BORDER_TOP_HALF(aWidth);
|
2009-09-16 08:01:36 -07:00
|
|
|
mBottomRow->SetBottomBCBorderWidth(NS_MAX(nscoord(half),
|
2009-06-21 09:31:40 -07:00
|
|
|
mBottomRow->GetBottomBCBorderWidth()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetTopBorderWidths(BCPixelSize aWidth)
|
|
|
|
{
|
|
|
|
if (mCell) {
|
2009-09-16 08:01:36 -07:00
|
|
|
mCell->SetBorderWidth(NS_SIDE_TOP, NS_MAX(aWidth,
|
2009-06-21 09:31:40 -07:00
|
|
|
mCell->GetBorderWidth(NS_SIDE_TOP)));
|
|
|
|
}
|
|
|
|
if (mTopRow) {
|
|
|
|
BCPixelSize half = BC_BORDER_BOTTOM_HALF(aWidth);
|
2009-09-16 08:01:36 -07:00
|
|
|
mTopRow->SetTopBCBorderWidth(NS_MAX(nscoord(half),
|
|
|
|
mTopRow->GetTopBCBorderWidth()));
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetLeftBorderWidths(BCPixelSize aWidth)
|
|
|
|
{
|
|
|
|
if (mCell) {
|
2009-09-16 08:01:36 -07:00
|
|
|
mCell->SetBorderWidth(mStartSide, NS_MAX(aWidth,
|
2009-06-21 09:31:40 -07:00
|
|
|
mCell->GetBorderWidth(mStartSide)));
|
|
|
|
}
|
|
|
|
if (mLeftCol) {
|
|
|
|
BCPixelSize half = BC_BORDER_RIGHT_HALF(aWidth);
|
2009-09-16 08:01:36 -07:00
|
|
|
mLeftCol->SetLeftBorderWidth(NS_MAX(nscoord(half),
|
|
|
|
mLeftCol->GetLeftBorderWidth()));
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetTableBottomBorderWidth(BCPixelSize aWidth)
|
|
|
|
{
|
2010-03-06 01:53:03 -08:00
|
|
|
mTableBCData->mBottomBorderWidth = NS_MAX(mTableBCData->mBottomBorderWidth,
|
|
|
|
aWidth);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BCMapCellInfo::SetColumn(PRInt32 aColX)
|
|
|
|
{
|
|
|
|
mCurrentColFrame = mTableFrame->GetColFrame(aColX);
|
|
|
|
if (!mCurrentColFrame) {
|
|
|
|
NS_ERROR("null mCurrentColFrame");
|
|
|
|
}
|
|
|
|
mCurrentColGroupFrame = static_cast<nsTableColGroupFrame*>
|
|
|
|
(mCurrentColFrame->GetParent());
|
|
|
|
if (!mCurrentColGroupFrame) {
|
|
|
|
NS_ERROR("null mCurrentColGroupFrame");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-09-28 23:19:26 -07:00
|
|
|
BCMapCellInfo::IncrementRow(bool aResetToTopRowOfCell)
|
2009-06-21 09:31:40 -07:00
|
|
|
{
|
|
|
|
mCurrentRowFrame = (aResetToTopRowOfCell) ? mTopRow :
|
|
|
|
mCurrentRowFrame->GetNextRow();
|
|
|
|
}
|
|
|
|
|
|
|
|
BCCellBorder
|
|
|
|
BCMapCellInfo::GetTopEdgeBorder()
|
|
|
|
{
|
|
|
|
return CompareBorders(mTableFrame, mCurrentColGroupFrame, mCurrentColFrame,
|
2010-01-09 07:33:03 -08:00
|
|
|
mRowGroup, mTopRow, mCell, mTableIsLTR, NS_SIDE_TOP,
|
|
|
|
!ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
BCCellBorder
|
|
|
|
BCMapCellInfo::GetBottomEdgeBorder()
|
|
|
|
{
|
|
|
|
return CompareBorders(mTableFrame, mCurrentColGroupFrame, mCurrentColFrame,
|
2010-01-09 07:33:03 -08:00
|
|
|
mRowGroup, mBottomRow, mCell, mTableIsLTR,
|
2009-06-21 09:31:40 -07:00
|
|
|
NS_SIDE_BOTTOM, ADJACENT);
|
|
|
|
}
|
|
|
|
BCCellBorder
|
|
|
|
BCMapCellInfo::GetLeftEdgeBorder()
|
|
|
|
{
|
|
|
|
return CompareBorders(mTableFrame, mColGroup, mLeftCol, mRowGroup,
|
2010-01-09 07:33:03 -08:00
|
|
|
mCurrentRowFrame, mCell, mTableIsLTR, NS_SIDE_LEFT,
|
|
|
|
!ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
BCCellBorder
|
|
|
|
BCMapCellInfo::GetRightEdgeBorder()
|
|
|
|
{
|
|
|
|
return CompareBorders(mTableFrame, mColGroup, mRightCol, mRowGroup,
|
2010-04-27 09:15:01 -07:00
|
|
|
mCurrentRowFrame, mCell, mTableIsLTR, NS_SIDE_RIGHT,
|
2010-01-09 07:33:03 -08:00
|
|
|
ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
BCCellBorder
|
|
|
|
BCMapCellInfo::GetRightInternalBorder()
|
|
|
|
{
|
|
|
|
const nsIFrame* cg = (mCgAtRight) ? mColGroup : nsnull;
|
|
|
|
return CompareBorders(nsnull, cg, mRightCol, nsnull, nsnull, mCell,
|
2010-01-09 07:33:03 -08:00
|
|
|
mTableIsLTR, NS_SIDE_RIGHT, ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
BCCellBorder
|
|
|
|
BCMapCellInfo::GetLeftInternalBorder()
|
|
|
|
{
|
|
|
|
const nsIFrame* cg = (mCgAtLeft) ? mColGroup : nsnull;
|
|
|
|
return CompareBorders(nsnull, cg, mLeftCol, nsnull, nsnull, mCell,
|
2010-01-09 07:33:03 -08:00
|
|
|
mTableIsLTR, NS_SIDE_LEFT, !ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
BCCellBorder
|
|
|
|
BCMapCellInfo::GetBottomInternalBorder()
|
|
|
|
{
|
|
|
|
const nsIFrame* rg = (mRgAtBottom) ? mRowGroup : nsnull;
|
|
|
|
return CompareBorders(nsnull, nsnull, nsnull, rg, mBottomRow, mCell,
|
2010-01-09 07:33:03 -08:00
|
|
|
mTableIsLTR, NS_SIDE_BOTTOM, ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
BCCellBorder
|
|
|
|
BCMapCellInfo::GetTopInternalBorder()
|
|
|
|
{
|
|
|
|
const nsIFrame* rg = (mRgAtTop) ? mRowGroup : nsnull;
|
|
|
|
return CompareBorders(nsnull, nsnull, nsnull, rg, mTopRow, mCell,
|
2010-01-09 07:33:03 -08:00
|
|
|
mTableIsLTR, NS_SIDE_TOP, !ADJACENT);
|
2009-06-21 09:31:40 -07:00
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
/* Here is the order for storing border edges in the cell map as a cell is processed. There are
|
2007-03-22 10:30:00 -07:00
|
|
|
n=colspan top and bottom border edges per cell and n=rowspan left and right border edges per cell.
|
|
|
|
|
|
|
|
1) On the top edge of the table, store the top edge. Never store the top edge otherwise, since
|
|
|
|
a bottom edge from a cell above will take care of it.
|
|
|
|
2) On the left edge of the table, store the left edge. Never store the left edge othewise, since
|
|
|
|
a right edge from a cell to the left will take care of it.
|
2010-04-27 09:15:01 -07:00
|
|
|
3) Store the right edge (or edges if a row span)
|
2007-03-22 10:30:00 -07:00
|
|
|
4) Store the bottom edge (or edges if a col span)
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
Since corners are computed with only an array of BCCornerInfo indexed by the number-of-cols, corner
|
|
|
|
calculations are somewhat complicated. Using an array with number-of-rows * number-of-col entries
|
2010-04-27 09:15:01 -07:00
|
|
|
would simplify this, but at an extra in memory cost of nearly 12 bytes per cell map entry. Collapsing
|
2007-03-22 10:30:00 -07:00
|
|
|
borders already have about an extra 8 byte per cell map entry overhead (this could be
|
2010-04-27 09:15:01 -07:00
|
|
|
reduced to 4 bytes if we are willing to not store border widths in nsTableCellFrame), Here are the
|
2007-03-22 10:30:00 -07:00
|
|
|
rules in priority order for storing cornes in the cell map as a cell is processed. top-left means the
|
2010-04-27 09:15:01 -07:00
|
|
|
left endpoint of the border edge on the top of the cell. There are n=colspan top and bottom border
|
2007-03-22 10:30:00 -07:00
|
|
|
edges per cell and n=rowspan left and right border edges per cell.
|
|
|
|
|
|
|
|
1) On the top edge of the table, store the top-left corner, unless on the left edge of the table.
|
|
|
|
Never store the top-right corner, since it will get stored as a right-top corner.
|
|
|
|
2) On the left edge of the table, store the left-top corner. Never store the left-bottom corner,
|
|
|
|
since it will get stored as a bottom-left corner.
|
|
|
|
3) Store the right-top corner if (a) it is the top right corner of the table or (b) it is not on
|
2010-04-27 09:15:01 -07:00
|
|
|
the top edge of the table. Never store the right-bottom corner since it will get stored as a
|
2007-03-22 10:30:00 -07:00
|
|
|
bottom-right corner.
|
2010-04-27 09:15:01 -07:00
|
|
|
4) Store the bottom-right corner, if it is the bottom right corner of the table. Never store it
|
2007-03-22 10:30:00 -07:00
|
|
|
otherwise, since it will get stored as either a right-top corner by a cell below or
|
|
|
|
a bottom-left corner from a cell to the right.
|
2010-04-27 09:15:01 -07:00
|
|
|
5) Store the bottom-left corner, if (a) on the bottom edge of the table or (b) if the left edge hits
|
|
|
|
the top side of a colspan in its interior. Never store the corner otherwise, since it will
|
2007-03-22 10:30:00 -07:00
|
|
|
get stored as a right-top corner by a cell from below.
|
|
|
|
|
|
|
|
XXX the BC-RTL hack - The correct fix would be a rewrite as described in bug 203686.
|
|
|
|
In order to draw borders in rtl conditions somehow correct, the existing structure which relies
|
|
|
|
heavily on the assumption that the next cell sibling will be on the right side, has been modified.
|
|
|
|
We flip the border during painting and during style lookup. Look for tableIsLTR for places where
|
|
|
|
the flipping is done.
|
|
|
|
*/
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Calc the dominant border at every cell edge and corner within the current damage area
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableFrame::CalcBCBorders()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(IsBorderCollapse(),
|
|
|
|
"calling CalcBCBorders on separated-border table");
|
|
|
|
nsTableCellMap* tableCellMap = GetCellMap(); if (!tableCellMap) ABORT0();
|
|
|
|
PRInt32 numRows = GetRowCount();
|
|
|
|
PRInt32 numCols = GetColCount();
|
|
|
|
if (!numRows || !numCols)
|
|
|
|
return; // nothing to do
|
|
|
|
|
|
|
|
// Get the property holding the table damage area and border widths
|
2011-10-27 06:58:44 -07:00
|
|
|
BCPropertyData* propData = GetBCProperty();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!propData) ABORT0();
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
|
|
|
|
|
|
|
|
// calculate an expanded damage area
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect damageArea(propData->mDamageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
ExpandBCDamageArea(damageArea);
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// segments that are on the table border edges need
|
|
|
|
// to be initialized only once
|
2011-09-28 23:19:26 -07:00
|
|
|
bool tableBorderReset[4];
|
2007-03-22 10:30:00 -07:00
|
|
|
for (PRUint32 sideX = NS_SIDE_TOP; sideX <= NS_SIDE_LEFT; sideX++) {
|
2011-10-17 07:59:28 -07:00
|
|
|
tableBorderReset[sideX] = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// vertical borders indexed in x-direction (cols)
|
2009-06-21 09:31:40 -07:00
|
|
|
BCCellBorders lastVerBorders(damageArea.width + 1, damageArea.x);
|
|
|
|
if (!lastVerBorders.borders) ABORT0();
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCellBorder lastTopBorder, lastBottomBorder;
|
|
|
|
// horizontal borders indexed in x-direction (cols)
|
2009-06-21 09:31:40 -07:00
|
|
|
BCCellBorders lastBottomBorders(damageArea.width + 1, damageArea.x);
|
|
|
|
if (!lastBottomBorders.borders) ABORT0();
|
2011-09-28 23:19:26 -07:00
|
|
|
bool startSeg;
|
|
|
|
bool gotRowBorder = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
BCMapCellInfo info(this), ajaInfo(this);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCellBorder currentBorder, adjacentBorder;
|
2009-06-21 09:31:40 -07:00
|
|
|
BCCorners topCorners(damageArea.width + 1, damageArea.x);
|
|
|
|
if (!topCorners.corners) ABORT0();
|
|
|
|
BCCorners bottomCorners(damageArea.width + 1, damageArea.x);
|
|
|
|
if (!bottomCorners.corners) ABORT0();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
BCMapCellIterator iter(this, damageArea);
|
2007-03-22 10:30:00 -07:00
|
|
|
for (iter.First(info); !iter.mAtEnd; iter.Next(info)) {
|
|
|
|
// see if lastTopBorder, lastBottomBorder need to be reset
|
2010-04-27 09:15:01 -07:00
|
|
|
if (iter.IsNewRow()) {
|
2011-10-17 07:59:28 -07:00
|
|
|
gotRowBorder = false;
|
2009-06-21 09:31:40 -07:00
|
|
|
lastTopBorder.Reset(info.mRowIndex, info.mRowSpan);
|
|
|
|
lastBottomBorder.Reset(info.GetCellEndRowIndex() + 1, info.mRowSpan);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
else if (info.mColIndex > damageArea.x) {
|
|
|
|
lastBottomBorder = lastBottomBorders[info.mColIndex - 1];
|
|
|
|
if (info.mRowIndex >
|
|
|
|
(lastBottomBorder.rowIndex - lastBottomBorder.rowSpan)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// the top border's left edge butts against the middle of a rowspan
|
2009-06-21 09:31:40 -07:00
|
|
|
lastTopBorder.Reset(info.mRowIndex, info.mRowSpan);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
if (lastBottomBorder.rowIndex > (info.GetCellEndRowIndex() + 1)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// the bottom border's left edge butts against the middle of a rowspan
|
2009-06-21 09:31:40 -07:00
|
|
|
lastBottomBorder.Reset(info.GetCellEndRowIndex() + 1, info.mRowSpan);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// find the dominant border considering the cell's top border and the table,
|
|
|
|
// row group, row if the border is at the top of the table, otherwise it was
|
|
|
|
// processed in a previous row
|
|
|
|
if (0 == info.mRowIndex) {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!tableBorderReset[NS_SIDE_TOP]) {
|
|
|
|
propData->mTopBorderWidth = 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
tableBorderReset[NS_SIDE_TOP] = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
for (PRInt32 colX = info.mColIndex; colX <= info.GetCellEndColIndex();
|
|
|
|
colX++) {
|
|
|
|
info.SetColumn(colX);
|
|
|
|
currentBorder = info.GetTopEdgeBorder();
|
2010-04-27 09:15:01 -07:00
|
|
|
// update/store the top left & top right corners of the seg
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCornerInfo& tlCorner = topCorners[colX]; // top left
|
|
|
|
if (0 == colX) {
|
2009-06-21 09:31:40 -07:00
|
|
|
// we are on right hand side of the corner
|
|
|
|
tlCorner.Set(NS_SIDE_RIGHT, currentBorder);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
tlCorner.Update(NS_SIDE_RIGHT, currentBorder);
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderCorner(eTopLeft, *iter.mCellMap, 0, 0, colX,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side(tlCorner.ownerSide),
|
|
|
|
tlCorner.subWidth,
|
2009-06-21 09:31:40 -07:00
|
|
|
tlCorner.bevel);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
topCorners[colX + 1].Set(NS_SIDE_LEFT, currentBorder); // top right
|
|
|
|
// update lastTopBorder and see if a new segment starts
|
|
|
|
startSeg = SetHorBorder(currentBorder, tlCorner, lastTopBorder);
|
|
|
|
// store the border segment in the cell map
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderEdge(NS_SIDE_TOP, *iter.mCellMap, 0, 0, colX,
|
|
|
|
1, currentBorder.owner,
|
|
|
|
currentBorder.width, startSeg);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
info.SetTableTopBorderWidth(currentBorder.width);
|
|
|
|
info.SetTopBorderWidths(currentBorder.width);
|
|
|
|
info.SetColumnTopRightContBCBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
info.SetTableTopLeftContBCBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2009-06-21 09:31:40 -07:00
|
|
|
// see if the top border needs to be the start of a segment due to a
|
|
|
|
// vertical border owning the corner
|
|
|
|
if (info.mColIndex > 0) {
|
|
|
|
BCData& data = info.mCellData->mData;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!data.IsTopStart()) {
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side cornerSide;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool bevel;
|
2007-03-22 10:30:00 -07:00
|
|
|
data.GetCorner(cornerSide, bevel);
|
|
|
|
if ((NS_SIDE_TOP == cornerSide) || (NS_SIDE_BOTTOM == cornerSide)) {
|
2011-10-17 07:59:28 -07:00
|
|
|
data.SetTopStart(true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// find the dominant border considering the cell's left border and the
|
|
|
|
// table, col group, col if the border is at the left of the table,
|
|
|
|
// otherwise it was processed in a previous col
|
|
|
|
if (0 == info.mColIndex) {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!tableBorderReset[NS_SIDE_LEFT]) {
|
|
|
|
propData->mLeftBorderWidth = 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
tableBorderReset[NS_SIDE_LEFT] = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
info.mCurrentRowFrame = nsnull;
|
|
|
|
for (PRInt32 rowY = info.mRowIndex; rowY <= info.GetCellEndRowIndex();
|
|
|
|
rowY++) {
|
|
|
|
info.IncrementRow(rowY == info.mRowIndex);
|
|
|
|
currentBorder = info.GetLeftEdgeBorder();
|
|
|
|
BCCornerInfo& tlCorner = (0 == rowY) ? topCorners[0] : bottomCorners[0];
|
2007-03-22 10:30:00 -07:00
|
|
|
tlCorner.Update(NS_SIDE_BOTTOM, currentBorder);
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderCorner(eTopLeft, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart, rowY, 0,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side(tlCorner.ownerSide),
|
|
|
|
tlCorner.subWidth,
|
2009-06-21 09:31:40 -07:00
|
|
|
tlCorner.bevel);
|
|
|
|
bottomCorners[0].Set(NS_SIDE_TOP, currentBorder); // bottom left
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// update lastVerBordersBorder and see if a new segment starts
|
|
|
|
startSeg = SetBorder(currentBorder, lastVerBorders[0]);
|
2010-04-27 09:15:01 -07:00
|
|
|
// store the border segment in the cell map
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderEdge(NS_SIDE_LEFT, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart, rowY, info.mColIndex,
|
|
|
|
1, currentBorder.owner,
|
|
|
|
currentBorder.width, startSeg);
|
|
|
|
info.SetTableLeftBorderWidth(rowY , currentBorder.width);
|
|
|
|
info.SetLeftBorderWidths(currentBorder.width);
|
|
|
|
info.SetRowLeftContBCBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
info.SetRowGroupLeftContBCBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// find the dominant border considering the cell's right border, adjacent
|
|
|
|
// cells and the table, row group, row
|
|
|
|
if (info.mNumTableCols == info.GetCellEndColIndex() + 1) {
|
|
|
|
// touches right edge of table
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!tableBorderReset[NS_SIDE_RIGHT]) {
|
|
|
|
propData->mRightBorderWidth = 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
tableBorderReset[NS_SIDE_RIGHT] = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
info.mCurrentRowFrame = nsnull;
|
|
|
|
for (PRInt32 rowY = info.mRowIndex; rowY <= info.GetCellEndRowIndex();
|
|
|
|
rowY++) {
|
|
|
|
info.IncrementRow(rowY == info.mRowIndex);
|
|
|
|
currentBorder = info.GetRightEdgeBorder();
|
2010-04-27 09:15:01 -07:00
|
|
|
// update/store the top right & bottom right corners
|
2009-06-21 09:31:40 -07:00
|
|
|
BCCornerInfo& trCorner = (0 == rowY) ?
|
|
|
|
topCorners[info.GetCellEndColIndex() + 1] :
|
|
|
|
bottomCorners[info.GetCellEndColIndex() + 1];
|
2007-03-22 10:30:00 -07:00
|
|
|
trCorner.Update(NS_SIDE_BOTTOM, currentBorder); // top right
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderCorner(eTopRight, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart, rowY,
|
|
|
|
info.GetCellEndColIndex(),
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side(trCorner.ownerSide),
|
|
|
|
trCorner.subWidth,
|
2009-06-21 09:31:40 -07:00
|
|
|
trCorner.bevel);
|
|
|
|
BCCornerInfo& brCorner = bottomCorners[info.GetCellEndColIndex() + 1];
|
2007-03-22 10:30:00 -07:00
|
|
|
brCorner.Set(NS_SIDE_TOP, currentBorder); // bottom right
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderCorner(eBottomRight, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart, rowY,
|
|
|
|
info.GetCellEndColIndex(),
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side(brCorner.ownerSide),
|
|
|
|
brCorner.subWidth,
|
2009-06-21 09:31:40 -07:00
|
|
|
brCorner.bevel);
|
2007-03-22 10:30:00 -07:00
|
|
|
// update lastVerBorders and see if a new segment starts
|
2009-06-21 09:31:40 -07:00
|
|
|
startSeg = SetBorder(currentBorder,
|
|
|
|
lastVerBorders[info.GetCellEndColIndex() + 1]);
|
2007-03-22 10:30:00 -07:00
|
|
|
// store the border segment in the cell map and update cellBorders
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderEdge(NS_SIDE_RIGHT, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart, rowY,
|
|
|
|
info.GetCellEndColIndex(), 1,
|
|
|
|
currentBorder.owner, currentBorder.width,
|
|
|
|
startSeg);
|
|
|
|
info.SetTableRightBorderWidth(rowY, currentBorder.width);
|
|
|
|
info.SetRightBorderWidths(currentBorder.width);
|
|
|
|
info.SetRowRightContBCBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
info.SetRowGroupRightContBCBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
PRInt32 segLength = 0;
|
2009-06-21 09:31:40 -07:00
|
|
|
BCMapCellInfo priorAjaInfo(this);
|
|
|
|
for (PRInt32 rowY = info.mRowIndex; rowY <= info.GetCellEndRowIndex();
|
|
|
|
rowY += segLength) {
|
|
|
|
iter.PeekRight(info, rowY, ajaInfo);
|
|
|
|
currentBorder = info.GetRightInternalBorder();
|
|
|
|
adjacentBorder = ajaInfo.GetLeftInternalBorder();
|
|
|
|
currentBorder = CompareBorders(!CELL_CORNER, currentBorder,
|
|
|
|
adjacentBorder, !HORIZONTAL);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-09-16 08:01:36 -07:00
|
|
|
segLength = NS_MAX(1, ajaInfo.mRowIndex + ajaInfo.mRowSpan - rowY);
|
|
|
|
segLength = NS_MIN(segLength, info.mRowIndex + info.mRowSpan - rowY);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// update lastVerBorders and see if a new segment starts
|
2009-06-21 09:31:40 -07:00
|
|
|
startSeg = SetBorder(currentBorder,
|
|
|
|
lastVerBorders[info.GetCellEndColIndex() + 1]);
|
2007-03-22 10:30:00 -07:00
|
|
|
// store the border segment in the cell map and update cellBorders
|
2009-06-21 09:31:40 -07:00
|
|
|
if (info.GetCellEndColIndex() < damageArea.XMost() &&
|
|
|
|
rowY >= damageArea.y && rowY < damageArea.YMost()) {
|
|
|
|
tableCellMap->SetBCBorderEdge(NS_SIDE_RIGHT, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart, rowY,
|
|
|
|
info.GetCellEndColIndex(), segLength,
|
|
|
|
currentBorder.owner,
|
|
|
|
currentBorder.width, startSeg);
|
|
|
|
info.SetRightBorderWidths(currentBorder.width);
|
|
|
|
ajaInfo.SetLeftBorderWidths(currentBorder.width);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// update the top right corner
|
2011-09-28 23:19:26 -07:00
|
|
|
bool hitsSpanOnRight = (rowY > ajaInfo.mRowIndex) &&
|
2009-06-21 09:31:40 -07:00
|
|
|
(rowY < ajaInfo.mRowIndex + ajaInfo.mRowSpan);
|
|
|
|
BCCornerInfo* trCorner = ((0 == rowY) || hitsSpanOnRight) ?
|
|
|
|
&topCorners[info.GetCellEndColIndex() + 1] :
|
|
|
|
&bottomCorners[info.GetCellEndColIndex() + 1];
|
2007-03-22 10:30:00 -07:00
|
|
|
trCorner->Update(NS_SIDE_BOTTOM, currentBorder);
|
2009-06-21 09:31:40 -07:00
|
|
|
// if this is not the first time through,
|
|
|
|
// consider the segment to the right
|
|
|
|
if (rowY != info.mRowIndex) {
|
|
|
|
currentBorder = priorAjaInfo.GetBottomInternalBorder();
|
|
|
|
adjacentBorder = ajaInfo.GetTopInternalBorder();
|
|
|
|
currentBorder = CompareBorders(!CELL_CORNER, currentBorder,
|
|
|
|
adjacentBorder, HORIZONTAL);
|
2007-03-22 10:30:00 -07:00
|
|
|
trCorner->Update(NS_SIDE_RIGHT, currentBorder);
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
// store the top right corner in the cell map
|
2009-06-21 09:31:40 -07:00
|
|
|
if (info.GetCellEndColIndex() < damageArea.XMost() &&
|
|
|
|
rowY >= damageArea.y) {
|
|
|
|
if (0 != rowY) {
|
|
|
|
tableCellMap->SetBCBorderCorner(eTopRight, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart, rowY,
|
|
|
|
info.GetCellEndColIndex(),
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side(trCorner->ownerSide),
|
2009-06-21 09:31:40 -07:00
|
|
|
trCorner->subWidth,
|
|
|
|
trCorner->bevel);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// store any corners this cell spans together with the aja cell
|
2009-06-21 09:31:40 -07:00
|
|
|
for (PRInt32 rX = rowY + 1; rX < rowY + segLength; rX++) {
|
|
|
|
tableCellMap->SetBCBorderCorner(eBottomRight, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart, rX,
|
|
|
|
info.GetCellEndColIndex(),
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side(trCorner->ownerSide),
|
2011-10-17 07:59:28 -07:00
|
|
|
trCorner->subWidth, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// update bottom right corner, topCorners, bottomCorners
|
2009-06-21 09:31:40 -07:00
|
|
|
hitsSpanOnRight = (rowY + segLength <
|
|
|
|
ajaInfo.mRowIndex + ajaInfo.mRowSpan);
|
|
|
|
BCCornerInfo& brCorner = (hitsSpanOnRight) ?
|
|
|
|
topCorners[info.GetCellEndColIndex() + 1] :
|
|
|
|
bottomCorners[info.GetCellEndColIndex() + 1];
|
2007-03-22 10:30:00 -07:00
|
|
|
brCorner.Set(NS_SIDE_TOP, currentBorder);
|
|
|
|
priorAjaInfo = ajaInfo;
|
|
|
|
}
|
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
for (PRInt32 colX = info.mColIndex + 1; colX <= info.GetCellEndColIndex();
|
|
|
|
colX++) {
|
2007-03-22 10:30:00 -07:00
|
|
|
lastVerBorders[colX].Reset(0,1);
|
|
|
|
}
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// find the dominant border considering the cell's bottom border, adjacent
|
|
|
|
// cells and the table, row group, row
|
|
|
|
if (info.mNumTableRows == info.GetCellEndRowIndex() + 1) {
|
|
|
|
// touches bottom edge of table
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!tableBorderReset[NS_SIDE_BOTTOM]) {
|
|
|
|
propData->mBottomBorderWidth = 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
tableBorderReset[NS_SIDE_BOTTOM] = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
for (PRInt32 colX = info.mColIndex; colX <= info.GetCellEndColIndex();
|
|
|
|
colX++) {
|
|
|
|
info.SetColumn(colX);
|
|
|
|
currentBorder = info.GetBottomEdgeBorder();
|
2010-04-27 09:15:01 -07:00
|
|
|
// update/store the bottom left & bottom right corners
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCornerInfo& blCorner = bottomCorners[colX]; // bottom left
|
|
|
|
blCorner.Update(NS_SIDE_RIGHT, currentBorder);
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderCorner(eBottomLeft, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart,
|
|
|
|
info.GetCellEndRowIndex(),
|
2010-04-27 09:15:02 -07:00
|
|
|
colX,
|
|
|
|
mozilla::css::Side(blCorner.ownerSide),
|
2009-06-21 09:31:40 -07:00
|
|
|
blCorner.subWidth, blCorner.bevel);
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCornerInfo& brCorner = bottomCorners[colX + 1]; // bottom right
|
|
|
|
brCorner.Update(NS_SIDE_LEFT, currentBorder);
|
2009-06-21 09:31:40 -07:00
|
|
|
if (info.mNumTableCols == colX + 1) { // lower right corner of the table
|
|
|
|
tableCellMap->SetBCBorderCorner(eBottomRight, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart,
|
|
|
|
info.GetCellEndRowIndex(),colX,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side(brCorner.ownerSide),
|
|
|
|
brCorner.subWidth,
|
2011-10-17 07:59:28 -07:00
|
|
|
brCorner.bevel, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// update lastBottomBorder and see if a new segment starts
|
|
|
|
startSeg = SetHorBorder(currentBorder, blCorner, lastBottomBorder);
|
2010-04-27 09:15:01 -07:00
|
|
|
if (!startSeg) {
|
2009-06-21 09:31:40 -07:00
|
|
|
// make sure that we did not compare apples to oranges i.e. the
|
|
|
|
// current border should be a continuation of the lastBottomBorder,
|
|
|
|
// as it is a bottom border
|
|
|
|
// add 1 to the info.GetCellEndRowIndex()
|
|
|
|
startSeg = (lastBottomBorder.rowIndex !=
|
|
|
|
(info.GetCellEndRowIndex() + 1));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// store the border segment in the cell map and update cellBorders
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderEdge(NS_SIDE_BOTTOM, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart,
|
|
|
|
info.GetCellEndRowIndex(),
|
|
|
|
colX, 1, currentBorder.owner,
|
|
|
|
currentBorder.width, startSeg);
|
2007-03-22 10:30:00 -07:00
|
|
|
// update lastBottomBorders
|
2009-06-21 09:31:40 -07:00
|
|
|
lastBottomBorder.rowIndex = info.GetCellEndRowIndex() + 1;
|
|
|
|
lastBottomBorder.rowSpan = info.mRowSpan;
|
2007-03-22 10:30:00 -07:00
|
|
|
lastBottomBorders[colX] = lastBottomBorder;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
info.SetBottomBorderWidths(currentBorder.width);
|
|
|
|
info.SetTableBottomBorderWidth(currentBorder.width);
|
|
|
|
info.SetColumnBottomContBCBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
info.SetRowGroupBottomContBCBorder();
|
|
|
|
info.SetColGroupBottomContBCBorder();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
PRInt32 segLength = 0;
|
2009-06-21 09:31:40 -07:00
|
|
|
for (PRInt32 colX = info.mColIndex; colX <= info.GetCellEndColIndex();
|
|
|
|
colX += segLength) {
|
2007-03-22 10:30:00 -07:00
|
|
|
iter.PeekBottom(info, colX, ajaInfo);
|
2009-06-21 09:31:40 -07:00
|
|
|
currentBorder = info.GetBottomInternalBorder();
|
|
|
|
adjacentBorder = ajaInfo.GetTopInternalBorder();
|
|
|
|
currentBorder = CompareBorders(!CELL_CORNER, currentBorder,
|
|
|
|
adjacentBorder, HORIZONTAL);
|
2009-09-16 08:01:36 -07:00
|
|
|
segLength = NS_MAX(1, ajaInfo.mColIndex + ajaInfo.mColSpan - colX);
|
|
|
|
segLength = NS_MIN(segLength, info.mColIndex + info.mColSpan - colX);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// update, store the bottom left corner
|
|
|
|
BCCornerInfo& blCorner = bottomCorners[colX]; // bottom left
|
2011-09-28 23:19:26 -07:00
|
|
|
bool hitsSpanBelow = (colX > ajaInfo.mColIndex) &&
|
2009-06-21 09:31:40 -07:00
|
|
|
(colX < ajaInfo.mColIndex + ajaInfo.mColSpan);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool update = true;
|
2009-06-21 09:31:40 -07:00
|
|
|
if ((colX == info.mColIndex) && (colX > damageArea.x)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 prevRowIndex = lastBottomBorders[colX - 1].rowIndex;
|
2009-06-21 09:31:40 -07:00
|
|
|
if (prevRowIndex > info.GetCellEndRowIndex() + 1) {
|
|
|
|
// hits a rowspan on the right
|
2011-10-17 07:59:28 -07:00
|
|
|
update = false;
|
2009-06-21 09:31:40 -07:00
|
|
|
// the corner was taken care of during the cell on the left
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
else if (prevRowIndex < info.GetCellEndRowIndex() + 1) {
|
|
|
|
// spans below the cell to the left
|
2007-03-22 10:30:00 -07:00
|
|
|
topCorners[colX] = blCorner;
|
|
|
|
blCorner.Set(NS_SIDE_RIGHT, currentBorder);
|
2011-10-17 07:59:28 -07:00
|
|
|
update = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (update) {
|
|
|
|
blCorner.Update(NS_SIDE_RIGHT, currentBorder);
|
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
if (info.GetCellEndRowIndex() < damageArea.YMost() &&
|
|
|
|
(colX >= damageArea.x)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (hitsSpanBelow) {
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderCorner(eBottomLeft, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart,
|
|
|
|
info.GetCellEndRowIndex(), colX,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side(blCorner.ownerSide),
|
2009-06-21 09:31:40 -07:00
|
|
|
blCorner.subWidth, blCorner.bevel);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// store any corners this cell spans together with the aja cell
|
|
|
|
for (PRInt32 cX = colX + 1; cX < colX + segLength; cX++) {
|
|
|
|
BCCornerInfo& corner = bottomCorners[cX];
|
|
|
|
corner.Set(NS_SIDE_RIGHT, currentBorder);
|
2009-06-21 09:31:40 -07:00
|
|
|
tableCellMap->SetBCBorderCorner(eBottomLeft, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart,
|
|
|
|
info.GetCellEndRowIndex(), cX,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side(corner.ownerSide),
|
|
|
|
corner.subWidth,
|
2011-10-17 07:59:28 -07:00
|
|
|
false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// update lastBottomBorders and see if a new segment starts
|
|
|
|
startSeg = SetHorBorder(currentBorder, blCorner, lastBottomBorder);
|
2010-04-27 09:15:01 -07:00
|
|
|
if (!startSeg) {
|
2009-06-21 09:31:40 -07:00
|
|
|
// make sure that we did not compare apples to oranges i.e. the
|
|
|
|
// current border should be a continuation of the lastBottomBorder,
|
|
|
|
// as it is a bottom border
|
|
|
|
// add 1 to the info.GetCellEndRowIndex()
|
|
|
|
startSeg = (lastBottomBorder.rowIndex !=
|
|
|
|
info.GetCellEndRowIndex() + 1);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
lastBottomBorder.rowIndex = info.GetCellEndRowIndex() + 1;
|
|
|
|
lastBottomBorder.rowSpan = info.mRowSpan;
|
2007-03-22 10:30:00 -07:00
|
|
|
for (PRInt32 cX = colX; cX < colX + segLength; cX++) {
|
|
|
|
lastBottomBorders[cX] = lastBottomBorder;
|
|
|
|
}
|
|
|
|
|
|
|
|
// store the border segment the cell map and update cellBorders
|
2009-06-21 09:31:40 -07:00
|
|
|
if (info.GetCellEndRowIndex() < damageArea.YMost() &&
|
|
|
|
(colX >= damageArea.x) &&
|
|
|
|
(colX < damageArea.XMost())) {
|
|
|
|
tableCellMap->SetBCBorderEdge(NS_SIDE_BOTTOM, *iter.mCellMap,
|
|
|
|
iter.mRowGroupStart,
|
|
|
|
info.GetCellEndRowIndex(),
|
|
|
|
colX, segLength, currentBorder.owner,
|
|
|
|
currentBorder.width, startSeg);
|
|
|
|
info.SetBottomBorderWidths(currentBorder.width);
|
|
|
|
ajaInfo.SetTopBorderWidths(currentBorder.width);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// update bottom right corner
|
|
|
|
BCCornerInfo& brCorner = bottomCorners[colX + segLength];
|
|
|
|
brCorner.Update(NS_SIDE_LEFT, currentBorder);
|
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
if (!gotRowBorder && 1 == info.mRowSpan &&
|
|
|
|
(ajaInfo.mTopRow || info.mRgAtBottom)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
//get continuous row/row group border
|
|
|
|
//we need to check the row group's bottom border if this is
|
|
|
|
//the last row in the row group, but only a cell with rowspan=1
|
|
|
|
//will know whether *this* row is at the bottom
|
2009-06-21 09:31:40 -07:00
|
|
|
const nsIFrame* nextRowGroup = (ajaInfo.mRgAtTop) ? ajaInfo.mRowGroup :
|
|
|
|
nsnull;
|
|
|
|
info.SetInnerRowGroupBottomContBCBorder(nextRowGroup, ajaInfo.mTopRow);
|
2011-10-17 07:59:28 -07:00
|
|
|
gotRowBorder = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-21 09:31:40 -07:00
|
|
|
// see if the cell to the right had a rowspan and its lower left border
|
|
|
|
// needs be joined with this one's bottom
|
|
|
|
// if there is a cell to the right and the cell to right was a rowspan
|
|
|
|
if ((info.mNumTableCols != info.GetCellEndColIndex() + 1) &&
|
|
|
|
(lastBottomBorders[info.GetCellEndColIndex() + 1].rowSpan > 1)) {
|
|
|
|
BCCornerInfo& corner = bottomCorners[info.GetCellEndColIndex() + 1];
|
|
|
|
if ((NS_SIDE_TOP != corner.ownerSide) &&
|
|
|
|
(NS_SIDE_BOTTOM != corner.ownerSide)) {
|
|
|
|
// not a vertical owner
|
2007-03-22 10:30:00 -07:00
|
|
|
BCCellBorder& thisBorder = lastBottomBorder;
|
2009-06-21 09:31:40 -07:00
|
|
|
BCCellBorder& nextBorder = lastBottomBorders[info.mColIndex + 1];
|
|
|
|
if ((thisBorder.color == nextBorder.color) &&
|
|
|
|
(thisBorder.width == nextBorder.width) &&
|
2007-03-22 10:30:00 -07:00
|
|
|
(thisBorder.style == nextBorder.style)) {
|
2009-06-21 09:31:40 -07:00
|
|
|
// set the flag on the next border indicating it is not the start of a
|
|
|
|
// new segment
|
2007-03-22 10:30:00 -07:00
|
|
|
if (iter.mCellMap) {
|
2011-02-16 05:14:18 -08:00
|
|
|
tableCellMap->ResetTopStart(NS_SIDE_BOTTOM, *iter.mCellMap,
|
|
|
|
info.GetCellEndRowIndex(),
|
|
|
|
info.GetCellEndColIndex() + 1);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-06-21 09:31:40 -07:00
|
|
|
} // for (iter.First(info); info.mCell; iter.Next(info)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// reset the bc flag and damage area
|
2011-10-17 07:59:28 -07:00
|
|
|
SetNeedToCalcBCBorders(false);
|
2012-01-22 14:48:34 -08:00
|
|
|
propData->mDamageArea = nsIntRect(0,0,0,0);
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifdef DEBUG_TABLE_CELLMAP
|
|
|
|
mCellMap->Dump();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
class BCPaintBorderIterator;
|
|
|
|
|
|
|
|
struct BCVerticalSeg
|
|
|
|
{
|
|
|
|
BCVerticalSeg();
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
void Start(BCPaintBorderIterator& aIter,
|
|
|
|
BCBorderOwner aBorderOwner,
|
|
|
|
BCPixelSize aVerSegWidth,
|
|
|
|
BCPixelSize aHorSegHeight);
|
|
|
|
|
|
|
|
void Initialize(BCPaintBorderIterator& aIter);
|
|
|
|
void GetBottomCorner(BCPaintBorderIterator& aIter,
|
|
|
|
BCPixelSize aHorSegHeight);
|
|
|
|
|
|
|
|
|
|
|
|
void Paint(BCPaintBorderIterator& aIter,
|
2011-04-07 18:04:40 -07:00
|
|
|
nsRenderingContext& aRenderingContext,
|
2009-11-05 01:26:00 -08:00
|
|
|
BCPixelSize aHorSegHeight);
|
|
|
|
void AdvanceOffsetY();
|
|
|
|
void IncludeCurrentBorder(BCPaintBorderIterator& aIter);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
union {
|
|
|
|
nsTableColFrame* mCol;
|
|
|
|
PRInt32 mColWidth;
|
|
|
|
};
|
|
|
|
nscoord mOffsetX; // x-offset with respect to the table edge
|
|
|
|
nscoord mOffsetY; // y-offset with respect to the table edge
|
|
|
|
nscoord mLength; // vertical length including corners
|
|
|
|
BCPixelSize mWidth; // width in pixels
|
|
|
|
|
|
|
|
nsTableCellFrame* mAjaCell; // previous sibling to the first cell
|
|
|
|
// where the segment starts, it can be
|
|
|
|
// the owner of a segment
|
|
|
|
nsTableCellFrame* mFirstCell; // cell at the start of the segment
|
|
|
|
nsTableRowGroupFrame* mFirstRowGroup; // row group at the start of the segment
|
|
|
|
nsTableRowFrame* mFirstRow; // row at the start of the segment
|
|
|
|
nsTableCellFrame* mLastCell; // cell at the current end of the
|
|
|
|
// segment
|
|
|
|
|
|
|
|
|
|
|
|
PRUint8 mOwner; // owner of the border, defines the
|
|
|
|
// style
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side mTopBevelSide; // direction to bevel at the top
|
2009-11-05 01:26:00 -08:00
|
|
|
nscoord mTopBevelOffset; // how much to bevel at the top
|
|
|
|
BCPixelSize mBottomHorSegHeight; // height of the crossing
|
|
|
|
//horizontal border
|
|
|
|
nscoord mBottomOffset; // how much longer is the segment due
|
|
|
|
// to the horizontal border, by this
|
|
|
|
// amount the next segment needs to be
|
|
|
|
// shifted.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsBottomBevel; // should we bevel at the bottom
|
2009-11-05 01:26:00 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct BCHorizontalSeg
|
|
|
|
{
|
|
|
|
BCHorizontalSeg();
|
|
|
|
|
|
|
|
void Start(BCPaintBorderIterator& aIter,
|
|
|
|
BCBorderOwner aBorderOwner,
|
|
|
|
BCPixelSize aBottomVerSegWidth,
|
|
|
|
BCPixelSize aHorSegHeight);
|
|
|
|
void GetRightCorner(BCPaintBorderIterator& aIter,
|
|
|
|
BCPixelSize aLeftSegWidth);
|
|
|
|
void AdvanceOffsetX(PRInt32 aIncrement);
|
|
|
|
void IncludeCurrentBorder(BCPaintBorderIterator& aIter);
|
|
|
|
void Paint(BCPaintBorderIterator& aIter,
|
2011-04-07 18:04:40 -07:00
|
|
|
nsRenderingContext& aRenderingContext);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
nscoord mOffsetX; // x-offset with respect to the table edge
|
|
|
|
nscoord mOffsetY; // y-offset with respect to the table edge
|
|
|
|
nscoord mLength; // horizontal length including corners
|
|
|
|
BCPixelSize mWidth; // border width in pixels
|
|
|
|
nscoord mLeftBevelOffset; // how much to bevel at the left
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side mLeftBevelSide; // direction to bevel at the left
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsRightBevel; // should we bevel at the right end
|
2009-11-05 01:26:00 -08:00
|
|
|
nscoord mRightBevelOffset; // how much to bevel at the right
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side mRightBevelSide; // direction to bevel at the right
|
2009-11-05 01:26:00 -08:00
|
|
|
nscoord mEndOffset; // how much longer is the segment due
|
|
|
|
// to the vertical border, by this
|
|
|
|
// amount the next segment needs to be
|
|
|
|
// shifted.
|
|
|
|
PRUint8 mOwner; // owner of the border, defines the
|
|
|
|
// style
|
|
|
|
nsTableCellFrame* mFirstCell; // cell at the start of the segment
|
|
|
|
nsTableCellFrame* mAjaCell; // neighboring cell to the first cell
|
|
|
|
// where the segment starts, it can be
|
|
|
|
// the owner of a segment
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Iterates over borders (left border, corner, top border) in the cell map within a damage area
|
2010-04-27 09:15:01 -07:00
|
|
|
// from left to right, top to bottom. All members are in terms of the 1st in flow frames, except
|
|
|
|
// where suffixed by InFlow.
|
2009-11-05 01:26:00 -08:00
|
|
|
class BCPaintBorderIterator
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
|
|
|
|
BCPaintBorderIterator(nsTableFrame* aTable);
|
|
|
|
~BCPaintBorderIterator() { if (mVerInfo) {
|
|
|
|
delete [] mVerInfo;
|
|
|
|
}}
|
|
|
|
void Reset();
|
|
|
|
|
2012-01-22 14:48:34 -08:00
|
|
|
/**
|
|
|
|
* Determine the damage area in terms of rows and columns and finalize
|
|
|
|
* mInitialOffsetX and mInitialOffsetY.
|
|
|
|
* @param aDirtyRect - dirty rect in table coordinates
|
|
|
|
* @return - true if we need to paint something given dirty rect
|
|
|
|
*/
|
|
|
|
bool SetDamageArea(const nsRect& aDamageRect);
|
2007-03-22 10:30:00 -07:00
|
|
|
void First();
|
|
|
|
void Next();
|
2011-04-07 18:04:40 -07:00
|
|
|
void AccumulateOrPaintHorizontalSegment(nsRenderingContext& aRenderingContext);
|
|
|
|
void AccumulateOrPaintVerticalSegment(nsRenderingContext& aRenderingContext);
|
2009-11-05 01:26:00 -08:00
|
|
|
void ResetVerInfo();
|
|
|
|
void StoreColumnWidth(PRInt32 aIndex);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool VerticalSegmentOwnsCorner();
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
nsTableFrame* mTable;
|
|
|
|
nsTableFrame* mTableFirstInFlow;
|
|
|
|
nsTableCellMap* mTableCellMap;
|
|
|
|
nsCellMap* mCellMap;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mTableIsLTR;
|
2009-11-05 01:26:00 -08:00
|
|
|
PRInt32 mColInc; // +1 for ltr -1 for rtl
|
|
|
|
const nsStyleBackground* mTableBgColor;
|
|
|
|
nsTableFrame::RowGroupArray mRowGroups;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
nsTableRowGroupFrame* mPrevRg;
|
|
|
|
nsTableRowGroupFrame* mRg;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsRepeatedHeader;
|
|
|
|
bool mIsRepeatedFooter;
|
2009-11-05 01:26:00 -08:00
|
|
|
nsTableRowGroupFrame* mStartRg; // first row group in the damagearea
|
|
|
|
PRInt32 mRgIndex; // current row group index in the
|
|
|
|
// mRowgroups array
|
|
|
|
PRInt32 mFifRgFirstRowIndex; // start row index of the first in
|
|
|
|
// flow of the row group
|
|
|
|
PRInt32 mRgFirstRowIndex; // row index of the first row in the
|
|
|
|
// row group
|
|
|
|
PRInt32 mRgLastRowIndex; // row index of the last row in the row
|
|
|
|
// group
|
|
|
|
PRInt32 mNumTableRows; // number of rows in the table and all
|
|
|
|
// continuations
|
|
|
|
PRInt32 mNumTableCols; // number of columns in the table
|
|
|
|
PRInt32 mColIndex; // with respect to the table
|
|
|
|
PRInt32 mRowIndex; // with respect to the table
|
|
|
|
PRInt32 mRepeatedHeaderRowIndex; // row index in a repeated
|
|
|
|
//header, it's equivalent to
|
|
|
|
// mRowIndex when we're in a repeated
|
|
|
|
// header, and set to the last row
|
|
|
|
// index of a repeated header when
|
|
|
|
// we're not
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsNewRow;
|
|
|
|
bool mAtEnd; // the iterator cycled over all
|
2009-11-05 01:26:00 -08:00
|
|
|
// borders
|
|
|
|
nsTableRowFrame* mPrevRow;
|
|
|
|
nsTableRowFrame* mRow;
|
|
|
|
nsTableRowFrame* mStartRow; //first row in a inside the damagearea
|
2009-11-05 00:03:51 -08:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
// cell properties
|
|
|
|
nsTableCellFrame* mPrevCell;
|
|
|
|
nsTableCellFrame* mCell;
|
|
|
|
BCCellData* mPrevCellData;
|
|
|
|
BCCellData* mCellData;
|
|
|
|
BCData* mBCData;
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsTableTopMost() {return (mRowIndex == 0) && !mTable->GetPrevInFlow();}
|
|
|
|
bool IsTableRightMost() {return (mColIndex >= mNumTableCols);}
|
|
|
|
bool IsTableBottomMost() {return (mRowIndex >= mNumTableRows) && !mTable->GetNextInFlow();}
|
|
|
|
bool IsTableLeftMost() {return (mColIndex == 0);}
|
|
|
|
bool IsDamageAreaTopMost() {return (mRowIndex == mDamageArea.y);}
|
|
|
|
bool IsDamageAreaRightMost() {return (mColIndex >= mDamageArea.XMost());}
|
|
|
|
bool IsDamageAreaBottomMost() {return (mRowIndex >= mDamageArea.YMost());}
|
|
|
|
bool IsDamageAreaLeftMost() {return (mColIndex == mDamageArea.x);}
|
2009-11-05 01:26:00 -08:00
|
|
|
PRInt32 GetRelativeColIndex() {return (mColIndex - mDamageArea.x);}
|
|
|
|
|
2012-01-22 14:48:34 -08:00
|
|
|
nsIntRect mDamageArea; // damageArea in cellmap coordinates
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsAfterRepeatedHeader() { return !mIsRepeatedHeader && (mRowIndex == (mRepeatedHeaderRowIndex + 1));}
|
|
|
|
bool StartRepeatedFooter() {return mIsRepeatedFooter && (mRowIndex == mRgFirstRowIndex) && (mRowIndex != mDamageArea.y);}
|
2009-11-05 01:26:00 -08:00
|
|
|
nscoord mInitialOffsetX; // offsetX of the first border with
|
|
|
|
// respect to the table
|
|
|
|
nscoord mInitialOffsetY; // offsetY of the first border with
|
|
|
|
// respect to the table
|
|
|
|
nscoord mNextOffsetY; // offsetY of the next segment
|
|
|
|
BCVerticalSeg* mVerInfo; // this array is used differently when
|
|
|
|
// horizontal and vertical borders are drawn
|
|
|
|
// When horizontal border are drawn we cache
|
|
|
|
// the column widths and the width of the
|
|
|
|
// vertical borders that arrive from top
|
|
|
|
// When we draw vertical borders we store
|
|
|
|
// lengths and width for vertical borders
|
|
|
|
// before they are drawn while we move over
|
|
|
|
// the columns in the damage area
|
|
|
|
// It has one more elements than columns are
|
|
|
|
//in the table.
|
|
|
|
BCHorizontalSeg mHorSeg; // the horizontal segment while we
|
|
|
|
// move over the colums
|
|
|
|
BCPixelSize mPrevHorSegHeight; // the height of the previous
|
|
|
|
// horizontal border
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool SetNewRow(nsTableRowFrame* aRow = nsnull);
|
|
|
|
bool SetNewRowGroup();
|
2009-11-05 01:26:00 -08:00
|
|
|
void SetNewData(PRInt32 aRowIndex, PRInt32 aColIndex);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
|
|
|
|
BCPaintBorderIterator::BCPaintBorderIterator(nsTableFrame* aTable)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-11-05 01:26:00 -08:00
|
|
|
mTable = aTable;
|
|
|
|
mVerInfo = nsnull;
|
|
|
|
nsMargin childAreaOffset = mTable->GetChildAreaOffset(nsnull);
|
|
|
|
mTableFirstInFlow = (nsTableFrame*) mTable->GetFirstInFlow();
|
|
|
|
mTableCellMap = mTable->GetCellMap();
|
|
|
|
// y position of first row in damage area
|
2012-01-22 14:48:34 -08:00
|
|
|
mInitialOffsetY = mTable->GetPrevInFlow() ? 0 : childAreaOffset.top;
|
2009-11-05 01:26:00 -08:00
|
|
|
mNumTableRows = mTable->GetRowCount();
|
|
|
|
mNumTableCols = mTable->GetColCount();
|
|
|
|
|
|
|
|
// Get the ordered row groups
|
|
|
|
mTable->OrderRowGroups(mRowGroups);
|
2010-01-19 09:49:12 -08:00
|
|
|
// initialize to a non existing index
|
|
|
|
mRepeatedHeaderRowIndex = -99;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
mTableIsLTR = mTable->GetStyleVisibility()->mDirection ==
|
|
|
|
NS_STYLE_DIRECTION_LTR;
|
|
|
|
mColInc = (mTableIsLTR) ? 1 : -1;
|
|
|
|
|
2010-04-08 05:44:57 -07:00
|
|
|
nsIFrame* bgFrame =
|
|
|
|
nsCSSRendering::FindNonTransparentBackgroundFrame(aTable);
|
|
|
|
mTableBgColor = bgFrame->GetStyleBackground();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2012-01-22 14:48:34 -08:00
|
|
|
BCPaintBorderIterator::SetDamageArea(const nsRect& aDirtyRect)
|
2009-11-05 01:26:00 -08:00
|
|
|
{
|
2009-11-05 00:03:51 -08:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
PRUint32 startRowIndex, endRowIndex, startColIndex, endColIndex;
|
|
|
|
startRowIndex = endRowIndex = startColIndex = endColIndex = 0;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool done = false;
|
|
|
|
bool haveIntersect = false;
|
2012-01-22 14:48:34 -08:00
|
|
|
// find startRowIndex, endRowIndex
|
|
|
|
nscoord rowY = mInitialOffsetY;
|
2009-11-05 01:26:00 -08:00
|
|
|
for (PRUint32 rgX = 0; rgX < mRowGroups.Length() && !done; rgX++) {
|
|
|
|
nsTableRowGroupFrame* rgFrame = mRowGroups[rgX];
|
|
|
|
for (nsTableRowFrame* rowFrame = rgFrame->GetFirstRow(); rowFrame;
|
|
|
|
rowFrame = rowFrame->GetNextRow()) {
|
|
|
|
// conservatively estimate the half border widths outside the row
|
|
|
|
nscoord topBorderHalf = (mTable->GetPrevInFlow()) ? 0 :
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(rowFrame->GetTopBCBorderWidth() + 1);
|
|
|
|
nscoord bottomBorderHalf = (mTable->GetNextInFlow()) ? 0 :
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(rowFrame->GetBottomBCBorderWidth() + 1);
|
|
|
|
// get the row rect relative to the table rather than the row group
|
|
|
|
nsSize rowSize = rowFrame->GetSize();
|
|
|
|
if (haveIntersect) {
|
|
|
|
if (aDirtyRect.YMost() >= (rowY - topBorderHalf)) {
|
|
|
|
nsTableRowFrame* fifRow =
|
2012-01-16 15:38:10 -08:00
|
|
|
static_cast<nsTableRowFrame*>(rowFrame->GetFirstInFlow());
|
2009-11-05 01:26:00 -08:00
|
|
|
endRowIndex = fifRow->GetRowIndex();
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
else done = true;
|
2009-11-05 01:26:00 -08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if ((rowY + rowSize.height + bottomBorderHalf) >= aDirtyRect.y) {
|
|
|
|
mStartRg = rgFrame;
|
|
|
|
mStartRow = rowFrame;
|
|
|
|
nsTableRowFrame* fifRow =
|
2012-01-16 15:38:10 -08:00
|
|
|
static_cast<nsTableRowFrame*>(rowFrame->GetFirstInFlow());
|
2009-11-05 01:26:00 -08:00
|
|
|
startRowIndex = endRowIndex = fifRow->GetRowIndex();
|
2011-10-17 07:59:28 -07:00
|
|
|
haveIntersect = true;
|
2009-11-05 01:26:00 -08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
mInitialOffsetY += rowSize.height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rowY += rowSize.height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mNextOffsetY = mInitialOffsetY;
|
|
|
|
|
|
|
|
// XXX comment refers to the obsolete NS_FRAME_OUTSIDE_CHILDREN flag
|
|
|
|
// XXX but I don't understand it, so not changing it for now
|
|
|
|
// outer table borders overflow the table, so the table might be
|
|
|
|
// target to other areas as the NS_FRAME_OUTSIDE_CHILDREN is set
|
|
|
|
// on the table
|
|
|
|
if (!haveIntersect)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2009-11-05 01:26:00 -08:00
|
|
|
// find startColIndex, endColIndex, startColX
|
2011-10-17 07:59:28 -07:00
|
|
|
haveIntersect = false;
|
2009-11-05 01:26:00 -08:00
|
|
|
if (0 == mNumTableCols)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2009-11-05 01:26:00 -08:00
|
|
|
PRInt32 leftCol, rightCol; // columns are in the range [leftCol, rightCol)
|
|
|
|
|
|
|
|
nsMargin childAreaOffset = mTable->GetChildAreaOffset(nsnull);
|
|
|
|
if (mTableIsLTR) {
|
|
|
|
mInitialOffsetX = childAreaOffset.left; // x position of first col in
|
|
|
|
// damage area
|
|
|
|
leftCol = 0;
|
|
|
|
rightCol = mNumTableCols;
|
|
|
|
} else {
|
|
|
|
// x position of first col in damage area
|
|
|
|
mInitialOffsetX = mTable->GetRect().width - childAreaOffset.right;
|
|
|
|
leftCol = mNumTableCols-1;
|
|
|
|
rightCol = -1;
|
|
|
|
}
|
|
|
|
nscoord x = 0;
|
|
|
|
PRInt32 colX;
|
|
|
|
for (colX = leftCol; colX != rightCol; colX += mColInc) {
|
|
|
|
nsTableColFrame* colFrame = mTableFirstInFlow->GetColFrame(colX);
|
2011-10-17 07:59:28 -07:00
|
|
|
if (!colFrame) ABORT1(false);
|
2009-11-05 01:26:00 -08:00
|
|
|
// get the col rect relative to the table rather than the col group
|
|
|
|
nsSize size = colFrame->GetSize();
|
|
|
|
if (haveIntersect) {
|
2012-01-22 14:48:34 -08:00
|
|
|
// conservatively estimate the left half border width outside the col
|
|
|
|
nscoord leftBorderHalf =
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(colFrame->GetLeftBorderWidth() + 1);
|
2009-11-05 01:26:00 -08:00
|
|
|
if (aDirtyRect.XMost() >= (x - leftBorderHalf)) {
|
|
|
|
endColIndex = colX;
|
|
|
|
}
|
|
|
|
else break;
|
|
|
|
}
|
|
|
|
else {
|
2012-01-22 14:48:34 -08:00
|
|
|
// conservatively estimate the right half border width outside the col
|
|
|
|
nscoord rightBorderHalf =
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(colFrame->GetRightBorderWidth() + 1);
|
2009-11-05 01:26:00 -08:00
|
|
|
if ((x + size.width + rightBorderHalf) >= aDirtyRect.x) {
|
|
|
|
startColIndex = endColIndex = colX;
|
2011-10-17 07:59:28 -07:00
|
|
|
haveIntersect = true;
|
2009-11-05 01:26:00 -08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
mInitialOffsetX += mColInc * size.width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x += size.width;
|
|
|
|
}
|
|
|
|
if (!mTableIsLTR) {
|
|
|
|
PRUint32 temp;
|
|
|
|
mInitialOffsetX = mTable->GetRect().width - childAreaOffset.right;
|
|
|
|
temp = startColIndex; startColIndex = endColIndex; endColIndex = temp;
|
|
|
|
for (PRUint32 column = 0; column < startColIndex; column++) {
|
|
|
|
nsTableColFrame* colFrame = mTableFirstInFlow->GetColFrame(column);
|
2011-10-17 07:59:28 -07:00
|
|
|
if (!colFrame) ABORT1(false);
|
2009-11-05 01:26:00 -08:00
|
|
|
nsSize size = colFrame->GetSize();
|
|
|
|
mInitialOffsetX += mColInc * size.width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!haveIntersect)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2012-01-22 14:48:34 -08:00
|
|
|
mDamageArea = nsIntRect(startColIndex, startRowIndex,
|
|
|
|
1 + NS_ABS(PRInt32(endColIndex - startColIndex)),
|
|
|
|
1 + endRowIndex - startRowIndex);
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
Reset();
|
|
|
|
mVerInfo = new BCVerticalSeg[mDamageArea.width + 1];
|
|
|
|
if (!mVerInfo)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
|
|
|
return true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
void
|
|
|
|
BCPaintBorderIterator::Reset()
|
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
mAtEnd = true; // gets reset when First() is called
|
2009-11-05 01:26:00 -08:00
|
|
|
mRg = mStartRg;
|
|
|
|
mPrevRow = nsnull;
|
|
|
|
mRow = mStartRow;
|
|
|
|
mRowIndex = 0;
|
|
|
|
mColIndex = 0;
|
|
|
|
mRgIndex = -1;
|
|
|
|
mPrevCell = nsnull;
|
|
|
|
mCell = nsnull;
|
|
|
|
mPrevCellData = nsnull;
|
|
|
|
mCellData = nsnull;
|
|
|
|
mBCData = nsnull;
|
|
|
|
ResetVerInfo();
|
2012-01-22 14:48:34 -08:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the iterator data to a new cellmap coordinate
|
|
|
|
* @param aRowIndex - the row index
|
|
|
|
* @param aColIndex - the col index
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCPaintBorderIterator::SetNewData(PRInt32 aY,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 aX)
|
|
|
|
{
|
2009-11-05 01:26:00 -08:00
|
|
|
if (!mTableCellMap || !mTableCellMap->mBCInfo) ABORT0();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
mColIndex = aX;
|
|
|
|
mRowIndex = aY;
|
|
|
|
mPrevCellData = mCellData;
|
|
|
|
if (IsTableRightMost() && IsTableBottomMost()) {
|
|
|
|
mCell = nsnull;
|
|
|
|
mBCData = &mTableCellMap->mBCInfo->mLowerRightCorner;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
else if (IsTableRightMost()) {
|
|
|
|
mCellData = nsnull;
|
|
|
|
mBCData = &mTableCellMap->mBCInfo->mRightBorders.ElementAt(aY);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
else if (IsTableBottomMost()) {
|
|
|
|
mCellData = nsnull;
|
|
|
|
mBCData = &mTableCellMap->mBCInfo->mBottomBorders.ElementAt(aX);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2009-11-05 01:26:00 -08:00
|
|
|
if (PRUint32(mRowIndex - mFifRgFirstRowIndex) < mCellMap->mRows.Length()) {
|
|
|
|
mBCData = nsnull;
|
|
|
|
mCellData =
|
|
|
|
(BCCellData*)mCellMap->mRows[mRowIndex - mFifRgFirstRowIndex].SafeElementAt(mColIndex);
|
|
|
|
if (mCellData) {
|
|
|
|
mBCData = &mCellData->mData;
|
|
|
|
if (!mCellData->IsOrig()) {
|
|
|
|
if (mCellData->IsRowSpan()) {
|
|
|
|
aY -= mCellData->GetRowSpanOffset();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
if (mCellData->IsColSpan()) {
|
|
|
|
aX -= mCellData->GetColSpanOffset();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if ((aX >= 0) && (aY >= 0)) {
|
2009-11-05 01:26:00 -08:00
|
|
|
mCellData = (BCCellData*)mCellMap->mRows[aY - mFifRgFirstRowIndex][aX];
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
if (mCellData->IsOrig()) {
|
|
|
|
mPrevCell = mCell;
|
|
|
|
mCell = mCellData->GetCellFrame();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Set the iterator to a new row
|
|
|
|
* @param aRow - the new row frame, if null the iterator will advance to the
|
|
|
|
* next row
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2009-11-05 01:26:00 -08:00
|
|
|
BCPaintBorderIterator::SetNewRow(nsTableRowFrame* aRow)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-11-05 01:26:00 -08:00
|
|
|
mPrevRow = mRow;
|
|
|
|
mRow = (aRow) ? aRow : mRow->GetNextRow();
|
|
|
|
if (mRow) {
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsNewRow = true;
|
2009-11-05 01:26:00 -08:00
|
|
|
mRowIndex = mRow->GetRowIndex();
|
|
|
|
mColIndex = mDamageArea.x;
|
|
|
|
mPrevHorSegHeight = 0;
|
|
|
|
if (mIsRepeatedHeader) {
|
|
|
|
mRepeatedHeaderRowIndex = mRowIndex;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2011-10-17 07:59:28 -07:00
|
|
|
mAtEnd = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
return !mAtEnd;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Advance the iterator to the next row group
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2009-11-05 01:26:00 -08:00
|
|
|
BCPaintBorderIterator::SetNewRowGroup()
|
|
|
|
{
|
|
|
|
|
|
|
|
mRgIndex++;
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsRepeatedHeader = false;
|
|
|
|
mIsRepeatedFooter = false;
|
2009-11-05 01:26:00 -08:00
|
|
|
|
2010-03-05 10:41:54 -08:00
|
|
|
NS_ASSERTION(mRgIndex >= 0, "mRgIndex out of bounds");
|
|
|
|
if (PRUint32(mRgIndex) < mRowGroups.Length()) {
|
2009-11-05 01:26:00 -08:00
|
|
|
mPrevRg = mRg;
|
|
|
|
mRg = mRowGroups[mRgIndex];
|
2012-01-22 14:48:34 -08:00
|
|
|
nsTableRowGroupFrame* fifRg =
|
|
|
|
static_cast<nsTableRowGroupFrame*>(mRg->GetFirstInFlow());
|
|
|
|
mFifRgFirstRowIndex = fifRg->GetStartRowIndex();
|
2009-11-05 01:26:00 -08:00
|
|
|
mRgFirstRowIndex = mRg->GetStartRowIndex();
|
|
|
|
mRgLastRowIndex = mRgFirstRowIndex + mRg->GetRowCount() - 1;
|
|
|
|
|
|
|
|
if (SetNewRow(mRg->GetFirstRow())) {
|
2012-01-22 14:48:34 -08:00
|
|
|
mCellMap = mTableCellMap->GetMapFor(fifRg, nsnull);
|
2011-10-17 07:59:28 -07:00
|
|
|
if (!mCellMap) ABORT1(false);
|
2009-11-05 01:26:00 -08:00
|
|
|
}
|
|
|
|
if (mRg && mTable->GetPrevInFlow() && !mRg->GetPrevInFlow()) {
|
|
|
|
// if mRowGroup doesn't have a prev in flow, then it may be a repeated
|
|
|
|
// header or footer
|
|
|
|
const nsStyleDisplay* display = mRg->GetStyleDisplay();
|
|
|
|
if (mRowIndex == mDamageArea.y) {
|
|
|
|
mIsRepeatedHeader = (NS_STYLE_DISPLAY_TABLE_HEADER_GROUP == display->mDisplay);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2009-11-05 01:26:00 -08:00
|
|
|
mIsRepeatedFooter = (NS_STYLE_DISPLAY_TABLE_FOOTER_GROUP == display->mDisplay);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2011-10-17 07:59:28 -07:00
|
|
|
mAtEnd = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
return !mAtEnd;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Move the iterator to the first position in the damageArea
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCPaintBorderIterator::First()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-11-05 01:26:00 -08:00
|
|
|
if (!mTable || (mDamageArea.x >= mNumTableCols) ||
|
|
|
|
(mDamageArea.y >= mNumTableRows)) ABORT0();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mAtEnd = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
PRUint32 numRowGroups = mRowGroups.Length();
|
|
|
|
for (PRUint32 rgY = 0; rgY < numRowGroups; rgY++) {
|
|
|
|
nsTableRowGroupFrame* rowG = mRowGroups[rgY];
|
2007-06-05 11:55:26 -07:00
|
|
|
PRInt32 start = rowG->GetStartRowIndex();
|
|
|
|
PRInt32 end = start + rowG->GetRowCount() - 1;
|
2009-11-05 01:26:00 -08:00
|
|
|
if ((mDamageArea.y >= start) && (mDamageArea.y <= end)) {
|
|
|
|
mRgIndex = rgY - 1; // SetNewRowGroup increments rowGroupIndex
|
|
|
|
if (SetNewRowGroup()) {
|
|
|
|
while ((mRowIndex < mDamageArea.y) && !mAtEnd) {
|
2007-06-05 11:55:26 -07:00
|
|
|
SetNewRow();
|
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
if (!mAtEnd) {
|
|
|
|
SetNewData(mDamageArea.y, mDamageArea.x);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2007-06-05 11:55:26 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
mAtEnd = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Advance the iterator to the next position
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCPaintBorderIterator::Next()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-11-05 01:26:00 -08:00
|
|
|
if (mAtEnd) ABORT0();
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsNewRow = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
mColIndex++;
|
|
|
|
if (mColIndex > mDamageArea.XMost()) {
|
|
|
|
mRowIndex++;
|
|
|
|
if (mRowIndex == mDamageArea.YMost()) {
|
|
|
|
mColIndex = mDamageArea.x;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
else if (mRowIndex < mDamageArea.YMost()) {
|
|
|
|
if (mRowIndex <= mRgLastRowIndex) {
|
2007-03-22 10:30:00 -07:00
|
|
|
SetNewRow();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SetNewRowGroup();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2011-10-17 07:59:28 -07:00
|
|
|
mAtEnd = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
if (!mAtEnd) {
|
|
|
|
SetNewData(mRowIndex, mColIndex);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
// XXX if CalcVerCornerOffset and CalcHorCornerOffset remain similar, combine
|
|
|
|
// them
|
|
|
|
/** Compute the vertical offset of a vertical border segment
|
|
|
|
* @param aCornerOwnerSide - which side owns the corner
|
|
|
|
* @param aCornerSubWidth - how wide is the nonwinning side of the corner
|
|
|
|
* @param aHorWidth - how wide is the horizontal edge of the corner
|
|
|
|
* @param aIsStartOfSeg - does this corner start a new segment
|
|
|
|
* @param aIsBevel - is this corner beveled
|
|
|
|
* @return - offset in twips
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
static nscoord
|
2010-04-27 09:15:02 -07:00
|
|
|
CalcVerCornerOffset(mozilla::css::Side aCornerOwnerSide,
|
2009-11-05 01:26:00 -08:00
|
|
|
BCPixelSize aCornerSubWidth,
|
|
|
|
BCPixelSize aHorWidth,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIsStartOfSeg,
|
|
|
|
bool aIsBevel)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nscoord offset = 0;
|
2009-11-05 01:26:00 -08:00
|
|
|
// XXX These should be replaced with appropriate side-specific macros (which?)
|
|
|
|
BCPixelSize smallHalf, largeHalf;
|
|
|
|
if ((NS_SIDE_TOP == aCornerOwnerSide) ||
|
|
|
|
(NS_SIDE_BOTTOM == aCornerOwnerSide)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
DivideBCBorderSize(aCornerSubWidth, smallHalf, largeHalf);
|
|
|
|
if (aIsBevel) {
|
|
|
|
offset = (aIsStartOfSeg) ? -largeHalf : smallHalf;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
offset = (NS_SIDE_TOP == aCornerOwnerSide) ? smallHalf : -largeHalf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DivideBCBorderSize(aHorWidth, smallHalf, largeHalf);
|
|
|
|
if (aIsBevel) {
|
|
|
|
offset = (aIsStartOfSeg) ? -largeHalf : smallHalf;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
offset = (aIsStartOfSeg) ? smallHalf : -largeHalf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nsPresContext::CSSPixelsToAppUnits(offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Compute the horizontal offset of a horizontal border segment
|
|
|
|
* @param aCornerOwnerSide - which side owns the corner
|
|
|
|
* @param aCornerSubWidth - how wide is the nonwinning side of the corner
|
|
|
|
* @param aVerWidth - how wide is the vertical edge of the corner
|
|
|
|
* @param aIsStartOfSeg - does this corner start a new segment
|
|
|
|
* @param aIsBevel - is this corner beveled
|
|
|
|
* @param aTableIsLTR - direction, the computation depends on ltr or rtl
|
2009-11-05 01:26:00 -08:00
|
|
|
* @return - offset in twips
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
|
|
|
static nscoord
|
2010-04-27 09:15:02 -07:00
|
|
|
CalcHorCornerOffset(mozilla::css::Side aCornerOwnerSide,
|
2009-11-05 01:26:00 -08:00
|
|
|
BCPixelSize aCornerSubWidth,
|
|
|
|
BCPixelSize aVerWidth,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIsStartOfSeg,
|
|
|
|
bool aIsBevel,
|
|
|
|
bool aTableIsLTR)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nscoord offset = 0;
|
2009-11-05 01:26:00 -08:00
|
|
|
// XXX These should be replaced with appropriate side-specific macros (which?)
|
|
|
|
BCPixelSize smallHalf, largeHalf;
|
|
|
|
if ((NS_SIDE_LEFT == aCornerOwnerSide) ||
|
|
|
|
(NS_SIDE_RIGHT == aCornerOwnerSide)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aTableIsLTR) {
|
|
|
|
DivideBCBorderSize(aCornerSubWidth, smallHalf, largeHalf);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DivideBCBorderSize(aCornerSubWidth, largeHalf, smallHalf);
|
|
|
|
}
|
|
|
|
if (aIsBevel) {
|
|
|
|
offset = (aIsStartOfSeg) ? -largeHalf : smallHalf;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
offset = (NS_SIDE_LEFT == aCornerOwnerSide) ? smallHalf : -largeHalf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (aTableIsLTR) {
|
|
|
|
DivideBCBorderSize(aVerWidth, smallHalf, largeHalf);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
DivideBCBorderSize(aVerWidth, largeHalf, smallHalf);
|
|
|
|
}
|
|
|
|
if (aIsBevel) {
|
|
|
|
offset = (aIsStartOfSeg) ? -largeHalf : smallHalf;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
offset = (aIsStartOfSeg) ? smallHalf : -largeHalf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nsPresContext::CSSPixelsToAppUnits(offset);
|
|
|
|
}
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
BCVerticalSeg::BCVerticalSeg()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-11-05 01:26:00 -08:00
|
|
|
mCol = nsnull;
|
|
|
|
mFirstCell = mLastCell = mAjaCell = nsnull;
|
2010-04-27 09:15:02 -07:00
|
|
|
mOffsetX = mOffsetY = mLength = mWidth = mTopBevelOffset = 0;
|
|
|
|
mTopBevelSide = NS_SIDE_TOP;
|
2009-11-05 01:26:00 -08:00
|
|
|
mOwner = eCellOwner;
|
2009-11-05 01:25:26 -08:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Start a new vertical segment
|
|
|
|
* @param aIter - iterator containing the structural information
|
|
|
|
* @param aBorderOwner - determines the border style
|
|
|
|
* @param aVerSegWidth - the width of segment in pixel
|
|
|
|
* @param aHorSegHeight - the width of the horizontal segment joining the corner
|
|
|
|
* at the start
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
void
|
2009-11-05 01:26:00 -08:00
|
|
|
BCVerticalSeg::Start(BCPaintBorderIterator& aIter,
|
|
|
|
BCBorderOwner aBorderOwner,
|
|
|
|
BCPixelSize aVerSegWidth,
|
|
|
|
BCPixelSize aHorSegHeight)
|
|
|
|
{
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side ownerSide = NS_SIDE_TOP;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool bevel = false;
|
2009-11-05 00:03:51 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
nscoord cornerSubWidth = (aIter.mBCData) ?
|
|
|
|
aIter.mBCData->GetCorner(ownerSide, bevel) : 0;
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool topBevel = (aVerSegWidth > 0) ? bevel : false;
|
2011-06-02 05:56:50 -07:00
|
|
|
BCPixelSize maxHorSegHeight = NS_MAX(aIter.mPrevHorSegHeight, aHorSegHeight);
|
2009-11-05 01:26:00 -08:00
|
|
|
nscoord offset = CalcVerCornerOffset(ownerSide, cornerSubWidth,
|
2011-10-17 07:59:28 -07:00
|
|
|
maxHorSegHeight, true,
|
2009-11-05 01:26:00 -08:00
|
|
|
topBevel);
|
|
|
|
|
2012-01-22 14:48:34 -08:00
|
|
|
mTopBevelOffset = topBevel ?
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(maxHorSegHeight): 0;
|
2009-11-05 01:26:00 -08:00
|
|
|
// XXX this assumes that only corners where 2 segments join can be beveled
|
|
|
|
mTopBevelSide = (aHorSegHeight > 0) ? NS_SIDE_RIGHT : NS_SIDE_LEFT;
|
|
|
|
mOffsetY += offset;
|
|
|
|
mLength = -offset;
|
|
|
|
mWidth = aVerSegWidth;
|
|
|
|
mOwner = aBorderOwner;
|
|
|
|
mFirstCell = aIter.mCell;
|
|
|
|
mFirstRowGroup = aIter.mRg;
|
|
|
|
mFirstRow = aIter.mRow;
|
|
|
|
if (aIter.GetRelativeColIndex() > 0) {
|
|
|
|
mAjaCell = aIter.mVerInfo[aIter.GetRelativeColIndex() - 1].mLastCell;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize the vertical segments with information that will persist for any
|
|
|
|
* vertical segment in this column
|
|
|
|
* @param aIter - iterator containing the structural information
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCVerticalSeg::Initialize(BCPaintBorderIterator& aIter)
|
|
|
|
{
|
|
|
|
PRInt32 relColIndex = aIter.GetRelativeColIndex();
|
|
|
|
mCol = aIter.IsTableRightMost() ? aIter.mVerInfo[relColIndex - 1].mCol :
|
|
|
|
aIter.mTableFirstInFlow->GetColFrame(aIter.mColIndex);
|
|
|
|
if (!mCol) ABORT0();
|
|
|
|
if (0 == relColIndex) {
|
|
|
|
mOffsetX = aIter.mInitialOffsetX;
|
|
|
|
}
|
|
|
|
// set colX for the next column
|
|
|
|
if (!aIter.IsDamageAreaRightMost()) {
|
|
|
|
aIter.mVerInfo[relColIndex + 1].mOffsetX = mOffsetX +
|
|
|
|
aIter.mColInc * mCol->GetSize().width;
|
2009-11-05 00:03:51 -08:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
mOffsetY = aIter.mInitialOffsetY;
|
|
|
|
mLastCell = aIter.mCell;
|
2009-11-05 00:03:51 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Compute the offsets for the bottom corner of a vertical segment
|
|
|
|
* @param aIter - iterator containing the structural information
|
|
|
|
* @param aHorSegHeight - the width of the horizontal segment joining the corner
|
|
|
|
* at the start
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCVerticalSeg::GetBottomCorner(BCPaintBorderIterator& aIter,
|
|
|
|
BCPixelSize aHorSegHeight)
|
|
|
|
{
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side ownerSide = NS_SIDE_TOP;
|
2009-11-05 01:26:00 -08:00
|
|
|
nscoord cornerSubWidth = 0;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool bevel = false;
|
2009-11-05 01:26:00 -08:00
|
|
|
if (aIter.mBCData) {
|
|
|
|
cornerSubWidth = aIter.mBCData->GetCorner(ownerSide, bevel);
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsBottomBevel = (mWidth > 0) ? bevel : false;
|
2011-06-02 05:56:50 -07:00
|
|
|
mBottomHorSegHeight = NS_MAX(aIter.mPrevHorSegHeight, aHorSegHeight);
|
2009-11-05 01:26:00 -08:00
|
|
|
mBottomOffset = CalcVerCornerOffset(ownerSide, cornerSubWidth,
|
|
|
|
mBottomHorSegHeight,
|
2011-10-17 07:59:28 -07:00
|
|
|
false, mIsBottomBevel);
|
2009-11-05 01:26:00 -08:00
|
|
|
mLength += mBottomOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Paint the vertical segment
|
|
|
|
* @param aIter - iterator containing the structural information
|
|
|
|
* @param aRenderingContext - the rendering context
|
|
|
|
* @param aHorSegHeight - the width of the horizontal segment joining the corner
|
|
|
|
* at the start
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCVerticalSeg::Paint(BCPaintBorderIterator& aIter,
|
2011-04-07 18:04:40 -07:00
|
|
|
nsRenderingContext& aRenderingContext,
|
2009-11-05 01:26:00 -08:00
|
|
|
BCPixelSize aHorSegHeight)
|
|
|
|
{
|
|
|
|
// get the border style, color and paint the segment
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side side = (aIter.IsDamageAreaRightMost()) ? NS_SIDE_RIGHT :
|
2009-11-05 01:26:00 -08:00
|
|
|
NS_SIDE_LEFT;
|
|
|
|
PRInt32 relColIndex = aIter.GetRelativeColIndex();
|
|
|
|
nsTableColFrame* col = mCol; if (!col) ABORT0();
|
|
|
|
nsTableCellFrame* cell = mFirstCell; // ???
|
2010-01-09 07:33:03 -08:00
|
|
|
nsIFrame* owner = nsnull;
|
2009-11-05 01:26:00 -08:00
|
|
|
PRUint8 style = NS_STYLE_BORDER_STYLE_SOLID;
|
|
|
|
nscolor color = 0xFFFFFFFF;
|
|
|
|
|
|
|
|
switch (mOwner) {
|
|
|
|
case eTableOwner:
|
2010-01-09 07:33:03 -08:00
|
|
|
owner = aIter.mTable;
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
|
|
|
case eAjaColGroupOwner:
|
|
|
|
side = NS_SIDE_RIGHT;
|
|
|
|
if (!aIter.IsTableRightMost() && (relColIndex > 0)) {
|
|
|
|
col = aIter.mVerInfo[relColIndex - 1].mCol;
|
|
|
|
} // and fall through
|
|
|
|
case eColGroupOwner:
|
|
|
|
if (col) {
|
2010-01-09 07:33:03 -08:00
|
|
|
owner = col->GetParent();
|
2009-11-05 01:26:00 -08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case eAjaColOwner:
|
|
|
|
side = NS_SIDE_RIGHT;
|
|
|
|
if (!aIter.IsTableRightMost() && (relColIndex > 0)) {
|
|
|
|
col = aIter.mVerInfo[relColIndex - 1].mCol;
|
|
|
|
} // and fall through
|
|
|
|
case eColOwner:
|
2010-01-09 07:33:03 -08:00
|
|
|
owner = col;
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
|
|
|
case eAjaRowGroupOwner:
|
|
|
|
NS_ERROR("a neighboring rowgroup can never own a vertical border");
|
|
|
|
// and fall through
|
|
|
|
case eRowGroupOwner:
|
|
|
|
NS_ASSERTION(aIter.IsTableLeftMost() || aIter.IsTableRightMost(),
|
|
|
|
"row group can own border only at table edge");
|
2010-01-09 07:33:03 -08:00
|
|
|
owner = mFirstRowGroup;
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
|
|
|
case eAjaRowOwner:
|
2011-10-17 07:59:28 -07:00
|
|
|
NS_ASSERTION(false, "program error"); // and fall through
|
2009-11-05 01:26:00 -08:00
|
|
|
case eRowOwner:
|
|
|
|
NS_ASSERTION(aIter.IsTableLeftMost() || aIter.IsTableRightMost(),
|
|
|
|
"row can own border only at table edge");
|
2010-01-09 07:33:03 -08:00
|
|
|
owner = mFirstRow;
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
|
|
|
case eAjaCellOwner:
|
|
|
|
side = NS_SIDE_RIGHT;
|
|
|
|
cell = mAjaCell; // and fall through
|
|
|
|
case eCellOwner:
|
2010-01-09 07:33:03 -08:00
|
|
|
owner = cell;
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
|
|
|
}
|
2010-01-09 07:33:03 -08:00
|
|
|
if (owner) {
|
|
|
|
::GetPaintStyleInfo(owner, side, style, color, aIter.mTableIsLTR);
|
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
BCPixelSize smallHalf, largeHalf;
|
|
|
|
DivideBCBorderSize(mWidth, smallHalf, largeHalf);
|
|
|
|
nsRect segRect(mOffsetX - nsPresContext::CSSPixelsToAppUnits(largeHalf),
|
|
|
|
mOffsetY,
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(mWidth), mLength);
|
|
|
|
nscoord bottomBevelOffset = (mIsBottomBevel) ?
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(mBottomHorSegHeight) : 0;
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side bottomBevelSide = ((aHorSegHeight > 0) ^ !aIter.mTableIsLTR) ?
|
2009-11-05 01:26:00 -08:00
|
|
|
NS_SIDE_RIGHT : NS_SIDE_LEFT;
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side topBevelSide = ((mTopBevelSide == NS_SIDE_RIGHT) ^ !aIter.mTableIsLTR)?
|
2009-11-05 01:26:00 -08:00
|
|
|
NS_SIDE_RIGHT : NS_SIDE_LEFT;
|
|
|
|
nsCSSRendering::DrawTableBorderSegment(aRenderingContext, style, color,
|
|
|
|
aIter.mTableBgColor, segRect,
|
|
|
|
nsPresContext::AppUnitsPerCSSPixel(),
|
|
|
|
topBevelSide, mTopBevelOffset,
|
|
|
|
bottomBevelSide, bottomBevelOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Advance the start point of a segment
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCVerticalSeg::AdvanceOffsetY()
|
2009-11-05 00:03:51 -08:00
|
|
|
{
|
2009-11-05 01:26:00 -08:00
|
|
|
mOffsetY += mLength - mBottomOffset;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Accumulate the current segment
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCVerticalSeg::IncludeCurrentBorder(BCPaintBorderIterator& aIter)
|
|
|
|
{
|
|
|
|
mLastCell = aIter.mCell;
|
|
|
|
mLength += aIter.mRow->GetRect().height;
|
|
|
|
}
|
2009-11-05 01:25:26 -08:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
BCHorizontalSeg::BCHorizontalSeg()
|
|
|
|
{
|
|
|
|
mOffsetX = mOffsetY = mLength = mWidth = mLeftBevelOffset = 0;
|
2010-04-27 09:15:02 -07:00
|
|
|
mLeftBevelSide = NS_SIDE_TOP;
|
2009-11-05 01:26:00 -08:00
|
|
|
mFirstCell = mAjaCell = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/** Initialize a horizontal border segment for painting
|
|
|
|
* @param aIter - iterator storing the current and adjacent frames
|
|
|
|
* @param aBorderOwner - which frame owns the border
|
|
|
|
* @param aBottomVerSegWidth - vertical segment width coming from up
|
|
|
|
* @param aHorSegHeight - the height of the segment
|
2009-11-05 01:26:00 -08:00
|
|
|
+ */
|
2007-03-22 10:30:00 -07:00
|
|
|
void
|
2009-11-05 01:26:00 -08:00
|
|
|
BCHorizontalSeg::Start(BCPaintBorderIterator& aIter,
|
2007-03-22 10:30:00 -07:00
|
|
|
BCBorderOwner aBorderOwner,
|
2009-11-05 01:26:00 -08:00
|
|
|
BCPixelSize aBottomVerSegWidth,
|
|
|
|
BCPixelSize aHorSegHeight)
|
|
|
|
{
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side cornerOwnerSide = NS_SIDE_TOP;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool bevel = false;
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
mOwner = aBorderOwner;
|
|
|
|
nscoord cornerSubWidth = (aIter.mBCData) ?
|
|
|
|
aIter.mBCData->GetCorner(cornerOwnerSide,
|
|
|
|
bevel) : 0;
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool leftBevel = (aHorSegHeight > 0) ? bevel : false;
|
2009-11-05 01:26:00 -08:00
|
|
|
PRInt32 relColIndex = aIter.GetRelativeColIndex();
|
2011-06-02 05:56:50 -07:00
|
|
|
nscoord maxVerSegWidth = NS_MAX(aIter.mVerInfo[relColIndex].mWidth,
|
2009-11-05 01:26:00 -08:00
|
|
|
aBottomVerSegWidth);
|
|
|
|
nscoord offset = CalcHorCornerOffset(cornerOwnerSide, cornerSubWidth,
|
2011-10-17 07:59:28 -07:00
|
|
|
maxVerSegWidth, true, leftBevel,
|
2009-11-05 01:26:00 -08:00
|
|
|
aIter.mTableIsLTR);
|
|
|
|
mLeftBevelOffset = (leftBevel && (aHorSegHeight > 0)) ? maxVerSegWidth : 0;
|
|
|
|
// XXX this assumes that only corners where 2 segments join can be beveled
|
|
|
|
mLeftBevelSide = (aBottomVerSegWidth > 0) ? NS_SIDE_BOTTOM : NS_SIDE_TOP;
|
|
|
|
if (aIter.mTableIsLTR) {
|
|
|
|
mOffsetX += offset;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2009-11-05 01:26:00 -08:00
|
|
|
mOffsetX -= offset;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
mLength = -offset;
|
|
|
|
mWidth = aHorSegHeight;
|
|
|
|
mFirstCell = aIter.mCell;
|
|
|
|
mAjaCell = (aIter.IsDamageAreaTopMost()) ? nsnull :
|
|
|
|
aIter.mVerInfo[relColIndex].mLastCell;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Compute the offsets for the right corner of a horizontal segment
|
|
|
|
* @param aIter - iterator containing the structural information
|
|
|
|
* @param aLeftSegWidth - the width of the vertical segment joining the corner
|
|
|
|
* at the start
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCHorizontalSeg::GetRightCorner(BCPaintBorderIterator& aIter,
|
|
|
|
BCPixelSize aLeftSegWidth)
|
|
|
|
{
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side ownerSide = NS_SIDE_TOP;
|
2009-11-05 01:26:00 -08:00
|
|
|
nscoord cornerSubWidth = 0;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool bevel = false;
|
2009-11-05 01:26:00 -08:00
|
|
|
if (aIter.mBCData) {
|
|
|
|
cornerSubWidth = aIter.mBCData->GetCorner(ownerSide, bevel);
|
|
|
|
}
|
|
|
|
|
|
|
|
mIsRightBevel = (mWidth > 0) ? bevel : 0;
|
|
|
|
PRInt32 relColIndex = aIter.GetRelativeColIndex();
|
2011-06-02 05:56:50 -07:00
|
|
|
nscoord verWidth = NS_MAX(aIter.mVerInfo[relColIndex].mWidth, aLeftSegWidth);
|
2009-11-05 01:26:00 -08:00
|
|
|
mEndOffset = CalcHorCornerOffset(ownerSide, cornerSubWidth, verWidth,
|
2011-10-17 07:59:28 -07:00
|
|
|
false, mIsRightBevel, aIter.mTableIsLTR);
|
2009-11-05 01:26:00 -08:00
|
|
|
mLength += mEndOffset;
|
|
|
|
mRightBevelOffset = (mIsRightBevel) ?
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(verWidth) : 0;
|
|
|
|
mRightBevelSide = (aLeftSegWidth > 0) ? NS_SIDE_BOTTOM : NS_SIDE_TOP;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Paint the horizontal segment
|
|
|
|
* @param aIter - iterator containing the structural information
|
|
|
|
* @param aRenderingContext - the rendering context
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCHorizontalSeg::Paint(BCPaintBorderIterator& aIter,
|
2011-04-07 18:04:40 -07:00
|
|
|
nsRenderingContext& aRenderingContext)
|
2009-11-05 01:26:00 -08:00
|
|
|
{
|
|
|
|
// get the border style, color and paint the segment
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side side = (aIter.IsDamageAreaBottomMost()) ? NS_SIDE_BOTTOM :
|
2009-11-05 01:26:00 -08:00
|
|
|
NS_SIDE_TOP;
|
2010-01-09 07:33:03 -08:00
|
|
|
nsIFrame* rg = aIter.mRg; if (!rg) ABORT0();
|
|
|
|
nsIFrame* row = aIter.mRow; if (!row) ABORT0();
|
2010-03-06 01:53:04 -08:00
|
|
|
nsIFrame* cell = mFirstCell;
|
2009-11-05 01:26:00 -08:00
|
|
|
nsIFrame* col;
|
2010-01-09 07:33:03 -08:00
|
|
|
nsIFrame* owner = nsnull;
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
PRUint8 style = NS_STYLE_BORDER_STYLE_SOLID;
|
|
|
|
nscolor color = 0xFFFFFFFF;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
switch (mOwner) {
|
|
|
|
case eTableOwner:
|
2010-01-09 07:33:03 -08:00
|
|
|
owner = aIter.mTable;
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
|
|
|
case eAjaColGroupOwner:
|
|
|
|
NS_ERROR("neighboring colgroups can never own a horizontal border");
|
|
|
|
// and fall through
|
2010-04-27 09:15:01 -07:00
|
|
|
case eColGroupOwner:
|
2009-11-05 01:26:00 -08:00
|
|
|
NS_ASSERTION(aIter.IsTableTopMost() || aIter.IsTableBottomMost(),
|
|
|
|
"col group can own border only at the table edge");
|
|
|
|
col = aIter.mTableFirstInFlow->GetColFrame(aIter.mColIndex - 1);
|
|
|
|
if (!col) ABORT0();
|
2010-04-27 09:15:01 -07:00
|
|
|
owner = col->GetParent();
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
|
|
|
case eAjaColOwner:
|
|
|
|
NS_ERROR("neighboring column can never own a horizontal border");
|
|
|
|
// and fall through
|
|
|
|
case eColOwner:
|
|
|
|
NS_ASSERTION(aIter.IsTableTopMost() || aIter.IsTableBottomMost(),
|
|
|
|
"col can own border only at the table edge");
|
2010-01-09 07:33:03 -08:00
|
|
|
owner = aIter.mTableFirstInFlow->GetColFrame(aIter.mColIndex - 1);
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
|
|
|
case eAjaRowGroupOwner:
|
|
|
|
side = NS_SIDE_BOTTOM;
|
|
|
|
rg = (aIter.IsTableBottomMost()) ? aIter.mRg : aIter.mPrevRg;
|
|
|
|
// and fall through
|
|
|
|
case eRowGroupOwner:
|
2010-01-09 07:33:03 -08:00
|
|
|
owner = rg;
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
|
|
|
case eAjaRowOwner:
|
|
|
|
side = NS_SIDE_BOTTOM;
|
|
|
|
row = (aIter.IsTableBottomMost()) ? aIter.mRow : aIter.mPrevRow;
|
|
|
|
// and fall through
|
|
|
|
case eRowOwner:
|
2010-01-09 07:33:03 -08:00
|
|
|
owner = row;
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
|
|
|
case eAjaCellOwner:
|
|
|
|
side = NS_SIDE_BOTTOM;
|
|
|
|
// if this is null due to the damage area origin-y > 0, then the border
|
|
|
|
// won't show up anyway
|
|
|
|
cell = mAjaCell;
|
|
|
|
// and fall through
|
2010-01-09 07:33:03 -08:00
|
|
|
case eCellOwner:
|
|
|
|
owner = cell;
|
2009-11-05 01:26:00 -08:00
|
|
|
break;
|
2009-11-05 00:03:51 -08:00
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
if (owner) {
|
2010-01-09 07:33:03 -08:00
|
|
|
::GetPaintStyleInfo(owner, side, style, color, aIter.mTableIsLTR);
|
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
BCPixelSize smallHalf, largeHalf;
|
|
|
|
DivideBCBorderSize(mWidth, smallHalf, largeHalf);
|
|
|
|
nsRect segRect(mOffsetX,
|
|
|
|
mOffsetY - nsPresContext::CSSPixelsToAppUnits(largeHalf),
|
|
|
|
mLength,
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(mWidth));
|
|
|
|
if (aIter.mTableIsLTR) {
|
|
|
|
nsCSSRendering::DrawTableBorderSegment(aRenderingContext, style, color,
|
|
|
|
aIter.mTableBgColor, segRect,
|
|
|
|
nsPresContext::AppUnitsPerCSSPixel(),
|
|
|
|
mLeftBevelSide,
|
2010-04-27 09:15:01 -07:00
|
|
|
nsPresContext::CSSPixelsToAppUnits(mLeftBevelOffset),
|
2009-11-05 01:26:00 -08:00
|
|
|
mRightBevelSide, mRightBevelOffset);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
segRect.x -= segRect.width;
|
|
|
|
nsCSSRendering::DrawTableBorderSegment(aRenderingContext, style, color,
|
|
|
|
aIter.mTableBgColor, segRect,
|
|
|
|
nsPresContext::AppUnitsPerCSSPixel(),
|
|
|
|
mRightBevelSide, mRightBevelOffset,
|
|
|
|
mLeftBevelSide,
|
|
|
|
nsPresContext::CSSPixelsToAppUnits(mLeftBevelOffset));
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Advance the start point of a segment
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCHorizontalSeg::AdvanceOffsetX(PRInt32 aIncrement)
|
|
|
|
{
|
|
|
|
mOffsetX += aIncrement * (mLength - mEndOffset);
|
|
|
|
}
|
2009-11-05 00:03:51 -08:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Accumulate the current segment
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCHorizontalSeg::IncludeCurrentBorder(BCPaintBorderIterator& aIter)
|
|
|
|
{
|
|
|
|
mLength += aIter.mVerInfo[aIter.GetRelativeColIndex()].mColWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* store the column width information while painting horizontal segment
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCPaintBorderIterator::StoreColumnWidth(PRInt32 aIndex)
|
|
|
|
{
|
|
|
|
if (IsTableRightMost()) {
|
|
|
|
mVerInfo[aIndex].mColWidth = mVerInfo[aIndex - 1].mColWidth;
|
2009-11-05 00:03:51 -08:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
else {
|
|
|
|
nsTableColFrame* col = mTableFirstInFlow->GetColFrame(mColIndex);
|
|
|
|
if (!col) ABORT0();
|
|
|
|
mVerInfo[aIndex].mColWidth = col->GetSize().width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Determine if a vertical segment owns the corder
|
|
|
|
*/
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2009-11-05 01:26:00 -08:00
|
|
|
BCPaintBorderIterator::VerticalSegmentOwnsCorner()
|
|
|
|
{
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side cornerOwnerSide = NS_SIDE_TOP;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool bevel = false;
|
2011-12-19 19:46:39 -08:00
|
|
|
if (mBCData) {
|
|
|
|
mBCData->GetCorner(cornerOwnerSide, bevel);
|
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
// unitialized ownerside, bevel
|
|
|
|
return (NS_SIDE_TOP == cornerOwnerSide) ||
|
|
|
|
(NS_SIDE_BOTTOM == cornerOwnerSide);
|
|
|
|
}
|
2009-11-05 01:25:26 -08:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Paint if necessary a horizontal segment, otherwise accumulate it
|
|
|
|
* @param aRenderingContext - the rendering context
|
|
|
|
*/
|
|
|
|
void
|
2011-04-07 18:04:40 -07:00
|
|
|
BCPaintBorderIterator::AccumulateOrPaintHorizontalSegment(nsRenderingContext& aRenderingContext)
|
2009-11-05 01:26:00 -08:00
|
|
|
{
|
|
|
|
|
|
|
|
PRInt32 relColIndex = GetRelativeColIndex();
|
|
|
|
// store the current col width if it hasn't been already
|
|
|
|
if (mVerInfo[relColIndex].mColWidth < 0) {
|
|
|
|
StoreColumnWidth(relColIndex);
|
|
|
|
}
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
BCBorderOwner borderOwner = eCellOwner;
|
|
|
|
BCBorderOwner ignoreBorderOwner;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isSegStart = true;
|
|
|
|
bool ignoreSegStart;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2012-01-22 14:48:34 -08:00
|
|
|
nscoord leftSegWidth =
|
|
|
|
mBCData ? mBCData->GetLeftEdge(ignoreBorderOwner, ignoreSegStart) : 0;
|
|
|
|
nscoord topSegHeight =
|
|
|
|
mBCData ? mBCData->GetTopEdge(borderOwner, isSegStart) : 0;
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
if (mIsNewRow || (IsDamageAreaLeftMost() && IsDamageAreaBottomMost())) {
|
|
|
|
// reset for every new row and on the bottom of the last row
|
|
|
|
mHorSeg.mOffsetY = mNextOffsetY;
|
|
|
|
mNextOffsetY = mNextOffsetY + mRow->GetSize().height;
|
|
|
|
mHorSeg.mOffsetX = mInitialOffsetX;
|
|
|
|
mHorSeg.Start(*this, borderOwner, leftSegWidth, topSegHeight);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!IsDamageAreaLeftMost() && (isSegStart || IsDamageAreaRightMost() ||
|
|
|
|
VerticalSegmentOwnsCorner())) {
|
|
|
|
// paint the previous seg or the current one if IsDamageAreaRightMost()
|
|
|
|
if (mHorSeg.mLength > 0) {
|
|
|
|
mHorSeg.GetRightCorner(*this, leftSegWidth);
|
|
|
|
if (mHorSeg.mWidth > 0) {
|
|
|
|
mHorSeg.Paint(*this, aRenderingContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
mHorSeg.AdvanceOffsetX(mColInc);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
mHorSeg.Start(*this, borderOwner, leftSegWidth, topSegHeight);
|
|
|
|
}
|
|
|
|
mHorSeg.IncludeCurrentBorder(*this);
|
|
|
|
mVerInfo[relColIndex].mWidth = leftSegWidth;
|
|
|
|
mVerInfo[relColIndex].mLastCell = mCell;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Paint if necessary a vertical segment, otherwise it
|
|
|
|
* @param aRenderingContext - the rendering context
|
|
|
|
*/
|
|
|
|
void
|
2011-04-07 18:04:40 -07:00
|
|
|
BCPaintBorderIterator::AccumulateOrPaintVerticalSegment(nsRenderingContext& aRenderingContext)
|
2009-11-05 01:26:00 -08:00
|
|
|
{
|
|
|
|
BCBorderOwner borderOwner = eCellOwner;
|
|
|
|
BCBorderOwner ignoreBorderOwner;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isSegStart = true;
|
|
|
|
bool ignoreSegStart;
|
2009-11-05 01:26:00 -08:00
|
|
|
|
2012-01-22 14:48:34 -08:00
|
|
|
nscoord verSegWidth =
|
|
|
|
mBCData ? mBCData->GetLeftEdge(borderOwner, isSegStart) : 0;
|
|
|
|
nscoord horSegHeight =
|
|
|
|
mBCData ? mBCData->GetTopEdge(ignoreBorderOwner, ignoreSegStart) : 0;
|
2009-11-05 01:26:00 -08:00
|
|
|
|
|
|
|
PRInt32 relColIndex = GetRelativeColIndex();
|
|
|
|
BCVerticalSeg& verSeg = mVerInfo[relColIndex];
|
|
|
|
if (!verSeg.mCol) { // on the first damaged row and the first segment in the
|
|
|
|
// col
|
|
|
|
verSeg.Initialize(*this);
|
|
|
|
verSeg.Start(*this, borderOwner, verSegWidth, horSegHeight);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!IsDamageAreaTopMost() && (isSegStart || IsDamageAreaBottomMost() ||
|
|
|
|
IsAfterRepeatedHeader() ||
|
|
|
|
StartRepeatedFooter())) {
|
|
|
|
// paint the previous seg or the current one if IsDamageAreaBottomMost()
|
|
|
|
if (verSeg.mLength > 0) {
|
|
|
|
verSeg.GetBottomCorner(*this, horSegHeight);
|
|
|
|
if (verSeg.mWidth > 0) {
|
|
|
|
verSeg.Paint(*this, aRenderingContext, horSegHeight);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
verSeg.AdvanceOffsetY();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
verSeg.Start(*this, borderOwner, verSegWidth, horSegHeight);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
verSeg.IncludeCurrentBorder(*this);
|
|
|
|
mPrevHorSegHeight = horSegHeight;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
/**
|
|
|
|
* Reset the vertical information cache
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
BCPaintBorderIterator::ResetVerInfo()
|
|
|
|
{
|
|
|
|
if (mVerInfo) {
|
|
|
|
memset(mVerInfo, 0, mDamageArea.width * sizeof(BCVerticalSeg));
|
|
|
|
// XXX reinitialize properly
|
|
|
|
for (PRInt32 xIndex = 0; xIndex < mDamageArea.width; xIndex++) {
|
|
|
|
mVerInfo[xIndex].mColWidth = -1;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2009-11-05 01:26:00 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to paint BCBorders, this does not use currently display lists although
|
|
|
|
* it will do this in future
|
|
|
|
* @param aRenderingContext - the rendering context
|
|
|
|
* @param aDirtyRect - inside this rectangle the BC Borders will redrawn
|
|
|
|
*/
|
2010-04-27 09:15:01 -07:00
|
|
|
void
|
2011-04-07 18:04:40 -07:00
|
|
|
nsTableFrame::PaintBCBorders(nsRenderingContext& aRenderingContext,
|
2009-11-05 01:26:00 -08:00
|
|
|
const nsRect& aDirtyRect)
|
|
|
|
{
|
|
|
|
// We first transfer the aDirtyRect into cellmap coordinates to compute which
|
|
|
|
// cell borders need to be painted
|
|
|
|
BCPaintBorderIterator iter(this);
|
|
|
|
if (!iter.SetDamageArea(aDirtyRect))
|
2007-03-22 10:30:00 -07:00
|
|
|
return;
|
|
|
|
|
2009-11-05 01:26:00 -08:00
|
|
|
// First, paint all of the vertical borders from top to bottom and left to
|
|
|
|
// right as they become complete. They are painted first, since they are less
|
|
|
|
// efficient to paint than horizontal segments. They were stored with as few
|
|
|
|
// segments as possible (since horizontal borders are painted last and
|
|
|
|
// possibly over them). For every cell in a row that fails in the damage are
|
|
|
|
// we look up if the current border would start a new segment, if so we paint
|
|
|
|
// the previously stored vertical segment and start a new segment. After
|
|
|
|
// this we the now active segment with the current border. These
|
|
|
|
// segments are stored in mVerInfo to be used on the next row
|
|
|
|
for (iter.First(); !iter.mAtEnd; iter.Next()) {
|
|
|
|
iter.AccumulateOrPaintVerticalSegment(aRenderingContext);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next, paint all of the horizontal border segments from top to bottom reuse
|
|
|
|
// the mVerInfo array to keep track of col widths and vertical segments for
|
|
|
|
// corner calculations
|
|
|
|
iter.Reset();
|
|
|
|
for (iter.First(); !iter.mAtEnd; iter.Next()) {
|
|
|
|
iter.AccumulateOrPaintHorizontalSegment(aRenderingContext);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool nsTableFrame::RowHasSpanningCells(PRInt32 aRowIndex, PRInt32 aNumEffCols)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool result = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
NS_PRECONDITION (cellMap, "bad call, cellMap not yet allocated.");
|
|
|
|
if (cellMap) {
|
|
|
|
result = cellMap->RowHasSpanningCells(aRowIndex, aNumEffCols);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool nsTableFrame::RowIsSpannedInto(PRInt32 aRowIndex, PRInt32 aNumEffCols)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool result = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTableCellMap* cellMap = GetCellMap();
|
|
|
|
NS_PRECONDITION (cellMap, "bad call, cellMap not yet allocated.");
|
|
|
|
if (cellMap) {
|
|
|
|
result = cellMap->RowIsSpannedInto(aRowIndex, aNumEffCols);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2012-07-03 17:24:55 -07:00
|
|
|
|
|
|
|
/* static */
|
|
|
|
void
|
|
|
|
nsTableFrame::InvalidateFrame(nsIFrame* aFrame,
|
|
|
|
const nsRect& aOrigRect,
|
|
|
|
const nsRect& aOrigVisualOverflow,
|
|
|
|
bool aIsFirstReflow)
|
|
|
|
{
|
|
|
|
nsIFrame* parent = aFrame->GetParent();
|
|
|
|
NS_ASSERTION(parent, "What happened here?");
|
|
|
|
|
|
|
|
if (parent->GetStateBits() & NS_FRAME_FIRST_REFLOW) {
|
|
|
|
// Don't bother; we'll invalidate the parent's overflow rect when
|
|
|
|
// we finish reflowing it.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The part that looks at both the rect and the overflow rect is a
|
|
|
|
// bit of a hack. See nsBlockFrame::ReflowLine for an eloquent
|
|
|
|
// description of its hackishness.
|
|
|
|
nsRect visualOverflow = aFrame->GetVisualOverflowRect();
|
|
|
|
if (aIsFirstReflow ||
|
|
|
|
aOrigRect.TopLeft() != aFrame->GetPosition() ||
|
|
|
|
aOrigVisualOverflow.TopLeft() != visualOverflow.TopLeft()) {
|
|
|
|
// Invalidate the old and new overflow rects. Note that if the
|
|
|
|
// frame moved, we can't just use aOrigVisualOverflow, since it's in
|
|
|
|
// coordinates relative to the old position. So invalidate via
|
|
|
|
// aFrame's parent, and reposition that overflow rect to the right
|
|
|
|
// place.
|
|
|
|
// XXXbz this doesn't handle outlines, does it?
|
|
|
|
aFrame->Invalidate(visualOverflow);
|
|
|
|
parent->Invalidate(aOrigVisualOverflow + aOrigRect.TopLeft());
|
|
|
|
} else {
|
|
|
|
nsRect rect = aFrame->GetRect();
|
|
|
|
aFrame->CheckInvalidateSizeChange(aOrigRect, aOrigVisualOverflow,
|
|
|
|
rect.Size());
|
|
|
|
aFrame->InvalidateRectDifference(aOrigVisualOverflow, visualOverflow);
|
|
|
|
parent->InvalidateRectDifference(aOrigRect, rect);
|
|
|
|
}
|
|
|
|
}
|