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_SVX_INC_SDR_PRIMITIVE2D_SDRPATHPRIMITIVE2D_HXX
21 #define INCLUDED_SVX_INC_SDR_PRIMITIVE2D_SDRPATHPRIMITIVE2D_HXX
23 #include <drawinglayer/primitive2d/baseprimitive2d.hxx>
24 #include <basegfx/matrix/b2dhommatrix.hxx>
25 #include <svx/sdr/attribute/sdrlinefillshadowtextattribute.hxx>
26 #include <basegfx/polygon/b2dpolypolygon.hxx>
32 namespace drawinglayer
36 class SdrPathPrimitive2D
: public BufferedDecompositionPrimitive2D
39 basegfx::B2DHomMatrix
const maTransform
;
40 attribute::SdrLineFillShadowTextAttribute
const maSdrLFSTAttribute
;
41 basegfx::B2DPolyPolygon
const maUnitPolyPolygon
;
43 // OperationSmiley: Added to be able to define a FillGeometry different from local
44 // geometry. It is ignored when empty and/or equal to UnitPolyPolygon.
45 // If used and there is a fill, the object's geometry (maUnitPolyPolygon) will be filled,
46 // but UnitDefinitionPolyPolygon will be used to define the FillStyle. Thus when
47 // using the 'same' UnitDefinitionPolyPolygon for multiple definitions,
48 // all filled stuff using it will fit seamlessly together.
49 // 'same' is in quotes since it is a UnitPolygon, so being relative to the
50 // unit polygon of the local geometry (UnitPolyPolygon). The definition is complete
51 // when applying the also given transformation (maTransform)
52 basegfx::B2DPolyPolygon
const maUnitDefinitionPolyPolygon
;
55 // local decomposition.
56 virtual void create2DDecomposition(Primitive2DContainer
& rContainer
, const geometry::ViewInformation2D
& aViewInformation
) const override
;
59 // OperationSmiley: Extended to UnitDefinitionPolyPolygon, but when needed
60 // a 2nd version without can be defined that just does not set the
61 // maUnitDefinitionPolyPolygon or set equal to UnitPolyPolygon
63 const basegfx::B2DHomMatrix
& rTransform
,
64 const attribute::SdrLineFillShadowTextAttribute
& rSdrLFSTAttribute
,
65 const basegfx::B2DPolyPolygon
& rUnitPolyPolygon
,
66 const basegfx::B2DPolyPolygon
& rUnitDefinitionPolyPolygon
);
69 const basegfx::B2DHomMatrix
& getTransform() const { return maTransform
; }
70 const attribute::SdrLineFillShadowTextAttribute
& getSdrLFSTAttribute() const { return maSdrLFSTAttribute
; }
71 const basegfx::B2DPolyPolygon
& getUnitPolyPolygon() const { return maUnitPolyPolygon
; }
72 const basegfx::B2DPolyPolygon
& getUnitDefinitionPolyPolygon() const { return maUnitDefinitionPolyPolygon
; }
75 virtual bool operator==(const BasePrimitive2D
& rPrimitive
) const override
;
78 DeclPrimitive2DIDBlock()
80 } // end of namespace primitive2d
81 } // end of namespace drawinglayer
84 #endif // INCLUDED_SVX_INC_SDR_PRIMITIVE2D_SDRPATHPRIMITIVE2D_HXX
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */