Lines Matching refs:pA

1194 					const MetaPixelAction* pA = (const MetaPixelAction *) pMA;  in WriteRecords()  local
1197 WMFRecord_SetPixel( pA->GetPoint(), pA->GetColor() ); in WriteRecords()
1203 const MetaPointAction* pA = (const MetaPointAction*) pMA; in WriteRecords() local
1204 const Point& rPt = pA->GetPoint(); in WriteRecords()
1214 const MetaLineAction* pA = (const MetaLineAction *) pMA; in WriteRecords() local
1215 if(pA->GetLineInfo().IsDefault()) in WriteRecords()
1217 aSrcLineInfo = pA->GetLineInfo(); in WriteRecords()
1219 WMFRecord_MoveTo( pA->GetStartPoint() ); in WriteRecords()
1220 WMFRecord_LineTo( pA->GetEndPoint() ); in WriteRecords()
1226 … aPolygon.append(basegfx::B2DPoint(pA->GetStartPoint().X(), pA->GetStartPoint().Y())); in WriteRecords()
1227 … aPolygon.append(basegfx::B2DPoint(pA->GetEndPoint().X(), pA->GetEndPoint().Y())); in WriteRecords()
1228 HandleLineInfoPolyPolygons(pA->GetLineInfo(), aPolygon); in WriteRecords()
1235 const MetaRectAction* pA = (const MetaRectAction*) pMA; in WriteRecords() local
1238 WMFRecord_Rectangle( pA->GetRect() ); in WriteRecords()
1244 const MetaRoundRectAction* pA = (const MetaRoundRectAction*) pMA; in WriteRecords() local
1247 WMFRecord_RoundRect( pA->GetRect(), pA->GetHorzRound(), pA->GetVertRound() ); in WriteRecords()
1253 const MetaEllipseAction* pA = (const MetaEllipseAction*) pMA; in WriteRecords() local
1256 WMFRecord_Ellipse( pA->GetRect() ); in WriteRecords()
1262 const MetaArcAction* pA = (const MetaArcAction*) pMA; in WriteRecords() local
1265 WMFRecord_Arc( pA->GetRect(),pA->GetStartPoint(),pA->GetEndPoint() ); in WriteRecords()
1271 const MetaPieAction* pA = (const MetaPieAction*) pMA; in WriteRecords() local
1274 WMFRecord_Pie( pA->GetRect(), pA->GetStartPoint(), pA->GetEndPoint() ); in WriteRecords()
1281 const MetaChordAction* pA = (const MetaChordAction*) pMA; in WriteRecords() local
1284 WMFRecord_Chord( pA->GetRect(), pA->GetStartPoint(), pA->GetEndPoint() ); in WriteRecords()
1290 const MetaPolyLineAction* pA = (const MetaPolyLineAction*) pMA; in WriteRecords() local
1291 const Polygon& rPoly = pA->GetPolygon(); in WriteRecords()
1295 if(pA->GetLineInfo().IsDefault()) in WriteRecords()
1297 aSrcLineInfo = pA->GetLineInfo(); in WriteRecords()
1304 HandleLineInfoPolyPolygons(pA->GetLineInfo(), rPoly.getB2DPolygon()); in WriteRecords()
1312 const MetaPolygonAction* pA = (const MetaPolygonAction*) pMA; in WriteRecords() local
1315 WMFRecord_Polygon( pA->GetPolygon() ); in WriteRecords()
1321 const MetaPolyPolygonAction* pA = (const MetaPolyPolygonAction*) pMA; in WriteRecords() local
1324 WMFRecord_PolyPolygon( pA->GetPolyPolygon() ); in WriteRecords()
1330 const MetaTextRectAction * pA = (const MetaTextRectAction*)pMA; in WriteRecords() local
1331 String aTemp( pA->GetText() ); in WriteRecords()
1335 Point aPos( pA->GetRect().TopLeft() ); in WriteRecords()
1343 const MetaTextAction * pA = (const MetaTextAction*) pMA; in WriteRecords() local
1344 String aTemp( pA->GetText(), pA->GetIndex(), pA->GetLen() ); in WriteRecords()
1347 if ( !WMFRecord_Escape_Unicode( pA->GetPoint(), aTemp, NULL ) ) in WriteRecords()
1348 WMFRecord_TextOut( pA->GetPoint(), aTemp ); in WriteRecords()
1354 const MetaTextArrayAction* pA = (const MetaTextArrayAction*) pMA; in WriteRecords() local
1356 String aTemp( pA->GetText(), pA->GetIndex(), pA->GetLen() ); in WriteRecords()
1359 if ( !WMFRecord_Escape_Unicode( pA->GetPoint(), aTemp, pA->GetDXArray() ) ) in WriteRecords()
1360 WMFRecord_ExtTextOut( pA->GetPoint(), aTemp, pA->GetDXArray() ); in WriteRecords()
1366 const MetaStretchTextAction* pA = (const MetaStretchTextAction *) pMA; in WriteRecords() local
1367 String aTemp( pA->GetText(), pA->GetIndex(), pA->GetLen() ); in WriteRecords()
1377 pDXAry[ i ] = pDXAry[ i ] * (sal_Int32)pA->GetWidth() / nNormSize; in WriteRecords()
1378 if ( ( nLen <= 1 ) || ( (sal_Int32)pA->GetWidth() == nNormSize ) ) in WriteRecords()
1382 if ( !WMFRecord_Escape_Unicode( pA->GetPoint(), aTemp, pDXAry ) ) in WriteRecords()
1383 WMFRecord_ExtTextOut( pA->GetPoint(), aTemp, pDXAry ); in WriteRecords()
1390 const MetaBmpAction* pA = (const MetaBmpAction *) pMA; in WriteRecords() local
1391 WMFRecord_StretchDIB( pA->GetPoint(), pA->GetBitmap().GetSizePixel(), pA->GetBitmap() ); in WriteRecords()
1397 const MetaBmpScaleAction* pA = (const MetaBmpScaleAction*) pMA; in WriteRecords() local
1398 WMFRecord_StretchDIB( pA->GetPoint(), pA->GetSize(), pA->GetBitmap() ); in WriteRecords()
1404 const MetaBmpScalePartAction* pA = (const MetaBmpScalePartAction*) pMA; in WriteRecords() local
1405 Bitmap aTmp( pA->GetBitmap() ); in WriteRecords()
1407 if( aTmp.Crop( Rectangle( pA->GetSrcPoint(), pA->GetSrcSize() ) ) ) in WriteRecords()
1408 WMFRecord_StretchDIB( pA->GetDestPoint(), pA->GetDestSize(), aTmp ); in WriteRecords()
1414 const MetaBmpExAction* pA = (const MetaBmpExAction *) pMA; in WriteRecords() local
1415 Bitmap aBmp( pA->GetBitmapEx().GetBitmap() ); in WriteRecords()
1416 Bitmap aMsk( pA->GetBitmapEx().GetMask() ); in WriteRecords()
1422 WMFRecord_StretchDIB( pA->GetPoint(), aMsk.GetSizePixel(), aBmp, W_SRCPAINT ); in WriteRecords()
1423 WMFRecord_StretchDIB( pA->GetPoint(), aBmp.GetSizePixel(), aBmp, W_SRCAND ); in WriteRecords()
1426 WMFRecord_StretchDIB( pA->GetPoint(), aBmp.GetSizePixel(), aBmp ); in WriteRecords()
1432 const MetaBmpExScaleAction* pA = (const MetaBmpExScaleAction*) pMA; in WriteRecords() local
1433 Bitmap aBmp( pA->GetBitmapEx().GetBitmap() ); in WriteRecords()
1434 Bitmap aMsk( pA->GetBitmapEx().GetMask() ); in WriteRecords()
1440 WMFRecord_StretchDIB( pA->GetPoint(), pA->GetSize(), aMsk, W_SRCPAINT ); in WriteRecords()
1441 WMFRecord_StretchDIB( pA->GetPoint(), pA->GetSize(), aBmp, W_SRCAND ); in WriteRecords()
1444 WMFRecord_StretchDIB( pA->GetPoint(), pA->GetSize(), aBmp ); in WriteRecords()
1450 const MetaBmpExScalePartAction* pA = (const MetaBmpExScalePartAction*) pMA; in WriteRecords() local
1451 BitmapEx aBmpEx( pA->GetBitmapEx() ); in WriteRecords()
1452 aBmpEx.Crop( Rectangle( pA->GetSrcPoint(), pA->GetSrcSize() ) ); in WriteRecords()
1460 WMFRecord_StretchDIB( pA->GetDestPoint(), pA->GetDestSize(), aMsk, W_SRCPAINT ); in WriteRecords()
1461 WMFRecord_StretchDIB( pA->GetDestPoint(), pA->GetDestSize(), aBmp, W_SRCAND ); in WriteRecords()
1464 WMFRecord_StretchDIB( pA->GetDestPoint(), pA->GetDestSize(), aBmp ); in WriteRecords()
1470 const MetaGradientAction* pA = (const MetaGradientAction*) pMA; in WriteRecords() local
1473 pVirDev->AddGradientActions( pA->GetRect(), pA->GetGradient(), aTmpMtf ); in WriteRecords()
1480 const MetaHatchAction* pA = (const MetaHatchAction*) pMA; in WriteRecords() local
1483 pVirDev->AddHatchActions( pA->GetPolyPolygon(), pA->GetHatch(), aTmpMtf ); in WriteRecords()
1490 const MetaWallpaperAction* pA = (const MetaWallpaperAction*) pMA; in WriteRecords() local
1491 const Color& rColor = pA->GetWallpaper().GetColor(); in WriteRecords()
1499 WMFRecord_Rectangle( pA->GetRect() ); in WriteRecords()
1507 const MetaISectRectClipRegionAction* pA = (const MetaISectRectClipRegionAction*) pMA; in WriteRecords() local
1508 WMFRecord_IntersectClipRect( pA->GetRect() ); in WriteRecords()
1514 const MetaLineColorAction* pA = (const MetaLineColorAction*) pMA; in WriteRecords() local
1516 if( pA->IsSetting() ) in WriteRecords()
1517 aSrcLineColor = pA->GetColor(); in WriteRecords()
1525 const MetaFillColorAction* pA = (const MetaFillColorAction*) pMA; in WriteRecords() local
1527 if( pA->IsSetting() ) in WriteRecords()
1528 aSrcFillColor = pA->GetColor(); in WriteRecords()
1536 const MetaTextColorAction* pA = (const MetaTextColorAction*) pMA; in WriteRecords() local
1537 aSrcTextColor = pA->GetColor(); in WriteRecords()
1543 const MetaTextFillColorAction* pA = (const MetaTextFillColorAction*) pMA; in WriteRecords() local
1544 if( pA->IsSetting() ) in WriteRecords()
1545 aSrcFont.SetFillColor( pA->GetColor() ); in WriteRecords()
1553 const MetaTextAlignAction* pA = (const MetaTextAlignAction*) pMA; in WriteRecords() local
1554 eSrcTextAlign = pA->GetTextAlign(); in WriteRecords()
1560 const MetaMapModeAction* pA = (const MetaMapModeAction*) pMA; in WriteRecords() local
1562 if (aSrcMapMode!=pA->GetMapMode()) in WriteRecords()
1564 if( pA->GetMapMode().GetMapUnit() == MAP_RELATIVE ) in WriteRecords()
1566 MapMode aMM = pA->GetMapMode(); in WriteRecords()
1607 aSrcMapMode=pA->GetMapMode(); in WriteRecords()
1614 const MetaFontAction* pA = (const MetaFontAction*) pMA; in WriteRecords() local
1615 aSrcFont = pA->GetFont(); in WriteRecords()
1630 const MetaPushAction* pA = (const MetaPushAction*)pMA; in WriteRecords() local
1633 pAt->nFlags = pA->GetFlags(); in WriteRecords()
1692 const MetaEPSAction* pA = (const MetaEPSAction*)pMA; in WriteRecords() local
1693 const GDIMetaFile aGDIMetaFile( pA->GetSubstitute() ); in WriteRecords()
1702 WMFRecord_StretchDIB( pA->GetPoint(), pA->GetSize(), pBmpScaleAction->GetBitmap() ); in WriteRecords()
1711 const MetaRasterOpAction* pA = (const MetaRasterOpAction*) pMA; in WriteRecords() local
1712 eSrcRasterOp=pA->GetRasterOp(); in WriteRecords()
1726 const MetaFloatTransparentAction* pA = (const MetaFloatTransparentAction*) pMA; in WriteRecords() local
1728 GDIMetaFile aTmpMtf( pA->GetGDIMetaFile() ); in WriteRecords()
1731 const Point aDestPt( pA->GetPoint() ); in WriteRecords()
1732 const Size aDestSize( pA->GetSize() ); in WriteRecords()