gecko-dev/layout/tables/nsCellMap.cpp

762 строки
22 KiB
C++
Исходник Обычный вид История

1998-04-14 00:24:54 +04:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
1998-04-14 00:24:54 +04:00
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
1998-04-14 00:24:54 +04:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1998-04-14 00:24:54 +04:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1998-04-14 00:24:54 +04:00
*/
#include "nsVoidArray.h"
1998-04-14 00:24:54 +04:00
#include "nsCellMap.h"
#include "nsTableFrame.h"
#include "nsTableCellFrame.h"
1998-04-14 00:24:54 +04:00
#define kIsCollapsedRowsGrowSize 5
// CellData
MOZ_DECL_CTOR_COUNTER(CellData);
CellData::CellData()
{
MOZ_COUNT_CTOR(CellData);
mOrigCell = nsnull;
mRowSpanData = nsnull;
mColSpanData = nsnull;
}
#ifdef NS_BUILD_REFCNT_LOGGING
CellData::CellData(nsTableCellFrame* aOrigCell, CellData* aRowSpanData,
CellData* aColSpanData)
: mOrigCell(aOrigCell),
mRowSpanData(aRowSpanData),
mColSpanData(aColSpanData)
{
MOZ_COUNT_CTOR(CellData);
}
#endif
CellData::~CellData()
{
MOZ_COUNT_DTOR(CellData);
}
MOZ_DECL_CTOR_COUNTER(nsCellMap);
// nsCellMap
nsCellMap::nsCellMap(int aRowCount, int aColCount)
1999-10-07 04:28:41 +04:00
: mIsCollapsedRowsSize(0),
mNumCollapsedRows(0),
mNumCollapsedCols(0),
1999-09-02 00:59:13 +04:00
mRowCount(0),
mNextAvailRowIndex(0)
1998-04-14 00:24:54 +04:00
{
MOZ_COUNT_CTOR(nsCellMap);
mIsCollapsedRows = nsnull;
mIsCollapsedCols = nsnull;
Grow(aRowCount, aColCount);
1998-04-14 00:24:54 +04:00
}
nsCellMap::~nsCellMap()
{
MOZ_COUNT_DTOR(nsCellMap);
PRInt32 mapRowCount = mRows.Count();
PRInt32 colCount = mNumCellsOrigInCol.Count();
PRInt32 colX;
for (PRInt32 rowX = 0; rowX < mapRowCount; rowX++) {
nsVoidArray* row = (nsVoidArray *)(mRows.ElementAt(rowX));
for (colX = 0; colX < colCount; colX++) {
CellData* data = (CellData *)(row->ElementAt(colX));
if (data) {
delete data;
}
}
delete row;
PRInt32* numOrig = (PRInt32 *)mNumCellsOrigInRow.ElementAt(rowX);
if (numOrig) {
delete numOrig;
}
}
for (colX = 0; colX < colCount; colX++) {
PRInt32* val = (PRInt32 *)mNumCellsOrigInCol.ElementAt(colX);
if (val) {
delete val;
}
1998-04-14 00:24:54 +04:00
}
if (nsnull != mIsCollapsedRows) {
delete [] mIsCollapsedRows;
mIsCollapsedRows = nsnull;
mNumCollapsedRows = 0;
}
if (nsnull != mIsCollapsedCols) {
delete [] mIsCollapsedCols;
mIsCollapsedCols = nsnull;
mNumCollapsedCols = 0;
}
1998-04-14 00:24:54 +04:00
};
void nsCellMap::AddColsAtEnd(PRUint32 aNumCols)
{
Grow(mRowCount, mNumCellsOrigInCol.Count() + aNumCols);
}
PRInt32 nsCellMap::GetNextAvailRowIndex()
{
return mNextAvailRowIndex++;
}
1998-04-14 00:24:54 +04:00
void nsCellMap::Grow(PRInt32 aNumMapRows,
PRInt32 aNumCols)
1998-04-14 00:24:54 +04:00
{
PRInt32 origNumMapRows = mRows.Count();
PRInt32 origNumCols = mNumCellsOrigInCol.Count();
// if the number of columns has increased, we need to add extra cols to mNumColsOriginating and
// each row in mRows.
if (origNumCols < aNumCols) {
PRInt32 colX;
for (PRInt32 rowX = 0; rowX < origNumMapRows; rowX++) {
nsVoidArray* row = (nsVoidArray *)(mRows.ElementAt(rowX));
const PRInt32 colsInRow = row->Count();
for (colX = colsInRow; colX < aNumCols; colX++) {
row->AppendElement(nsnull);
}
}
// update the col array
for (colX = origNumCols; colX < aNumCols; colX++) {
PRInt32* val = new PRInt32(0);
if (val) {
mNumCellsOrigInCol.AppendElement(val);
}
}
}
// if the number of rows has increased, add the extra rows. the new
// rows get the new number of cols
PRInt32 newRows = aNumMapRows - origNumMapRows;
for ( ; newRows > 0; newRows--) {
nsVoidArray* row;
row = (0 == aNumCols) ? new nsVoidArray() : new nsVoidArray(aNumCols);
if (row) {
mRows.AppendElement(row);
}
PRInt32* val = new PRInt32(0);
if (val) {
mNumCellsOrigInRow.AppendElement(val);
}
1998-04-14 00:24:54 +04:00
}
}
void nsCellMap::InsertRowIntoMap(PRInt32 aRowIndex)
{
// XXX This function does not yet handle spans.
// XXX Does this function need to worry about adjusting the collapsed row/col arrays?
nsVoidArray* row;
PRInt32 origNumCols = mNumCellsOrigInCol.Count();
row = (0 == origNumCols) ? new nsVoidArray() : new nsVoidArray(origNumCols);
if (row) {
mRows.InsertElementAt(row, aRowIndex);
if(mIsCollapsedRows)
InsertIntoCollapsedRows(aRowIndex);
}
PRInt32* val = new PRInt32(0);
if (val) {
mNumCellsOrigInRow.InsertElementAt(val, aRowIndex);
}
mRowCount++;
mNextAvailRowIndex++;
}
void nsCellMap::RemoveRowFromMap(PRInt32 aRowIndex)
{
// XXX This function does not yet handle spans.
// XXX Does this function need to worry about adjusting the collapsed row/col arrays?
PRInt32 colCount = mNumCellsOrigInCol.Count();
for (PRInt32 i = 0; i < colCount; i++) {
// Adjust the column counts.
PRInt32 span;
PRBool originates;
GetCellInfoAt(aRowIndex, i, &originates, &span);
if (originates) {
// Decrement the column count.
PRInt32* cols = (PRInt32*)(mNumCellsOrigInCol.ElementAt(i));
*cols = *cols-1;
}
}
// Delete the originating row info.
PRInt32* numOrig = (PRInt32 *)mNumCellsOrigInRow.ElementAt(aRowIndex);
mNumCellsOrigInRow.RemoveElementAt(aRowIndex);
if (numOrig)
delete numOrig;
// Delete our row information.
nsVoidArray* row = (nsVoidArray *)(mRows.ElementAt(aRowIndex));
for (PRInt32 colX = 0; colX < colCount; colX++) {
CellData* data = (CellData *)(row->ElementAt(colX));
if (data) {
delete data;
}
}
mRows.RemoveElementAt(aRowIndex);
delete row;
if(mIsCollapsedRows)
RemoveFromCollapsedRows(aRowIndex);
// Decrement our row and next available index counts.
mRowCount--;
mNextAvailRowIndex--;
}
PRInt32 nsCellMap::AppendCell(nsTableCellFrame* aCellFrame,
PRInt32 aRowIndex)
{
NS_ASSERTION(aCellFrame, "bad cell frame");
PRInt32 origNumMapRows = mRows.Count();
PRInt32 origNumCols = mNumCellsOrigInCol.Count();
// get the first null CellData in the desired row. It may be 1 past the end if there are none
PRInt32 startColIndex;
if (aRowIndex < origNumMapRows) {
for (startColIndex = 0; startColIndex < origNumCols; startColIndex++) {
CellData* data = GetMapCellAt(aRowIndex, startColIndex);
if (!data) {
break; // we found the col
}
}
}
else {
startColIndex = 0;
}
1998-04-14 00:24:54 +04:00
mRowCount = PR_MAX(mRowCount, aRowIndex + 1);
PRInt32 rowSpan = aCellFrame->GetRowSpan();
PRInt32 colSpan = aCellFrame->GetColSpan();
// Grow. we may need to add new rows/cols
PRInt32 spanNumRows = aRowIndex + rowSpan;
PRInt32 spanNumCols = startColIndex + colSpan;
if ((spanNumRows >= origNumMapRows) || (spanNumCols >= origNumCols)) {
Grow(spanNumRows, spanNumCols);
}
// Setup CellData for this cell
CellData* origData = new CellData(aCellFrame, nsnull, nsnull);
SetMapCellAt(*origData, aRowIndex, startColIndex);
// reset the col index of the cell frame
PRInt32 oldColIndex;
aCellFrame->GetColIndex(oldColIndex);
if (startColIndex != oldColIndex) {
// only do this if they are different since it changes content
aCellFrame->SetColIndex(startColIndex);
}
// Create CellData objects for the rows that this cell spans. Set
// their mOrigCell to nsnull and their mSpanData to point to data.
for (PRInt32 rowX = aRowIndex; rowX < spanNumRows; rowX++) {
for (PRInt32 colX = startColIndex; colX < spanNumCols; colX++) {
if ((rowX != aRowIndex) || (colX != startColIndex)) { // skip orig cell data done above
CellData* cellData = GetMapCellAt(rowX, colX);
if (cellData) {
NS_ASSERTION(!cellData->mOrigCell, "cannot overlap originating cell");
if (rowX > aRowIndex) { // row spanning into cell
if (cellData->mRowSpanData) {
NS_ASSERTION(PR_FALSE, "too many overlaps");
}
else {
cellData->mRowSpanData = origData;
}
}
if (colX > startColIndex) { // col spanning into cell
if (cellData->mColSpanData) {
NS_ASSERTION(PR_FALSE, "too many overlaps");
}
else {
cellData->mColSpanData = origData;
}
}
}
else {
cellData = new CellData(nsnull, nsnull, nsnull);
if (rowX > aRowIndex)
cellData->mRowSpanData = origData;
if (colX > startColIndex)
cellData->mColSpanData = origData;
SetMapCellAt(*cellData, rowX, colX);
}
}
}
1998-04-14 00:24:54 +04:00
}
return startColIndex;
}
void nsCellMap::RemoveCell(nsTableCellFrame* aCellFrame,
PRInt32 aRowIndex)
{
// XXX write me. For now the cell map is recalculate from scratch when a cell is deleted
}
PRInt32 nsCellMap::GetNumCellsOriginatingInRow(PRInt32 aRowIndex) const
{
PRInt32 rowCount = mNumCellsOrigInRow.Count();
if ((aRowIndex >= 0) && (aRowIndex < rowCount)) {
return *((PRInt32 *)mNumCellsOrigInRow.ElementAt(aRowIndex));
}
else {
NS_ASSERTION(PR_FALSE, "nsCellMap::GetNumCellsOriginatingInRow - bad row index");
return 0;
}
}
PRInt32 nsCellMap::GetNumCellsOriginatingInCol(PRInt32 aColIndex) const
{
PRInt32 colCount = mNumCellsOrigInCol.Count();
if ((aColIndex >= 0) && (aColIndex < colCount)) {
return *((PRInt32 *)mNumCellsOrigInCol.ElementAt(aColIndex));
}
else {
NS_ASSERTION(PR_FALSE, "nsCellMap::GetNumCellsOriginatingInCol - bad col index");
return 0;
}
1998-04-14 00:24:54 +04:00
}
#ifdef NS_DEBUG
void nsCellMap::Dump() const
1998-04-14 00:24:54 +04:00
{
printf("***** start CellMap Dump *****\n");
PRInt32 mapRowCount = mRows.Count();
PRInt32 colCount = mNumCellsOrigInCol.Count();
PRInt32 colIndex;
printf("mapRowCount=%d tableRowCount=%d, colCount=%d \n", mapRowCount, mRowCount, colCount);
PRInt32 rowIndex;
for (rowIndex = 0; rowIndex < mapRowCount; rowIndex++) {
nsVoidArray* row = (nsVoidArray *)mRows.ElementAt(rowIndex);
printf("row %d : ", rowIndex);
for (colIndex = 0; colIndex < colCount; colIndex++) {
CellData* cd = (CellData *)row->ElementAt(colIndex);
if (cd) {
if (cd->mOrigCell) {
printf("C%d,%d ", rowIndex, colIndex);
} else {
nsTableCellFrame* cell = nsnull;
int rr, cc;
if (cd->mRowSpanData) {
cell = cd->mRowSpanData->mOrigCell;
nsTableRowFrame* rowFrame;
cell->GetParent((nsIFrame**)&rowFrame);
rr = rowFrame->GetRowIndex();
cell->GetColIndex(cc);
printf("r%d,%d ", rr, cc);
}
if (cd->mColSpanData){
cell = cd->mColSpanData->mOrigCell;
nsTableRowFrame* row2;
cell->GetParent((nsIFrame**)&row2);
rr = row2->GetRowIndex();
cell->GetColIndex(cc);
printf("c%d,%d ", rr, cc);
}
}
} else {
printf("---- ");
1998-04-14 00:24:54 +04:00
}
}
printf("\n");
1998-04-14 00:24:54 +04:00
}
1998-06-09 02:07:15 +04:00
// output info mapping Ci,j to cell address
PRInt32 cellCount = 0;
for (PRInt32 rIndex = 0; rIndex < mapRowCount; rIndex++) {
nsVoidArray* row = (nsVoidArray *)mRows.ElementAt(rIndex);
for (colIndex = 0; colIndex < colCount; colIndex++) {
CellData* cd = (CellData *)row->ElementAt(colIndex);
if (cd) {
if (cd->mOrigCell) {
nsTableCellFrame* cellFrame = cd->mOrigCell;
PRInt32 cellFrameColIndex;
cellFrame->GetColIndex(cellFrameColIndex);
printf("C%d,%d=%p(%d) ", rIndex, colIndex, cellFrame, cellFrameColIndex);
cellCount++;
}
}
}
printf("\n");
}
// output cells originating in rows
printf ("\ncells originating in rows array -> ");
for (rowIndex = 0; rowIndex < mapRowCount; rowIndex++) {
PRInt32* numCells = (PRInt32 *)mNumCellsOrigInRow.ElementAt(rowIndex);
printf ("%d=%d ", rowIndex, *numCells);
}
printf("\n");
// output col frame info
printf("\n col frames ->");
for (colIndex = 0; colIndex < mColFrames.Count(); colIndex++) {
nsTableColFrame* colFrame = (nsTableColFrame *)mColFrames.ElementAt(colIndex);
if (0 == (colIndex % 8))
printf("\n");
printf ("%d=%p ", colIndex, colFrame);
}
// output cells originating in cols
printf ("\ncells originating in cols array -> ");
for (colIndex = 0; colIndex < colCount; colIndex++) {
PRInt32* numCells = (PRInt32 *)mNumCellsOrigInCol.ElementAt(colIndex);
printf ("%d=%d ", colIndex, *numCells);
}
printf("\n");
printf("\n***** end CellMap Dump *****\n");
}
#endif
// only called if the cell at aMapRowIndex, aColIndex is null
void nsCellMap::SetMapCellAt(CellData& aNewCell,
PRInt32 aMapRowIndex,
PRInt32 aColIndex)
{
nsVoidArray* row = (nsVoidArray *)(mRows.ElementAt(aMapRowIndex));
row->ReplaceElementAt(&aNewCell, aColIndex);
// update the originating cell counts if cell originates in this row, col
if (aNewCell.mOrigCell) {
PRInt32* numCells = (PRInt32 *)mNumCellsOrigInCol.ElementAt(aColIndex);
(*numCells)++;
numCells = (PRInt32 *)mNumCellsOrigInRow.ElementAt(aMapRowIndex);
(*numCells)++;
}
}
PRInt32 nsCellMap::GetEffectiveColSpan(PRInt32 aColIndex,
const nsTableCellFrame* aCell) const
{
NS_PRECONDITION(nsnull != aCell, "bad cell arg");
PRInt32 initialRowX;
aCell->GetRowIndex(initialRowX);
PRInt32 effColSpan = 0;
PRInt32 colCount = mNumCellsOrigInCol.Count();
for (PRInt32 colX = aColIndex; colX < colCount; colX++) {
PRBool found = PR_FALSE;
CellData* cellData = GetCellAt(initialRowX, colX);
if (cellData) {
if (cellData->mOrigCell) {
if (cellData->mOrigCell == aCell) {
found = PR_TRUE;
}
}
else if (cellData->mColSpanData &&
(cellData->mColSpanData->mOrigCell == aCell)) {
found = PR_TRUE;
}
}
if (found) {
effColSpan++;
}
else {
break;
}
}
NS_ASSERTION(effColSpan > 0, "invalid col span or col index");
return effColSpan;
}
nsTableCellFrame* nsCellMap::GetCellFrameOriginatingAt(PRInt32 aRowX,
PRInt32 aColX) const
{
CellData* data = GetCellAt(aRowX, aColX);
if (data) {
return data->mOrigCell;
}
return nsnull;
}
nsTableCellFrame* nsCellMap::GetCellInfoAt(PRInt32 aRowX,
PRInt32 aColX,
PRBool* aOriginates,
PRInt32* aColSpan) const
{
if (aOriginates)
*aOriginates = PR_FALSE;
CellData* data = GetCellAt(aRowX, aColX);
nsTableCellFrame* cellFrame = nsnull;
if (data) {
if (data->mOrigCell) {
cellFrame = data->mOrigCell;
if (aOriginates)
*aOriginates = PR_TRUE;
if (aColSpan) {
PRInt32 initialColIndex;
cellFrame->GetColIndex(initialColIndex);
*aColSpan = GetEffectiveColSpan(initialColIndex, cellFrame);
}
}
else {
if (data->mRowSpanData) {
cellFrame = data->mRowSpanData->mOrigCell;
}
else if (data->mColSpanData) {
cellFrame = data->mColSpanData->mOrigCell;
}
if (aColSpan)
*aColSpan = 0;
}
}
return cellFrame;
1998-06-09 02:07:15 +04:00
}
1998-06-09 02:07:15 +04:00
nsTableColFrame* nsCellMap::GetColumnFrame(PRInt32 aColIndex) const
{
return (nsTableColFrame *)(mColFrames.ElementAt(aColIndex));
}
PRInt32 nsCellMap::GetNumCollapsedRows() const
{
return mNumCollapsedRows;
}
1998-06-09 02:07:15 +04:00
PRBool nsCellMap::IsRowCollapsedAt(PRInt32 aRow) const
{
if ((aRow >= 0) && (aRow < mRowCount)) {
if (mIsCollapsedRows) {
return mIsCollapsedRows[aRow];
}
}
return PR_FALSE;
}
void nsCellMap::SetRowCollapsedAt(PRInt32 aRow, PRBool aValue)
{
if ((aRow >= 0) && (aRow < mRowCount)) {
if (nsnull == mIsCollapsedRows) {
mIsCollapsedRows = new PRPackedBool[mRowCount];
mIsCollapsedRowsSize = mRowCount;
for (PRInt32 i = 0; i < mRowCount; i++) {
mIsCollapsedRows[i] = PR_FALSE;
}
}
if (mIsCollapsedRows[aRow] != aValue) {
if (PR_TRUE == aValue) {
mNumCollapsedRows++;
} else {
mNumCollapsedRows--;
}
mIsCollapsedRows[aRow] = aValue;
}
}
}
void nsCellMap::InsertIntoCollapsedRows(PRInt32 aRow)
{
if(mIsCollapsedRows) {
if((mRowCount + 1) > mIsCollapsedRowsSize){
PRInt32 newSize = mRowCount + kIsCollapsedRowsGrowSize;
PRPackedBool * newIsCollapsedRows = new PRPackedBool[newSize];
if(!newIsCollapsedRows)
return;
if(aRow != 0)
nsCRT::memcpy(newIsCollapsedRows, mIsCollapsedRows, aRow * sizeof (PRPackedBool));
if(aRow != mRowCount)
nsCRT::memcpy(newIsCollapsedRows + aRow + 1, mIsCollapsedRows + aRow,
(mRowCount - aRow) * sizeof(PRPackedBool));
delete[] mIsCollapsedRows;
mIsCollapsedRows = newIsCollapsedRows;
mIsCollapsedRowsSize = newSize;
}
else {
if(aRow != mRowCount)
nsCRT::memmove(mIsCollapsedRows + aRow + 1, mIsCollapsedRows + aRow,
(mRowCount - aRow) * sizeof(PRPackedBool));
}
mIsCollapsedRows[aRow] = PR_FALSE;
}
}
void nsCellMap::RemoveFromCollapsedRows(PRInt32 aRow)
{
//If the row we're removing was collapsed, decrement mNumCollapsedRows
if(mIsCollapsedRows[aRow])
mNumCollapsedRows--;
//Don't need to move if last element in array
if(aRow < (mRowCount - 1))
nsCRT::memmove(mIsCollapsedRows + aRow, mIsCollapsedRows + aRow + 1,
(mRowCount - 1 - aRow) * sizeof(PRPackedBool));
}
PRInt32 nsCellMap::GetNumCollapsedCols() const
{
return mNumCollapsedCols;
}
PRBool nsCellMap::IsColCollapsedAt(PRInt32 aCol) const
{
PRInt32 colCount = mNumCellsOrigInCol.Count();
if ((aCol >= 0) && (aCol < colCount)) {
if (mIsCollapsedCols) {
return mIsCollapsedCols[aCol];
}
}
return PR_FALSE;
}
void nsCellMap::SetColCollapsedAt(PRInt32 aCol, PRBool aValue)
{
PRInt32 colCount = mNumCellsOrigInCol.Count();
if ((aCol >= 0) && (aCol < colCount)) {
if (nsnull == mIsCollapsedCols) {
mIsCollapsedCols = new PRPackedBool[colCount];
for (PRInt32 i = 0; i < colCount; i++) {
mIsCollapsedCols[i] = PR_FALSE;
}
}
if (mIsCollapsedCols[aCol] != aValue) {
if (PR_TRUE == aValue) {
mNumCollapsedCols++;
} else {
mNumCollapsedCols--;
}
mIsCollapsedCols[aCol] = aValue;
}
}
}
PRBool nsCellMap::RowIsSpannedInto(PRInt32 aRowIndex) const
{
if ((0 > aRowIndex) || (aRowIndex >= mRowCount)) {
return PR_FALSE;
}
PRInt32 colCount = mNumCellsOrigInCol.Count();
for (PRInt32 colIndex = 0; colIndex < colCount; colIndex++) {
CellData* cd = GetCellAt(aRowIndex, colIndex);
if (cd) { // there's really a cell at (aRowIndex, colIndex)
if (!cd->mOrigCell) { // the cell at (aRowIndex, colIndex) is the result of a span
1999-08-20 07:30:40 +04:00
if (cd->mRowSpanData && cd->mRowSpanData->mOrigCell)
return PR_TRUE;
}
}
}
return PR_FALSE;
}
PRBool nsCellMap::RowHasSpanningCells(PRInt32 aRowIndex) const
{
if ((0 > aRowIndex) || (aRowIndex >= mRowCount)) {
return PR_FALSE;
}
PRInt32 colCount = mNumCellsOrigInCol.Count();
if (aRowIndex != mRowCount - 1) {
// aRowIndex is not the last row, so we check the next row after aRowIndex for spanners
for (PRInt32 colIndex = 0; colIndex < colCount; colIndex++) {
CellData* cd = GetCellAt(aRowIndex, colIndex);
if (cd && (cd->mOrigCell)) { // cell originates
CellData* cd2 = GetCellAt(aRowIndex + 1, colIndex);
if (cd2 && !cd2->mOrigCell && cd2->mRowSpanData) { // cd2 is spanned by a row
if (cd->mOrigCell == cd2->mRowSpanData->mOrigCell)
return PR_TRUE;
}
}
}
}
return PR_FALSE;
}
PRBool nsCellMap::ColIsSpannedInto(PRInt32 aColIndex) const
{
if ((0 > aColIndex) || (aColIndex >= mNumCellsOrigInCol.Count())) {
return PR_FALSE;
}
for (PRInt32 rowIndex = 0; rowIndex < mRowCount; rowIndex++) {
CellData* cd = GetCellAt(rowIndex, aColIndex);
if (cd) { // there's really a cell at (aRowIndex, colIndex)
if (!cd->mOrigCell) { // the cell at (aRowIndex, colIndex) is the result of a span
1999-08-20 07:30:40 +04:00
if (cd->mColSpanData && cd->mColSpanData->mOrigCell)
return PR_TRUE;
}
}
}
return PR_FALSE;
}
PRBool nsCellMap::ColHasSpanningCells(PRInt32 aColIndex) const
{
NS_PRECONDITION (aColIndex < mNumCellsOrigInCol.Count(), "bad col index arg");
PRInt32 colCount = mNumCellsOrigInCol.Count();
if ((0 > aColIndex) || (aColIndex >= colCount - 1))
return PR_FALSE;
for (PRInt32 rowIndex = 0; rowIndex < mRowCount; rowIndex++) {
CellData* cd = GetCellAt(rowIndex, aColIndex);
if (cd && (cd->mOrigCell)) { // cell originates
CellData* cd2 = GetCellAt(rowIndex + 1, aColIndex);
if (cd2 && !cd2->mOrigCell && cd2->mColSpanData) { // cd2 is spanned by a col
if (cd->mOrigCell == cd2->mColSpanData->mOrigCell)
return PR_TRUE;
}
}
}
return PR_FALSE;
}
#ifdef DEBUG
void nsCellMap::SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const
{
NS_PRECONDITION(aResult, "null OUT parameter pointer");
PRUint32 sum = sizeof(*this);
// Add in the size of the void arrays. Because we have emnbedded objects
// and not pointers to void arrays, we need to subtract out the size of the
// embedded object so it isn't double counted
PRUint32 voidArraySize;
mRows.SizeOf(aHandler, &voidArraySize);
sum += voidArraySize - sizeof(mRows);
mColFrames.SizeOf(aHandler, &voidArraySize);
sum += voidArraySize - sizeof(mColFrames);
mNumCellsOrigInRow.SizeOf(aHandler, &voidArraySize);
sum += voidArraySize - sizeof(mNumCellsOrigInRow);
mNumCellsOrigInCol.SizeOf(aHandler, &voidArraySize);
sum += voidArraySize - sizeof(mNumCellsOrigInCol);
// Add in the size of the collapsed rows and collapsed column
// packed bool arrays
if (mIsCollapsedRows) {
sum += mRowCount * sizeof(PRPackedBool);
}
if (mIsCollapsedCols) {
sum += mNumCellsOrigInCol.Count() * sizeof(PRPackedBool);
}
*aResult = sum;
}
#endif