Lines Matching refs:aMarkRect

1655 					    Rectangle aMarkRect( rView.GetMarkedObjRect() );  in handleKey()  local
1656 aMarkRect.Move( nX, nY ); in handleKey()
1658 if ( !rWorkArea.IsInside( aMarkRect ) ) in handleKey()
1660 if ( aMarkRect.Left() < rWorkArea.Left() ) in handleKey()
1661 nX += rWorkArea.Left() - aMarkRect.Left(); in handleKey()
1663 if ( aMarkRect.Right() > rWorkArea.Right() ) in handleKey()
1664 nX -= aMarkRect.Right() - rWorkArea.Right(); in handleKey()
1666 if ( aMarkRect.Top() < rWorkArea.Top() ) in handleKey()
1667 nY += rWorkArea.Top() - aMarkRect.Top(); in handleKey()
1669 if ( aMarkRect.Bottom() > rWorkArea.Bottom() ) in handleKey()
1670 nY -= aMarkRect.Bottom() - rWorkArea.Bottom(); in handleKey()
1683 … SdrObject* pOverlapped = isOver(aMarkRect,*rReportSection.getPage(),rView); in handleKey()
1692 aPos.X() = aMarkRect.Left(); in handleKey()
1693 aPos.Y() = aOver.Top() - aMarkRect.getHeight(); in handleKey()
1694 nY += (aPos.Y() - aMarkRect.Top()); in handleKey()
1698 aPos.X() = aMarkRect.Left(); in handleKey()
1700 nY += (aPos.Y() - aMarkRect.Top()); in handleKey()
1704 aPos.X() = aOver.Left() - aMarkRect.getWidth(); in handleKey()
1705 aPos.Y() = aMarkRect.Top(); in handleKey()
1706 nX += (aPos.X() - aMarkRect.Left()); in handleKey()
1711 aPos.Y() = aMarkRect.Top(); in handleKey()
1712 nX += (aPos.X() - aMarkRect.Left()); in handleKey()
1715 aMarkRect.SetPos(aPos); in handleKey()
1716 if ( !rWorkArea.IsInside( aMarkRect ) ) in handleKey()
1720 pOverlapped = isOver(aMarkRect,*rReportSection.getPage(),rView); in handleKey()