Lines Matching refs:pAct

1445 				MetaPixelAction* pAct = (MetaPixelAction*) pAction;  in ImplWriteActions()  local
1449 rOStm << pAct->GetPoint(); in ImplWriteActions()
1450 ImplWriteColor( rOStm, pAct->GetColor() ); in ImplWriteActions()
1457 MetaPointAction* pAct = (MetaPointAction*) pAction; in ImplWriteActions() local
1461 rOStm << pAct->GetPoint(); in ImplWriteActions()
1468 MetaLineAction* pAct = (MetaLineAction*) pAction; in ImplWriteActions() local
1469 const LineInfo& rInfo = pAct->GetLineInfo(); in ImplWriteActions()
1508 rOStm << pAct->GetStartPoint(); in ImplWriteActions()
1509 rOStm << pAct->GetEndPoint(); in ImplWriteActions()
1537 MetaRectAction* pAct = (MetaRectAction*) pAction; in ImplWriteActions() local
1541 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1550 MetaRoundRectAction* pAct = (MetaRoundRectAction*) pAction; in ImplWriteActions() local
1554 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1555 rOStm << (sal_Int32) pAct->GetHorzRound(); in ImplWriteActions()
1556 rOStm << (sal_Int32) pAct->GetVertRound(); in ImplWriteActions()
1563 MetaEllipseAction* pAct = (MetaEllipseAction*) pAction; in ImplWriteActions() local
1567 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1574 MetaArcAction* pAct = (MetaArcAction*) pAction; in ImplWriteActions() local
1578 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1579 rOStm << pAct->GetStartPoint(); in ImplWriteActions()
1580 rOStm << pAct->GetEndPoint(); in ImplWriteActions()
1587 MetaPieAction* pAct = (MetaPieAction*) pAction; in ImplWriteActions() local
1591 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1592 rOStm << pAct->GetStartPoint(); in ImplWriteActions()
1593 rOStm << pAct->GetEndPoint(); in ImplWriteActions()
1600 MetaChordAction* pAct = (MetaChordAction*) pAction; in ImplWriteActions() local
1601 Polygon aChordPoly( pAct->GetRect(), pAct->GetStartPoint(), in ImplWriteActions()
1602 pAct->GetEndPoint(), POLY_CHORD ); in ImplWriteActions()
1618 MetaPolyLineAction* pAct = (MetaPolyLineAction*) pAction; in ImplWriteActions() local
1623 pAct->GetPolygon().AdaptiveSubdivide(aSimplePoly); in ImplWriteActions()
1624 const LineInfo& rInfo = pAct->GetLineInfo(); in ImplWriteActions()
1673 const PolyPolygon aPolyPolygon(pAct->GetPolygon()); in ImplWriteActions()
1704 MetaPolygonAction* pAct = (MetaPolygonAction*)pAction; in ImplWriteActions() local
1709 pAct->GetPolygon().AdaptiveSubdivide(aSimplePoly); in ImplWriteActions()
1721 const PolyPolygon aPolyPolygon(pAct->GetPolygon()); in ImplWriteActions()
1731 MetaPolyPolygonAction* pAct = (MetaPolyPolygonAction*) pAction; in ImplWriteActions() local
1732 ImplWritePolyPolyAction( rOStm, pAct->GetPolyPolygon() ); in ImplWriteActions()
1735 if(ImplWriteExtendedPolyPolygonAction(rOStm, pAct->GetPolyPolygon(), true)) in ImplWriteActions()
1744 MetaTextAction* pAct = (MetaTextAction*) pAction; in ImplWriteActions() local
1745 String aUniText( pAct->GetText() ); in ImplWriteActions()
1754 rOStm << pAct->GetPoint(); in ImplWriteActions()
1755 rOStm << (sal_Int32) pAct->GetIndex(); in ImplWriteActions()
1756 rOStm << (sal_Int32) pAct->GetLen(); in ImplWriteActions()
1765 MetaTextArrayAction* pAct = (MetaTextArrayAction*)pAction; in ImplWriteActions() local
1766 ByteString aText( pAct->GetText(), rActualCharSet ); in ImplWriteActions()
1767 String aUniText( pAct->GetText(), pAct->GetIndex(), pAct->GetLen() ); in ImplWriteActions()
1769 sal_uLong nLen = pAct->GetLen(); in ImplWriteActions()
1771 sal_Int32* pDXArray = pAct->GetDXArray(); in ImplWriteActions()
1776 if( ( nLen + pAct->GetIndex() ) > nTextLen ) in ImplWriteActions()
1778 if( pAct->GetIndex() <= nTextLen ) in ImplWriteActions()
1779 nLen = nTextLen - pAct->GetIndex(); in ImplWriteActions()
1791 rOStm << pAct->GetPoint(); in ImplWriteActions()
1796 rOStm.Write( aText.GetBuffer()+pAct->GetIndex(), nLen + 1 ); in ImplWriteActions()
1807 MetaStretchTextAction* pAct = (MetaStretchTextAction*) pAction; in ImplWriteActions() local
1808 String aUniText( pAct->GetText() ); in ImplWriteActions()
1817 rOStm << pAct->GetPoint(); in ImplWriteActions()
1818 rOStm << (sal_Int32) pAct->GetIndex(); in ImplWriteActions()
1819 rOStm << (sal_Int32) pAct->GetLen(); in ImplWriteActions()
1821 rOStm << (sal_Int32) pAct->GetWidth(); in ImplWriteActions()
1829 MetaBmpAction* pAct = (MetaBmpAction*) pAction; in ImplWriteActions() local
1833 rOStm << pAct->GetPoint(); in ImplWriteActions()
1834 WriteDIB(pAct->GetBitmap(), rOStm, false, true); in ImplWriteActions()
1841 MetaBmpScaleAction* pAct = (MetaBmpScaleAction*) pAction; in ImplWriteActions() local
1845 rOStm << pAct->GetPoint(); in ImplWriteActions()
1846 rOStm << pAct->GetSize(); in ImplWriteActions()
1847 WriteDIB(pAct->GetBitmap(), rOStm, false, true); in ImplWriteActions()
1854 MetaBmpScalePartAction* pAct = (MetaBmpScalePartAction*) pAction; in ImplWriteActions() local
1858 rOStm << pAct->GetDestPoint(); in ImplWriteActions()
1859 rOStm << pAct->GetDestSize(); in ImplWriteActions()
1860 rOStm << pAct->GetSrcPoint(); in ImplWriteActions()
1861 rOStm << pAct->GetSrcSize(); in ImplWriteActions()
1862 WriteDIB(pAct->GetBitmap(), rOStm, false, true); in ImplWriteActions()
1869 MetaBmpExAction* pAct = (MetaBmpExAction*) pAction; in ImplWriteActions() local
1870 const Bitmap aBmp( Graphic( pAct->GetBitmapEx() ).GetBitmap() ); in ImplWriteActions()
1874 rOStm << pAct->GetPoint(); in ImplWriteActions()
1882 MetaBmpExScaleAction* pAct = (MetaBmpExScaleAction*) pAction; in ImplWriteActions() local
1883 const Bitmap aBmp( Graphic( pAct->GetBitmapEx() ).GetBitmap() ); in ImplWriteActions()
1887 rOStm << pAct->GetPoint(); in ImplWriteActions()
1888 rOStm << pAct->GetSize(); in ImplWriteActions()
1896 MetaBmpExScalePartAction* pAct = (MetaBmpExScalePartAction*) pAction; in ImplWriteActions() local
1897 const Bitmap aBmp( Graphic( pAct->GetBitmapEx() ).GetBitmap() ); in ImplWriteActions()
1901 rOStm << pAct->GetDestPoint(); in ImplWriteActions()
1902 rOStm << pAct->GetDestSize(); in ImplWriteActions()
1903 rOStm << pAct->GetSrcPoint(); in ImplWriteActions()
1904 rOStm << pAct->GetSrcSize(); in ImplWriteActions()
1912 MetaGradientAction* pAct = (MetaGradientAction*) pAction; in ImplWriteActions() local
1913 const Gradient& rGrad = pAct->GetGradient(); in ImplWriteActions()
1917 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1959 MetaWallpaperAction* pAct = (MetaWallpaperAction*) pAction; in ImplWriteActions() local
1960 const Color& rColor = pAct->GetWallpaper().GetColor(); in ImplWriteActions()
1968 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1979 MetaClipRegionAction* pAct = (MetaClipRegionAction*) pAction; in ImplWriteActions() local
1980 const Region& rRegion = pAct->GetRegion(); in ImplWriteActions()
1986 if( pAct->IsClipping() ) in ImplWriteActions()
1997 if( pAct->IsClipping() ) in ImplWriteActions()
2006 MetaISectRectClipRegionAction* pAct = (MetaISectRectClipRegionAction*) pAction; in ImplWriteActions() local
2010 rOStm << pAct->GetRect(); in ImplWriteActions()
2017 MetaMoveClipRegionAction* pAct = (MetaMoveClipRegionAction*) pAction; in ImplWriteActions() local
2021 rOStm << (sal_Int32) pAct->GetHorzMove(); in ImplWriteActions()
2022 rOStm << (sal_Int32) pAct->GetVertMove(); in ImplWriteActions()
2029 MetaLineColorAction* pAct = (MetaLineColorAction*) pAction; in ImplWriteActions() local
2030 ImplWriteLineColor( rOStm, rLineCol = pAct->GetColor(), pAct->IsSetting() ? 1 : 0 ); in ImplWriteActions()
2037 MetaFillColorAction* pAct = (MetaFillColorAction*) pAction; in ImplWriteActions() local
2038 ImplWriteFillColor( rOStm, pAct->GetColor(), pAct->IsSetting() ? 1 : 0 ); in ImplWriteActions()
2064 MetaTextFillColorAction* pAct = (MetaTextFillColorAction*) pAction; in ImplWriteActions() local
2067 if( pAct->IsSetting() ) in ImplWriteActions()
2068 aSaveFont.SetFillColor( pAct->GetColor() ); in ImplWriteActions()
2091 MetaMapModeAction* pAct = (MetaMapModeAction*) pAction; in ImplWriteActions() local
2095 ImplWriteMapMode( rOStm, pAct->GetMapMode() ); in ImplWriteActions()
2127 MetaRasterOpAction* pAct = (MetaRasterOpAction*) pAction; in ImplWriteActions() local
2129 if( ( pAct->GetRasterOp() != ROP_0 ) && ( pAct->GetRasterOp() != ROP_1 ) ) in ImplWriteActions()
2143 switch( pAct->GetRasterOp() ) in ImplWriteActions()
2159 if( pAct->GetRasterOp() == ROP_0 ) in ImplWriteActions()