Lines Matching refs:rPos

227 	CellRef getCell( const CellPos& rPos ) const;
244 const SfxPoolItem* GetCellItem( const CellPos& rPos, sal_uInt16 nWhich ) const;
619 CellRef SdrTableObjImpl::getCell( const CellPos& rPos ) const in getCell()
624 xCell.set( dynamic_cast< Cell* >( mxTable->getCellByPosition( rPos.mnCol, rPos.mnRow ).get() ) ); in getCell()
697 const SfxPoolItem* SdrTableObjImpl::GetCellItem( const CellPos& rPos, sal_uInt16 nWhich ) const in GetCellItem() argument
699 CellRef xCell( getCell( rPos ) ); in GetCellItem()
783 bool SdrTableObj::isValid( const CellPos& rPos ) const in isValid()
785 …return (rPos.mnCol >= 0) && (rPos.mnCol < mpImpl->getColumnCount()) && (rPos.mnRow >= 0) && (rPos.… in isValid()
810 CellPos SdrTableObj::getLeftCell( const CellPos& rPos, bool bEdgeTravel ) const in getLeftCell() argument
816 return getPreviousCell( rPos, bEdgeTravel ); in getLeftCell()
818 return getNextCell( rPos, bEdgeTravel ); in getLeftCell()
820 return getPreviousRow( rPos, bEdgeTravel ); in getLeftCell()
826 CellPos SdrTableObj::getRightCell( const CellPos& rPos, bool bEdgeTravel ) const in getRightCell() argument
832 return getNextCell( rPos, bEdgeTravel ); in getRightCell()
834 return getPreviousCell( rPos, bEdgeTravel ); in getRightCell()
836 return getNextRow( rPos, bEdgeTravel ); in getRightCell()
842 CellPos SdrTableObj::getUpCell( const CellPos& rPos, bool bEdgeTravel ) const in getUpCell() argument
849 return getPreviousRow( rPos, bEdgeTravel ); in getUpCell()
851 return getPreviousCell( rPos, bEdgeTravel ); in getUpCell()
857 CellPos SdrTableObj::getDownCell( const CellPos& rPos, bool bEdgeTravel ) const in getDownCell() argument
864 return getNextRow( rPos, bEdgeTravel ); in getDownCell()
866 return getNextCell( rPos, bEdgeTravel ); in getDownCell()
872 CellPos SdrTableObj::getPreviousCell( const CellPos& rPos, bool bEdgeTravel ) const in getPreviousCell() argument
874 CellPos aPos( rPos ); in getPreviousCell()
900 CellPos SdrTableObj::getNextCell( const CellPos& rPos, bool bEdgeTravel ) const in getNextCell() argument
902 CellPos aPos( rPos ); in getNextCell()
917 aPos.mnRow = rPos.mnRow; in getNextCell()
938 return rPos; in getNextCell()
943 CellPos SdrTableObj::getPreviousRow( const CellPos& rPos, bool bEdgeTravel ) const in getPreviousRow() argument
945 CellPos aPos( rPos ); in getPreviousRow()
973 CellPos SdrTableObj::getNextRow( const CellPos& rPos, bool bEdgeTravel ) const in getNextRow() argument
975 CellPos aPos( rPos ); in getNextRow()
979 CellRef xCell( mpImpl->getCell( rPos ) ); in getNextRow()
986 aPos.mnCol = rPos.mnCol; in getNextRow()
1012 return rPos; in getNextRow()
1043 TableHitKind SdrTableObj::CheckTableHit( const Point& rPos, sal_Int32& rnX, sal_Int32& rnY, int nTo… in CheckTableHit() argument
1054 sal_Int32 nX = rPos.X() + nTol - aRect.nLeft; in CheckTableHit()
1055 sal_Int32 nY = rPos.Y() + nTol - aRect.nTop; in CheckTableHit()
1373 bool SdrTableObj::IsTextEditActive( const CellPos& rPos ) in IsTextEditActive() argument
1375 return pEdtOutl && mpImpl && (rPos == mpImpl->maEditPos); in IsTextEditActive()
1469 void SdrTableObj::TakeTextRect( const CellPos& rPos, SdrOutliner& rOutliner, Rectangle& rTextRect, … in TakeTextRect() argument
1474 CellRef xCell( mpImpl->getCell( rPos ) ); in TakeTextRect()
1479 TakeTextAnchorRect( rPos, aAnkRect ); in TakeTextRect()
1598 void SdrTableObj::setActiveCell( const CellPos& rPos ) in setActiveCell() argument
1602 …ell.set( dynamic_cast< Cell* >( mpImpl->mxTable->getCellByPosition( rPos.mnCol, rPos.mnRow ).get()… in setActiveCell()
1606 findMergeOrigin( mpImpl->mxTable.get(), rPos.mnCol, rPos.mnRow, aOrigin.mnCol, aOrigin.mnRow ); in setActiveCell()
1612 mpImpl->maEditPos = rPos; in setActiveCell()
1623 void SdrTableObj::getActiveCellPos( CellPos& rPos ) const in getActiveCellPos()
1625 rPos = mpImpl->maEditPos; in getActiveCellPos()
1630 void SdrTableObj::getCellBounds( const CellPos& rPos, ::Rectangle& rCellRect ) in getCellBounds() argument
1634 CellRef xCell( mpImpl->getCell( rPos ) ); in getCellBounds()
1650 void SdrTableObj::TakeTextAnchorRect( const CellPos& rPos, Rectangle& rAnchorRect ) const in TakeTextAnchorRect() argument
1656 CellRef xCell( mpImpl->getCell( rPos ) ); in TakeTextAnchorRect()
1675 void SdrTableObj::TakeTextEditArea( const CellPos& rPos, Size* pPaperMin, Size* pPaperMax, Rectangl… in TakeTextEditArea() argument
1679 TakeTextAnchorRect( rPos, aViewInit ); in TakeTextEditArea()
1692 CellRef xCell( mpImpl->getCell( rPos ) ); in TakeTextEditArea()
1820 SdrOutliner* SdrTableObj::GetCellTextEditOutliner( const CellPos& rPos ) const in GetCellTextEditOutliner()
1822 if( pEdtOutl && mpImpl && (mpImpl->maEditPos == rPos) ) in GetCellTextEditOutliner()