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 <svx/sdr/primitive2d/sdrpathprimitive2d.hxx>
21 : #include <svx/sdr/primitive2d/sdrdecompositiontools.hxx>
22 : #include <basegfx/polygon/b2dpolypolygontools.hxx>
23 : #include <drawinglayer/primitive2d/groupprimitive2d.hxx>
24 : #include <svx/sdr/primitive2d/svx_primitivetypes2d.hxx>
25 : #include <drawinglayer/primitive2d/sdrdecompositiontools2d.hxx>
26 :
27 :
28 :
29 : using namespace com::sun::star;
30 :
31 :
32 :
33 : namespace drawinglayer
34 : {
35 : namespace primitive2d
36 : {
37 0 : Primitive2DSequence SdrPathPrimitive2D::create2DDecomposition(const geometry::ViewInformation2D& /*aViewInformation*/) const
38 : {
39 0 : Primitive2DSequence aRetval;
40 :
41 : // add fill
42 0 : if(!getSdrLFSTAttribute().getFill().isDefault()
43 0 : && getUnitPolyPolygon().isClosed())
44 : {
45 : // #i108255# no need to use correctOrientations here; target is
46 : // straight visualisation
47 0 : basegfx::B2DPolyPolygon aTransformed(getUnitPolyPolygon());
48 :
49 0 : aTransformed.transform(getTransform());
50 : appendPrimitive2DReferenceToPrimitive2DSequence(aRetval,
51 : createPolyPolygonFillPrimitive(
52 : aTransformed,
53 0 : getSdrLFSTAttribute().getFill(),
54 0 : getSdrLFSTAttribute().getFillFloatTransGradient()));
55 : }
56 :
57 : // add line
58 0 : if(getSdrLFSTAttribute().getLine().isDefault())
59 : {
60 : // if initially no line is defined, create one for HitTest and BoundRect
61 : appendPrimitive2DReferenceToPrimitive2DSequence(aRetval,
62 : createHiddenGeometryPrimitives2D(
63 : false,
64 0 : getUnitPolyPolygon(),
65 0 : getTransform()));
66 : }
67 : else
68 : {
69 0 : Primitive2DSequence aTemp(getUnitPolyPolygon().count());
70 :
71 0 : for(sal_uInt32 a(0); a < getUnitPolyPolygon().count(); a++)
72 : {
73 0 : basegfx::B2DPolygon aTransformed(getUnitPolyPolygon().getB2DPolygon(a));
74 :
75 0 : aTransformed.transform(getTransform());
76 0 : aTemp[a] = createPolygonLinePrimitive(
77 : aTransformed,
78 0 : getSdrLFSTAttribute().getLine(),
79 0 : getSdrLFSTAttribute().getLineStartEnd());
80 0 : }
81 :
82 0 : appendPrimitive2DSequenceToPrimitive2DSequence(aRetval, aTemp);
83 : }
84 :
85 : // add text
86 0 : if(!getSdrLFSTAttribute().getText().isDefault())
87 : {
88 : appendPrimitive2DReferenceToPrimitive2DSequence(aRetval,
89 : createTextPrimitive(
90 0 : getUnitPolyPolygon(),
91 0 : getTransform(),
92 0 : getSdrLFSTAttribute().getText(),
93 0 : getSdrLFSTAttribute().getLine(),
94 : false,
95 : false,
96 0 : false));
97 : }
98 :
99 : // add shadow
100 0 : if(!getSdrLFSTAttribute().getShadow().isDefault())
101 : {
102 0 : aRetval = createEmbeddedShadowPrimitive(
103 : aRetval,
104 0 : getSdrLFSTAttribute().getShadow());
105 : }
106 :
107 0 : return aRetval;
108 : }
109 :
110 0 : SdrPathPrimitive2D::SdrPathPrimitive2D(
111 : const basegfx::B2DHomMatrix& rTransform,
112 : const attribute::SdrLineFillShadowTextAttribute& rSdrLFSTAttribute,
113 : const basegfx::B2DPolyPolygon& rUnitPolyPolygon)
114 : : BufferedDecompositionPrimitive2D(),
115 : maTransform(rTransform),
116 : maSdrLFSTAttribute(rSdrLFSTAttribute),
117 0 : maUnitPolyPolygon(rUnitPolyPolygon)
118 : {
119 0 : }
120 :
121 0 : bool SdrPathPrimitive2D::operator==(const BasePrimitive2D& rPrimitive) const
122 : {
123 0 : if(BufferedDecompositionPrimitive2D::operator==(rPrimitive))
124 : {
125 0 : const SdrPathPrimitive2D& rCompare = (SdrPathPrimitive2D&)rPrimitive;
126 :
127 0 : return (getUnitPolyPolygon() == rCompare.getUnitPolyPolygon()
128 0 : && getTransform() == rCompare.getTransform()
129 0 : && getSdrLFSTAttribute() == rCompare.getSdrLFSTAttribute());
130 : }
131 :
132 0 : return false;
133 : }
134 :
135 : // provide unique ID
136 0 : ImplPrimitive2DIDBlock(SdrPathPrimitive2D, PRIMITIVE2D_ID_SDRPATHPRIMITIVE2D)
137 :
138 : } // end of namespace primitive2d
139 : } // end of namespace drawinglayer
140 :
141 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|