Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <pdfwriter_impl.hxx>
21 : #include <vcl/bitmapex.hxx>
22 : #include <vcl/image.hxx>
23 :
24 : using namespace vcl;
25 :
26 0 : PDFWriter::AnyWidget::~AnyWidget()
27 : {
28 0 : }
29 :
30 0 : PDFWriter::PDFWriter( const PDFWriter::PDFWriterContext& rContext, const com::sun::star::uno::Reference< com::sun::star::beans::XMaterialHolder >& xEnc )
31 : :
32 0 : pImplementation( new PDFWriterImpl( rContext, xEnc, *this ) )
33 : {
34 0 : }
35 :
36 0 : PDFWriter::~PDFWriter()
37 : {
38 0 : }
39 :
40 0 : OutputDevice* PDFWriter::GetReferenceDevice()
41 : {
42 0 : return pImplementation->getReferenceDevice();
43 : }
44 :
45 0 : sal_Int32 PDFWriter::NewPage( sal_Int32 nPageWidth, sal_Int32 nPageHeight, Orientation eOrientation )
46 : {
47 0 : return pImplementation->newPage( nPageWidth, nPageHeight, eOrientation );
48 : }
49 :
50 0 : bool PDFWriter::Emit()
51 : {
52 0 : return pImplementation->emit();
53 : }
54 :
55 0 : void PDFWriter::SetDocumentLocale( const com::sun::star::lang::Locale& rLoc )
56 : {
57 0 : pImplementation->setDocumentLocale( rLoc );
58 0 : }
59 :
60 0 : void PDFWriter::SetFont( const Font& rFont )
61 : {
62 0 : pImplementation->setFont( rFont );
63 0 : }
64 :
65 0 : void PDFWriter::DrawText( const Point& rPos, const OUString& rText )
66 : {
67 0 : pImplementation->drawText( rPos, rText, 0, rText.getLength() );
68 0 : }
69 :
70 0 : void PDFWriter::DrawTextLine(
71 : const Point& rPos,
72 : long nWidth,
73 : FontStrikeout eStrikeout,
74 : FontUnderline eUnderline,
75 : FontUnderline eOverline,
76 : bool bUnderlineAbove )
77 : {
78 0 : pImplementation->drawTextLine( rPos, nWidth, eStrikeout, eUnderline, eOverline, bUnderlineAbove );
79 0 : }
80 :
81 0 : void PDFWriter::DrawTextArray(
82 : const Point& rStartPt,
83 : const OUString& rStr,
84 : const sal_Int32* pDXAry,
85 : sal_Int32 nIndex,
86 : sal_Int32 nLen )
87 : {
88 0 : pImplementation->drawTextArray( rStartPt, rStr, pDXAry, nIndex, nLen );
89 0 : }
90 :
91 0 : void PDFWriter::DrawStretchText(
92 : const Point& rStartPt,
93 : sal_uLong nWidth,
94 : const OUString& rStr,
95 : sal_Int32 nIndex,
96 : sal_Int32 nLen )
97 : {
98 0 : pImplementation->drawStretchText( rStartPt, nWidth, rStr, nIndex, nLen );
99 0 : }
100 :
101 0 : void PDFWriter::DrawText(
102 : const Rectangle& rRect,
103 : const OUString& rStr,
104 : sal_uInt16 nStyle )
105 : {
106 0 : pImplementation->drawText( rRect, rStr, nStyle );
107 0 : }
108 :
109 0 : void PDFWriter::DrawLine( const Point& rStart, const Point& rStop )
110 : {
111 0 : pImplementation->drawLine( rStart, rStop );
112 0 : }
113 :
114 0 : void PDFWriter::DrawLine( const Point& rStart, const Point& rStop, const LineInfo& rInfo )
115 : {
116 0 : pImplementation->drawLine( rStart, rStop, rInfo );
117 0 : }
118 :
119 0 : void PDFWriter::DrawPolygon( const Polygon& rPoly )
120 : {
121 0 : pImplementation->drawPolygon( rPoly );
122 0 : }
123 :
124 0 : void PDFWriter::DrawPolyLine( const Polygon& rPoly )
125 : {
126 0 : pImplementation->drawPolyLine( rPoly );
127 0 : }
128 :
129 0 : void PDFWriter::DrawRect( const Rectangle& rRect )
130 : {
131 0 : pImplementation->drawRectangle( rRect );
132 0 : }
133 :
134 0 : void PDFWriter::DrawRect( const Rectangle& rRect, sal_uLong nHorzRound, sal_uLong nVertRound )
135 : {
136 0 : pImplementation->drawRectangle( rRect, nHorzRound, nVertRound );
137 0 : }
138 :
139 0 : void PDFWriter::DrawEllipse( const Rectangle& rRect )
140 : {
141 0 : pImplementation->drawEllipse( rRect );
142 0 : }
143 :
144 0 : void PDFWriter::DrawArc( const Rectangle& rRect, const Point& rStart, const Point& rStop )
145 : {
146 0 : pImplementation->drawArc( rRect, rStart, rStop, false, false );
147 0 : }
148 :
149 0 : void PDFWriter::DrawPie( const Rectangle& rRect, const Point& rStart, const Point& rStop )
150 : {
151 0 : pImplementation->drawArc( rRect, rStart, rStop, true, false );
152 0 : }
153 :
154 0 : void PDFWriter::DrawChord( const Rectangle& rRect, const Point& rStart, const Point& rStop )
155 : {
156 0 : pImplementation->drawArc( rRect, rStart, rStop, false, true );
157 0 : }
158 :
159 0 : void PDFWriter::DrawPolyLine( const Polygon& rPoly, const LineInfo& rInfo )
160 : {
161 0 : pImplementation->drawPolyLine( rPoly, rInfo );
162 0 : }
163 :
164 0 : void PDFWriter::DrawPolyLine( const Polygon& rPoly, const ExtLineInfo& rInfo )
165 : {
166 0 : pImplementation->drawPolyLine( rPoly, rInfo );
167 0 : }
168 :
169 0 : void PDFWriter::DrawPolyPolygon( const PolyPolygon& rPolyPoly )
170 : {
171 0 : pImplementation->drawPolyPolygon( rPolyPoly );
172 0 : }
173 :
174 0 : void PDFWriter::DrawPixel( const Point& rPos, const Color& rColor )
175 : {
176 0 : pImplementation->drawPixel( rPos, rColor );
177 0 : }
178 :
179 0 : void PDFWriter::DrawBitmap( const Point& rDestPt, const Size& rDestSize, const Bitmap& rBitmap )
180 : {
181 0 : pImplementation->drawBitmap( rDestPt, rDestSize, rBitmap );
182 0 : }
183 :
184 0 : void PDFWriter::DrawBitmapEx( const Point& rDestPt, const Size& rDestSize, const BitmapEx& rBitmap )
185 : {
186 0 : pImplementation->drawBitmap( rDestPt, rDestSize, rBitmap );
187 0 : }
188 :
189 0 : void PDFWriter::DrawHatch( const PolyPolygon& rPolyPoly, const Hatch& rHatch )
190 : {
191 0 : pImplementation->drawHatch( rPolyPoly, rHatch );
192 0 : }
193 :
194 0 : void PDFWriter::DrawGradient( const Rectangle& rRect, const Gradient& rGradient )
195 : {
196 0 : pImplementation->drawGradient( rRect, rGradient );
197 0 : }
198 :
199 0 : void PDFWriter::DrawGradient( const PolyPolygon& rPolyPoly, const Gradient& rGradient )
200 : {
201 0 : pImplementation->push(PUSH_CLIPREGION);
202 0 : pImplementation->setClipRegion( rPolyPoly.getB2DPolyPolygon() );
203 0 : pImplementation->drawGradient( rPolyPoly.GetBoundRect(), rGradient );
204 0 : pImplementation->pop();
205 0 : }
206 :
207 0 : void PDFWriter::DrawWallpaper( const Rectangle& rRect, const Wallpaper& rWallpaper )
208 : {
209 0 : pImplementation->drawWallpaper( rRect, rWallpaper );
210 0 : }
211 :
212 0 : void PDFWriter::DrawTransparent( const PolyPolygon& rPolyPoly, sal_uInt16 nTransparencePercent )
213 : {
214 0 : pImplementation->drawTransparent( rPolyPoly, nTransparencePercent );
215 0 : }
216 :
217 0 : void PDFWriter::BeginTransparencyGroup()
218 : {
219 0 : pImplementation->beginTransparencyGroup();
220 0 : }
221 :
222 0 : void PDFWriter::EndTransparencyGroup( const Rectangle& rRect, sal_uInt16 nTransparentPercent )
223 : {
224 0 : pImplementation->endTransparencyGroup( rRect, nTransparentPercent );
225 0 : }
226 :
227 0 : void PDFWriter::Push( sal_uInt16 nFlags )
228 : {
229 0 : pImplementation->push( nFlags );
230 0 : }
231 :
232 0 : void PDFWriter::Pop()
233 : {
234 0 : pImplementation->pop();
235 0 : }
236 :
237 0 : void PDFWriter::SetMapMode( const MapMode& rMapMode )
238 : {
239 0 : pImplementation->setMapMode( rMapMode );
240 0 : }
241 :
242 0 : void PDFWriter::SetLineColor( const Color& rColor )
243 : {
244 0 : pImplementation->setLineColor( rColor );
245 0 : }
246 :
247 0 : void PDFWriter::SetFillColor( const Color& rColor )
248 : {
249 0 : pImplementation->setFillColor( rColor );
250 0 : }
251 :
252 0 : void PDFWriter::SetClipRegion()
253 : {
254 0 : pImplementation->clearClipRegion();
255 0 : }
256 :
257 0 : void PDFWriter::SetClipRegion( const basegfx::B2DPolyPolygon& rRegion )
258 : {
259 0 : pImplementation->setClipRegion( rRegion );
260 0 : }
261 :
262 0 : void PDFWriter::MoveClipRegion( long nHorzMove, long nVertMove )
263 : {
264 0 : pImplementation->moveClipRegion( nHorzMove, nVertMove );
265 0 : }
266 :
267 0 : void PDFWriter::IntersectClipRegion( const basegfx::B2DPolyPolygon& rRegion )
268 : {
269 0 : pImplementation->intersectClipRegion( rRegion );
270 0 : }
271 :
272 0 : void PDFWriter::IntersectClipRegion( const Rectangle& rRect )
273 : {
274 0 : pImplementation->intersectClipRegion( rRect );
275 0 : }
276 :
277 0 : void PDFWriter::SetLayoutMode( sal_uLong nMode )
278 : {
279 0 : pImplementation->setLayoutMode( (sal_Int32)nMode );
280 0 : }
281 :
282 0 : void PDFWriter::SetDigitLanguage( LanguageType eLang )
283 : {
284 0 : pImplementation->setDigitLanguage( eLang );
285 0 : }
286 :
287 0 : void PDFWriter::SetTextColor( const Color& rColor )
288 : {
289 0 : pImplementation->setTextColor( rColor );
290 0 : }
291 :
292 0 : void PDFWriter::SetTextFillColor()
293 : {
294 0 : pImplementation->setTextFillColor();
295 0 : }
296 :
297 0 : void PDFWriter::SetTextFillColor( const Color& rColor )
298 : {
299 0 : pImplementation->setTextFillColor( rColor );
300 0 : }
301 :
302 0 : void PDFWriter::SetTextLineColor()
303 : {
304 0 : pImplementation->setTextLineColor();
305 0 : }
306 :
307 0 : void PDFWriter::SetTextLineColor( const Color& rColor )
308 : {
309 0 : pImplementation->setTextLineColor( rColor );
310 0 : }
311 :
312 0 : void PDFWriter::SetOverlineColor()
313 : {
314 0 : pImplementation->setOverlineColor();
315 0 : }
316 :
317 0 : void PDFWriter::SetOverlineColor( const Color& rColor )
318 : {
319 0 : pImplementation->setOverlineColor( rColor );
320 0 : }
321 :
322 0 : void PDFWriter::SetTextAlign( ::TextAlign eAlign )
323 : {
324 0 : pImplementation->setTextAlign( eAlign );
325 0 : }
326 :
327 0 : void PDFWriter::DrawJPGBitmap( SvStream& rStreamData, bool bIsTrueColor, const Size& rSrcSizePixel, const Rectangle& rTargetArea, const Bitmap& rMask )
328 : {
329 0 : pImplementation->drawJPGBitmap( rStreamData, bIsTrueColor, rSrcSizePixel, rTargetArea, rMask );
330 0 : }
331 :
332 0 : sal_Int32 PDFWriter::CreateLink( const Rectangle& rRect, sal_Int32 nPageNr )
333 : {
334 0 : return pImplementation->createLink( rRect, nPageNr );
335 : }
336 0 : sal_Int32 PDFWriter::RegisterDestReference( sal_Int32 nDestId, const Rectangle& rRect, sal_Int32 nPageNr, DestAreaType eType )
337 : {
338 0 : return pImplementation->registerDestReference( nDestId, rRect, nPageNr, eType );
339 : }
340 : //--->i56629
341 0 : sal_Int32 PDFWriter::CreateNamedDest( const OUString& sDestName, const Rectangle& rRect, sal_Int32 nPageNr, PDFWriter::DestAreaType eType )
342 : {
343 0 : return pImplementation->createNamedDest( sDestName, rRect, nPageNr, eType );
344 : }
345 0 : sal_Int32 PDFWriter::CreateDest( const Rectangle& rRect, sal_Int32 nPageNr, PDFWriter::DestAreaType eType )
346 : {
347 0 : return pImplementation->createDest( rRect, nPageNr, eType );
348 : }
349 :
350 0 : sal_Int32 PDFWriter::SetLinkDest( sal_Int32 nLinkId, sal_Int32 nDestId )
351 : {
352 0 : return pImplementation->setLinkDest( nLinkId, nDestId );
353 : }
354 :
355 0 : sal_Int32 PDFWriter::SetLinkURL( sal_Int32 nLinkId, const OUString& rURL )
356 : {
357 0 : return pImplementation->setLinkURL( nLinkId, rURL );
358 : }
359 :
360 0 : void PDFWriter::SetLinkPropertyID( sal_Int32 nLinkId, sal_Int32 nPropertyId )
361 : {
362 0 : pImplementation->setLinkPropertyId( nLinkId, nPropertyId );
363 0 : }
364 :
365 0 : sal_Int32 PDFWriter::CreateOutlineItem( sal_Int32 nParent, const OUString& rText, sal_Int32 nDestID )
366 : {
367 0 : return pImplementation->createOutlineItem( nParent, rText, nDestID );
368 : }
369 :
370 0 : sal_Int32 PDFWriter::SetOutlineItemParent( sal_Int32 nItem, sal_Int32 nNewParent )
371 : {
372 0 : return pImplementation->setOutlineItemParent( nItem, nNewParent );
373 : }
374 :
375 0 : sal_Int32 PDFWriter::SetOutlineItemText( sal_Int32 nItem, const OUString& rText )
376 : {
377 0 : return pImplementation->setOutlineItemText( nItem, rText );
378 : }
379 :
380 0 : sal_Int32 PDFWriter::SetOutlineItemDest( sal_Int32 nItem, sal_Int32 nDest )
381 : {
382 0 : return pImplementation->setOutlineItemDest( nItem, nDest );
383 : }
384 :
385 0 : void PDFWriter::CreateNote( const Rectangle& rRect, const PDFNote& rNote, sal_Int32 nPageNr )
386 : {
387 0 : pImplementation->createNote( rRect, rNote, nPageNr );
388 0 : }
389 :
390 0 : sal_Int32 PDFWriter::BeginStructureElement( PDFWriter::StructElement eType, const OUString& rAlias )
391 : {
392 0 : return pImplementation->beginStructureElement( eType, rAlias );
393 : }
394 :
395 0 : void PDFWriter::EndStructureElement()
396 : {
397 0 : pImplementation->endStructureElement();
398 0 : }
399 :
400 0 : bool PDFWriter::SetCurrentStructureElement( sal_Int32 nID )
401 : {
402 0 : return pImplementation->setCurrentStructureElement( nID );
403 : }
404 :
405 0 : bool PDFWriter::SetStructureAttribute( enum StructAttribute eAttr, enum StructAttributeValue eVal )
406 : {
407 0 : return pImplementation->setStructureAttribute( eAttr, eVal );
408 : }
409 :
410 0 : bool PDFWriter::SetStructureAttributeNumerical( enum StructAttribute eAttr, sal_Int32 nValue )
411 : {
412 0 : return pImplementation->setStructureAttributeNumerical( eAttr, nValue );
413 : }
414 :
415 0 : void PDFWriter::SetStructureBoundingBox( const Rectangle& rRect )
416 : {
417 0 : pImplementation->setStructureBoundingBox( rRect );
418 0 : }
419 :
420 0 : void PDFWriter::SetActualText( const OUString& rText )
421 : {
422 0 : pImplementation->setActualText( rText );
423 0 : }
424 :
425 0 : void PDFWriter::SetAlternateText( const OUString& rText )
426 : {
427 0 : pImplementation->setAlternateText( rText );
428 0 : }
429 :
430 0 : void PDFWriter::SetAutoAdvanceTime( sal_uInt32 nSeconds, sal_Int32 nPageNr )
431 : {
432 0 : pImplementation->setAutoAdvanceTime( nSeconds, nPageNr );
433 0 : }
434 :
435 0 : void PDFWriter::SetPageTransition( PDFWriter::PageTransition eType, sal_uInt32 nMilliSec, sal_Int32 nPageNr )
436 : {
437 0 : pImplementation->setPageTransition( eType, nMilliSec, nPageNr );
438 0 : }
439 :
440 0 : sal_Int32 PDFWriter::CreateControl( const PDFWriter::AnyWidget& rControl, sal_Int32 nPageNr )
441 : {
442 0 : return pImplementation->createControl( rControl, nPageNr );
443 : }
444 :
445 0 : PDFOutputStream::~PDFOutputStream()
446 : {
447 0 : }
448 :
449 0 : void PDFWriter::AddStream( const OUString& rMimeType, PDFOutputStream* pStream, bool bCompress )
450 : {
451 0 : pImplementation->addStream( rMimeType, pStream, bCompress );
452 0 : }
453 :
454 0 : std::set< PDFWriter::ErrorCode > PDFWriter::GetErrors()
455 : {
456 0 : return pImplementation->getErrors();
457 : }
458 :
459 : com::sun::star::uno::Reference< com::sun::star::beans::XMaterialHolder >
460 0 : PDFWriter::InitEncryption( const OUString& i_rOwnerPassword,
461 : const OUString& i_rUserPassword,
462 : bool b128Bit
463 : )
464 : {
465 0 : return PDFWriterImpl::initEncryption( i_rOwnerPassword, i_rUserPassword, b128Bit );
466 : }
467 :
468 0 : void PDFWriter::PlayMetafile( const GDIMetaFile& i_rMTF, const vcl::PDFWriter::PlayMetafileContext& i_rPlayContext, PDFExtOutDevData* i_pData )
469 : {
470 0 : pImplementation->playMetafile( i_rMTF, i_pData, i_rPlayContext, NULL);
471 3 : }
472 :
473 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|