Lines Matching refs:xCell

448 					CellRef xCell( getCell( aPos ) );  in ApplyCellStyles()  local
449 if( xCell.is() && ( xCell->GetStyleSheet() != pStyle ) ) in ApplyCellStyles()
452 xCell->SetStyleSheet( pStyle, sal_True ); in ApplyCellStyles()
621 CellRef xCell; in getCell() local
624 xCell.set( dynamic_cast< Cell* >( mxTable->getCellByPosition( rPos.mnCol, rPos.mnRow ).get() ) ); in getCell()
630 return xCell; in getCell()
699 CellRef xCell( getCell( rPos ) ); in GetCellItem() local
700 if( xCell.is() ) in GetCellItem()
701 return xCell->GetItemSet().GetItem( nWhich ); in GetCellItem()
877 CellRef xCell( mpImpl->getCell( aPos ) ); in getPreviousCell() local
878 if( xCell.is() && xCell->isMerged() ) in getPreviousCell()
905 CellRef xCell( mpImpl->getCell( aPos ) ); in getNextCell() local
906 if( xCell.is() ) in getNextCell()
908 if( xCell->isMerged() ) in getNextCell()
912 xCell = mpImpl->getCell(aPos); in getNextCell()
914 if( xCell.is() ) in getNextCell()
916 aPos.mnCol += xCell->getColumnSpan(); in getNextCell()
922 aPos.mnCol += xCell->getColumnSpan(); in getNextCell()
948 CellRef xCell( mpImpl->getCell( aPos ) ); in getPreviousRow() local
949 if( xCell.is() ) in getPreviousRow()
951 if( xCell->isMerged() ) in getPreviousRow()
979 CellRef xCell( mpImpl->getCell( rPos ) ); in getNextRow() local
980 if( xCell.is() ) in getNextRow()
982 if( xCell->isMerged() ) in getNextRow()
985 xCell = mpImpl->getCell(aPos); in getNextRow()
989 if( xCell.is() ) in getNextRow()
990 aPos.mnRow += xCell->getRowSpan(); in getNextRow()
1002 xCell = mpImpl->getCell( aPos ); in getNextRow()
1003 if( xCell.is() && !xCell->isMerged() ) in getNextRow()
1138 CellRef xCell( mpImpl->getCell( CellPos( rnX, rnY ) ) ); in CheckTableHit() local
1139 if( xCell.is() && xCell->isMerged() ) in CheckTableHit()
1142 if( xCell.is() ) in CheckTableHit()
1145 if( nX < xCell->GetTextLeftDistance() ) in CheckTableHit()
1267 CellRef xCell( mpImpl->getCell( aPos ) ); in getText() local
1268 return dynamic_cast< SdrText* >( xCell.get() ); in getText()
1474 CellRef xCell( mpImpl->getCell( rPos ) ); in TakeTextRect() local
1475 if( !xCell.is() ) in TakeTextRect()
1481 SdrTextVertAdjust eVAdj=xCell->GetTextVerticalAdjust(); in TakeTextRect()
1506 OutlinerParaObject* pPara= xCell->GetOutlinerParaObject(); in TakeTextRect()
1507 if (pEdtOutl && !bNoEditText && mpImpl->mxActiveCell == xCell ) in TakeTextRect()
1515 …if( !pTestObj || !bHitTest || (pTestObj != this) || (pTestObj->GetOutlinerParaObject() != xCell->G… in TakeTextRect()
1529 if (pEdtOutl && !bNoEditText && pPara && mpImpl->mxActiveCell == xCell ) in TakeTextRect()
1577 static CellRef xCell; in getActiveCell() local
1578 return xCell; in getActiveCell()
1634 CellRef xCell( mpImpl->getCell( rPos ) ); in getCellBounds() local
1635 if( xCell.is() ) in getCellBounds()
1636 rCellRect = xCell->getCellRect(); in getCellBounds()
1656 CellRef xCell( mpImpl->getCell( rPos ) ); in TakeTextAnchorRect() local
1657 if( xCell.is() ) in TakeTextAnchorRect()
1658 xCell->TakeTextAnchorRect( aAnkRect ); in TakeTextAnchorRect()
1692 CellRef xCell( mpImpl->getCell( rPos ) ); in TakeTextEditArea() local
1693 SdrTextVertAdjust eVAdj = xCell.is() ? xCell->GetTextVerticalAdjust() : SDRTEXTVERTADJUST_TOP; in TakeTextEditArea()
1754 CellRef xCell( getActiveCell() ); in GetOutlinerViewAnchorMode() local
1755 if( xCell.is() ) in GetOutlinerViewAnchorMode()
1757 SdrTextVertAdjust eV=xCell->GetTextVerticalAdjust(); in GetOutlinerViewAnchorMode()
2135 CellRef xCell( getActiveCell() ); in GetOutlinerParaObject() local
2136 if( xCell.is() ) in GetOutlinerParaObject()
2137 return xCell->GetOutlinerParaObject(); in GetOutlinerParaObject()
2146 CellRef xCell( getActiveCell() ); in NbcSetOutlinerParaObject() local
2147 if( xCell.is() ) in NbcSetOutlinerParaObject()
2153 if( pTestObj && pTestObj->GetOutlinerParaObject() == xCell->GetOutlinerParaObject() ) in NbcSetOutlinerParaObject()
2157 xCell->SetOutlinerParaObject( pTextObject ); in NbcSetOutlinerParaObject()