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/attribute/sdrformtextattribute.hxx>
21 : #include <basegfx/vector/b2enums.hxx>
22 : #include <svl/itemset.hxx>
23 : #include <svx/xftdiit.hxx>
24 : #include <svx/xftstit.hxx>
25 : #include <svx/xftshxy.hxx>
26 : #include <svx/xftshtit.hxx>
27 : #include <svx/xtextit0.hxx>
28 : #include <svx/xftadit.hxx>
29 : #include <svx/xftshit.hxx>
30 : #include <svx/xftshcit.hxx>
31 : #include <svx/xftmrit.hxx>
32 : #include <svx/xftouit.hxx>
33 : #include <svx/sdshtitm.hxx>
34 : #include <svx/xlntrit.hxx>
35 : #include <svx/sdshcitm.hxx>
36 : #include <svx/xlnclit.hxx>
37 : #include <svx/xlnwtit.hxx>
38 : #include <svx/xlinjoit.hxx>
39 : #include <svx/xlncapit.hxx>
40 : #include <svx/xlineit0.hxx>
41 : #include <svx/xdash.hxx>
42 : #include <svx/xlndsit.hxx>
43 : #include <drawinglayer/attribute/lineattribute.hxx>
44 : #include <drawinglayer/attribute/strokeattribute.hxx>
45 : #include <sdr/attribute/sdrformtextoutlineattribute.hxx>
46 : #include <com/sun/star/drawing/LineCap.hpp>
47 : #include <com/sun/star/drawing/LineStyle.hpp>
48 : #include <rtl/instance.hxx>
49 :
50 :
51 : // helper to get line, stroke and transparence attributes from SfxItemSet
52 :
53 : namespace
54 : {
55 0 : basegfx::B2DLineJoin impGetB2DLineJoin(com::sun::star::drawing::LineJoint eLineJoint)
56 : {
57 0 : switch(eLineJoint)
58 : {
59 : case com::sun::star::drawing::LineJoint_MIDDLE :
60 : {
61 0 : return basegfx::B2DLineJoin::Middle;
62 : }
63 : case com::sun::star::drawing::LineJoint_BEVEL :
64 : {
65 0 : return basegfx::B2DLineJoin::Bevel;
66 : }
67 : case com::sun::star::drawing::LineJoint_MITER :
68 : {
69 0 : return basegfx::B2DLineJoin::Miter;
70 : }
71 : case com::sun::star::drawing::LineJoint_ROUND :
72 : {
73 0 : return basegfx::B2DLineJoin::Round;
74 : }
75 : default : // com::sun::star::drawing::LineJoint_NONE
76 : {
77 0 : return basegfx::B2DLineJoin::NONE; // XLINEJOINT_NONE
78 : }
79 : }
80 : }
81 :
82 0 : sal_uInt8 impGetStrokeTransparence(bool bShadow, const SfxItemSet& rSet)
83 : {
84 : sal_uInt8 nRetval;
85 :
86 0 : if(bShadow)
87 : {
88 0 : nRetval = (sal_uInt8)(((static_cast<const SdrPercentItem&>(rSet.Get(SDRATTR_SHADOWTRANSPARENCE))).GetValue() * 255) / 100);
89 : }
90 : else
91 : {
92 0 : nRetval = (sal_uInt8)(((static_cast<const XLineTransparenceItem&>(rSet.Get(XATTR_LINETRANSPARENCE))).GetValue() * 255) / 100);
93 : }
94 :
95 0 : return nRetval;
96 : }
97 :
98 0 : drawinglayer::attribute::LineAttribute impGetLineAttribute(bool bShadow, const SfxItemSet& rSet)
99 : {
100 0 : basegfx::BColor aColorAttribute;
101 :
102 0 : if(bShadow)
103 : {
104 0 : const Color aShadowColor((static_cast<const XColorItem&>(rSet.Get(SDRATTR_SHADOWCOLOR))).GetColorValue());
105 0 : aColorAttribute = aShadowColor.getBColor();
106 : }
107 : else
108 : {
109 0 : const Color aLineColor((static_cast<const XLineColorItem&>(rSet.Get(XATTR_LINECOLOR))).GetColorValue());
110 0 : aColorAttribute = aLineColor.getBColor();
111 : }
112 :
113 0 : const sal_uInt32 nLineWidth = (static_cast<const XLineWidthItem&>(rSet.Get(XATTR_LINEWIDTH))).GetValue();
114 0 : const com::sun::star::drawing::LineJoint eLineJoint = (static_cast<const XLineJointItem&>(rSet.Get(XATTR_LINEJOINT))).GetValue();
115 0 : const com::sun::star::drawing::LineCap eLineCap = (static_cast<const XLineCapItem&>(rSet.Get(XATTR_LINECAP))).GetValue();
116 :
117 : return drawinglayer::attribute::LineAttribute(
118 : aColorAttribute,
119 : (double)nLineWidth,
120 : impGetB2DLineJoin(eLineJoint),
121 0 : eLineCap);
122 : }
123 :
124 0 : drawinglayer::attribute::StrokeAttribute impGetStrokeAttribute(const SfxItemSet& rSet)
125 : {
126 0 : const com::sun::star::drawing::LineStyle eLineStyle = (static_cast<const XLineStyleItem&>(rSet.Get(XATTR_LINESTYLE))).GetValue();
127 0 : double fFullDotDashLen(0.0);
128 0 : ::std::vector< double > aDotDashArray;
129 :
130 0 : if(com::sun::star::drawing::LineStyle_DASH == eLineStyle)
131 : {
132 0 : const XDash& rDash = (static_cast<const XLineDashItem&>(rSet.Get(XATTR_LINEDASH))).GetDashValue();
133 :
134 0 : if(rDash.GetDots() || rDash.GetDashes())
135 : {
136 0 : const sal_uInt32 nLineWidth = (static_cast<const XLineWidthItem&>(rSet.Get(XATTR_LINEWIDTH))).GetValue();
137 0 : fFullDotDashLen = rDash.CreateDotDashArray(aDotDashArray, (double)nLineWidth);
138 : }
139 : }
140 :
141 0 : return drawinglayer::attribute::StrokeAttribute(aDotDashArray, fFullDotDashLen);
142 : }
143 : } // end of anonymous namespace
144 :
145 :
146 :
147 : namespace drawinglayer
148 : {
149 : namespace attribute
150 : {
151 60 : class ImpSdrFormTextAttribute
152 : {
153 : public:
154 : // FormText (FontWork) Attributes
155 : sal_Int32 mnFormTextDistance; // distance from line in upright direction
156 : sal_Int32 mnFormTextStart; // shift from polygon start
157 : sal_Int32 mnFormTextShdwXVal; // shadow distance or 10th degrees
158 : sal_Int32 mnFormTextShdwYVal; // shadow distance or scaling
159 : sal_uInt16 mnFormTextShdwTransp; // shadow transparence
160 : XFormTextStyle meFormTextStyle; // on/off and char orientation
161 : XFormTextAdjust meFormTextAdjust; // adjustment (left/right/center) and scale
162 : XFormTextShadow meFormTextShadow; // shadow mode
163 : Color maFormTextShdwColor; // shadow color
164 :
165 : // outline attributes; used when getFormTextOutline() is true and (for
166 : // shadow) when getFormTextShadow() != XFTSHADOW_NONE
167 : SdrFormTextOutlineAttribute maOutline;
168 : SdrFormTextOutlineAttribute maShadowOutline;
169 :
170 : // bitfield
171 : bool mbFormTextMirror : 1; // change orientation
172 : bool mbFormTextOutline : 1; // show contour of objects
173 :
174 0 : explicit ImpSdrFormTextAttribute(const SfxItemSet& rSet)
175 0 : : mnFormTextDistance(static_cast<const XFormTextDistanceItem&>(rSet.Get(XATTR_FORMTXTDISTANCE)).GetValue()),
176 0 : mnFormTextStart(static_cast<const XFormTextStartItem&>(rSet.Get(XATTR_FORMTXTSTART)).GetValue()),
177 0 : mnFormTextShdwXVal(static_cast<const XFormTextShadowXValItem&>(rSet.Get(XATTR_FORMTXTSHDWXVAL)).GetValue()),
178 0 : mnFormTextShdwYVal(static_cast<const XFormTextShadowYValItem&>(rSet.Get(XATTR_FORMTXTSHDWYVAL)).GetValue()),
179 0 : mnFormTextShdwTransp(static_cast<const XFormTextShadowTranspItem&>(rSet.Get(XATTR_FORMTXTSHDWTRANSP)).GetValue()),
180 0 : meFormTextStyle(static_cast<const XFormTextStyleItem&>(rSet.Get(XATTR_FORMTXTSTYLE)).GetValue()),
181 0 : meFormTextAdjust(static_cast<const XFormTextAdjustItem&>(rSet.Get(XATTR_FORMTXTADJUST)).GetValue()),
182 0 : meFormTextShadow(static_cast<const XFormTextShadowItem&>(rSet.Get(XATTR_FORMTXTSHADOW)).GetValue()),
183 0 : maFormTextShdwColor(static_cast<const XFormTextShadowColorItem&>(rSet.Get(XATTR_FORMTXTSHDWCOLOR)).GetColorValue()),
184 : maOutline(),
185 : maShadowOutline(),
186 0 : mbFormTextMirror(static_cast<const XFormTextMirrorItem&>(rSet.Get(XATTR_FORMTXTMIRROR)).GetValue()),
187 0 : mbFormTextOutline(static_cast<const XFormTextOutlineItem&>(rSet.Get(XATTR_FORMTXTOUTLINE)).GetValue())
188 : {
189 0 : if(getFormTextOutline())
190 : {
191 0 : const StrokeAttribute aStrokeAttribute(impGetStrokeAttribute(rSet));
192 :
193 : // also need to prepare attributes for outlines
194 : {
195 0 : const LineAttribute aLineAttribute(impGetLineAttribute(false, rSet));
196 0 : const sal_uInt8 nTransparence(impGetStrokeTransparence(false, rSet));
197 :
198 0 : maOutline = SdrFormTextOutlineAttribute(
199 0 : aLineAttribute, aStrokeAttribute, nTransparence);
200 : }
201 :
202 0 : if(XFTSHADOW_NONE != getFormTextShadow())
203 : {
204 : // also need to prepare attributes for shadow outlines
205 0 : const LineAttribute aLineAttribute(impGetLineAttribute(true, rSet));
206 0 : const sal_uInt8 nTransparence(impGetStrokeTransparence(true, rSet));
207 :
208 0 : maShadowOutline = SdrFormTextOutlineAttribute(
209 0 : aLineAttribute, aStrokeAttribute, nTransparence);
210 0 : }
211 : }
212 0 : }
213 :
214 64 : ImpSdrFormTextAttribute()
215 : : mnFormTextDistance(0),
216 : mnFormTextStart(0),
217 : mnFormTextShdwXVal(0),
218 : mnFormTextShdwYVal(0),
219 : mnFormTextShdwTransp(0),
220 : meFormTextStyle(XFT_NONE),
221 : meFormTextAdjust(XFT_CENTER),
222 : meFormTextShadow(XFTSHADOW_NONE),
223 : maFormTextShdwColor(),
224 : maOutline(),
225 : maShadowOutline(),
226 : mbFormTextMirror(false),
227 64 : mbFormTextOutline(false)
228 : {
229 64 : }
230 :
231 : // data read access
232 0 : sal_Int32 getFormTextDistance() const { return mnFormTextDistance; }
233 0 : sal_Int32 getFormTextStart() const { return mnFormTextStart; }
234 0 : sal_Int32 getFormTextShdwXVal() const { return mnFormTextShdwXVal; }
235 0 : sal_Int32 getFormTextShdwYVal() const { return mnFormTextShdwYVal; }
236 0 : sal_uInt16 getFormTextShdwTransp() const { return mnFormTextShdwTransp; }
237 0 : XFormTextStyle getFormTextStyle() const { return meFormTextStyle; }
238 0 : XFormTextAdjust getFormTextAdjust() const { return meFormTextAdjust; }
239 0 : XFormTextShadow getFormTextShadow() const { return meFormTextShadow; }
240 0 : Color getFormTextShdwColor() const { return maFormTextShdwColor; }
241 0 : const SdrFormTextOutlineAttribute& getOutline() const { return maOutline; }
242 0 : const SdrFormTextOutlineAttribute& getShadowOutline() const { return maShadowOutline; }
243 0 : bool getFormTextMirror() const { return mbFormTextMirror; }
244 0 : bool getFormTextOutline() const { return mbFormTextOutline; }
245 :
246 : // compare operator
247 0 : bool operator==(const ImpSdrFormTextAttribute& rCandidate) const
248 : {
249 0 : return (getFormTextDistance() == rCandidate.getFormTextDistance()
250 0 : && getFormTextStart() == rCandidate.getFormTextStart()
251 0 : && getFormTextShdwXVal() == rCandidate.getFormTextShdwXVal()
252 0 : && getFormTextShdwYVal() == rCandidate.getFormTextShdwYVal()
253 0 : && getFormTextShdwTransp() == rCandidate.getFormTextShdwTransp()
254 0 : && getFormTextStyle() == rCandidate.getFormTextStyle()
255 0 : && getFormTextAdjust() == rCandidate.getFormTextAdjust()
256 0 : && getFormTextShadow() == rCandidate.getFormTextShadow()
257 0 : && getFormTextShdwColor() == rCandidate.getFormTextShdwColor()
258 0 : && getOutline() == rCandidate.getOutline()
259 0 : && getShadowOutline() == rCandidate.getShadowOutline()
260 0 : && getFormTextMirror() == rCandidate.getFormTextMirror()
261 0 : && getFormTextOutline() == rCandidate.getFormTextOutline());
262 : }
263 : };
264 :
265 : namespace
266 : {
267 : struct theGlobalDefault :
268 : public rtl::Static< SdrFormTextAttribute::ImplType, theGlobalDefault > {};
269 : }
270 :
271 0 : SdrFormTextAttribute::SdrFormTextAttribute(const SfxItemSet& rSet)
272 0 : : mpSdrFormTextAttribute(ImpSdrFormTextAttribute(rSet))
273 : {
274 0 : }
275 :
276 29244 : SdrFormTextAttribute::SdrFormTextAttribute()
277 29244 : : mpSdrFormTextAttribute(theGlobalDefault::get())
278 : {
279 29244 : }
280 :
281 29180 : SdrFormTextAttribute::SdrFormTextAttribute(const SdrFormTextAttribute& rCandidate)
282 29180 : : mpSdrFormTextAttribute(rCandidate.mpSdrFormTextAttribute)
283 : {
284 29180 : }
285 :
286 58226 : SdrFormTextAttribute::~SdrFormTextAttribute()
287 : {
288 58226 : }
289 :
290 131416 : bool SdrFormTextAttribute::isDefault() const
291 : {
292 131416 : return mpSdrFormTextAttribute.same_object(theGlobalDefault::get());
293 : }
294 :
295 0 : SdrFormTextAttribute& SdrFormTextAttribute::operator=(const SdrFormTextAttribute& rCandidate)
296 : {
297 0 : mpSdrFormTextAttribute = rCandidate.mpSdrFormTextAttribute;
298 0 : return *this;
299 : }
300 :
301 13082 : bool SdrFormTextAttribute::operator==(const SdrFormTextAttribute& rCandidate) const
302 : {
303 : // tdf#87509 default attr is always != non-default attr, even with same values
304 13082 : if(rCandidate.isDefault() != isDefault())
305 0 : return false;
306 :
307 13082 : return rCandidate.mpSdrFormTextAttribute == mpSdrFormTextAttribute;
308 : }
309 :
310 0 : sal_Int32 SdrFormTextAttribute::getFormTextDistance() const
311 : {
312 0 : return mpSdrFormTextAttribute->getFormTextDistance();
313 : }
314 :
315 0 : sal_Int32 SdrFormTextAttribute::getFormTextStart() const
316 : {
317 0 : return mpSdrFormTextAttribute->getFormTextStart();
318 : }
319 :
320 0 : sal_Int32 SdrFormTextAttribute::getFormTextShdwXVal() const
321 : {
322 0 : return mpSdrFormTextAttribute->getFormTextShdwXVal();
323 : }
324 :
325 0 : sal_Int32 SdrFormTextAttribute::getFormTextShdwYVal() const
326 : {
327 0 : return mpSdrFormTextAttribute->getFormTextShdwYVal();
328 : }
329 :
330 0 : XFormTextStyle SdrFormTextAttribute::getFormTextStyle() const
331 : {
332 0 : return mpSdrFormTextAttribute->getFormTextStyle();
333 : }
334 :
335 0 : XFormTextAdjust SdrFormTextAttribute::getFormTextAdjust() const
336 : {
337 0 : return mpSdrFormTextAttribute->getFormTextAdjust();
338 : }
339 :
340 0 : XFormTextShadow SdrFormTextAttribute::getFormTextShadow() const
341 : {
342 0 : return mpSdrFormTextAttribute->getFormTextShadow();
343 : }
344 :
345 0 : Color SdrFormTextAttribute::getFormTextShdwColor() const
346 : {
347 0 : return mpSdrFormTextAttribute->getFormTextShdwColor();
348 : }
349 :
350 0 : const SdrFormTextOutlineAttribute& SdrFormTextAttribute::getOutline() const
351 : {
352 0 : return mpSdrFormTextAttribute->getOutline();
353 : }
354 :
355 0 : const SdrFormTextOutlineAttribute& SdrFormTextAttribute::getShadowOutline() const
356 : {
357 0 : return mpSdrFormTextAttribute->getShadowOutline();
358 : }
359 :
360 0 : bool SdrFormTextAttribute::getFormTextMirror() const
361 : {
362 0 : return mpSdrFormTextAttribute->getFormTextMirror();
363 : }
364 :
365 0 : bool SdrFormTextAttribute::getFormTextOutline() const
366 : {
367 0 : return mpSdrFormTextAttribute->getFormTextOutline();
368 : }
369 : } // end of namespace attribute
370 : } // end of namespace drawinglayer
371 :
372 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|