Home
last modified time | relevance | path

Searched refs:aBBox (Results 1 – 24 of 24) sorted by path

/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/view/
H A DComponentView.java108 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 DTextView.java292 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()
/trunk/main/chart2/source/controller/accessibility/
H A DAccessibleBase.cxx795 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()
H A DAccessibleChartView.cxx94 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()
/trunk/main/editeng/source/accessibility/
H A DAccessibleComponentBase.cxx101 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()
/trunk/main/sd/source/ui/accessibility/
H A DAccessibleDocumentViewBase.cxx324 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()
H A DAccessiblePageShape.cxx163 ::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 DAccessibleSlideSorterObject.cxx387 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 DAccessibleSlideSorterView.cxx430 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 DAccessibleTreeNode.cxx408 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 DAccessibleViewForwarder.cxx108 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()
/trunk/main/sd/source/ui/notes/
H A DNotesDockingWindow.cxx79 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()
/trunk/main/sd/source/ui/sidebar/
H A DLayoutMenu.cxx727 Rectangle aBBox (GetItemRect(GetSelectItemId())); in Command() local
728 aMenuPosition = aBBox.Center(); in Command()
H A DMasterPagesSelector.cxx267 Rectangle aBBox (PreviewValueSet::GetItemRect(nIndex)); in Command() local
268 aPosition = aBBox.Center(); in Command()
/trunk/main/sd/source/ui/slidesorter/controller/
H A DSlideSorterController.cxx453 Rectangle aBBox ( in Command() local
458 aMenuLocation = aBBox.Center(); in Command()
/trunk/main/sdext/source/presenter/
H A DPresenterPaintManager.cxx103 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 DPresenterPaneAnimator.cxx1166 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 DPresenterSlideSorter.cxx728 awt::Rectangle aBBox (mpLayout->GetBoundingBox(nSlideIndex)); in notifyPreviewCreation() local
729 mpPresenterController->GetPaintManager()->Invalidate(mxWindow, aBBox, true); in notifyPreviewCreation()
H A DPresenterToolBar.cxx2336 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()
/trunk/main/svx/source/accessibility/
H A DAccessibleShape.cxx586 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 DGraphCtlAccessibleContext.cxx986 Rectangle aBBox(mpControl->GetWindowExtentsRelative(NULL)); in LogicToPixel() local
987 return mpControl->LogicToPixel (rPoint) + aBBox.TopLeft(); in LogicToPixel()
/trunk/main/svx/source/table/
H A Daccessiblecell.cxx320 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()
/trunk/main/toolkit/test/accessibility/
H A DAccessibleComponentHandler.java86 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()
/trunk/main/vcl/unx/generic/printergfx/
H A Dtext_gfx.cxx364 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()

Completed in 194 milliseconds