Lines Matching refs:xCell
446 CellRef xCell( getCell( nColumn, nRow ) ); in getCellByPosition() local
447 if( xCell.is() ) in getCellByPosition()
448 return xCell.get(); in getCellByPosition()
657 CellRef xCell( getCell( nCol, nRow ) ); in notifyModification() local
658 fprintf( file, "<cell this=\"%lx\"", xCell.get() ); in notifyModification()
660 sal_Int32 nRowSpan = xCell->getRowSpan(); in notifyModification()
661 sal_Int32 nColSpan = xCell->getColumnSpan(); in notifyModification()
662 sal_Bool bMerged = xCell->isMerged(); in notifyModification()
721 CellRef xCell; in createCell() local
723 mpTableObj->createCell( xCell ); in createCell()
724 return xCell; in createCell()
780 CellRef xCell( getCell( nCol, nRow ) ); in insertColumns() local
781 sal_Int32 nColSpan = (xCell.is() && !xCell->isMerged()) ? xCell->getColumnSpan() : 1; in insertColumns()
785 const sal_Int32 nRowSpan = xCell->getRowSpan(); in insertColumns()
863 CellRef xCell( getCell( nCol, nRow ) ); in removeColumns() local
864 sal_Int32 nColSpan = (xCell.is() && !xCell->isMerged()) ? xCell->getColumnSpan() : 1; in removeColumns()
881 xTargetCell->merge( nColSpan - nRemove, xCell->getRowSpan() ); in removeColumns()
882 xTargetCell->replaceContentAndFormatting( xCell ); in removeColumns()
891 xCell->AddUndo(); in removeColumns()
892 xCell->merge( nColSpan - nRemove, xCell->getRowSpan() ); in removeColumns()
954 CellRef xCell( getCell( nCol, nRow ) ); in insertRows() local
955 sal_Int32 nRowSpan = (xCell.is() && !xCell->isMerged()) ? xCell->getRowSpan() : 1; in insertRows()
959 const sal_Int32 nColSpan = xCell->getColumnSpan(); in insertRows()
1024 CellRef xCell( getCell( nCol, nRow ) ); in removeRows() local
1025 sal_Int32 nRowSpan = (xCell.is() && !xCell->isMerged()) ? xCell->getRowSpan() : 1; in removeRows()
1042 xTargetCell->merge( xCell->getColumnSpan(), nRowSpan - nRemove ); in removeRows()
1043 xTargetCell->replaceContentAndFormatting( xCell ); in removeRows()
1052 xCell->AddUndo(); in removeRows()
1053 xCell->merge( xCell->getColumnSpan(), nRowSpan - nRemove ); in removeRows()
1114 Reference< XMergeableCell > xCell( getCellByPosition( nCol, nRow ), UNO_QUERY ); in optimize() local
1115 if( xCell.is() && !xCell->isMerged() ) in optimize()
1151 Reference< XMergeableCell > xCell( getCellByPosition( nCol, nRow ), UNO_QUERY ); in optimize() local
1152 if( xCell.is() && !xCell->isMerged() ) in optimize()
1218 CellRef xCell( dynamic_cast< Cell* >( getCellByPosition( nTempCol, nRow ).get() ) ); in merge() local
1219 if( xCell.is() && !xCell->isMerged() ) in merge()
1222 xCell->AddUndo(); in merge()
1223 xCell->setMerged(); in merge()
1224 xOriginCell->mergeContent( xCell ); in merge()