Lines Matching refs:aLowerRight
512 Point aLowerRight(aUpperLeft.X() + _rSize.Width(), aUpperLeft.Y() + _rSize.Height()); in getMovementImpl() local
518 sal_Bool bFitsHor = (aUpperLeft.X() >= 0) && (aLowerRight.X() <= aSize.Width()); in getMovementImpl()
519 sal_Bool bFitsVert= (aUpperLeft.Y() >= 0) && (aLowerRight.Y() <= aSize.Height()); in getMovementImpl()
526 if ( aLowerRight.X() > aSize.Width() ) in getMovementImpl()
527 _nScrollX = aLowerRight.X() - aSize.Width() + TABWIN_SPACING_X; in getMovementImpl()
538 if ( aLowerRight.Y() > aSize.Height() ) in getMovementImpl()
539 _nScrollY = aLowerRight.Y() - aSize.Height() + TABWIN_SPACING_Y; in getMovementImpl()
1149 Point aLowerRight(aDragWinPos.X() + aDragWinSize.Width(), aDragWinPos.Y() + aDragWinSize.Height()); in ScrollWhileDragging() local
1172 if( aLowerRight.X() > m_aOutputSize.Width() - 5 ) in ScrollWhileDragging()
1175 if( !bScrolling && ( aLowerRight.X() > m_aOutputSize.Width() ) ) in ScrollWhileDragging()
1179 bNeedScrollTimer = bScrolling && (aLowerRight.X() > m_aOutputSize.Width() - 5); in ScrollWhileDragging()
1191 if( aLowerRight.Y() > m_aOutputSize.Height() - 5 ) in ScrollWhileDragging()
1197 bNeedScrollTimer = bScrolling && (aLowerRight.Y() > m_aOutputSize.Height() - 5); in ScrollWhileDragging()