Lines Matching refs:rRect

169 void OutputDevice::ImplDrawLinearGradient( const Rectangle& rRect,  in ImplDrawLinearGradient()  argument
174 Rectangle aRect = rRect; in ImplDrawLinearGradient()
192 Point aCenter = rRect.Center(); in ImplDrawLinearGradient()
393 void OutputDevice::ImplDrawComplexGradient( const Rectangle& rRect, in ImplDrawComplexGradient() argument
406 Rectangle aRect( rRect ); in ImplDrawComplexGradient()
535 pPolyPoly->Insert( aPoly = rRect ); in ImplDrawComplexGradient()
541 Rectangle aExtRect( rRect ); in ImplDrawComplexGradient()
648 void OutputDevice::DrawGradient( const Rectangle& rRect, in DrawGradient() argument
678 DrawRect( rRect ); in DrawGradient()
713 mpMetaFile->AddAction( new MetaGradientAction( rRect, aGradient ) ); in DrawGradient()
719 Rectangle aRect( ImplLogicToDevicePixel( rRect ) ); in DrawGradient()
727 IntersectClipRegion( rRect ); in DrawGradient()
773 mpAlphaVDev->ImplFillOpaqueRectangle( rRect ); in DrawGradient()
1003 void OutputDevice::AddGradientActions( const Rectangle& rRect, const Gradient& rGradient, in AddGradientActions() argument
1009 Rectangle aRect( rRect ); in AddGradientActions()
1224 void OutputDevice::ImplCalcHatchValues( const Rectangle& rRect, long nDist, sal_uInt16 nAngle10, in ImplCalcHatchValues() argument
1234 aRef = ( !IsRefPoint() ? rRect.TopLeft() : GetRefPoint() ); in ImplCalcHatchValues()
1239 rPt1 = rRect.TopLeft(); in ImplCalcHatchValues()
1240 rPt2 = rRect.TopRight(); in ImplCalcHatchValues()
1241 rEndPt1 = rRect.BottomLeft(); in ImplCalcHatchValues()
1243 if( aRef.Y() <= rRect.Top() ) in ImplCalcHatchValues()
1244 nOffset = ( ( rRect.Top() - aRef.Y() ) % nDist ); in ImplCalcHatchValues()
1246 nOffset = ( nDist - ( ( aRef.Y() - rRect.Top() ) % nDist ) ); in ImplCalcHatchValues()
1254 rPt1 = rRect.TopLeft(); in ImplCalcHatchValues()
1255 rPt2 = rRect.BottomLeft(); in ImplCalcHatchValues()
1256 rEndPt1 = rRect.TopRight(); in ImplCalcHatchValues()
1258 if( aRef.X() <= rRect.Left() ) in ImplCalcHatchValues()
1259 nOffset = ( rRect.Left() - aRef.X() ) % nDist; in ImplCalcHatchValues()
1261 nOffset = nDist - ( ( aRef.X() - rRect.Left() ) % nDist ); in ImplCalcHatchValues()
1270 const long nYOff = FRound( ( rRect.Right() - rRect.Left() ) * fTan ); in ImplCalcHatchValues()
1277 rPt1 = rRect.TopLeft(); in ImplCalcHatchValues()
1278 rPt2 = Point( rRect.Right(), rRect.Top() - nYOff ); in ImplCalcHatchValues()
1279 rEndPt1 = Point( rRect.Left(), rRect.Bottom() + nYOff ); in ImplCalcHatchValues()
1284 rPt1 = rRect.TopRight(); in ImplCalcHatchValues()
1285 rPt2 = Point( rRect.Left(), rRect.Top() - nYOff ); in ImplCalcHatchValues()
1286 rEndPt1 = Point( rRect.Right(), rRect.Bottom() + nYOff ); in ImplCalcHatchValues()
1302 const long nXOff = FRound( ( rRect.Bottom() - rRect.Top() ) / fTan ); in ImplCalcHatchValues()
1309 rPt1 = rRect.TopLeft(); in ImplCalcHatchValues()
1310 rPt2 = Point( rRect.Left() - nXOff, rRect.Bottom() ); in ImplCalcHatchValues()
1311 rEndPt1 = Point( rRect.Right() + nXOff, rRect.Top() ); in ImplCalcHatchValues()
1316 rPt1 = rRect.BottomLeft(); in ImplCalcHatchValues()
1317 rPt2 = Point( rRect.Left() - nXOff, rRect.Top() ); in ImplCalcHatchValues()
1318 rEndPt1 = Point( rRect.Right() + nXOff, rRect.Bottom() ); in ImplCalcHatchValues()