Lines Matching refs:rWorkArea
563 const Rectangle& rWorkArea = pView->GetWorkArea(); in KeyInput() local
565 if(!rWorkArea.IsEmpty()) 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()