Lines Matching refs:xCell

875 					CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) );  in SetTableStyle()  local
876 if( xCell.is() ) in SetTableStyle()
878 SfxItemSet aSet( xCell->GetItemSet() ); in SetTableStyle()
880 const SfxItemSet& rStyleAttribs = xCell->GetStyleSheet()->GetItemSet(); in SetTableStyle()
894 xCell->AddUndo(); in SetTableStyle()
896 xCell->SetMergedItemSetAndBroadcast( aSet, sal_True ); in SetTableStyle()
996 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in SetVertical() local
997 if( xCell.is() ) in SetVertical()
998 xCell->SetMergedItem(aItem); in SetVertical()
1133 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in DeleteMarked() local
1134 if( xCell.is() ) in DeleteMarked()
1135 xCell->SetOutlinerParaObject( 0 ); in DeleteMarked()
1165 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in GetStyleSheet() local
1166 if( xCell.is() ) in GetStyleSheet()
1168 SfxStyleSheet* pSS=xCell->GetStyleSheet(); in GetStyleSheet()
1201 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in SetStyleSheet() local
1202 if( xCell.is() ) in SetStyleSheet()
1203 xCell->SetStyleSheet(pStyleSheet,bDontRemoveHardAttr); in SetStyleSheet()
1650 …Reference< XMergeableCell > xCell( mxTable->getCellByPosition( rPos.mnCol, rPos.mnRow ), UNO_QUERY… in findMergeOrigin() local
1651 if( xCell.is() && xCell->isMerged() ) in findMergeOrigin()
1802 Reference< XMergeableCell > xCell( mxTable->getCellByPosition( nCol, nRow ), UNO_QUERY ); in getSelectedCells() local
1803 if( !xCell.is() ) in getSelectedCells()
1806 if( xCell->isMerged() ) in getSelectedCells()
1819 …if( ((nCol + xCell->getColumnSpan() - 1) > rLast.mnCol) || (nRow + xCell->getRowSpan() - 1 ) > rLa… in getSelectedCells()
1821 rLast.mnCol = std::max( rLast.mnCol, nCol + xCell->getColumnSpan() - 1 ); in getSelectedCells()
1822 rLast.mnRow = std::max( rLast.mnRow, nRow + xCell->getRowSpan() - 1 ); in getSelectedCells()
1839 …Reference< XMergeableCell > xCell( mxTable->getCellByPosition( rLast.mnCol, rLast.mnRow ), UNO_QUE… in getSelectedCells() local
1840 if( xCell.is() ) in getSelectedCells()
1842 rLast.mnCol += xCell->getColumnSpan() - 1; in getSelectedCells()
1843 rLast.mnRow += xCell->getRowSpan() - 1; in getSelectedCells()
2010 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in MergeAttrFromSelectedCells() local
2011 if( xCell.is() && !xCell->isMerged() ) in MergeAttrFromSelectedCells()
2013 const SfxItemSet& rSet = xCell->GetItemSet(); in MergeAttrFromSelectedCells()
2262 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in ApplyBorderAttr() local
2263 if( !xCell.is() ) in ApplyBorderAttr()
2266 const SfxItemSet& rSet = xCell->GetItemSet(); in ApplyBorderAttr()
2290 xCell->SetMergedItemSetAndBroadcast( aAttr, false ); in ApplyBorderAttr()
2341 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in SetAttrToSelectedCells() local
2342 if( xCell.is() ) in SetAttrToSelectedCells()
2345 xCell->AddUndo(); in SetAttrToSelectedCells()
2346 xCell->SetMergedItemSetAndBroadcast(aAttr, bReplaceAll); in SetAttrToSelectedCells()
2562 CellRef xCell( dynamic_cast< Cell* >( mxTable->getCellByPosition( nCol, nRow ).get() ) ); in ApplyFormatPaintBrush() local
2563 if( xCell.is() ) in ApplyFormatPaintBrush()
2566 xCell->AddUndo(); in ApplyFormatPaintBrush()
2568 xCell->SetMergedItemSetAndBroadcast(aAttr, bReplaceAll); in ApplyFormatPaintBrush()
2570 SdrText* pText = static_cast< SdrText* >( xCell.get() ); in ApplyFormatPaintBrush()