diff options
-rw-r--r-- | vcl/source/gdi/pdfwriter.cxx | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/vcl/source/gdi/pdfwriter.cxx b/vcl/source/gdi/pdfwriter.cxx index c822e6cb47b2..0e0d6561a0fd 100644 --- a/vcl/source/gdi/pdfwriter.cxx +++ b/vcl/source/gdi/pdfwriter.cxx @@ -4,9 +4,9 @@ * * $RCSfile: pdfwriter.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: obo $ $Date: 2006-09-17 12:08:25 $ + * last change: $Author: rt $ $Date: 2006-12-04 08:32:05 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -524,3 +524,18 @@ sal_Int32 PDFWriter::CreateControl( const PDFWriter::AnyWidget& rControl, sal_In { return ((PDFWriterImpl*)pImplementation)->createControl( rControl, nPageNr ); } + +void PDFWriter::BeginPattern() +{ + ((PDFWriterImpl*)pImplementation)->beginPattern(); +} + +sal_Int32 PDFWriter::EndPattern( const Rectangle& rCellBounds, const SvtGraphicFill::Transform& rTransform ) +{ + return ((PDFWriterImpl*)pImplementation)->endPattern( rCellBounds, rTransform ); +} + +void PDFWriter::DrawPolyPolygon( const PolyPolygon& rPolyPoly, sal_Int32 nPattern, bool bEOFill ) +{ + ((PDFWriterImpl*)pImplementation)->drawPolyPolygon( rPolyPoly, nPattern, bEOFill ); +} |