LibreOffice Module drawinglayer (master) 1
PolyPolygonGradientPrimitive2D.cxx
Go to the documentation of this file.
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
21
25#include <rtl/ref.hxx>
26#include <utility>
27
28using namespace com::sun::star;
29
31{
33 Primitive2DContainer& rContainer, const geometry::ViewInformation2D& /*rViewInformation*/) const
34{
35 if (!getFillGradient().isDefault())
36 {
37 // create SubSequence with FillGradientPrimitive2D
38 const basegfx::B2DRange aPolyPolygonRange(getB2DPolyPolygon().getB2DRange());
40 aPolyPolygonRange, getDefinitionRange(), getFillGradient());
41 Primitive2DContainer aSubSequence{ pNewGradient };
42
43 // create mask primitive
44 rContainer.push_back(new MaskPrimitive2D(getB2DPolyPolygon(), std::move(aSubSequence)));
45 }
46}
47
49 const basegfx::B2DPolyPolygon& rPolyPolygon, attribute::FillGradientAttribute aFillGradient)
50 : maPolyPolygon(rPolyPolygon)
51 , maDefinitionRange(rPolyPolygon.getB2DRange())
52 , maFillGradient(std::move(aFillGradient))
53{
54}
55
57 basegfx::B2DPolyPolygon aPolyPolygon, const basegfx::B2DRange& rDefinitionRange,
59 : maPolyPolygon(std::move(aPolyPolygon))
60 , maDefinitionRange(rDefinitionRange)
61 , maFillGradient(std::move(aFillGradient))
62{
63}
64
66{
67 if (BufferedDecompositionPrimitive2D::operator==(rPrimitive))
68 {
69 const PolyPolygonGradientPrimitive2D& rCompare
70 = static_cast<const PolyPolygonGradientPrimitive2D&>(rPrimitive);
71
72 return (getB2DPolyPolygon() == rCompare.getB2DPolyPolygon()
73 && getDefinitionRange() == rCompare.getDefinitionRange()
74 && getFillGradient() == rCompare.getFillGradient());
75 }
76
77 return false;
78}
79
80// provide unique ID
82{
84}
85
86} // end drawinglayer::primitive2d namespace
87
88/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual basegfx::B2DRange getB2DRange(const geometry::ViewInformation2D &rViewInformation) const
The default implementation will use getDecomposition results to create the range.
virtual sal_uInt32 getPrimitive2DID() const override
provide unique ID
const basegfx::B2DPolyPolygon & getB2DPolyPolygon() const
data read access
const attribute::FillGradientAttribute & getFillGradient() const
virtual bool operator==(const BasePrimitive2D &rPrimitive) const override
compare operator
PolyPolygonGradientPrimitive2D(const basegfx::B2DPolyPolygon &rPolyPolygon, attribute::FillGradientAttribute rFillGradient)
constructors. The one without definition range will use output range as definition range
virtual void create2DDecomposition(Primitive2DContainer &rContainer, const geometry::ViewInformation2D &rViewInformation) const override
local decomposition.
#define PRIMITIVE2D_ID_POLYPOLYGONGRADIENTPRIMITIVE2D
basegfx::B2DPolyPolygon maPolyPolygon