gecko-dev/layout/tables/nsCellMap.cpp

612 строки
19 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.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#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
#ifdef NS_DEBUG
static PRBool gsDebug = PR_FALSE;
1998-04-14 00:24:54 +04:00
#else
static const PRBool gsDebug = PR_FALSE;
1998-04-14 00:24:54 +04:00
#endif
nsCellMap::nsCellMap(int aRowCount, int aColCount)
: mRowCount(0),
mNumCollapsedRows(0),
mNumCollapsedCols(0),
mNextAvailRowIndex(0)
1998-04-14 00:24:54 +04:00
{
mIsCollapsedRows = nsnull;
mIsCollapsedCols = nsnull;
Grow(aRowCount, aColCount);
1998-04-14 00:24:54 +04:00
}
nsCellMap::~nsCellMap()
{
PRInt32 mapRowCount = mRows.Count();
PRInt32 colCount = mNumCellsInCol.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;
}
for (colX = 0; colX < colCount; colX++) {
PRInt32* val = (PRInt32 *)mNumCellsInCol.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, mNumCellsInCol.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
{
if (gsDebug) printf("calling Grow(%d,%d) with mapRC=%d, RC=%d, CC=%d\n", aNumMapRows, aNumCols, mRows.Count(), mRowCount, mNumCellsInCol.Count());
PRInt32 origNumMapRows = mRows.Count();
PRInt32 origNumCols = mNumCellsInCol.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[2];
val[0] = val[1] = 0;
mNumCellsInCol.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);
mRows.AppendElement(row);
1998-04-14 00:24:54 +04:00
}
if (gsDebug) printf("leaving Grow with TRC=%d, TCC=%d\n", mRows.Count(), mNumCellsInCol.Count());
}
PRInt32 nsCellMap::AppendCell(nsTableCellFrame* aCellFrame,
PRInt32 aRowIndex)
{
NS_ASSERTION(aCellFrame, "bad cell frame");
PRInt32 origNumMapRows = mRows.Count();
PRInt32 origNumCols = mNumCellsInCol.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();
if (gsDebug) printf("AppendCell: rowSpan = %d, colSpan = %d\n", rowSpan, colSpan);
// 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);
if (gsDebug) printf("AppendCell: calling SetMapCellAt(data, %d, %d)\n", aRowIndex, startColIndex);
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 (cellData->mSpanData) {
NS_ASSERTION(!cellData->mSpanData2, "too many overlaps");
cellData->mSpanData2 = origData;
}
else {
cellData->mSpanData = origData;
}
}
else {
cellData = new CellData(nsnull, origData, nsnull);
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::GetNumCellsIn(PRInt32 aColIndex, PRBool aOriginating)
{
PRInt32 colCount = mNumCellsInCol.Count();
if ((aColIndex >= 0) && (aColIndex < colCount)) {
PRInt32* numCellsArray = (PRInt32 *)mNumCellsInCol.ElementAt(aColIndex);
PRInt32 numCells = (aOriginating) ? *numCellsArray : *(numCellsArray + 1);
return numCells;
}
else {
NS_ASSERTION(PR_FALSE, "nsCellMap::GetNumCellsIn - bad col index");
return 0;
}
}
PRInt32 nsCellMap::GetNumCellsIn(PRInt32 aColIndex)
{
return GetNumCellsIn(aColIndex, 1);
}
PRInt32 nsCellMap::GetNumCellsOriginatingIn(PRInt32 aColIndex)
{
return GetNumCellsIn(aColIndex, 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 = mNumCellsInCol.Count();
PRInt32 colIndex;
printf("mapRowCount=%d tableRowCount=%d, colCount=%d \n", mapRowCount, mRowCount, colCount);
for (PRInt32 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 = cd->mSpanData->mOrigCell;
nsTableRowFrame* row;
cell->GetParent((nsIFrame**)&row);
int rr = row->GetRowIndex();
int cc;
cell->GetColIndex(cc);
printf("S%d,%d ", rr, cc);
if (cd->mSpanData2){
cell = cd->mSpanData2->mOrigCell;
nsTableRowFrame* row2;
cell->GetParent((nsIFrame**)&row2);
rr = row2->GetRowIndex();
cell->GetColIndex(cc);
printf("O%d,%c ", 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 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 in/originating in cols array -> ");
for (colIndex = 0; colIndex < colCount; colIndex++) {
PRInt32* numCells = (PRInt32 *)mNumCellsInCol.ElementAt(colIndex);
printf ("%d=%d,%d ", colIndex, *numCells, *(numCells + 1));
}
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 col array
PRInt32* numCells = (PRInt32 *)mNumCellsInCol.ElementAt(aColIndex);
if (aNewCell.mOrigCell) { // cell originates in this col
(*numCells)++;
}
(*(numCells + 1))++; // cell occupies this col
}
PRInt32 nsCellMap::GetEffectiveColSpan(PRInt32 aColIndex, nsTableCellFrame* aCell)
{
NS_PRECONDITION(nsnull != aCell, "bad cell arg");
PRInt32 initialRowX;
aCell->GetRowIndex(initialRowX);
PRInt32 effColSpan = 0;
PRInt32 colCount = mNumCellsInCol.Count();
for (PRInt32 colX = aColIndex; colX < colCount; colX++) {
CellData* cellData = GetCellAt(initialRowX, colX);
if (cellData && cellData->IsOccupiedBy(aCell)) {
effColSpan++;
}
else {
break;
}
}
if (effColSpan == 0) {
//Dump();
printf("hello");
}
NS_ASSERTION(effColSpan > 0, "invalid col span or col index");
return effColSpan;
}
void nsCellMap::GetCellInfoAt(PRInt32 aRowX,
PRInt32 aColX,
nsTableCellFrame*& aCellFrame,
PRBool& aOriginates,
PRInt32& aColSpan)
{
aCellFrame = GetCellFrameAt(aRowX, aColX);
if (aCellFrame) {
aOriginates = PR_TRUE;
PRInt32 initialColIndex;
aCellFrame->GetColIndex(initialColIndex);
aColSpan = GetEffectiveColSpan(initialColIndex, aCellFrame);
}
else {
aOriginates = PR_FALSE;
aColSpan = 0;
}
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()
{
return mNumCollapsedRows;
}
1998-06-09 02:07:15 +04:00
PRBool nsCellMap::IsRowCollapsedAt(PRInt32 aRow)
{
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];
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;
}
}
}
PRInt32 nsCellMap::GetNumCollapsedCols()
{
return mNumCollapsedCols;
}
PRBool nsCellMap::IsColCollapsedAt(PRInt32 aCol)
{
PRInt32 colCount = mNumCellsInCol.Count();
if ((aCol >= 0) && (aCol < colCount)) {
if (mIsCollapsedCols) {
return mIsCollapsedCols[aCol];
}
}
return PR_FALSE;
}
void nsCellMap::SetColCollapsedAt(PRInt32 aCol, PRBool aValue)
{
PRInt32 colCount = mNumCellsInCol.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;
}
}
}
// The following are not used and may not work. They have been removed from
// nsTableFrame and nsCellMap headers but retained here if needed in the future.
#if 0
/** returns PR_TRUE if the row at aRowIndex has any cells that are the result
* of a row-spanning cell above it. So, given this table:<BR>
* <PRE>
* TABLE
* TR
* TD ROWSPAN=2
* TD
* TR
* TD
* </PRE>
* RowIsSpannedInto(0) returns PR_FALSE, and RowIsSpannedInto(1) returns PR_TRUE.
* @see RowHasSpanningCells
*/
// if computing this and related info gets expensive, we can easily
// cache it. The only thing to remember is to rebuild the cache
// whenever a row|col|cell is added/deleted, or a span attribute is changed.
PRBool nsCellMap::RowIsSpannedInto(PRInt32 aRowIndex)
{
NS_PRECONDITION (0 <= aRowIndex && aRowIndex < mRowCount, "bad row index arg");
PRInt32 colCount = mTableColToMapCol.Count();
PRBool result = PR_FALSE;
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
nsTableCellFrame* cell = cd->mSpanData->mOrigCell;
NS_ASSERTION(cell, "bad cell map state, missing real cell");
PRInt32 realRowIndex;
cell->GetRowIndex (realRowIndex);
if (realRowIndex != aRowIndex) { // the span is caused by a rowspan
result = PR_TRUE;
break;
}
}
}
}
return result;
}
/** returns PR_TRUE if the row at aRowIndex has any cells that have a rowspan>1
* So, given this table:<BR>
* <PRE>
* TABLE
* TR
* TD ROWSPAN=2
* TD
* TR
* TD
* </PRE>
* RowHasSpanningCells(0) returns PR_TRUE, and RowHasSpanningCells(1) returns PR_FALSE.
* @see RowIsSpannedInto
*/
PRBool nsCellMap::RowHasSpanningCells(PRInt32 aRowIndex)
{
NS_PRECONDITION (0 <= aRowIndex && aRowIndex < mRowCount, "bad row index arg");
PRBool result = PR_FALSE;
PRInt32 colCount = mTableColToMapCol.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++) {
PRInt32 nextRowIndex = aRowIndex + 1;
CellData* cd = GetCellAt(nextRowIndex, colIndex);
if (cd) { // there's really a cell at (nextRowIndex, colIndex)
if (!cd->mOrigCell) { // the cell at (nextRowIndex, colIndex) is the result of a span
nsTableCellFrame* cell = cd->mSpanData->mOrigCell;
NS_ASSERTION(cell, "bad cell map state, missing real cell");
PRInt32 realRowIndex;
cell->GetRowIndex (realRowIndex);
if (realRowIndex != nextRowIndex) { // the span is caused by a rowspan
CellData* spanningCell = GetCellAt(aRowIndex, colIndex);
if (spanningCell) { // there's really a cell at (aRowIndex, colIndex)
if (spanningCell->mOrigCell) { // aRowIndex is where the rowspan originated
result = PR_TRUE;
break;
}
}
}
}
}
}
}
return result;
}
/** returns PR_TRUE if the col at aColIndex has any cells that are the result
* of a col-spanning cell. So, given this table:<BR>
* <PRE>
* TABLE
* TR
* TD COLSPAN=2
* TD
* TD
* </PRE>
* ColIsSpannedInto(0) returns PR_FALSE, ColIsSpannedInto(1) returns PR_TRUE,
* and ColIsSpannedInto(2) returns PR_FALSE.
* @see ColHasSpanningCells
*/
PRBool nsCellMap::ColIsSpannedInto(PRInt32 aColIndex)
{
PRInt32 colCount = mTableColToMapCol.Count();
NS_PRECONDITION (0 <= aColIndex && aColIndex < colCount, "bad col index arg");
PRBool result = PR_FALSE;
for (PRInt32 rowIndex = 0; rowIndex < mRowCount; rowIndex++) {
CellData* cd = GetCellAt(rowIndex, aColIndex);
if (cd) { // there's really a cell at (aRowIndex, aColIndex)
if (!cd->mOrigCell) { // the cell at (rowIndex, aColIndex) is the result of a span
nsTableCellFrame* cell = cd->mSpanData->mOrigCell;
NS_ASSERTION(cell, "bad cell map state, missing real cell");
PRInt32 realColIndex;
cell->GetColIndex(realColIndex);
if (realColIndex != aColIndex) { // the span is caused by a colspan
result = PR_TRUE;
break;
}
}
}
}
return result;
}
/** returns PR_TRUE if the row at aColIndex has any cells that have a colspan>1
* So, given this table:<BR>
* <PRE>
* TABLE
* TR
* TD COLSPAN=2
* TD
* </PRE>
* ColHasSpanningCells(0) returns PR_TRUE, and ColHasSpanningCells(1) returns PR_FALSE.
* @see ColIsSpannedInto
*/
PRBool nsCellMap::ColHasSpanningCells(PRInt32 aColIndex)
{
PRBool result = PR_FALSE;
PRInt32 colCount = mTableColToMapCol.Count();
if (aColIndex < colCount - 1) {
// aColIndex is not the last col, so we check the next col after aColIndex for spanners
for (PRInt32 rowIndex=0; rowIndex < mRowCount; rowIndex++) {
PRInt32 nextColIndex = aColIndex+1;
CellData* cd = GetCellAt(rowIndex, nextColIndex);
if (cd) { // there's really a cell at (rowIndex, nextColIndex)
if (!cd->mOrigCell) { // the cell at (rowIndex, nextColIndex) is the result of a span
nsTableCellFrame* cell = cd->mSpanData->mOrigCell;
NS_ASSERTION(cell, "bad cell map state, missing real cell");
PRInt32 realColIndex;
cell->GetColIndex(realColIndex);
if (realColIndex != nextColIndex) { // the span is caused by a colspan
CellData* spanningCell = GetCellAtInternal(rowIndex, aColIndex);
if (spanningCell) { // there's really a cell at (rowIndex, aColIndex)
if (spanningCell->mOrigCell) { // aCowIndex is where the cowspan originated
result = PR_TRUE;
break;
}
}
}
}
}
}
}
return result;
}
#endif