/trunk/main/embeddedobj/test/Container1/ |
H A D | PaintThread.java | 57 …public static boolean interceptedRects( com.sun.star.awt.Rectangle aRect1, com.sun.star.awt.Rectan… in interceptedRects() argument 59 return ( ( aRect1.X <= aRect2.X && aRect2.X <= aRect1.X + aRect1.Width in interceptedRects() 60 || aRect1.X <= aRect2.X + aRect2.Width && aRect2.X + aRect2.Width <= aRect1.X + aRect1.Width in interceptedRects() 61 || aRect2.X <= aRect1.X && aRect1.X <= aRect2.X + aRect2.Width in interceptedRects() 62 || aRect2.X <= aRect1.X + aRect1.Width && aRect1.X + aRect1.Width <= aRect2.X + aRect2.Width ) in interceptedRects() 63 && ( aRect1.Y <= aRect2.Y && aRect2.Y <= aRect1.Y + aRect1.Height in interceptedRects() 64 || aRect1.Y <= aRect2.Y + aRect2.Height && aRect2.Y + aRect2.Height <= aRect1.Y + aRect1.Height in interceptedRects() 65 || aRect2.Y <= aRect1.Y && aRect1.Y <= aRect2.Y + aRect2.Height in interceptedRects() 66 …|| aRect2.Y <= aRect1.Y + aRect1.Height && aRect1.Y + aRect1.Height <= aRect2.Y + aRect2.Height ) … in interceptedRects()
|
/trunk/main/svx/source/svdraw/ |
H A D | svdotxdr.cxx | 207 aRect1.Justify(); in BegCreate() 208 rStat.SetActionRect(aRect1); in BegCreate() 209 aRect = aRect1; in BegCreate() 215 Rectangle aRect1; in MovCreate() local 216 rStat.TakeCreateRect(aRect1); in MovCreate() 217 ImpJustifyRect(aRect1); in MovCreate() 218 rStat.SetActionRect(aRect1); in MovCreate() 219 aRect=aRect1; // fuer ObjName in MovCreate() 254 Rectangle aRect1; in TakeCreatePoly() local 256 aRect1.Justify(); in TakeCreatePoly() [all …]
|
H A D | svdorect.cxx | 476 Rectangle aRect1; in TakeCreatePoly() local 477 rDrag.TakeCreateRect(aRect1); in TakeCreatePoly() 478 aRect1.Justify(); in TakeCreatePoly() 481 aRetval.append(ImpCalcXPoly(aRect1,GetEckenradius()).getB2DPolygon()); in TakeCreatePoly()
|
H A D | svdobj.cxx | 1403 Rectangle aRect1(rStat.GetStart(), rStat.GetNow()); in BegCreate() local 1404 aRect1.Justify(); in BegCreate() 1405 rStat.SetActionRect(aRect1); in BegCreate() 1406 aOutRect = aRect1; in BegCreate() 1450 Rectangle aRect1; in TakeCreatePoly() local 1451 rDrag.TakeCreateRect(aRect1); in TakeCreatePoly() 1452 aRect1.Justify(); in TakeCreatePoly() 1455 const basegfx::B2DRange aRange(aRect1.Left(), aRect1.Top(), aRect1.Right(), aRect1.Bottom()); in TakeCreatePoly()
|
H A D | svdocirc.cxx | 692 Rectangle aRect1(rStat.GetStart(), rStat.GetNow()); in BegCreate() local 693 aRect1.Justify(); in BegCreate() 694 rStat.SetActionRect(aRect1); in BegCreate() 695 aRect = aRect1; in BegCreate()
|
H A D | svdoashp.cxx | 2450 Rectangle aRect1; in DragCreateObject() local 2451 rStat.TakeCreateRect( aRect1 ); in DragCreateObject() 2460 SetMirroredX( aRect1.Left() > aRect1.Right() ); in DragCreateObject() 2462 aRect1 = Rectangle( rStat.GetNow(), Size( nDefaultObjectSizeWidth, nDefaultObjectSizeHeight ) ); in DragCreateObject() 2467 aRect1.Move( aRect.Left() - nHandlePos, 0 ); in DragCreateObject() 2470 ImpJustifyRect( aRect1 ); in DragCreateObject() 2471 rStat.SetActionRect( aRect1 ); in DragCreateObject() 2472 aRect = aRect1; in DragCreateObject()
|
/trunk/main/svx/source/engine3d/ |
H A D | scene3d.cxx | 851 aRect1.Justify(); in BegCreate() 852 rStat.SetActionRect(aRect1); in BegCreate() 853 NbcSetSnapRect(aRect1); in BegCreate() 859 Rectangle aRect1; in MovCreate() local 860 rStat.TakeCreateRect(aRect1); in MovCreate() 861 aRect1.Justify(); in MovCreate() 862 rStat.SetActionRect(aRect1); in MovCreate() 863 NbcSetSnapRect(aRect1); in MovCreate() 871 Rectangle aRect1; in EndCreate() local 873 aRect1.Justify(); in EndCreate() [all …]
|
/trunk/main/embeddedobj/source/commonembedding/ |
H A D | inplaceobj.cxx | 34 awt::Rectangle GetRectangleInterception( const awt::Rectangle& aRect1, const awt::Rectangle& aRect2… 35 sal_Bool RectanglesEqual( const awt::Rectangle& aRect1, const awt::Rectangle& aRect2 ) in RectanglesEqual() argument 37 return ( aRect1.X == aRect2.X in RectanglesEqual() 38 && aRect1.Y == aRect2.Y in RectanglesEqual() 39 && aRect1.Width == aRect2.Width in RectanglesEqual() 40 && aRect1.Height == aRect2.Height ); in RectanglesEqual()
|
H A D | embedobj.cxx | 57 awt::Rectangle GetRectangleInterception( const awt::Rectangle& aRect1, const awt::Rectangle& aRect2… in GetRectangleInterception() argument 61 OSL_ENSURE( aRect1.Width >= 0 && aRect2.Width >= 0 && aRect1.Height >= 0 && aRect2.Height >= 0, in GetRectangleInterception() 64 aResult.X = aRect1.X > aRect2.X ? aRect1.X : aRect2.X; in GetRectangleInterception() 65 aResult.Y = aRect1.Y > aRect2.Y ? aRect1.Y : aRect2.Y; in GetRectangleInterception() 67 sal_Int32 nRight1 = aRect1.X + aRect1.Width; in GetRectangleInterception() 68 sal_Int32 nBottom1 = aRect1.Y + aRect1.Height; in GetRectangleInterception()
|
/trunk/main/svtools/source/control/ |
H A D | ruler.cxx | 1031 Rectangle aRect1, aRect2, aRect3; in ImplDrawRulerTab() local 1038 aRect1.Bottom() = rPos.Y(); in ImplDrawRulerTab() 1047 aRect1.Left() = rPos.X(); in ImplDrawRulerTab() 1048 aRect1.Top() = rPos.Y() - RULER_TAB_HEIGHT2 + 1; in ImplDrawRulerTab() 1049 aRect1.Right() = rPos.X() + RULER_TAB_WIDTH - 1; in ImplDrawRulerTab() 1050 aRect1.Bottom() = rPos.Y(); in ImplDrawRulerTab() 1058 aRect1.Left() = rPos.X() - RULER_TAB_WIDTH + 1; in ImplDrawRulerTab() 1060 aRect1.Right() = rPos.X(); in ImplDrawRulerTab() 1061 aRect1.Bottom() = rPos.Y(); in ImplDrawRulerTab() 1072 aRect1.Bottom() = rPos.Y(); in ImplDrawRulerTab() [all …]
|
H A D | valueset.cxx | 976 Rectangle aRect1; in ImplDrawDropPos() local 979 aRect1 = aRect2; in ImplDrawDropPos() 984 aRect1 = mpImpl->mpItemList->GetObject( nItemPos-1 )->maRect; in ImplDrawDropPos() 991 if ( !aRect1.IsEmpty() || !aRect2.IsEmpty() ) in ImplDrawDropPos() 1004 if ( !aRect1.IsEmpty() ) in ImplDrawDropPos() 1006 Point aPos = aRect1.RightCenter(); in ImplDrawDropPos() 1023 if ( !aRect1.IsEmpty() ) in ImplDrawDropPos() 1025 Point aPos = aRect1.TopLeft(); in ImplDrawDropPos() 1026 Size aSize = aRect1.GetSize(); in ImplDrawDropPos()
|
H A D | headbar.cxx | 286 Rectangle aRect1 = ImplGetItemRect( nStartPos ); in ImplInvertDrag() local 288 Point aStartPos = aRect1.Center(); in ImplInvertDrag()
|
/trunk/main/svx/source/table/ |
H A D | svdotable.cxx | 2604 aRect1.Justify(); in BegCreate() 2605 rStat.SetActionRect(aRect1); in BegCreate() 2606 aRect = aRect1; in BegCreate() 2614 Rectangle aRect1; in MovCreate() local 2615 rStat.TakeCreateRect(aRect1); in MovCreate() 2616 ImpJustifyRect(aRect1); in MovCreate() 2617 rStat.SetActionRect(aRect1); in MovCreate() 2618 aRect=aRect1; // fuer ObjName in MovCreate() 2648 Rectangle aRect1; in TakeCreatePoly() local 2650 aRect1.Justify(); in TakeCreatePoly() [all …]
|
/trunk/main/vcl/source/window/ |
H A D | decoview.cxx | 1029 Rectangle aRect1; in ImplDrawButton() local 1031 aRect1.Left() = aFillRect.Left(); in ImplDrawButton() 1032 aRect1.Right() = aFillRect.Right(), in ImplDrawButton() 1037 aRect1.Top() = aFillRect.Top(); in ImplDrawButton() 1038 aRect1.Bottom() = aBrdSize.Height()-1; in ImplDrawButton() 1046 aRect1.Top() = aFillRect.Bottom()-aBrdSize.Height()+1; in ImplDrawButton() 1047 aRect1.Bottom() = aFillRect.Bottom(); in ImplDrawButton() 1053 pDev->DrawRect( aRect1 ); in ImplDrawButton()
|
H A D | window2.cxx | 283 Rectangle aRect1( Point( mnOutOffX, mnOutOffY ), in ImplInvalidateAllOverlapBackgrounds() local 287 aRect1.Intersection( aRect2 ); in ImplInvalidateAllOverlapBackgrounds() 288 if ( !aRect1.IsEmpty() ) in ImplInvalidateAllOverlapBackgrounds() 292 pWindow->mpWindowImpl->mpOverlapData->mpSaveBackRgn->Exclude( aRect1 ); in ImplInvalidateAllOverlapBackgrounds()
|
/trunk/main/editeng/source/accessibility/ |
H A D | AccessibleEditableTextPara.cxx | 1646 awt::Rectangle aRect1( getCharacterBounds(nIndex) ); in getIndexAtPoint() local 1647 Rectangle aRect2( aRect1.X, aRect1.Y, in getIndexAtPoint() 1648 aRect1.Width + aRect1.X, aRect1.Height + aRect1.Y ); in getIndexAtPoint()
|
/trunk/main/desktop/source/deployment/gui/ |
H A D | dp_gui_dialog2.cxx | 1179 Rectangle aRect1( m_aGetExtensions.GetPosPixel(), m_aGetExtensions.GetSizePixel() ); in Resize() local 1182 aFTSize.Width() = ( aRect2.Left() - aRect1.Right() ) - 2*RSC_SP_DLG_INNERBORDER_LEFT; in Resize() 1183 aPos.X() = aRect1.Right() + RSC_SP_DLG_INNERBORDER_LEFT; in Resize()
|
/trunk/main/basegfx/test/ |
H A D | basegfx2d.cxx | 917 B2DPolygon aRect1( in TEST_F() local 964 ASSERT_TRUE(tools::isRectangle( aRect1 )) << "checking rectangle-ness of rectangle 1"; in TEST_F()
|
/trunk/main/sw/source/ui/misc/ |
H A D | outline.cxx | 1248 … Rectangle aRect1(Point(nTextXPos, nYStart + nFontHeight / 2), Size(aSize.Width() / 2, 2)); in Paint() local 1250 pVDev->DrawRect( aRect1 ); in Paint()
|
/trunk/main/cui/source/tabpages/ |
H A D | numpages.cxx | 2851 Rectangle aRect1(Point(nTextXPos, nYStart + nFontHeight / 2), Size(aSize.Width() / 2, 2)); in Paint() local 2853 pVDev->DrawRect( aRect1 ); in Paint() 2958 … Rectangle aRect1(Point(nXStart + nTextOffset, nYStart + nTopOffset), Size(nWidth, nRectHeight)); in Paint() local 2959 pVDev->DrawRect(aRect1); in Paint()
|
/trunk/main/chart2/source/view/axes/ |
H A D | VCartesianAxis.cxx | 151 …::basegfx::B2IRectangle aRect1( BaseGFXHelper::makeRectangle(xShape1->getPosition(),ShapeFactory::… in doesOverlap() 153 return aRect1.overlaps(aRect2); in doesOverlap()
|
/trunk/main/vcl/source/gdi/ |
H A D | outdev3.cxx | 4449 Rectangle aRect1; in ImplDrawEmphasisMarks() local 4462 aRect1, aRect2, in ImplDrawEmphasisMarks() 4510 aPolyPoly, bPolyLine, aRect1, aRect2 ); in ImplDrawEmphasisMarks()
|