cool#10610 Ensure the parent-child relations of comments.
[LibreOffice.git] / drawinglayer / source / primitive2d / PolyPolygonHatchPrimitive2D.cxx
blob2379e54e3de831740b503348c23ec17c83efe80e
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 #include <drawinglayer/primitive2d/PolyPolygonHatchPrimitive2D.hxx>
22 #include <drawinglayer/primitive2d/drawinglayer_primitivetypes2d.hxx>
23 #include <drawinglayer/primitive2d/maskprimitive2d.hxx>
24 #include <drawinglayer/primitive2d/fillhatchprimitive2d.hxx>
25 #include <rtl/ref.hxx>
26 #include <utility>
28 using namespace com::sun::star;
30 namespace drawinglayer::primitive2d
32 Primitive2DReference PolyPolygonHatchPrimitive2D::create2DDecomposition(
33 const geometry::ViewInformation2D& /*rViewInformation*/) const
35 if (!getFillHatch().isDefault())
37 // create SubSequence with FillHatchPrimitive2D
38 const basegfx::B2DRange aPolyPolygonRange(getB2DPolyPolygon().getB2DRange());
39 rtl::Reference<FillHatchPrimitive2D> pNewHatch = new FillHatchPrimitive2D(
40 aPolyPolygonRange, getDefinitionRange(), getBackgroundColor(), getFillHatch());
41 Primitive2DContainer aSubSequence{ pNewHatch };
43 // create mask primitive
44 return new MaskPrimitive2D(getB2DPolyPolygon(), std::move(aSubSequence));
46 return nullptr;
49 PolyPolygonHatchPrimitive2D::PolyPolygonHatchPrimitive2D(
50 const basegfx::B2DPolyPolygon& rPolyPolygon, const basegfx::BColor& rBackgroundColor,
51 attribute::FillHatchAttribute rFillHatch)
52 : maPolyPolygon(rPolyPolygon)
53 , maDefinitionRange(rPolyPolygon.getB2DRange())
54 , maBackgroundColor(rBackgroundColor)
55 , maFillHatch(std::move(rFillHatch))
59 PolyPolygonHatchPrimitive2D::PolyPolygonHatchPrimitive2D(basegfx::B2DPolyPolygon aPolyPolygon,
60 const basegfx::B2DRange& rDefinitionRange,
61 const basegfx::BColor& rBackgroundColor,
62 attribute::FillHatchAttribute rFillHatch)
63 : maPolyPolygon(std::move(aPolyPolygon))
64 , maDefinitionRange(rDefinitionRange)
65 , maBackgroundColor(rBackgroundColor)
66 , maFillHatch(std::move(rFillHatch))
70 bool PolyPolygonHatchPrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
72 if (BufferedDecompositionPrimitive2D::operator==(rPrimitive))
74 const PolyPolygonHatchPrimitive2D& rCompare
75 = static_cast<const PolyPolygonHatchPrimitive2D&>(rPrimitive);
77 return (getB2DPolyPolygon() == rCompare.getB2DPolyPolygon()
78 && getDefinitionRange() == rCompare.getDefinitionRange()
79 && getBackgroundColor() == rCompare.getBackgroundColor()
80 && getFillHatch() == rCompare.getFillHatch());
83 return false;
86 // provide unique ID
87 sal_uInt32 PolyPolygonHatchPrimitive2D::getPrimitive2DID() const
89 return PRIMITIVE2D_ID_POLYPOLYGONHATCHPRIMITIVE2D;
92 } // end drawinglayer::primitive2d namespace
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */