Lines Matching refs:aScreenRect
706 Rectangle aScreenRect = pHelpWin->ImplGetFrameWindow()->GetDesktopRectPixel(); in ImplSetHelpWindowPos() local
716 long nScreenHeight = aScreenRect.GetHeight(); in ImplSetHelpWindowPos()
718 if ( aPos.Y() > aScreenRect.Top()+nScreenHeight-(nScreenHeight/4) ) in ImplSetHelpWindowPos()
774 if ( aPos.X() < aScreenRect.Left() ) in ImplSetHelpWindowPos()
775 aPos.X() = aScreenRect.Left(); in ImplSetHelpWindowPos()
776 else if ( ( aPos.X() + aSz.Width() ) > aScreenRect.Right() ) in ImplSetHelpWindowPos()
777 aPos.X() = aScreenRect.Right() - aSz.Width(); in ImplSetHelpWindowPos()
778 if ( aPos.Y() < aScreenRect.Top() ) in ImplSetHelpWindowPos()
779 aPos.Y() = aScreenRect.Top(); in ImplSetHelpWindowPos()
780 else if ( ( aPos.Y() + aSz.Height() ) > aScreenRect.Bottom() ) in ImplSetHelpWindowPos()
781 aPos.Y() = aScreenRect.Bottom() - aSz.Height(); in ImplSetHelpWindowPos()
798 if( pTest.X() > aScreenRect.Left() && pTest.Y() > aScreenRect.Top() ) in ImplSetHelpWindowPos()