/aoo41x/main/sd/source/ui/accessibility/ |
H A D | AccessibleTreeNode.cxx | 408 const awt::Rectangle aBBox (getBounds()); in containsPoint() local 410 && (aPoint.X < aBBox.Width) in containsPoint() 412 && (aPoint.Y < aBBox.Height); in containsPoint() 456 awt::Rectangle aBBox; in getBounds() local 476 aBBox.X = aPosition.X(); in getBounds() 477 aBBox.Y = aPosition.Y(); in getBounds() 480 aBBox.Width = aSize.Width(); in getBounds() 481 aBBox.Height = aSize.Height(); in getBounds() 484 return aBBox; in getBounds() 495 return awt::Point(aBBox.X,aBBox.Y); in getLocation() [all …]
|
H A D | AccessibleSlideSorterObject.cxx | 387 Rectangle aBBox ( in getBounds() local 399 aBBox.Intersection(Rectangle( in getBounds() 408 aBBox.Left(), in getBounds() 409 aBBox.Top(), in getBounds() 410 aBBox.GetWidth(), in getBounds() 411 aBBox.GetHeight()); in getBounds() 421 const awt::Rectangle aBBox (getBounds()); in getLocation() local 422 return awt::Point(aBBox.X, aBBox.Y); in getLocation() 458 const awt::Rectangle aBBox (getBounds()); in getSize() local 459 return awt::Size(aBBox.Width,aBBox.Height); in getSize()
|
H A D | AccessiblePageShape.cxx | 163 ::Rectangle aBBox ( in getBounds() 167 aBBox = aBBox.GetIntersection (aParentBBox); in getBounds() 169 aBBox.getX(), in getBounds() 170 aBBox.getY(), in getBounds() 171 aBBox.getWidth(), in getBounds() 172 aBBox.getHeight()); in getBounds()
|
H A D | AccessibleSlideSorterView.cxx | 430 const awt::Rectangle aBBox (getBounds()); in containsPoint() local 432 && (aPoint.X < aBBox.Width) in containsPoint() 434 && (aPoint.Y < aBBox.Height); in containsPoint() 466 awt::Rectangle aBBox; in getBounds() local 473 aBBox.X = aPosition.X(); in getBounds() 474 aBBox.Y = aPosition.Y(); in getBounds() 475 aBBox.Width = aSize.Width(); in getBounds() 476 aBBox.Height = aSize.Height(); in getBounds() 479 return aBBox; in getBounds()
|
H A D | AccessibleViewForwarder.cxx | 108 Rectangle aBBox(static_cast<Window&>(rOutDev).GetWindowExtentsRelative(0L)); in LogicToPixel() local 109 return rOutDev.LogicToPixel (rPoint) + aBBox.TopLeft(); in LogicToPixel() 144 Rectangle aBBox (static_cast<Window&>(rOutDev).GetWindowExtentsRelative(0L)); in PixelToLogic() local 145 return rOutDev.PixelToLogic (rPoint - aBBox.TopLeft()); in PixelToLogic()
|
H A D | AccessibleDocumentViewBase.cxx | 324 awt::Rectangle aBBox (xChildComponent->getBounds()); in getAccessibleAtPoint() local 325 if ( (aPoint.X >= aBBox.X) in getAccessibleAtPoint() 326 && (aPoint.Y >= aBBox.Y) in getAccessibleAtPoint() 327 && (aPoint.X < aBBox.X+aBBox.Width) in getAccessibleAtPoint() 328 && (aPoint.Y < aBBox.Y+aBBox.Height) ) in getAccessibleAtPoint()
|
/aoo41x/main/accessibility/workben/org/openoffice/accessibility/awb/view/ |
H A D | ComponentView.java | 108 com.sun.star.awt.Rectangle aBBox = mxComponent.getBounds(); in Update() local 110 aBBox.X + ", " + aBBox.Y + "," in Update() 111 + aBBox.Width + ", " + aBBox.Height); in Update() 127 if (aBBox.X!=aLocation.X || aBBox.Y!=aLocation.Y) in Update() 130 if (aBBox.Width!=aSize.Width || aBBox.Height!=aSize.Height) in Update()
|
H A D | TextView.java | 292 Rectangle aBBox = mxText.getCharacterBounds (i); in GetTextBoundsString() local 297 aMiddle.X = aBBox.X + (aBBox.Width / 2) - 1; in GetTextBoundsString() 298 aMiddle.Y = aBBox.Y + (aBBox.Height / 2) - 1; in GetTextBoundsString()
|
/aoo41x/main/svx/source/table/ |
H A D | accessiblecell.cxx | 320 awt::Rectangle aBBox (xChildComponent->getBounds()); in getAccessibleAtPoint() local 321 if ( (aPoint.X >= aBBox.X) in getAccessibleAtPoint() 322 && (aPoint.Y >= aBBox.Y) in getAccessibleAtPoint() 323 && (aPoint.X < aBBox.X+aBBox.Width) in getAccessibleAtPoint() 324 && (aPoint.Y < aBBox.Y+aBBox.Height) ) in getAccessibleAtPoint() 366 ::Rectangle aBBox ( x, y, x + aPixelSize.getWidth(), y + aPixelSize.getHeight()); in getBounds() 369 aBBox = aBBox.GetIntersection (aParentBBox); in getBounds() 370 aBoundingBox = awt::Rectangle ( aBBox.getX(), aBBox.getY(), aBBox.getWidth(), aBBox.getHeight()); in getBounds()
|
/aoo41x/main/editeng/source/accessibility/ |
H A D | AccessibleComponentBase.cxx | 101 awt::Rectangle aBBox (getBounds()); in getLocation() local 102 return awt::Point (aBBox.X, aBBox.Y); in getLocation() 120 awt::Rectangle aBBox (getBounds()); in getSize() local 121 return awt::Size (aBBox.Width, aBBox.Height); in getSize()
|
/aoo41x/main/chart2/source/controller/accessibility/ |
H A D | AccessibleChartView.cxx | 94 awt::Rectangle aBBox( xWindow->getPosSize() ); in GetWindowPosSize() local 102 aBBox.X = aVCLPoint.getX(); in GetWindowPosSize() 103 aBBox.Y = aVCLPoint.getY(); in GetWindowPosSize() 107 return aBBox; in GetWindowPosSize() 114 awt::Rectangle aBBox( GetWindowPosSize() ); in GetUpperLeftOnScreen() local 115 aParentPosition.X = aBBox.X; in GetUpperLeftOnScreen() 116 aParentPosition.Y = aBBox.Y; in GetUpperLeftOnScreen()
|
H A D | AccessibleBase.cxx | 795 awt::Rectangle aBBox( getBounds() ); in getLocation() local 796 return awt::Point( aBBox.X, aBBox.Y ); in getLocation() 824 awt::Rectangle aBBox( getBounds() ); in getSize() local 825 return awt::Size( aBBox.Width, aBBox.Height ); in getSize()
|
/aoo41x/main/toolkit/test/accessibility/ |
H A D | AccessibleComponentHandler.java | 86 com.sun.star.awt.Rectangle aBBox = xComponent.getBounds(); in createChild() local 88 "Bounding Box: "+ aBBox.X + ", " + aBBox.Y + "," in createChild() 89 + aBBox.Width + ", " + aBBox.Height, in createChild()
|
/aoo41x/main/sdext/source/presenter/ |
H A D | PresenterPaintManager.cxx | 103 const awt::Rectangle aBBox ( in Invalidate() local 105 mxParentWindowPeer->invalidateRect(aBBox, nInvalidateFlags); in Invalidate() 152 const awt::Rectangle aBBox ( in Invalidate() local 156 rRepaintBox.X + aBBox.X, in Invalidate() 157 rRepaintBox.Y + aBBox.Y, in Invalidate()
|
H A D | PresenterPaneAnimator.cxx | 1166 awt::Rectangle aBBox; in MovePanes() local 1179 aBBox = PresenterGeometryHelper::Union(aBBox, aBox); in MovePanes() 1182 aBBox.X, aBBox.Y, aBBox.X+aBBox.Width, aBBox.Y+aBBox.Height); in MovePanes()
|
H A D | PresenterToolBar.cxx | 2336 awt::Rectangle aBBox (GetBoundingBox()); in Paint() local 2350 if (aBBox.Height >= gnMinimalSeparatorSize + 2*gnSeparatorInset) in Paint() 2352 aBBox.Height -= 2*gnSeparatorInset; in Paint() 2353 aBBox.Y += gnSeparatorInset; in Paint() 2356 PresenterGeometryHelper::CreatePolygon(aBBox, rxCanvas->getDevice()), in Paint() 2399 awt::Rectangle aBBox (GetBoundingBox()); in Paint() local 2413 if (aBBox.Width >= gnMinimalSeparatorSize+2*gnSeparatorInset) in Paint() 2415 aBBox.Width -= 2*gnSeparatorInset; in Paint() 2416 aBBox.X += gnSeparatorInset; in Paint() 2419 PresenterGeometryHelper::CreatePolygon(aBBox, rxCanvas->getDevice()), in Paint()
|
H A D | PresenterSlideSorter.cxx | 728 awt::Rectangle aBBox (mpLayout->GetBoundingBox(nSlideIndex)); in notifyPreviewCreation() local 729 mpPresenterController->GetPaintManager()->Invalidate(mxWindow, aBBox, true); in notifyPreviewCreation()
|
/aoo41x/main/svx/source/accessibility/ |
H A D | AccessibleShape.cxx | 586 awt::Rectangle aBBox (xChildComponent->getBounds()); in getAccessibleAtPoint() local 587 if ( (aPoint.X >= aBBox.X) in getAccessibleAtPoint() 588 && (aPoint.Y >= aBBox.Y) in getAccessibleAtPoint() 589 && (aPoint.X < aBBox.X+aBBox.Width) in getAccessibleAtPoint() 590 && (aPoint.Y < aBBox.Y+aBBox.Height) ) in getAccessibleAtPoint() 717 ::Rectangle aBBox ( in getBounds() 721 aBBox = aBBox.GetIntersection (aParentBBox); in getBounds() 723 aBBox.getX(), in getBounds() 724 aBBox.getY(), in getBounds() 725 aBBox.getWidth(), in getBounds() [all …]
|
H A D | GraphCtlAccessibleContext.cxx | 986 Rectangle aBBox(mpControl->GetWindowExtentsRelative(NULL)); in LogicToPixel() local 987 return mpControl->LogicToPixel (rPoint) + aBBox.TopLeft(); in LogicToPixel()
|
/aoo41x/main/sd/source/ui/notes/ |
H A D | NotesDockingWindow.cxx | 79 Rectangle aBBox; in Paint() local 82 if (GetTextBoundRect (aBBox, aString)) in Paint() 84 (aWindowSize.Width()-aBBox.GetWidth())/2, in Paint() 85 (aWindowSize.Height()-aBBox.GetHeight())/2); in Paint()
|
/aoo41x/main/vcl/unx/generic/printergfx/ |
H A D | text_gfx.cxx | 364 CharacterMetric aBBox; in DrawText() local 365 pFontMap[n] = getCharMetric (aFont, pEffectiveStr[n], &aBBox); in DrawText() 366 pCharWidth[n] = getCharWidth (mbTextVertical, pEffectiveStr[n], &aBBox); in DrawText() 722 CharacterMetric aBBox; in GetCharWidth() local 723 getCharMetric (aFont, n + nFrom, &aBBox); in GetCharWidth() 724 pWidthArray[n] = getCharWidth (mbTextVertical, n + nFrom, &aBBox); in GetCharWidth()
|
/aoo41x/main/sd/source/ui/sidebar/ |
H A D | MasterPagesSelector.cxx | 267 Rectangle aBBox (PreviewValueSet::GetItemRect(nIndex)); in Command() local 268 aPosition = aBBox.Center(); in Command()
|
H A D | LayoutMenu.cxx | 727 Rectangle aBBox (GetItemRect(GetSelectItemId())); in Command() local 728 aMenuPosition = aBBox.Center(); in Command()
|
/aoo41x/main/sd/source/ui/slidesorter/controller/ |
H A D | SlideSorterController.cxx | 453 Rectangle aBBox ( in Command() local 458 aMenuLocation = aBBox.Center(); in Command()
|