Lines Matching refs:Y
168 aOuterBox.Y = 0; in ClassifyBorderElementUnderMouse()
187 if (aPosition.Y < aInnerBox.Y) in ClassifyBorderElementUnderMouse()
188 if (aPosition.Y < aOuterBox.Y) in ClassifyBorderElementUnderMouse()
192 else if (aPosition.Y >= aInnerBox.Y+aInnerBox.Height) in ClassifyBorderElementUnderMouse()
193 if (aPosition.Y >= aOuterBox.Y+aOuterBox.Height) in ClassifyBorderElementUnderMouse()
310 maDragAnchor.Y = rEvent.Y + aOuterBox.Y; in mousePressed()
314 awt::Point(rEvent.X, rEvent.Y)); in mousePressed()
380 awt::Point(rEvent.X,rEvent.Y))) in mouseMoved()
441 const sal_Int32 nY = rEvent.Y + aOldBox.Y; in mouseDragged()
443 const sal_Int32 nDiffY = nY - maDragAnchor.Y; in mouseDragged()
445 maDragAnchor.Y = nY; in mouseDragged()
448 const sal_Int32 nOldBottom = aOldBox.Y + aOldBox.Height; in mouseDragged()
452 sal_Int32 nBottom = aBox.Y + aBox.Height; in mouseDragged()
459 aBox.X += nDiffX; aBox.Y += nDiffY; in mouseDragged()
463 aBox.X += nDiffX; aBox.Y += nDiffY; in mouseDragged()
466 nRight += nDiffX; aBox.Y += nDiffY; in mouseDragged()
487 aBox.Height = nBottom - aBox.Y; in mouseDragged()
495 if (aBox.Y != aOldBox.Y) in mouseDragged()
496 nFlags |= awt::PosSize::Y; in mouseDragged()
501 mxOuterDragWindow->setPosSize(aBox.X, aBox.Y, aBox.Width, aBox.Height, nFlags); in mouseDragged()
508 const sal_Int32 nTop = ::std::min(aOldBox.Y,aBox.Y); in mouseDragged()