Lines Matching refs:xCell

89 		CellRef xCell( getCell( rPos ) );  in getCellSize()  local
90 if( xCell.is() && !xCell->isMerged() ) in getCellSize()
95 sal_Int32 nRowSpan = std::max( xCell->getRowSpan(), (sal_Int32)1 ); in getCellSize()
106 sal_Int32 nColSpan = std::max( xCell->getColumnSpan(), (sal_Int32)1 ); in getCellSize()
131 CellRef xCell( getCell( rPos ) ); in getCellArea() local
132 if( xCell.is() && !xCell->isMerged() && isValid(rPos) ) in getCellArea()
329 Reference< XMergeableCell > xCell( xTable->getCellByPosition( nCellX, nCellY ), UNO_QUERY ); in checkMergeOrigin() local
330 if( xCell.is() && !xCell->isMerged() ) in checkMergeOrigin()
332 const sal_Int32 nRight = xCell->getColumnSpan() + nCellX; in checkMergeOrigin()
333 const sal_Int32 nBottom = xCell->getRowSpan() + nCellY; in checkMergeOrigin()
353 …Reference< XMergeableCell > xCell( xTable->getCellByPosition( nMergedX, nMergedY ), UNO_QUERY_THRO… in findMergeOrigin() local
354 if( !xCell.is() || !xCell->isMerged() ) in findMergeOrigin()
568 CellRef xCell( getCell( CellPos( nCol, nRow ) ) ); in LayoutTableWidth() local
569 if( xCell.is() && !xCell->isMerged() ) in LayoutTableWidth()
573 sal_Int32 nColSpan = xCell->getColumnSpan(); in LayoutTableWidth()
577 aMergedCells[nCol+nColSpan-1].push_back( xCell ); in LayoutTableWidth()
581 nMinWidth = std::max( nMinWidth, xCell->getMinimumSize().Width ); in LayoutTableWidth()
646 CellRef xCell( (*iter++) ); in LayoutTableWidth()
647 sal_Int32 nMinWidth = xCell->getMinimumSize().Width; in LayoutTableWidth()
649 … for( sal_Int32 nMCol = nCol - xCell->getColumnSpan() + 1; (nMCol > 0) && (nMCol < nCol); ++nMCol ) in LayoutTableWidth()
718 CellRef xCell( getCell( CellPos( nCol, nRow ) ) ); in LayoutTableHeight() local
719 if( xCell.is() && !xCell->isMerged() ) in LayoutTableHeight()
723 sal_Int32 nRowSpan = xCell->getRowSpan(); in LayoutTableHeight()
727 aMergedCells[nRow+nRowSpan-1].push_back( xCell ); in LayoutTableHeight()
731 nMinHeight = std::max( nMinHeight, xCell->getMinimumSize().Height ); in LayoutTableHeight()
797 CellRef xCell( (*iter++) ); in LayoutTableHeight()
798 sal_Int32 nMinHeight = xCell->getMinimumSize().Height; in LayoutTableHeight()
800 for( sal_Int32 nMRow = nRow - xCell->getRowSpan() + 1; (nMRow > 0) && (nMRow < nRow); ++nMRow ) in LayoutTableHeight()
883 CellRef xCell( getCell( aPos ) ); in updateCells() local
884 if( xCell.is() ) in updateCells()
895 xCell->setCellRect( aCellRect ); in updateCells()
905 CellRef xCell; in getCell() local
908 xCell.set( dynamic_cast< Cell* >( mxTable->getCellByPosition( rPos.mnCol, rPos.mnRow ).get() ) ); in getCell()
914 return xCell; in getCell()
1048 CellRef xCell( getCell( aPos ) ); in UpdateBorderLayout() local
1049 if( !xCell.is() || xCell->isMerged() ) in UpdateBorderLayout()
1052 …const SvxBoxItem* pThisAttr = (const SvxBoxItem*)xCell->GetItemSet().GetItem( SDRATTR_TABLE_BORDER… in UpdateBorderLayout()
1058 const sal_Int32 nLastRow = xCell->getRowSpan() + aPos.mnRow; in UpdateBorderLayout()
1059 const sal_Int32 nLastCol = xCell->getColumnSpan() + aPos.mnCol; in UpdateBorderLayout()