Lines Matching refs:aTotRect
375 Rectangle aTotRect( Point(0, 0), PixelToLogic( aTotPixSz ) ); in MakeVisible() local
382 if ( aTarget.Right() > aTotRect.Right() ) in MakeVisible()
384 long nDelta = aTarget.Right() - aTotRect.Right(); in MakeVisible()
389 if ( aTarget.Left() < aTotRect.Left() ) in MakeVisible()
390 aTarget.Left() = aTotRect.Left(); in MakeVisible()
394 if ( aTarget.Bottom() > aTotRect.Bottom() ) in MakeVisible()
396 long nDelta = aTarget.Bottom() - aTotRect.Bottom(); in MakeVisible()
401 if ( aTarget.Top() < aTotRect.Top() ) in MakeVisible()
402 aTarget.Top() = aTotRect.Top(); in MakeVisible()
406 if ( aTarget.Left() < aTotRect.Left() ) in MakeVisible()
408 long nDelta = aTarget.Left() - aTotRect.Left(); in MakeVisible()
413 if ( aTarget.Right() > aTotRect.Right() ) in MakeVisible()
414 aTarget.Right() = aTotRect.Right(); in MakeVisible()
418 if ( aTarget.Top() < aTotRect.Top() ) in MakeVisible()
420 long nDelta = aTarget.Top() - aTotRect.Top(); in MakeVisible()
425 if ( aTarget.Bottom() > aTotRect.Bottom() ) in MakeVisible()
426 aTarget.Bottom() = aTotRect.Bottom(); in MakeVisible()
430 aTarget = rTarget.GetIntersection( aTotRect ); in MakeVisible()