1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_CONTENTSINK_HXX
21 #define INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_CONTENTSINK_HXX
23 #include <com/sun/star/uno/Reference.hxx>
24 #include <com/sun/star/uno/Sequence.hxx>
25 #include <com/sun/star/rendering/ARGBColor.hpp>
28 namespace com
{ namespace sun
{ namespace star
{
36 struct AffineMatrix2D
;
37 struct RealRectangle2D
;
50 FontAttributes( const OUString
& familyName_
,
56 familyName(familyName_
),
59 isUnderline(isUnderline_
),
80 double size
; // device pixel
83 bool operator==(const FontAttributes
& rFont
) const
85 return familyName
== rFont
.familyName
&&
86 !isBold
== !rFont
.isBold
&&
87 !isItalic
== !rFont
.isItalic
&&
88 !isUnderline
== !rFont
.isUnderline
&&
89 !isOutline
== !rFont
.isOutline
&&
91 ascent
== rFont
.ascent
;
95 /** (preliminary) API wrapper around xpdf
97 Wraps the functionality currently used from xpdf's OutputDev
98 interface. Subject to change.
102 virtual ~ContentSink() {}
104 /// Total number of pages for upcoming document
105 virtual void setPageNum( sal_Int32 nNumPages
) = 0;
106 virtual void startPage( const css::geometry::RealSize2D
& rSize
) = 0;
107 virtual void endPage() = 0;
109 virtual void hyperLink( const css::geometry::RealRectangle2D
& rBounds
,
110 const OUString
& rURI
) = 0;
112 virtual void pushState() = 0;
113 virtual void popState() = 0;
115 virtual void setFlatness( double ) = 0;
116 virtual void setTransformation( const css::geometry::AffineMatrix2D
& rMatrix
) = 0;
117 virtual void setLineDash( const css::uno::Sequence
<double>& dashes
,
119 virtual void setLineJoin( sal_Int8 lineJoin
) = 0;
120 virtual void setLineCap( sal_Int8 lineCap
) = 0;
121 virtual void setMiterLimit(double) = 0;
122 virtual void setLineWidth(double) = 0;
123 virtual void setFillColor( const css::rendering::ARGBColor
& rColor
) = 0;
124 virtual void setStrokeColor( const css::rendering::ARGBColor
& rColor
) = 0;
125 virtual void setFont( const FontAttributes
& rFont
) = 0;
126 virtual void setTextRenderMode( sal_Int32
) = 0;
129 virtual void strokePath( const css::uno::Reference
<
130 css::rendering::XPolyPolygon2D
>& rPath
) = 0;
131 virtual void fillPath( const css::uno::Reference
<
132 css::rendering::XPolyPolygon2D
>& rPath
) = 0;
133 virtual void eoFillPath( const css::uno::Reference
<
134 css::rendering::XPolyPolygon2D
>& rPath
) = 0;
136 virtual void intersectClip(const css::uno::Reference
<
137 css::rendering::XPolyPolygon2D
>& rPath
) = 0;
138 virtual void intersectEoClip(const css::uno::Reference
<
139 css::rendering::XPolyPolygon2D
>& rPath
) = 0;
141 virtual void drawGlyphs( const OUString
& rGlyphs
,
142 const css::geometry::RealRectangle2D
& rRect
,
143 const css::geometry::Matrix2D
& rFontMatrix
,
144 double fontSize
) = 0;
146 /// issued when a sequence of associated glyphs is drawn
147 virtual void endText() = 0;
149 /// draws given bitmap as a mask (using current fill color)
150 virtual void drawMask(const css::uno::Sequence
<
151 css::beans::PropertyValue
>& xBitmap
,
153 /// Given image must already be color-mapped and normalized to sRGB.
154 virtual void drawImage(const css::uno::Sequence
<
155 css::beans::PropertyValue
>& xBitmap
) = 0;
156 /** Given image must already be color-mapped and normalized to sRGB.
158 maskColors must contain two sequences of color components
160 virtual void drawColorMaskedImage(const css::uno::Sequence
<
161 css::beans::PropertyValue
>& xBitmap
,
162 const css::uno::Sequence
<
163 css::uno::Any
>& xMaskColors
) = 0;
164 virtual void drawMaskedImage(const css::uno::Sequence
<
165 css::beans::PropertyValue
>& xBitmap
,
166 const css::uno::Sequence
<
167 css::beans::PropertyValue
>& xMask
,
168 bool bInvertMask
) = 0;
169 virtual void drawAlphaMaskedImage(const css::uno::Sequence
<
170 css::beans::PropertyValue
>& xImage
,
171 const css::uno::Sequence
<
172 css::beans::PropertyValue
>& xMask
) = 0;
175 typedef std::shared_ptr
<ContentSink
> ContentSinkSharedPtr
;
178 #endif // INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_CONTENTSINK_HXX
180 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */