Lines Matching refs:aMarkRect
567 Rectangle aMarkRect(pView->GetMarkedObjRect()); in KeyInput() local
568 aMarkRect.Move(nX, nY); in KeyInput()
570 if(!aMarkRect.IsInside(rWorkArea)) in KeyInput()
572 if(aMarkRect.Left() < rWorkArea.Left()) in KeyInput()
574 nX += rWorkArea.Left() - aMarkRect.Left(); in KeyInput()
577 if(aMarkRect.Right() > rWorkArea.Right()) in KeyInput()
579 nX -= aMarkRect.Right() - rWorkArea.Right(); in KeyInput()
582 if(aMarkRect.Top() < rWorkArea.Top()) in KeyInput()
584 nY += rWorkArea.Top() - aMarkRect.Top(); in KeyInput()
587 if(aMarkRect.Bottom() > rWorkArea.Bottom()) in KeyInput()
589 nY -= aMarkRect.Bottom() - rWorkArea.Bottom(); in KeyInput()