Lines Matching refs:X
167 aOuterBox.X = 0; in ClassifyBorderElementUnderMouse()
173 if (aPosition.X < aInnerBox.X) in ClassifyBorderElementUnderMouse()
174 if (aPosition.X < aOuterBox.X) in ClassifyBorderElementUnderMouse()
178 else if (aPosition.X >= aInnerBox.X+aInnerBox.Width) in ClassifyBorderElementUnderMouse()
179 if (aPosition.X >= aOuterBox.X+aOuterBox.Width) in ClassifyBorderElementUnderMouse()
309 maDragAnchor.X = rEvent.X + aOuterBox.X; in mousePressed()
314 awt::Point(rEvent.X, rEvent.Y)); in mousePressed()
380 awt::Point(rEvent.X,rEvent.Y))) in mouseMoved()
440 const sal_Int32 nX = rEvent.X + aOldBox.X; in mouseDragged()
442 const sal_Int32 nDiffX = nX - maDragAnchor.X; in mouseDragged()
444 maDragAnchor.X = nX; in mouseDragged()
447 const sal_Int32 nOldRight = aOldBox.X + aOldBox.Width; in mouseDragged()
451 sal_Int32 nRight = aBox.X + aBox.Width; in mouseDragged()
459 aBox.X += nDiffX; aBox.Y += nDiffY; in mouseDragged()
463 aBox.X += nDiffX; aBox.Y += nDiffY; in mouseDragged()
469 aBox.X += nDiffX; in mouseDragged()
475 aBox.X += nDiffX; nBottom += nDiffY; in mouseDragged()
486 aBox.Width = nRight - aBox.X; in mouseDragged()
493 if (aBox.X != aOldBox.X) in mouseDragged()
494 nFlags |= awt::PosSize::X; in mouseDragged()
501 mxOuterDragWindow->setPosSize(aBox.X, aBox.Y, aBox.Width, aBox.Height, nFlags); in mouseDragged()
507 const sal_Int32 nLeft = ::std::min(aOldBox.X,aBox.X); in mouseDragged()