Lines Matching refs:rOStm

64 void ImplWriteRect( SvStream& rOStm, const Rectangle& rRect )  in ImplWriteRect()  argument
66 rOStm << rRect.TopLeft(); in ImplWriteRect()
67 rOStm << rRect.BottomRight(); in ImplWriteRect()
101 void ImplWritePolyPolyAction( SvStream& rOStm, const PolyPolygon& rPolyPoly ) in ImplWritePolyPolyAction() argument
110 rOStm << (sal_Int16) GDI_POLYPOLYGON_ACTION; in ImplWritePolyPolyAction()
111 rOStm << (sal_Int32) ( 8 + ( nPoly << 2 ) + ( nPoints << 3 ) ); in ImplWritePolyPolyAction()
112 rOStm << (sal_Int32) nPoly; in ImplWritePolyPolyAction()
123 rOStm << (sal_Int32) nSize; in ImplWritePolyPolyAction()
126 rOStm << aSimplePoly[ j ]; in ImplWritePolyPolyAction()
143 void ImplWriteColor( SvStream& rOStm, const Color& rColor ) in ImplWriteColor() argument
148 rOStm << nVal; in ImplWriteColor()
151 rOStm << nVal; in ImplWriteColor()
154 rOStm << nVal; in ImplWriteColor()
174 void ImplWriteMapMode( SvStream& rOStm, const MapMode& rMapMode ) in ImplWriteMapMode() argument
176 rOStm << (sal_Int16) rMapMode.GetMapUnit(); in ImplWriteMapMode()
177 rOStm << rMapMode.GetOrigin(); in ImplWriteMapMode()
178 rOStm << (sal_Int32) rMapMode.GetScaleX().GetNumerator(); in ImplWriteMapMode()
179 rOStm << (sal_Int32) rMapMode.GetScaleX().GetDenominator(); in ImplWriteMapMode()
180 rOStm << (sal_Int32) rMapMode.GetScaleY().GetNumerator(); in ImplWriteMapMode()
181 rOStm << (sal_Int32) rMapMode.GetScaleY().GetDenominator(); in ImplWriteMapMode()
186 void ImplWritePushAction( SvStream& rOStm ) in ImplWritePushAction() argument
188 rOStm << (sal_Int16) GDI_PUSH_ACTION; in ImplWritePushAction()
189 rOStm << (sal_Int32) 4; in ImplWritePushAction()
194 void ImplWritePopAction( SvStream& rOStm ) in ImplWritePopAction() argument
196 rOStm << (sal_Int16) GDI_POP_ACTION; in ImplWritePopAction()
197 rOStm << (sal_Int32) 4; in ImplWritePopAction()
202 void ImplWriteLineColor( SvStream& rOStm, const Color& rColor, sal_Int16 nStyle, sal_Int32 nWidth =… in ImplWriteLineColor() argument
207 rOStm << (sal_Int16) GDI_PEN_ACTION; in ImplWriteLineColor()
208 rOStm << (sal_Int32) 16; in ImplWriteLineColor()
209 ImplWriteColor( rOStm, rColor ); in ImplWriteLineColor()
210 rOStm << nWidth; in ImplWriteLineColor()
211 rOStm << nStyle; in ImplWriteLineColor()
216 void ImplWriteFillColor( SvStream& rOStm, const Color& rColor, sal_Int16 nStyle ) in ImplWriteFillColor() argument
218 rOStm << (sal_Int16) GDI_FILLBRUSH_ACTION; in ImplWriteFillColor()
219 rOStm << (sal_Int32) 20; in ImplWriteFillColor()
220 ImplWriteColor( rOStm, rColor ); in ImplWriteFillColor()
227 ImplWriteColor( rOStm, COL_WHITE ); in ImplWriteFillColor()
228 rOStm << nStyle; in ImplWriteFillColor()
229 rOStm << (sal_Int16) 1; in ImplWriteFillColor()
233 ImplWriteColor( rOStm, COL_BLACK ); in ImplWriteFillColor()
234 rOStm << nStyle; in ImplWriteFillColor()
235 rOStm << (sal_Int16) 0; in ImplWriteFillColor()
241 void ImplWriteFont( SvStream& rOStm, const Font& rFont, in ImplWriteFont() argument
247 ByteString aByteName( rFont.GetName(), rOStm.GetStreamCharSet() ); in ImplWriteFont()
274 rOStm << (sal_Int16) GDI_FONT_ACTION; in ImplWriteFont()
275 rOStm << (sal_Int32) 78; in ImplWriteFont()
278 ImplWriteColor( rOStm, rFont.GetColor() ); in ImplWriteFont()
279 ImplWriteColor( rOStm, rFont.GetFillColor() ); in ImplWriteFont()
280 rOStm.Write( aName, 32 ); in ImplWriteFont()
281 rOStm << rFont.GetSize(); in ImplWriteFont()
282 rOStm << (sal_Int16) 0; // no character orientation anymore in ImplWriteFont()
283 rOStm << (sal_Int16) rFont.GetOrientation(); in ImplWriteFont()
284 rOStm << (sal_Int16) rActualCharSet; in ImplWriteFont()
285 rOStm << (sal_Int16) rFont.GetFamily(); in ImplWriteFont()
286 rOStm << (sal_Int16) rFont.GetPitch(); in ImplWriteFont()
287 rOStm << (sal_Int16) rFont.GetAlign(); in ImplWriteFont()
288 rOStm << (sal_Int16) nWeight; in ImplWriteFont()
289 rOStm << (sal_Int16) rFont.GetUnderline(); in ImplWriteFont()
290 rOStm << (sal_Int16) rFont.GetStrikeout(); in ImplWriteFont()
291 rOStm << (sal_Bool) ( rFont.GetItalic() != ITALIC_NONE ); in ImplWriteFont()
292 rOStm << rFont.IsOutline(); in ImplWriteFont()
293 rOStm << rFont.IsShadow(); in ImplWriteFont()
294 rOStm << rFont.IsTransparent(); in ImplWriteFont()
301 void ImplWriteRasterOpAction( SvStream& rOStm, sal_Int16 nRasterOp ) in ImplWriteRasterOpAction() argument
303 rOStm << (sal_Int16) GDI_RASTEROP_ACTION << (sal_Int32) 6 << nRasterOp; in ImplWriteRasterOpAction()
308 sal_Bool ImplWriteUnicodeComment( SvStream& rOStm, const String& rString ) in ImplWriteUnicodeComment() argument
316 rOStm << nType << nSize; in ImplWriteUnicodeComment()
320 rOStm << nUni; in ImplWriteUnicodeComment()
369 bool ImplWriteExtendedPolyPolygonAction(SvStream& rOStm, const PolyPolygon& rPolyPolygon, bool bOnl… in ImplWriteExtendedPolyPolygonAction() argument
399 rOStm << (sal_Int16) GDI_EXTENDEDPOLYGON_ACTION; in ImplWriteExtendedPolyPolygonAction()
409 rOStm << nActionSize; in ImplWriteExtendedPolyPolygonAction()
410 rOStm << (sal_uInt16)nAllPolygonCount; in ImplWriteExtendedPolyPolygonAction()
419 rOStm << nPointCount; in ImplWriteExtendedPolyPolygonAction()
423 rOStm << rCandidate[b]; in ImplWriteExtendedPolyPolygonAction()
428 rOStm << (sal_uInt8)true; in ImplWriteExtendedPolyPolygonAction()
432 rOStm << (sal_uInt8)rCandidate.GetFlags(c); in ImplWriteExtendedPolyPolygonAction()
437 rOStm << (sal_uInt8)false; in ImplWriteExtendedPolyPolygonAction()
1388 void SVMConverter::ImplConvertToSVM1( SvStream& rOStm, GDIMetaFile& rMtf ) in ImplConvertToSVM1() argument
1393 const sal_uInt16 nOldFormat = rOStm.GetNumberFormatInt(); in ImplConvertToSVM1()
1401 rOStm.SetNumberFormatInt( NUMBERFORMAT_INT_LITTLEENDIAN ); in ImplConvertToSVM1()
1404 rOStm << "SVGDI"; // Kennung in ImplConvertToSVM1()
1405 nPos = rOStm.Tell(); in ImplConvertToSVM1()
1406 rOStm << (sal_Int16) 42; // HeaderSize in ImplConvertToSVM1()
1407 rOStm << (sal_Int16) 200; // VERSION in ImplConvertToSVM1()
1408 rOStm << (sal_Int32) aPrefSize.Width(); in ImplConvertToSVM1()
1409 rOStm << (sal_Int32) aPrefSize.Height(); in ImplConvertToSVM1()
1410 ImplWriteMapMode( rOStm, rMtf.GetPrefMapMode() ); in ImplConvertToSVM1()
1413 nCountPos = rOStm.Tell(); in ImplConvertToSVM1()
1414 rOStm.SeekRel( 4L ); in ImplConvertToSVM1()
1416 …const sal_Int32 nActCount = ImplWriteActions( rOStm, rMtf, aSaveVDev, bRop_0_1, aLineCol, aLineCol… in ImplConvertToSVM1()
1417 const sal_uLong nActPos = rOStm.Tell(); in ImplConvertToSVM1()
1419 rOStm.Seek( nCountPos ); in ImplConvertToSVM1()
1420 rOStm << nActCount; in ImplConvertToSVM1()
1421 rOStm.Seek( nActPos ); in ImplConvertToSVM1()
1422 rOStm.SetNumberFormatInt( nOldFormat ); in ImplConvertToSVM1()
1431 sal_uLong SVMConverter::ImplWriteActions( SvStream& rOStm, GDIMetaFile& rMtf, in ImplWriteActions() argument
1447 rOStm << (sal_Int16) GDI_PIXEL_ACTION; in ImplWriteActions()
1448 rOStm << (sal_Int32) 18; in ImplWriteActions()
1449 rOStm << pAct->GetPoint(); in ImplWriteActions()
1450 ImplWriteColor( rOStm, pAct->GetColor() ); in ImplWriteActions()
1459 rOStm << (sal_Int16) GDI_POINT_ACTION; in ImplWriteActions()
1460 rOStm << (sal_Int32) 12; in ImplWriteActions()
1461 rOStm << pAct->GetPoint(); in ImplWriteActions()
1477 ImplWritePushAction( rOStm ); in ImplWriteActions()
1478 ImplWriteLineColor( rOStm, rLineCol, 1, rInfo.GetWidth() ); in ImplWriteActions()
1482 rOStm << (sal_Int16) GDI_LINEJOIN_ACTION; in ImplWriteActions()
1483 rOStm << (sal_Int32) 6; in ImplWriteActions()
1484 rOStm << (sal_Int16) rInfo.GetLineJoin(); in ImplWriteActions()
1489 rOStm << (sal_Int16) GDI_LINECAP_ACTION; in ImplWriteActions()
1490 rOStm << (sal_Int32) 6; in ImplWriteActions()
1491 rOStm << (sal_Int16) rInfo.GetLineCap(); in ImplWriteActions()
1497 rOStm << (sal_Int16) GDI_LINEDASHDOT_ACTION; in ImplWriteActions()
1498 rOStm << (sal_Int32) 4 + 16; in ImplWriteActions()
1499 rOStm << (sal_Int16)rInfo.GetDashCount(); in ImplWriteActions()
1500 rOStm << (sal_Int32)rInfo.GetDashLen(); in ImplWriteActions()
1501 rOStm << (sal_Int16)rInfo.GetDotCount(); in ImplWriteActions()
1502 rOStm << (sal_Int32)rInfo.GetDotLen(); in ImplWriteActions()
1503 rOStm << (sal_Int32)rInfo.GetDistance(); in ImplWriteActions()
1506 rOStm << (sal_Int16) GDI_LINE_ACTION; in ImplWriteActions()
1507 rOStm << (sal_Int32) 20; in ImplWriteActions()
1508 rOStm << pAct->GetStartPoint(); in ImplWriteActions()
1509 rOStm << pAct->GetEndPoint(); in ImplWriteActions()
1514 ImplWritePopAction( rOStm ); in ImplWriteActions()
1539 rOStm << (sal_Int16) GDI_RECT_ACTION; in ImplWriteActions()
1540 rOStm << (sal_Int32) 28; in ImplWriteActions()
1541 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1542 rOStm << (sal_Int32) 0; in ImplWriteActions()
1543 rOStm << (sal_Int32) 0; in ImplWriteActions()
1552 rOStm << (sal_Int16) GDI_RECT_ACTION; in ImplWriteActions()
1553 rOStm << (sal_Int32) 28; in ImplWriteActions()
1554 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1555 rOStm << (sal_Int32) pAct->GetHorzRound(); in ImplWriteActions()
1556 rOStm << (sal_Int32) pAct->GetVertRound(); in ImplWriteActions()
1565 rOStm << (sal_Int16) GDI_ELLIPSE_ACTION; in ImplWriteActions()
1566 rOStm << (sal_Int32) 20; in ImplWriteActions()
1567 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1576 rOStm << (sal_Int16) GDI_ARC_ACTION; in ImplWriteActions()
1577 rOStm << (sal_Int32) 36; in ImplWriteActions()
1578 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1579 rOStm << pAct->GetStartPoint(); in ImplWriteActions()
1580 rOStm << pAct->GetEndPoint(); in ImplWriteActions()
1589 rOStm << (sal_Int16) GDI_PIE_ACTION; in ImplWriteActions()
1590 rOStm << (sal_Int32) 36; in ImplWriteActions()
1591 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1592 rOStm << pAct->GetStartPoint(); in ImplWriteActions()
1593 rOStm << pAct->GetEndPoint(); in ImplWriteActions()
1605 rOStm << (sal_Int16) GDI_POLYGON_ACTION; in ImplWriteActions()
1606 rOStm << (sal_Int32) ( 8 + ( nPoints << 3 ) ); in ImplWriteActions()
1607 rOStm << (sal_Int32) nPoints; in ImplWriteActions()
1610 rOStm << aChordPoly[ n ]; in ImplWriteActions()
1633 ImplWritePushAction( rOStm ); in ImplWriteActions()
1634 ImplWriteLineColor( rOStm, rLineCol, 1, rInfo.GetWidth() ); in ImplWriteActions()
1638 rOStm << (sal_Int16) GDI_LINEJOIN_ACTION; in ImplWriteActions()
1639 rOStm << (sal_Int32) 6; in ImplWriteActions()
1640 rOStm << (sal_Int16) rInfo.GetLineJoin(); in ImplWriteActions()
1645 rOStm << (sal_Int16) GDI_LINECAP_ACTION; in ImplWriteActions()
1646 rOStm << (sal_Int32) 6; in ImplWriteActions()
1647 rOStm << (sal_Int16) rInfo.GetLineCap(); in ImplWriteActions()
1653 rOStm << (sal_Int16) GDI_LINEDASHDOT_ACTION; in ImplWriteActions()
1654 rOStm << (sal_Int32) 4 + 16; in ImplWriteActions()
1655 rOStm << (sal_Int16)rInfo.GetDashCount(); in ImplWriteActions()
1656 rOStm << (sal_Int32)rInfo.GetDashLen(); in ImplWriteActions()
1657 rOStm << (sal_Int16)rInfo.GetDotCount(); in ImplWriteActions()
1658 rOStm << (sal_Int32)rInfo.GetDotLen(); in ImplWriteActions()
1659 rOStm << (sal_Int32)rInfo.GetDistance(); in ImplWriteActions()
1662 rOStm << (sal_Int16) GDI_POLYLINE_ACTION; in ImplWriteActions()
1663 rOStm << (sal_Int32) ( 8 + ( nPoints << 3 ) ); in ImplWriteActions()
1664 rOStm << (sal_Int32) nPoints; in ImplWriteActions()
1668 rOStm << aSimplePoly[ n ]; in ImplWriteActions()
1674 if(ImplWriteExtendedPolyPolygonAction(rOStm, aPolyPolygon, true)) in ImplWriteActions()
1681 ImplWritePopAction( rOStm ); in ImplWriteActions()
1712 rOStm << (sal_Int16) GDI_POLYGON_ACTION; in ImplWriteActions()
1713 rOStm << (sal_Int32) ( 8 + ( nPoints << 3 ) ); in ImplWriteActions()
1714 rOStm << (sal_Int32) nPoints; in ImplWriteActions()
1717 rOStm << aSimplePoly[ n ]; in ImplWriteActions()
1722 if(ImplWriteExtendedPolyPolygonAction(rOStm, aPolyPolygon, true)) in ImplWriteActions()
1732 ImplWritePolyPolyAction( rOStm, pAct->GetPolyPolygon() ); in ImplWriteActions()
1735 if(ImplWriteExtendedPolyPolygonAction(rOStm, pAct->GetPolyPolygon(), true)) in ImplWriteActions()
1749 if ( ImplWriteUnicodeComment( rOStm, aUniText ) ) in ImplWriteActions()
1752 rOStm << (sal_Int16) GDI_TEXT_ACTION; in ImplWriteActions()
1753 rOStm << (sal_Int32) ( 24 + ( nStrLen + 1 ) ); in ImplWriteActions()
1754 rOStm << pAct->GetPoint(); in ImplWriteActions()
1755 rOStm << (sal_Int32) pAct->GetIndex(); in ImplWriteActions()
1756 rOStm << (sal_Int32) pAct->GetLen(); in ImplWriteActions()
1757 rOStm << (sal_Int32) nStrLen; in ImplWriteActions()
1758 rOStm.Write( aText.GetBuffer(), nStrLen + 1 ); in ImplWriteActions()
1773 if ( ImplWriteUnicodeComment( rOStm, aUniText ) ) in ImplWriteActions()
1789 rOStm << (sal_Int16) GDI_TEXTARRAY_ACTION; in ImplWriteActions()
1790 rOStm << (sal_Int32) ( 28 + ( nLen + 1 ) + ( nAryLen * 4 ) ); in ImplWriteActions()
1791 rOStm << pAct->GetPoint(); in ImplWriteActions()
1792 rOStm << (sal_Int32) 0; in ImplWriteActions()
1793 rOStm << (sal_Int32) nLen; in ImplWriteActions()
1794 rOStm << (sal_Int32) nLen; in ImplWriteActions()
1795 rOStm << (sal_Int32) nAryLen; in ImplWriteActions()
1796 rOStm.Write( aText.GetBuffer()+pAct->GetIndex(), nLen + 1 ); in ImplWriteActions()
1799 rOStm << (sal_Int32) pDXArray[ n ]; in ImplWriteActions()
1812 if ( ImplWriteUnicodeComment( rOStm, aUniText ) ) in ImplWriteActions()
1815 rOStm << (sal_Int16) GDI_STRETCHTEXT_ACTION; in ImplWriteActions()
1816 rOStm << (sal_Int32) ( 28 + ( nStrLen + 1 ) ); in ImplWriteActions()
1817 rOStm << pAct->GetPoint(); in ImplWriteActions()
1818 rOStm << (sal_Int32) pAct->GetIndex(); in ImplWriteActions()
1819 rOStm << (sal_Int32) pAct->GetLen(); in ImplWriteActions()
1820 rOStm << (sal_Int32) nStrLen; in ImplWriteActions()
1821 rOStm << (sal_Int32) pAct->GetWidth(); in ImplWriteActions()
1822 rOStm.Write( aText.GetBuffer(), nStrLen + 1 ); in ImplWriteActions()
1831 rOStm << (sal_Int16) GDI_BITMAP_ACTION; in ImplWriteActions()
1832 rOStm << (sal_Int32) 12; in ImplWriteActions()
1833 rOStm << pAct->GetPoint(); in ImplWriteActions()
1834 WriteDIB(pAct->GetBitmap(), rOStm, false, true); in ImplWriteActions()
1843 rOStm << (sal_Int16) GDI_BITMAPSCALE_ACTION; in ImplWriteActions()
1844 rOStm << (sal_Int32) 20; in ImplWriteActions()
1845 rOStm << pAct->GetPoint(); in ImplWriteActions()
1846 rOStm << pAct->GetSize(); in ImplWriteActions()
1847 WriteDIB(pAct->GetBitmap(), rOStm, false, true); in ImplWriteActions()
1856 rOStm << (sal_Int16) GDI_BITMAPSCALEPART_ACTION; in ImplWriteActions()
1857 rOStm << (sal_Int32) 36; in ImplWriteActions()
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()
1872 rOStm << (sal_Int16) GDI_BITMAP_ACTION; in ImplWriteActions()
1873 rOStm << (sal_Int32) 12; in ImplWriteActions()
1874 rOStm << pAct->GetPoint(); in ImplWriteActions()
1875 WriteDIB(aBmp, rOStm, false, true); in ImplWriteActions()
1885 rOStm << (sal_Int16) GDI_BITMAPSCALE_ACTION; in ImplWriteActions()
1886 rOStm << (sal_Int32) 20; in ImplWriteActions()
1887 rOStm << pAct->GetPoint(); in ImplWriteActions()
1888 rOStm << pAct->GetSize(); in ImplWriteActions()
1889 WriteDIB(aBmp, rOStm, false, true); in ImplWriteActions()
1899 rOStm << (sal_Int16) GDI_BITMAPSCALEPART_ACTION; in ImplWriteActions()
1900 rOStm << (sal_Int32) 36; 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()
1905 WriteDIB(aBmp, rOStm, false, true); in ImplWriteActions()
1915 rOStm << (sal_Int16) GDI_GRADIENT_ACTION; in ImplWriteActions()
1916 rOStm << (sal_Int32) 46; in ImplWriteActions()
1917 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1918 rOStm << (sal_Int16) rGrad.GetStyle(); in ImplWriteActions()
1919 ImplWriteColor( rOStm, rGrad.GetStartColor() ); in ImplWriteActions()
1920 ImplWriteColor( rOStm, rGrad.GetEndColor() ); in ImplWriteActions()
1921 rOStm << (sal_Int16) rGrad.GetAngle(); in ImplWriteActions()
1922 rOStm << (sal_Int16) rGrad.GetBorder(); in ImplWriteActions()
1923 rOStm << (sal_Int16) rGrad.GetOfsX(); in ImplWriteActions()
1924 rOStm << (sal_Int16) rGrad.GetOfsY(); in ImplWriteActions()
1925 rOStm << (sal_Int16) rGrad.GetStartIntensity(); in ImplWriteActions()
1926 rOStm << (sal_Int16) rGrad.GetEndIntensity(); in ImplWriteActions()
1937 rOStm << (sal_Int16) GDI_GRADIENTEX_COMMENT; in ImplWriteActions()
1940 nOldPos = rOStm.Tell(); in ImplWriteActions()
1941 rOStm.SeekRel( 4 ); in ImplWriteActions()
1944 rOStm << pA->GetPolyPolygon() << pA->GetGradient(); in ImplWriteActions()
1945 rOStm << (sal_Int32) 0; // number of actions that follow this comment in ImplWriteActions()
1948 nNewPos = rOStm.Tell(); in ImplWriteActions()
1949 rOStm.Seek( nOldPos ); in ImplWriteActions()
1950 rOStm << (sal_Int32) ( nNewPos - nOldPos ); in ImplWriteActions()
1951 rOStm.Seek( nNewPos ); in ImplWriteActions()
1962 ImplWritePushAction( rOStm ); in ImplWriteActions()
1963 ImplWriteLineColor( rOStm, rColor, 1 ); in ImplWriteActions()
1964 ImplWriteFillColor( rOStm, rColor, 1 ); in ImplWriteActions()
1966 rOStm << (sal_Int16) GDI_RECT_ACTION; in ImplWriteActions()
1967 rOStm << (sal_Int32) 28; in ImplWriteActions()
1968 ImplWriteRect( rOStm, pAct->GetRect() ); in ImplWriteActions()
1969 rOStm << (sal_Int32) 0; in ImplWriteActions()
1970 rOStm << (sal_Int32) 0; in ImplWriteActions()
1972 ImplWritePopAction( rOStm ); in ImplWriteActions()
1983 rOStm << (sal_Int16) GDI_CLIPREGION_ACTION; in ImplWriteActions()
1984 rOStm << (sal_Int32) 24; in ImplWriteActions()
1989 rOStm << (sal_Int16) 1; in ImplWriteActions()
1992 rOStm << (sal_Int16) 0; in ImplWriteActions()
1994 rOStm << (sal_Int16) 0; in ImplWriteActions()
1995 ImplWriteRect( rOStm, aClipRect ); in ImplWriteActions()
1998 ImplWriteRect( rOStm, aClipRect ); in ImplWriteActions()
2008 rOStm << (sal_Int16) GDI_ISECTCLIPREGION_ACTION; in ImplWriteActions()
2009 rOStm << (sal_Int32) 20; in ImplWriteActions()
2010 rOStm << pAct->GetRect(); in ImplWriteActions()
2019 rOStm << (sal_Int16) GDI_MOVECLIPREGION_ACTION; in ImplWriteActions()
2020 rOStm << (sal_Int32) 12; in ImplWriteActions()
2021 rOStm << (sal_Int32) pAct->GetHorzMove(); in ImplWriteActions()
2022 rOStm << (sal_Int32) pAct->GetVertMove(); in ImplWriteActions()
2030 ImplWriteLineColor( rOStm, rLineCol = pAct->GetColor(), pAct->IsSetting() ? 1 : 0 ); in ImplWriteActions()
2038 ImplWriteFillColor( rOStm, pAct->GetColor(), pAct->IsSetting() ? 1 : 0 ); in ImplWriteActions()
2046 ImplWriteFont( rOStm, rSaveVDev.GetFont(), rActualCharSet ); in ImplWriteActions()
2057 ImplWriteFont( rOStm, rSaveVDev.GetFont(), rActualCharSet ); in ImplWriteActions()
2073 ImplWriteFont( rOStm, rSaveVDev.GetFont(), rActualCharSet ); in ImplWriteActions()
2084 ImplWriteFont( rOStm, rSaveVDev.GetFont(), rActualCharSet ); in ImplWriteActions()
2093 rOStm << (sal_Int16) GDI_MAPMODE_ACTION; in ImplWriteActions()
2094 rOStm << (sal_Int32) 30; in ImplWriteActions()
2095 ImplWriteMapMode( rOStm, pAct->GetMapMode() ); in ImplWriteActions()
2102 ImplWritePushAction( rOStm ); in ImplWriteActions()
2119 ImplWritePopAction( rOStm ); in ImplWriteActions()
2137 ImplWritePopAction( rOStm ); in ImplWriteActions()
2151 ImplWriteRasterOpAction( rOStm, nRasterOp ); in ImplWriteActions()
2156 ImplWritePushAction( rOStm ); in ImplWriteActions()
2161 ImplWriteLineColor( rOStm, COL_BLACK, 1 ); in ImplWriteActions()
2162 ImplWriteFillColor( rOStm, COL_BLACK, 1 ); in ImplWriteActions()
2166 ImplWriteLineColor( rOStm, COL_WHITE, 1 ); in ImplWriteActions()
2167 ImplWriteFillColor( rOStm, COL_WHITE, 1 ); in ImplWriteActions()
2170 ImplWriteRasterOpAction( rOStm, 0 ); in ImplWriteActions()
2185 rOStm << (sal_Int16) GDI_TRANSPARENT_COMMENT; in ImplWriteActions()
2188 nOldPos = rOStm.Tell(); in ImplWriteActions()
2189 rOStm.SeekRel( 4 ); in ImplWriteActions()
2192 rOStm << rPolyPoly; in ImplWriteActions()
2193 rOStm << nTrans; in ImplWriteActions()
2194 rOStm << (sal_Int32) 15; // number of actions that follow this comment in ImplWriteActions()
2197 nNewPos = rOStm.Tell(); in ImplWriteActions()
2198 rOStm.Seek( nOldPos ); in ImplWriteActions()
2199 rOStm << (sal_Int32) ( nNewPos - nOldPos ); in ImplWriteActions()
2200 rOStm.Seek( nNewPos ); in ImplWriteActions()
2204 ImplWritePushAction( rOStm ); in ImplWriteActions()
2206 ImplWriteRasterOpAction( rOStm, 4 ); in ImplWriteActions()
2207 ImplWritePolyPolyAction( rOStm, rPolyPoly ); in ImplWriteActions()
2209 ImplWritePushAction( rOStm ); in ImplWriteActions()
2211 ImplWriteRasterOpAction( rOStm, 2 ); in ImplWriteActions()
2212 ImplWriteFillColor( rOStm, COL_BLACK, nBrushStyle ); in ImplWriteActions()
2213 ImplWritePolyPolyAction( rOStm, rPolyPoly ); in ImplWriteActions()
2215 ImplWritePopAction( rOStm ); in ImplWriteActions()
2217 ImplWriteRasterOpAction( rOStm, 4 ); in ImplWriteActions()
2218 ImplWritePolyPolyAction( rOStm, rPolyPoly ); in ImplWriteActions()
2220 ImplWritePopAction( rOStm ); in ImplWriteActions()
2222 ImplWritePushAction( rOStm ); in ImplWriteActions()
2224 ImplWriteFillColor( rOStm, Color(), 0 ); in ImplWriteActions()
2225 ImplWritePolyPolyAction( rOStm, rPolyPoly ); in ImplWriteActions()
2227 ImplWritePopAction( rOStm ); in ImplWriteActions()
2248 rOStm << (sal_Int16) GDI_FLOATTRANSPARENT_COMMENT; in ImplWriteActions()
2251 nOldPos = rOStm.Tell(); in ImplWriteActions()
2252 rOStm.SeekRel( 4 ); in ImplWriteActions()
2255 rOStm << rTransMtf << rPos << rSize << rGradient; in ImplWriteActions()
2258 nNewPos = rOStm.Tell(); in ImplWriteActions()
2259 rOStm.Seek( nOldPos ); in ImplWriteActions()
2260 rOStm << (sal_Int32) ( nNewPos - nOldPos + 4 ); in ImplWriteActions()
2261 rOStm.Seek( ( nOldPos = nNewPos ) + 4 ); in ImplWriteActions()
2284 …nAddCount = ImplWriteActions( rOStm, aMtf, rSaveVDev, rRop_0_1, rLineCol, rLineColStack, rActualCh… in ImplWriteActions()
2285 nNewPos = rOStm.Tell(); in ImplWriteActions()
2286 rOStm.Seek( nOldPos ); in ImplWriteActions()
2287 rOStm << (sal_Int32) nAddCount; in ImplWriteActions()
2288 rOStm.Seek( nNewPos ); in ImplWriteActions()
2307 rOStm << (sal_Int16) GDI_HATCH_COMMENT; in ImplWriteActions()
2310 nOldPos = rOStm.Tell(); in ImplWriteActions()
2311 rOStm.SeekRel( 4 ); in ImplWriteActions()
2314 rOStm << rPolyPoly; in ImplWriteActions()
2315 rOStm << rHatch; in ImplWriteActions()
2318 nNewPos = rOStm.Tell(); in ImplWriteActions()
2319 rOStm.Seek( nOldPos ); in ImplWriteActions()
2320 rOStm << (sal_Int32) ( nNewPos - nOldPos + 4 ); in ImplWriteActions()
2321 rOStm.Seek( ( nOldPos = nNewPos ) + 4 ); in ImplWriteActions()
2329 …nAddCount = ImplWriteActions( rOStm, aTmpMtf, rSaveVDev, rRop_0_1, rLineCol, rLineColStack, rActua… in ImplWriteActions()
2330 nNewPos = rOStm.Tell(); in ImplWriteActions()
2331 rOStm.Seek( nOldPos ); in ImplWriteActions()
2332 rOStm << (sal_Int32) nAddCount; in ImplWriteActions()
2333 rOStm.Seek( nNewPos ); in ImplWriteActions()
2352 rOStm << (sal_Int16) GDI_REFPOINT_COMMENT; in ImplWriteActions()
2355 nOldPos = rOStm.Tell(); in ImplWriteActions()
2356 rOStm.SeekRel( 4 ); in ImplWriteActions()
2359 rOStm << rRefPoint << bSet; in ImplWriteActions()
2360 rOStm << (sal_Int32) 0; // number of actions that follow this comment in ImplWriteActions()
2363 nNewPos = rOStm.Tell(); in ImplWriteActions()
2364 rOStm.Seek( nOldPos ); in ImplWriteActions()
2365 rOStm << (sal_Int32) ( nNewPos - nOldPos ); in ImplWriteActions()
2366 rOStm.Seek( nNewPos ); in ImplWriteActions()
2380 rOStm << (sal_Int16) GDI_TEXTLINECOLOR_COMMENT; in ImplWriteActions()
2383 nOldPos = rOStm.Tell(); in ImplWriteActions()
2384 rOStm.SeekRel( 4 ); in ImplWriteActions()
2387 rOStm << rColor << bSet; in ImplWriteActions()
2388 rOStm << (sal_Int32) 0; // number of actions that follow this comment in ImplWriteActions()
2391 nNewPos = rOStm.Tell(); in ImplWriteActions()
2392 rOStm.Seek( nOldPos ); in ImplWriteActions()
2393 rOStm << (sal_Int32) ( nNewPos - nOldPos ); in ImplWriteActions()
2394 rOStm.Seek( nNewPos ); in ImplWriteActions()
2415 rOStm << (sal_Int16) GDI_TEXTLINE_COMMENT; in ImplWriteActions()
2418 nOldPos = rOStm.Tell(); in ImplWriteActions()
2419 rOStm.SeekRel( 4 ); in ImplWriteActions()
2422 rOStm << rStartPt << nWidth << in ImplWriteActions()
2425 rOStm << (sal_Int32) 0; // number of actions that follow this comment in ImplWriteActions()
2428 nNewPos = rOStm.Tell(); in ImplWriteActions()
2429 rOStm.Seek( nOldPos ); in ImplWriteActions()
2430 rOStm << (sal_Int32) ( nNewPos - nOldPos ); in ImplWriteActions()
2431 rOStm.Seek( nNewPos ); in ImplWriteActions()
2447 rOStm << (sal_Int16) GDI_COMMENT_COMMENT; in ImplWriteActions()
2450 nOldPos = rOStm.Tell(); in ImplWriteActions()
2451 rOStm.SeekRel( 4 ); in ImplWriteActions()
2454 rOStm << pA->GetComment() << pA->GetValue() << nDataSize; in ImplWriteActions()
2457 rOStm.Write( pA->GetData(), nDataSize ); in ImplWriteActions()
2459 rOStm << (sal_Int32) 0; // number of actions that follow this comment in ImplWriteActions()
2462 nNewPos = rOStm.Tell(); in ImplWriteActions()
2463 rOStm.Seek( nOldPos ); in ImplWriteActions()
2464 rOStm << (sal_Int32) ( nNewPos - nOldPos ); in ImplWriteActions()
2465 rOStm.Seek( nNewPos ); in ImplWriteActions()