Line data Source code
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 :
20 : #include <drawinglayer/primitive2d/polypolygonprimitive2d.hxx>
21 : #include <basegfx/polygon/b2dpolypolygontools.hxx>
22 : #include <basegfx/tools/canvastools.hxx>
23 : #include <drawinglayer/primitive2d/fillgradientprimitive2d.hxx>
24 : #include <drawinglayer/primitive2d/maskprimitive2d.hxx>
25 : #include <drawinglayer/primitive2d/fillhatchprimitive2d.hxx>
26 : #include <basegfx/matrix/b2dhommatrix.hxx>
27 : #include <drawinglayer/primitive2d/fillbitmapprimitive2d.hxx>
28 : #include <drawinglayer/primitive2d/polygonprimitive2d.hxx>
29 : #include <drawinglayer/primitive2d/drawinglayer_primitivetypes2d.hxx>
30 :
31 : //////////////////////////////////////////////////////////////////////////////
32 :
33 : using namespace com::sun::star;
34 :
35 : //////////////////////////////////////////////////////////////////////////////
36 :
37 : namespace drawinglayer
38 : {
39 : namespace primitive2d
40 : {
41 84 : Primitive2DSequence PolyPolygonHairlinePrimitive2D::create2DDecomposition(const geometry::ViewInformation2D& /*rViewInformation*/) const
42 : {
43 84 : const basegfx::B2DPolyPolygon aPolyPolygon(getB2DPolyPolygon());
44 84 : const sal_uInt32 nCount(aPolyPolygon.count());
45 :
46 84 : if(nCount)
47 : {
48 84 : Primitive2DSequence aRetval(nCount);
49 :
50 1006 : for(sal_uInt32 a(0L); a < nCount; a++)
51 : {
52 922 : aRetval[a] = Primitive2DReference(new PolygonHairlinePrimitive2D(aPolyPolygon.getB2DPolygon(a), getBColor()));
53 : }
54 :
55 84 : return aRetval;
56 : }
57 : else
58 : {
59 0 : return Primitive2DSequence();
60 84 : }
61 : }
62 :
63 177 : PolyPolygonHairlinePrimitive2D::PolyPolygonHairlinePrimitive2D(const basegfx::B2DPolyPolygon& rPolyPolygon, const basegfx::BColor& rBColor)
64 : : BufferedDecompositionPrimitive2D(),
65 : maPolyPolygon(rPolyPolygon),
66 177 : maBColor(rBColor)
67 : {
68 177 : }
69 :
70 11 : bool PolyPolygonHairlinePrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
71 : {
72 11 : if(BufferedDecompositionPrimitive2D::operator==(rPrimitive))
73 : {
74 11 : const PolyPolygonHairlinePrimitive2D& rCompare = (PolyPolygonHairlinePrimitive2D&)rPrimitive;
75 :
76 11 : return (getB2DPolyPolygon() == rCompare.getB2DPolyPolygon()
77 11 : && getBColor() == rCompare.getBColor());
78 : }
79 :
80 0 : return false;
81 : }
82 :
83 115 : basegfx::B2DRange PolyPolygonHairlinePrimitive2D::getB2DRange(const geometry::ViewInformation2D& /*rViewInformation*/) const
84 : {
85 : // return range
86 115 : return basegfx::tools::getRange(getB2DPolyPolygon());
87 : }
88 :
89 : // provide unique ID
90 111 : ImplPrimitrive2DIDBlock(PolyPolygonHairlinePrimitive2D, PRIMITIVE2D_ID_POLYPOLYGONHAIRLINEPRIMITIVE2D)
91 :
92 : } // end of namespace primitive2d
93 : } // end of namespace drawinglayer
94 :
95 : //////////////////////////////////////////////////////////////////////////////
96 :
97 : namespace drawinglayer
98 : {
99 : namespace primitive2d
100 : {
101 0 : Primitive2DSequence PolyPolygonMarkerPrimitive2D::create2DDecomposition(const geometry::ViewInformation2D& /*rViewInformation*/) const
102 : {
103 0 : const basegfx::B2DPolyPolygon aPolyPolygon(getB2DPolyPolygon());
104 0 : const sal_uInt32 nCount(aPolyPolygon.count());
105 :
106 0 : if(nCount)
107 : {
108 0 : Primitive2DSequence aRetval(nCount);
109 :
110 0 : for(sal_uInt32 a(0L); a < nCount; a++)
111 : {
112 0 : aRetval[a] = Primitive2DReference(new PolygonMarkerPrimitive2D(aPolyPolygon.getB2DPolygon(a), getRGBColorA(), getRGBColorB(), getDiscreteDashLength()));
113 : }
114 :
115 0 : return aRetval;
116 : }
117 : else
118 : {
119 0 : return Primitive2DSequence();
120 0 : }
121 : }
122 :
123 0 : PolyPolygonMarkerPrimitive2D::PolyPolygonMarkerPrimitive2D(
124 : const basegfx::B2DPolyPolygon& rPolyPolygon,
125 : const basegfx::BColor& rRGBColorA,
126 : const basegfx::BColor& rRGBColorB,
127 : double fDiscreteDashLength)
128 : : BufferedDecompositionPrimitive2D(),
129 : maPolyPolygon(rPolyPolygon),
130 : maRGBColorA(rRGBColorA),
131 : maRGBColorB(rRGBColorB),
132 0 : mfDiscreteDashLength(fDiscreteDashLength)
133 : {
134 0 : }
135 :
136 0 : bool PolyPolygonMarkerPrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
137 : {
138 0 : if(BufferedDecompositionPrimitive2D::operator==(rPrimitive))
139 : {
140 0 : const PolyPolygonMarkerPrimitive2D& rCompare = (PolyPolygonMarkerPrimitive2D&)rPrimitive;
141 :
142 0 : return (getB2DPolyPolygon() == rCompare.getB2DPolyPolygon()
143 0 : && getRGBColorA() == rCompare.getRGBColorA()
144 0 : && getRGBColorB() == rCompare.getRGBColorB()
145 0 : && getDiscreteDashLength() == rCompare.getDiscreteDashLength());
146 : }
147 :
148 0 : return false;
149 : }
150 :
151 0 : basegfx::B2DRange PolyPolygonMarkerPrimitive2D::getB2DRange(const geometry::ViewInformation2D& /*rViewInformation*/) const
152 : {
153 : // return range
154 0 : return basegfx::tools::getRange(getB2DPolyPolygon());
155 : }
156 :
157 : // provide unique ID
158 0 : ImplPrimitrive2DIDBlock(PolyPolygonMarkerPrimitive2D, PRIMITIVE2D_ID_POLYPOLYGONMARKERPRIMITIVE2D)
159 :
160 : } // end of namespace primitive2d
161 : } // end of namespace drawinglayer
162 :
163 : //////////////////////////////////////////////////////////////////////////////
164 :
165 : namespace drawinglayer
166 : {
167 : namespace primitive2d
168 : {
169 8 : Primitive2DSequence PolyPolygonStrokePrimitive2D::create2DDecomposition(const geometry::ViewInformation2D& /*rViewInformation*/) const
170 : {
171 8 : const basegfx::B2DPolyPolygon aPolyPolygon(getB2DPolyPolygon());
172 8 : const sal_uInt32 nCount(aPolyPolygon.count());
173 :
174 8 : if(nCount)
175 : {
176 8 : Primitive2DSequence aRetval(nCount);
177 :
178 16 : for(sal_uInt32 a(0L); a < nCount; a++)
179 : {
180 8 : aRetval[a] = Primitive2DReference(
181 : new PolygonStrokePrimitive2D(
182 16 : aPolyPolygon.getB2DPolygon(a), getLineAttribute(), getStrokeAttribute()));
183 : }
184 :
185 8 : return aRetval;
186 : }
187 : else
188 : {
189 0 : return Primitive2DSequence();
190 8 : }
191 : }
192 :
193 8 : PolyPolygonStrokePrimitive2D::PolyPolygonStrokePrimitive2D(
194 : const basegfx::B2DPolyPolygon& rPolyPolygon,
195 : const attribute::LineAttribute& rLineAttribute,
196 : const attribute::StrokeAttribute& rStrokeAttribute)
197 : : BufferedDecompositionPrimitive2D(),
198 : maPolyPolygon(rPolyPolygon),
199 : maLineAttribute(rLineAttribute),
200 8 : maStrokeAttribute(rStrokeAttribute)
201 : {
202 8 : }
203 :
204 0 : PolyPolygonStrokePrimitive2D::PolyPolygonStrokePrimitive2D(
205 : const basegfx::B2DPolyPolygon& rPolyPolygon,
206 : const attribute::LineAttribute& rLineAttribute)
207 : : BufferedDecompositionPrimitive2D(),
208 : maPolyPolygon(rPolyPolygon),
209 : maLineAttribute(rLineAttribute),
210 0 : maStrokeAttribute()
211 : {
212 0 : }
213 :
214 0 : bool PolyPolygonStrokePrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
215 : {
216 0 : if(BufferedDecompositionPrimitive2D::operator==(rPrimitive))
217 : {
218 0 : const PolyPolygonStrokePrimitive2D& rCompare = (PolyPolygonStrokePrimitive2D&)rPrimitive;
219 :
220 0 : return (getB2DPolyPolygon() == rCompare.getB2DPolyPolygon()
221 0 : && getLineAttribute() == rCompare.getLineAttribute()
222 0 : && getStrokeAttribute() == rCompare.getStrokeAttribute());
223 : }
224 :
225 0 : return false;
226 : }
227 :
228 0 : basegfx::B2DRange PolyPolygonStrokePrimitive2D::getB2DRange(const geometry::ViewInformation2D& /*rViewInformation*/) const
229 : {
230 : // get range of it (subdivided)
231 0 : basegfx::B2DRange aRetval(basegfx::tools::getRange(getB2DPolyPolygon()));
232 :
233 : // if width, grow by line width
234 0 : if(getLineAttribute().getWidth())
235 : {
236 0 : aRetval.grow(getLineAttribute().getWidth() / 2.0);
237 : }
238 :
239 0 : return aRetval;
240 : }
241 :
242 : // provide unique ID
243 8 : ImplPrimitrive2DIDBlock(PolyPolygonStrokePrimitive2D, PRIMITIVE2D_ID_POLYPOLYGONSTROKEPRIMITIVE2D)
244 :
245 : } // end of namespace primitive2d
246 : } // end of namespace drawinglayer
247 :
248 : //////////////////////////////////////////////////////////////////////////////
249 :
250 : namespace drawinglayer
251 : {
252 : namespace primitive2d
253 : {
254 513 : PolyPolygonColorPrimitive2D::PolyPolygonColorPrimitive2D(
255 : const basegfx::B2DPolyPolygon& rPolyPolygon,
256 : const basegfx::BColor& rBColor)
257 : : BasePrimitive2D(),
258 : maPolyPolygon(rPolyPolygon),
259 513 : maBColor(rBColor)
260 : {
261 513 : }
262 :
263 4 : bool PolyPolygonColorPrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
264 : {
265 4 : if(BasePrimitive2D::operator==(rPrimitive))
266 : {
267 4 : const PolyPolygonColorPrimitive2D& rCompare = (PolyPolygonColorPrimitive2D&)rPrimitive;
268 :
269 4 : return (getB2DPolyPolygon() == rCompare.getB2DPolyPolygon()
270 4 : && getBColor() == rCompare.getBColor());
271 : }
272 :
273 0 : return false;
274 : }
275 :
276 264 : basegfx::B2DRange PolyPolygonColorPrimitive2D::getB2DRange(const geometry::ViewInformation2D& /*rViewInformation*/) const
277 : {
278 : // return range
279 264 : return basegfx::tools::getRange(getB2DPolyPolygon());
280 : }
281 :
282 : // provide unique ID
283 213 : ImplPrimitrive2DIDBlock(PolyPolygonColorPrimitive2D, PRIMITIVE2D_ID_POLYPOLYGONCOLORPRIMITIVE2D)
284 :
285 : } // end of namespace primitive2d
286 : } // end of namespace drawinglayer
287 :
288 : //////////////////////////////////////////////////////////////////////////////
289 :
290 : namespace drawinglayer
291 : {
292 : namespace primitive2d
293 : {
294 0 : Primitive2DSequence PolyPolygonGradientPrimitive2D::create2DDecomposition(const geometry::ViewInformation2D& /*rViewInformation*/) const
295 : {
296 0 : if(!getFillGradient().isDefault())
297 : {
298 : // create SubSequence with FillGradientPrimitive2D
299 0 : const basegfx::B2DRange aPolyPolygonRange(getB2DPolyPolygon().getB2DRange());
300 0 : FillGradientPrimitive2D* pNewGradient = new FillGradientPrimitive2D(aPolyPolygonRange, getFillGradient());
301 0 : const Primitive2DReference xSubRef(pNewGradient);
302 0 : const Primitive2DSequence aSubSequence(&xSubRef, 1L);
303 :
304 : // create mask primitive
305 0 : MaskPrimitive2D* pNewMask = new MaskPrimitive2D(getB2DPolyPolygon(), aSubSequence);
306 0 : const Primitive2DReference xRef(pNewMask);
307 :
308 0 : return Primitive2DSequence(&xRef, 1);
309 : }
310 : else
311 : {
312 0 : return Primitive2DSequence();
313 : }
314 : }
315 :
316 0 : PolyPolygonGradientPrimitive2D::PolyPolygonGradientPrimitive2D(
317 : const basegfx::B2DPolyPolygon& rPolyPolygon,
318 : const attribute::FillGradientAttribute& rFillGradient)
319 : : BufferedDecompositionPrimitive2D(),
320 : maPolyPolygon(rPolyPolygon),
321 0 : maFillGradient(rFillGradient)
322 : {
323 0 : }
324 :
325 0 : bool PolyPolygonGradientPrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
326 : {
327 0 : if(BufferedDecompositionPrimitive2D::operator==(rPrimitive))
328 : {
329 0 : const PolyPolygonGradientPrimitive2D& rCompare = (PolyPolygonGradientPrimitive2D&)rPrimitive;
330 :
331 0 : return (getFillGradient() == rCompare.getFillGradient());
332 : }
333 :
334 0 : return false;
335 : }
336 :
337 : // provide unique ID
338 0 : ImplPrimitrive2DIDBlock(PolyPolygonGradientPrimitive2D, PRIMITIVE2D_ID_POLYPOLYGONGRADIENTPRIMITIVE2D)
339 :
340 : } // end of namespace primitive2d
341 : } // end of namespace drawinglayer
342 :
343 : //////////////////////////////////////////////////////////////////////////////
344 :
345 : namespace drawinglayer
346 : {
347 : namespace primitive2d
348 : {
349 0 : Primitive2DSequence PolyPolygonHatchPrimitive2D::create2DDecomposition(const geometry::ViewInformation2D& /*rViewInformation*/) const
350 : {
351 0 : if(!getFillHatch().isDefault())
352 : {
353 : // create SubSequence with FillHatchPrimitive2D
354 0 : const basegfx::B2DRange aPolyPolygonRange(getB2DPolyPolygon().getB2DRange());
355 0 : FillHatchPrimitive2D* pNewHatch = new FillHatchPrimitive2D(aPolyPolygonRange, getBackgroundColor(), getFillHatch());
356 0 : const Primitive2DReference xSubRef(pNewHatch);
357 0 : const Primitive2DSequence aSubSequence(&xSubRef, 1L);
358 :
359 : // create mask primitive
360 0 : MaskPrimitive2D* pNewMask = new MaskPrimitive2D(getB2DPolyPolygon(), aSubSequence);
361 0 : const Primitive2DReference xRef(pNewMask);
362 :
363 0 : return Primitive2DSequence(&xRef, 1);
364 : }
365 : else
366 : {
367 0 : return Primitive2DSequence();
368 : }
369 : }
370 :
371 0 : PolyPolygonHatchPrimitive2D::PolyPolygonHatchPrimitive2D(
372 : const basegfx::B2DPolyPolygon& rPolyPolygon,
373 : const basegfx::BColor& rBackgroundColor,
374 : const attribute::FillHatchAttribute& rFillHatch)
375 : : BufferedDecompositionPrimitive2D(),
376 : maPolyPolygon(rPolyPolygon),
377 : maBackgroundColor(rBackgroundColor),
378 0 : maFillHatch(rFillHatch)
379 : {
380 0 : }
381 :
382 0 : bool PolyPolygonHatchPrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
383 : {
384 0 : if(BufferedDecompositionPrimitive2D::operator==(rPrimitive))
385 : {
386 0 : const PolyPolygonHatchPrimitive2D& rCompare = (PolyPolygonHatchPrimitive2D&)rPrimitive;
387 :
388 0 : return (getBackgroundColor() == rCompare.getBackgroundColor()
389 0 : && getFillHatch() == rCompare.getFillHatch());
390 : }
391 :
392 0 : return false;
393 : }
394 :
395 : // provide unique ID
396 0 : ImplPrimitrive2DIDBlock(PolyPolygonHatchPrimitive2D, PRIMITIVE2D_ID_POLYPOLYGONHATCHPRIMITIVE2D)
397 :
398 : } // end of namespace primitive2d
399 : } // end of namespace drawinglayer
400 :
401 : //////////////////////////////////////////////////////////////////////////////
402 :
403 : namespace drawinglayer
404 : {
405 : namespace primitive2d
406 : {
407 0 : Primitive2DSequence PolyPolygonBitmapPrimitive2D::create2DDecomposition(const geometry::ViewInformation2D& /*rViewInformation*/) const
408 : {
409 0 : if(!getFillBitmap().isDefault())
410 : {
411 : // create SubSequence with FillBitmapPrimitive2D
412 0 : const basegfx::B2DRange aPolyPolygonRange(getB2DPolyPolygon().getB2DRange());
413 0 : basegfx::B2DHomMatrix aNewObjectTransform;
414 0 : aNewObjectTransform.set(0, 0, aPolyPolygonRange.getWidth());
415 0 : aNewObjectTransform.set(1, 1, aPolyPolygonRange.getHeight());
416 0 : aNewObjectTransform.set(0, 2, aPolyPolygonRange.getMinX());
417 0 : aNewObjectTransform.set(1, 2, aPolyPolygonRange.getMinY());
418 0 : FillBitmapPrimitive2D* pNewBitmap = new FillBitmapPrimitive2D(aNewObjectTransform, getFillBitmap());
419 0 : const Primitive2DReference xSubRef(pNewBitmap);
420 0 : const Primitive2DSequence aSubSequence(&xSubRef, 1L);
421 :
422 : // create mask primitive
423 0 : MaskPrimitive2D* pNewMask = new MaskPrimitive2D(getB2DPolyPolygon(), aSubSequence);
424 0 : const Primitive2DReference xRef(pNewMask);
425 :
426 0 : return Primitive2DSequence(&xRef, 1);
427 : }
428 : else
429 : {
430 0 : return Primitive2DSequence();
431 : }
432 : }
433 :
434 0 : PolyPolygonBitmapPrimitive2D::PolyPolygonBitmapPrimitive2D(
435 : const basegfx::B2DPolyPolygon& rPolyPolygon,
436 : const attribute::FillBitmapAttribute& rFillBitmap)
437 : : BufferedDecompositionPrimitive2D(),
438 : maPolyPolygon(rPolyPolygon),
439 0 : maFillBitmap(rFillBitmap)
440 : {
441 0 : }
442 :
443 0 : bool PolyPolygonBitmapPrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
444 : {
445 0 : if(BufferedDecompositionPrimitive2D::operator==(rPrimitive))
446 : {
447 0 : const PolyPolygonBitmapPrimitive2D& rCompare = (PolyPolygonBitmapPrimitive2D&)rPrimitive;
448 :
449 0 : return (getFillBitmap() == rCompare.getFillBitmap());
450 : }
451 :
452 0 : return false;
453 : }
454 :
455 : // provide unique ID
456 0 : ImplPrimitrive2DIDBlock(PolyPolygonBitmapPrimitive2D, PRIMITIVE2D_ID_POLYPOLYGONBITMAPPRIMITIVE2D)
457 :
458 : } // end of namespace primitive2d
459 : } // end of namespace drawinglayer
460 :
461 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|