1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <drawinglayer/primitive2d/fillgradientprimitive2d.hxx>
#include <basegfx/polygon/b2dpolygon.hxx>
#include <basegfx/polygon/b2dpolygontools.hxx>
#include <texture/texture.hxx>
#include <drawinglayer/primitive2d/PolyPolygonColorPrimitive2D.hxx>
#include <drawinglayer/primitive2d/drawinglayer_primitivetypes2d.hxx>
#include <utility>
#include <algorithm>
using namespace com::sun::star;
namespace drawinglayer::primitive2d
{
// Get the OuterColor. Take into account that for css::awt::GradientStyle_AXIAL
// this is the last one due to inverted gradient usage (see constructor there)
basegfx::BColor FillGradientPrimitive2D::getOuterColor() const
{
if (getFillGradient().getColorStops().empty())
return basegfx::BColor();
if (css::awt::GradientStyle_AXIAL == getFillGradient().getStyle())
return getFillGradient().getColorStops().back().getStopColor();
return getFillGradient().getColorStops().front().getStopColor();
}
// Get the needed UnitPolygon dependent on the GradientStyle
basegfx::B2DPolygon FillGradientPrimitive2D::getUnitPolygon() const
{
if (css::awt::GradientStyle_RADIAL == getFillGradient().getStyle()
|| css::awt::GradientStyle_ELLIPTICAL == getFillGradient().getStyle())
{
return basegfx::utils::createPolygonFromCircle(basegfx::B2DPoint(0.0, 0.0), 1.0);
}
return basegfx::utils::createPolygonFromRect(basegfx::B2DRange(-1.0, -1.0, 1.0, 1.0));
}
void FillGradientPrimitive2D::generateMatricesAndColors(
std::function<void(const basegfx::B2DHomMatrix& rMatrix, const basegfx::BColor& rColor)> aCallback) const
{
switch(getFillGradient().getStyle())
{
default: // GradientStyle_MAKE_FIXED_SIZE
case css::awt::GradientStyle_LINEAR:
{
texture::GeoTexSvxGradientLinear aGradient(
getDefinitionRange(),
getOutputRange(),
getFillGradient().getSteps(),
getFillGradient().getColorStops(),
getFillGradient().getBorder(),
getFillGradient().getAngle());
aGradient.appendTransformationsAndColors(aCallback);
break;
}
case css::awt::GradientStyle_AXIAL:
{
texture::GeoTexSvxGradientAxial aGradient(
getDefinitionRange(),
getOutputRange(),
getFillGradient().getSteps(),
getFillGradient().getColorStops(),
getFillGradient().getBorder(),
getFillGradient().getAngle());
aGradient.appendTransformationsAndColors(aCallback);
break;
}
case css::awt::GradientStyle_RADIAL:
{
texture::GeoTexSvxGradientRadial aGradient(
getDefinitionRange(),
getFillGradient().getSteps(),
getFillGradient().getColorStops(),
getFillGradient().getBorder(),
getFillGradient().getOffsetX(),
getFillGradient().getOffsetY());
aGradient.appendTransformationsAndColors(aCallback);
break;
}
case css::awt::GradientStyle_ELLIPTICAL:
{
texture::GeoTexSvxGradientElliptical aGradient(
getDefinitionRange(),
getFillGradient().getSteps(),
getFillGradient().getColorStops(),
getFillGradient().getBorder(),
getFillGradient().getOffsetX(),
getFillGradient().getOffsetY(),
getFillGradient().getAngle());
aGradient.appendTransformationsAndColors(aCallback);
break;
}
case css::awt::GradientStyle_SQUARE:
{
texture::GeoTexSvxGradientSquare aGradient(
getDefinitionRange(),
getFillGradient().getSteps(),
getFillGradient().getColorStops(),
getFillGradient().getBorder(),
getFillGradient().getOffsetX(),
getFillGradient().getOffsetY(),
getFillGradient().getAngle());
aGradient.appendTransformationsAndColors(aCallback);
break;
}
case css::awt::GradientStyle_RECT:
{
texture::GeoTexSvxGradientRect aGradient(
getDefinitionRange(),
getFillGradient().getSteps(),
getFillGradient().getColorStops(),
getFillGradient().getBorder(),
getFillGradient().getOffsetX(),
getFillGradient().getOffsetY(),
getFillGradient().getAngle());
aGradient.appendTransformationsAndColors(aCallback);
break;
}
}
}
void FillGradientPrimitive2D::createFill(Primitive2DContainer& rContainer, bool bOverlapping) const
{
if (bOverlapping)
{
// OverlappingFill: create solid fill with outmost color
rContainer.push_back(
new PolyPolygonColorPrimitive2D(
basegfx::B2DPolyPolygon(
basegfx::utils::createPolygonFromRect(getOutputRange())),
getOuterColor()));
// create solid fill steps by providing callback as lambda
auto aCallback([&rContainer,this](
const basegfx::B2DHomMatrix& rMatrix,
const basegfx::BColor& rColor)
{
// create part polygon
basegfx::B2DPolygon aNewPoly(getUnitPolygon());
aNewPoly.transform(rMatrix);
// create solid fill
rContainer.push_back(
new PolyPolygonColorPrimitive2D(
basegfx::B2DPolyPolygon(aNewPoly),
rColor));
});
// call value generator to trigger callbacks
generateMatricesAndColors(aCallback);
}
else
{
// NonOverlappingFill
if (getFillGradient().getColorStops().size() < 2)
{
// not really a gradient, we need to create a start primitive
// entry using the single color and the covered area
const basegfx::B2DRange aOutmostRange(getOutputRange());
rContainer.push_back(
new PolyPolygonColorPrimitive2D(
basegfx::B2DPolyPolygon(basegfx::utils::createPolygonFromRect(aOutmostRange)),
getOuterColor()));
}
else
{
// gradient with stops, prepare CombinedPolyPoly, use callback
basegfx::B2DPolyPolygon aCombinedPolyPoly;
basegfx::BColor aLastColor;
auto aCallback([&rContainer,&aCombinedPolyPoly,&aLastColor,this](
const basegfx::B2DHomMatrix& rMatrix,
const basegfx::BColor& rColor)
{
if (rContainer.empty())
{
// 1st callback, init CombinedPolyPoly & create 1st entry
basegfx::B2DRange aOutmostRange(getOutputRange());
// expand aOutmostRange with transformed first polygon
// to ensure confinement
basegfx::B2DPolygon aFirstPoly(getUnitPolygon());
aFirstPoly.transform(rMatrix);
aOutmostRange.expand(aFirstPoly.getB2DRange());
// build 1st combined polygon; outmost range 1st, then
// the shaped, transformed polygon
aCombinedPolyPoly.append(basegfx::utils::createPolygonFromRect(aOutmostRange));
aCombinedPolyPoly.append(aFirstPoly);
// create first primitive
rContainer.push_back(
new PolyPolygonColorPrimitive2D(
aCombinedPolyPoly,
getOuterColor()));
// save first polygon for re-use in next call, it's the second
// one, so remove 1st
aCombinedPolyPoly.remove(0);
// remember color for next primitive creation
aLastColor = rColor;
}
else
{
// regular n-th callback, create combined entry by re-using
// CombinedPolyPoly and aLastColor
basegfx::B2DPolygon aNextPoly(getUnitPolygon());
aNextPoly.transform(rMatrix);
aCombinedPolyPoly.append(aNextPoly);
// create primitive with correct color
rContainer.push_back(
new PolyPolygonColorPrimitive2D(
aCombinedPolyPoly,
aLastColor));
// prepare re-use of inner polygon, save color
aCombinedPolyPoly.remove(0);
aLastColor = rColor;
}
});
// call value generator to trigger callbacks
generateMatricesAndColors(aCallback);
// add last inner polygon with last color
rContainer.push_back(
new PolyPolygonColorPrimitive2D(
aCombinedPolyPoly,
aLastColor));
}
}
}
void FillGradientPrimitive2D::create2DDecomposition(Primitive2DContainer& rContainer, const geometry::ViewInformation2D& /*rViewInformation*/) const
{
// default creates overlapping fill which works with AntiAliasing and without.
// The non-overlapping version does not create single filled polygons, but
// PolyPolygons where each one describes a 'ring' for the gradient such
// that the rings will not overlap. This is useful for the old XOR-paint
// 'trick' of VCL which is recorded in Metafiles; so this version may be
// used from the MetafilePrimitive2D in its decomposition.
if(!getFillGradient().isDefault())
{
createFill(rContainer, /*bOverlapping*/true);
}
}
FillGradientPrimitive2D::FillGradientPrimitive2D(
const basegfx::B2DRange& rOutputRange,
attribute::FillGradientAttribute aFillGradient)
: maOutputRange(rOutputRange),
maDefinitionRange(rOutputRange),
maFillGradient(std::move(aFillGradient))
{
}
FillGradientPrimitive2D::FillGradientPrimitive2D(
const basegfx::B2DRange& rOutputRange,
const basegfx::B2DRange& rDefinitionRange,
attribute::FillGradientAttribute aFillGradient)
: maOutputRange(rOutputRange),
maDefinitionRange(rDefinitionRange),
maFillGradient(std::move(aFillGradient))
{
}
bool FillGradientPrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
{
if(BufferedDecompositionPrimitive2D::operator==(rPrimitive))
{
const FillGradientPrimitive2D& rCompare = static_cast<const FillGradientPrimitive2D&>(rPrimitive);
return (getOutputRange() == rCompare.getOutputRange()
&& getDefinitionRange() == rCompare.getDefinitionRange()
&& getFillGradient() == rCompare.getFillGradient());
}
return false;
}
basegfx::B2DRange FillGradientPrimitive2D::getB2DRange(const geometry::ViewInformation2D& /*rViewInformation*/) const
{
// return the geometrically visible area
return getOutputRange();
}
// provide unique ID
sal_uInt32 FillGradientPrimitive2D::getPrimitive2DID() const
{
return PRIMITIVE2D_ID_FILLGRADIENTPRIMITIVE2D;
}
} // end of namespace
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|