Searched refs:posSize (Results 1 – 3 of 3) sorted by relevance
/aoo42x/main/qadevOOo/tests/java/ifc/awt/ |
H A D | _XWindow.java | 86 private Rectangle posSize = null ; field in _XWindow 94 posSize = oObj.getPosSize() ; in _getPosSize() 95 tRes.tested("getPosSize()", posSize != null) ; in _getPosSize() 112 newRec.X = posSize.X + 1; in _setPosSize() 113 newRec.Y = posSize.Y + 1; in _setPosSize() 114 newRec.Width = posSize.Width - 3; in _setPosSize() 115 newRec.Height = posSize.Height - 3; in _setPosSize() 119 log.println("Was : (" + posSize.X + ", " + posSize.Y + ", " + in _setPosSize() 120 posSize.Width + ", " + posSize.Height + "), "); in _setPosSize() 317 oObj.setPosSize(posSize.X, posSize.Y, in _removeWindowListener() [all …]
|
/aoo42x/main/qadevOOo/tests/java/ifc/sheet/ |
H A D | _XRangeSelection.java | 282 Rectangle posSize = xWindow.getPosSize(); in getCloser() local 287 if (posSize.X <= center.X && center.X <= posSize.X + posSize.Width) { in getCloser() 288 if (posSize.Y <= center.Y && center.Y <= posSize.Y +posSize.Height) { in getCloser() 290 posSize.X = posSize.X + 10; in getCloser() 291 posSize.Y = posSize.Y +10; in getCloser() 292 … xWindow.setPosSize(posSize.X, posSize.Y, posSize.Width, posSize.Height, PosSize.POS); in getCloser() 308 closer.X = p.X + posSize.Width - 2; in getCloser()
|
/aoo42x/main/framework/qa/complex/framework/recovery/ |
H A D | RecoveryTest.java | 683 Rectangle posSize = makePosZize(); in positioningDocument() local 686 windowsPosSize.put(frameName, posSize); in positioningDocument() 688 xWindow.setPosSize(posSize.X, posSize.Y, posSize.Width, posSize.Height, in positioningDocument() 696 Rectangle posSize = new Rectangle(); in makePosZize() local 700 posSize.X = rand.nextInt(windowMaxPosition.x + 1); in makePosZize() 701 posSize.Y = rand.nextInt(windowMaxPosition.y + 1); in makePosZize() 703 int maxHeight = windowMaxSize.Height-posSize.X; in makePosZize() 704 int maxWidth = windowMaxSize.Width-posSize.Y; in makePosZize() 706 int width = rand.nextInt((windowMaxSize.Width-posSize.Y) + 1); in makePosZize() 710 posSize.Width = (width < (maxWidth / 2)) ? width + (maxWidth / 2) : width; in makePosZize() [all …]
|
Completed in 34 milliseconds