Update git submodules
[LibreOffice.git] / svx / inc / sdr / primitive2d / sdrpathprimitive2d.hxx
blobfbd2d6203a325c7a0fbdc62a507ef16c39f6d700
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 #pragma once
22 #include <drawinglayer/primitive2d/BufferedDecompositionPrimitive2D.hxx>
23 #include <basegfx/matrix/b2dhommatrix.hxx>
24 #include <sdr/attribute/sdrlinefilleffectstextattribute.hxx>
25 #include <basegfx/polygon/b2dpolypolygon.hxx>
28 // predefines
31 namespace drawinglayer::primitive2d
33 class SdrPathPrimitive2D final : public BufferedDecompositionPrimitive2D
35 private:
36 basegfx::B2DHomMatrix maTransform;
37 attribute::SdrLineFillEffectsTextAttribute maSdrLFSTAttribute;
38 basegfx::B2DPolyPolygon maUnitPolyPolygon;
40 // OperationSmiley: Added to be able to define a FillGeometry different from local
41 // geometry. It is ignored when empty and/or equal to UnitPolyPolygon.
42 // If used and there is a fill, the object's geometry (maUnitPolyPolygon) will be filled,
43 // but UnitDefinitionPolyPolygon will be used to define the FillStyle. Thus when
44 // using the 'same' UnitDefinitionPolyPolygon for multiple definitions,
45 // all filled stuff using it will fit seamlessly together.
46 // 'same' is in quotes since it is a UnitPolygon, so being relative to the
47 // unit polygon of the local geometry (UnitPolyPolygon). The definition is complete
48 // when applying the also given transformation (maTransform)
49 basegfx::B2DPolyPolygon maUnitDefinitionPolyPolygon;
51 // local decomposition.
52 virtual Primitive2DReference create2DDecomposition(const geometry::ViewInformation2D& aViewInformation) const override;
54 public:
55 // OperationSmiley: Extended to UnitDefinitionPolyPolygon, but when needed
56 // a 2nd version without can be defined that just does not set the
57 // maUnitDefinitionPolyPolygon or set equal to UnitPolyPolygon
58 SdrPathPrimitive2D(
59 basegfx::B2DHomMatrix aTransform,
60 const attribute::SdrLineFillEffectsTextAttribute& rSdrLFSTAttribute,
61 basegfx::B2DPolyPolygon aUnitPolyPolygon,
62 basegfx::B2DPolyPolygon aUnitDefinitionPolyPolygon);
64 // data access
65 const basegfx::B2DHomMatrix& getTransform() const { return maTransform; }
66 const attribute::SdrLineFillEffectsTextAttribute& getSdrLFSTAttribute() const { return maSdrLFSTAttribute; }
67 const basegfx::B2DPolyPolygon& getUnitPolyPolygon() const { return maUnitPolyPolygon; }
68 const basegfx::B2DPolyPolygon& getUnitDefinitionPolyPolygon() const { return maUnitDefinitionPolyPolygon; }
70 // compare operator
71 virtual bool operator==(const BasePrimitive2D& rPrimitive) const override;
73 // provide unique ID
74 virtual sal_uInt32 getPrimitive2DID() const override;
76 } // end of namespace drawinglayer::primitive2d
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */