diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-12-04 07:32:05 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-12-04 07:32:05 +0000 |
commit | 8e55f3224629f5de73c63f6334cae83b4a5a2708 (patch) | |
tree | fc711552ffa959c238ccfd92310282be0945f69a /vcl | |
parent | 5d30fa07e7ac40a7ccec3e6914778da119128368 (diff) |
INTEGRATION: CWS pdf04 (1.16.40); FILE MERGED
2006/11/06 16:01:09 pl 1.16.40.2: #i40295# local resources fro pattern, eofill
2006/11/02 18:06:01 pl 1.16.40.1: #i40925# make drawWallpaper work, prepare for arbitrary patterns
Diffstat (limited to 'vcl')
-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 ); +} |