Lines Matching refs:aMarkRect
261 Rectangle aMarkRect( pView->GetMarkedObjRect() ); in KeyInput() local
262 aMarkRect.Move( nX, nY ); in KeyInput()
264 if ( !rWorkArea.IsInside( aMarkRect ) ) in KeyInput()
266 if ( aMarkRect.Left() < rWorkArea.Left() ) in KeyInput()
267 nX += rWorkArea.Left() - aMarkRect.Left(); in KeyInput()
269 if ( aMarkRect.Right() > rWorkArea.Right() ) in KeyInput()
270 nX -= aMarkRect.Right() - rWorkArea.Right(); in KeyInput()
272 if ( aMarkRect.Top() < rWorkArea.Top() ) in KeyInput()
273 nY += rWorkArea.Top() - aMarkRect.Top(); in KeyInput()
275 if ( aMarkRect.Bottom() > rWorkArea.Bottom() ) in KeyInput()
276 nY -= aMarkRect.Bottom() - rWorkArea.Bottom(); in KeyInput()