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 :
21 : #include <svx/sdr/attribute/sdrtextattribute.hxx>
22 : #include <svx/sdr/attribute/sdrformtextattribute.hxx>
23 : #include <svx/svdotext.hxx>
24 : #include <editeng/outlobj.hxx>
25 : #include <editeng/editobj.hxx>
26 : #include <editeng/flditem.hxx>
27 : #include <svx/sdr/properties/properties.hxx>
28 :
29 :
30 :
31 : namespace drawinglayer
32 : {
33 : namespace attribute
34 : {
35 : class ImpSdrTextAttribute
36 : {
37 : public:
38 : // refcounter
39 : sal_uInt32 mnRefCount;
40 :
41 : // all-text attributes. The SdrText itself and a copy
42 : // of te OPO
43 : const SdrText* mpSdrText;
44 : const OutlinerParaObject* mpOutlinerParaObject;
45 :
46 : // Set when it's a FormText; contains all FormText attributes
47 : SdrFormTextAttribute maSdrFormTextAttribute;
48 :
49 : // text distances
50 : sal_Int32 maTextLeftDistance;
51 : sal_Int32 maTextUpperDistance;
52 : sal_Int32 maTextRightDistance;
53 : sal_Int32 maTextLowerDistance;
54 :
55 : // #i101556# use versioning from text attributes to detect changes
56 : sal_uInt32 maPropertiesVersion;
57 :
58 : // text alignments
59 : SdrTextHorzAdjust maSdrTextHorzAdjust;
60 : SdrTextVertAdjust maSdrTextVertAdjust;
61 :
62 : // bitfield
63 : bool mbContour : 1;
64 : bool mbFitToSize : 1;
65 : bool mbAutoFit : 1;
66 : bool mbHideContour : 1;
67 : bool mbBlink : 1;
68 : bool mbScroll : 1;
69 : bool mbInEditMode : 1;
70 : bool mbFixedCellHeight : 1;
71 : bool mbWrongSpell : 1;
72 :
73 : public:
74 0 : ImpSdrTextAttribute(
75 : const SdrText* pSdrText,
76 : const OutlinerParaObject& rOutlinerParaObject,
77 : XFormTextStyle eFormTextStyle,
78 : sal_Int32 aTextLeftDistance,
79 : sal_Int32 aTextUpperDistance,
80 : sal_Int32 aTextRightDistance,
81 : sal_Int32 aTextLowerDistance,
82 : SdrTextHorzAdjust aSdrTextHorzAdjust,
83 : SdrTextVertAdjust aSdrTextVertAdjust,
84 : bool bContour,
85 : bool bFitToSize,
86 : bool bAutoFit,
87 : bool bHideContour,
88 : bool bBlink,
89 : bool bScroll,
90 : bool bInEditMode,
91 : bool bFixedCellHeight,
92 : bool bWrongSpell)
93 : : mnRefCount(0),
94 : mpSdrText(pSdrText),
95 0 : mpOutlinerParaObject(new OutlinerParaObject(rOutlinerParaObject)),
96 : maSdrFormTextAttribute(),
97 : maTextLeftDistance(aTextLeftDistance),
98 : maTextUpperDistance(aTextUpperDistance),
99 : maTextRightDistance(aTextRightDistance),
100 : maTextLowerDistance(aTextLowerDistance),
101 : maPropertiesVersion(0),
102 : maSdrTextHorzAdjust(aSdrTextHorzAdjust),
103 : maSdrTextVertAdjust(aSdrTextVertAdjust),
104 : mbContour(bContour),
105 : mbFitToSize(bFitToSize),
106 : mbAutoFit(bAutoFit),
107 : mbHideContour(bHideContour),
108 : mbBlink(bBlink),
109 : mbScroll(bScroll),
110 : mbInEditMode(bInEditMode),
111 : mbFixedCellHeight(bFixedCellHeight),
112 0 : mbWrongSpell(bWrongSpell)
113 : {
114 0 : if(pSdrText)
115 : {
116 0 : if(XFT_NONE != eFormTextStyle)
117 : {
118 : // text on path. Create FormText attribute
119 0 : const SfxItemSet& rSet = pSdrText->GetItemSet();
120 0 : maSdrFormTextAttribute = SdrFormTextAttribute(rSet);
121 : }
122 :
123 : // #i101556# init with version number to detect changes of single text
124 : // attribute and/or style sheets in primitive data without having to
125 : // copy that data locally (which would be better from principle)
126 0 : maPropertiesVersion = pSdrText->GetObject().GetProperties().getVersion();
127 : }
128 0 : }
129 :
130 0 : ImpSdrTextAttribute()
131 : : mnRefCount(0),
132 : mpSdrText(0),
133 : mpOutlinerParaObject(0),
134 : maSdrFormTextAttribute(),
135 : maTextLeftDistance(0),
136 : maTextUpperDistance(0),
137 : maTextRightDistance(0),
138 : maTextLowerDistance(0),
139 : maPropertiesVersion(0),
140 : maSdrTextHorzAdjust(SDRTEXTHORZADJUST_LEFT),
141 : maSdrTextVertAdjust(SDRTEXTVERTADJUST_TOP),
142 : mbContour(false),
143 : mbFitToSize(false),
144 : mbAutoFit(false),
145 : mbHideContour(false),
146 : mbBlink(false),
147 : mbScroll(false),
148 : mbInEditMode(false),
149 : mbFixedCellHeight(false),
150 0 : mbWrongSpell(false)
151 : {
152 0 : }
153 :
154 0 : ~ImpSdrTextAttribute()
155 0 : {
156 0 : if(mpOutlinerParaObject)
157 : {
158 0 : delete mpOutlinerParaObject;
159 : }
160 0 : }
161 :
162 : // data read access
163 0 : const SdrText& getSdrText() const
164 : {
165 : OSL_ENSURE(mpSdrText, "Access to text of default version of ImpSdrTextAttribute (!)");
166 0 : return *mpSdrText;
167 : }
168 0 : const OutlinerParaObject& getOutlinerParaObject() const
169 : {
170 : OSL_ENSURE(mpOutlinerParaObject, "Access to OutlinerParaObject of default version of ImpSdrTextAttribute (!)");
171 0 : return *mpOutlinerParaObject;
172 : }
173 0 : bool isContour() const { return mbContour; }
174 0 : bool isFitToSize() const { return mbFitToSize; }
175 0 : bool isAutoFit() const { return mbAutoFit; }
176 0 : bool isHideContour() const { return mbHideContour; }
177 0 : bool isBlink() const { return mbBlink; }
178 0 : bool isScroll() const { return mbScroll; }
179 0 : bool isInEditMode() const { return mbInEditMode; }
180 0 : bool isFixedCellHeight() const { return mbFixedCellHeight; }
181 0 : bool isWrongSpell() const { return mbWrongSpell; }
182 0 : const SdrFormTextAttribute& getSdrFormTextAttribute() const { return maSdrFormTextAttribute; }
183 0 : sal_Int32 getTextLeftDistance() const { return maTextLeftDistance; }
184 0 : sal_Int32 getTextUpperDistance() const { return maTextUpperDistance; }
185 0 : sal_Int32 getTextRightDistance() const { return maTextRightDistance; }
186 0 : sal_Int32 getTextLowerDistance() const { return maTextLowerDistance; }
187 0 : sal_uInt32 getPropertiesVersion() const { return maPropertiesVersion; }
188 0 : SdrTextHorzAdjust getSdrTextHorzAdjust() const { return maSdrTextHorzAdjust; }
189 0 : SdrTextVertAdjust getSdrTextVertAdjust() const { return maSdrTextVertAdjust; }
190 :
191 : // compare operator
192 0 : bool operator==(const ImpSdrTextAttribute& rCandidate) const
193 : {
194 0 : if(mpOutlinerParaObject != rCandidate.mpOutlinerParaObject)
195 : {
196 0 : if(mpOutlinerParaObject && rCandidate.mpOutlinerParaObject)
197 : {
198 : // compares OPO and it's contents, but traditionally not the RedLining
199 : // which is not seen as model, but as temporary information
200 0 : if(!(getOutlinerParaObject() == rCandidate.getOutlinerParaObject()))
201 : {
202 0 : return false;
203 : }
204 :
205 : // #i102062# for primitive visualisation, the WrongList (SpellChecking)
206 : // is important, too, so use isWrongListEqual since there is no WrongList
207 : // comparison in the regular OutlinerParaObject compare (since it's
208 : // not-persistent data)
209 0 : if(!(getOutlinerParaObject().isWrongListEqual(rCandidate.getOutlinerParaObject())))
210 : {
211 0 : return false;
212 : }
213 : }
214 : else
215 : {
216 : // only one is zero; not equal
217 0 : return false;
218 : }
219 : }
220 :
221 : return (
222 0 : getSdrFormTextAttribute() == rCandidate.getSdrFormTextAttribute()
223 0 : && getTextLeftDistance() == rCandidate.getTextLeftDistance()
224 0 : && getTextUpperDistance() == rCandidate.getTextUpperDistance()
225 0 : && getTextRightDistance() == rCandidate.getTextRightDistance()
226 0 : && getTextLowerDistance() == rCandidate.getTextLowerDistance()
227 0 : && getPropertiesVersion() == rCandidate.getPropertiesVersion()
228 :
229 0 : && getSdrTextHorzAdjust() == rCandidate.getSdrTextHorzAdjust()
230 0 : && getSdrTextVertAdjust() == rCandidate.getSdrTextVertAdjust()
231 :
232 0 : && isContour() == rCandidate.isContour()
233 0 : && isFitToSize() == rCandidate.isFitToSize()
234 0 : && isAutoFit() == rCandidate.isAutoFit()
235 0 : && isHideContour() == rCandidate.isHideContour()
236 0 : && isBlink() == rCandidate.isBlink()
237 0 : && isScroll() == rCandidate.isScroll()
238 0 : && isInEditMode() == rCandidate.isInEditMode()
239 0 : && isFixedCellHeight() == rCandidate.isFixedCellHeight()
240 0 : && isWrongSpell() == rCandidate.isWrongSpell());
241 : }
242 :
243 0 : static ImpSdrTextAttribute* get_global_default()
244 : {
245 : static ImpSdrTextAttribute* pDefault = 0;
246 :
247 0 : if(!pDefault)
248 : {
249 : // use default constructor
250 0 : pDefault = new ImpSdrTextAttribute();
251 :
252 : // never delete; start with RefCount 1, not 0
253 0 : pDefault->mnRefCount++;
254 : }
255 :
256 0 : return pDefault;
257 : }
258 : };
259 :
260 0 : SdrTextAttribute::SdrTextAttribute(
261 : const SdrText& rSdrText,
262 : const OutlinerParaObject& rOutlinerParaObject,
263 : XFormTextStyle eFormTextStyle,
264 : sal_Int32 aTextLeftDistance,
265 : sal_Int32 aTextUpperDistance,
266 : sal_Int32 aTextRightDistance,
267 : sal_Int32 aTextLowerDistance,
268 : SdrTextHorzAdjust aSdrTextHorzAdjust,
269 : SdrTextVertAdjust aSdrTextVertAdjust,
270 : bool bContour,
271 : bool bFitToSize,
272 : bool bAutoFit,
273 : bool bHideContour,
274 : bool bBlink,
275 : bool bScroll,
276 : bool bInEditMode,
277 : bool bFixedCellHeight,
278 : bool bWrongSpell)
279 : : mpSdrTextAttribute(new ImpSdrTextAttribute(
280 : &rSdrText, rOutlinerParaObject, eFormTextStyle, aTextLeftDistance, aTextUpperDistance,
281 : aTextRightDistance, aTextLowerDistance, aSdrTextHorzAdjust, aSdrTextVertAdjust, bContour,
282 0 : bFitToSize, bAutoFit, bHideContour, bBlink, bScroll, bInEditMode, bFixedCellHeight, bWrongSpell))
283 : {
284 0 : }
285 :
286 0 : SdrTextAttribute::SdrTextAttribute()
287 0 : : mpSdrTextAttribute(ImpSdrTextAttribute::get_global_default())
288 : {
289 0 : mpSdrTextAttribute->mnRefCount++;
290 0 : }
291 :
292 0 : SdrTextAttribute::SdrTextAttribute(const SdrTextAttribute& rCandidate)
293 0 : : mpSdrTextAttribute(rCandidate.mpSdrTextAttribute)
294 : {
295 0 : mpSdrTextAttribute->mnRefCount++;
296 0 : }
297 :
298 0 : SdrTextAttribute::~SdrTextAttribute()
299 : {
300 0 : if(mpSdrTextAttribute->mnRefCount)
301 : {
302 0 : mpSdrTextAttribute->mnRefCount--;
303 : }
304 : else
305 : {
306 0 : delete mpSdrTextAttribute;
307 : }
308 0 : }
309 :
310 0 : bool SdrTextAttribute::isDefault() const
311 : {
312 0 : return mpSdrTextAttribute == ImpSdrTextAttribute::get_global_default();
313 : }
314 :
315 0 : SdrTextAttribute& SdrTextAttribute::operator=(const SdrTextAttribute& rCandidate)
316 : {
317 0 : if(rCandidate.mpSdrTextAttribute != mpSdrTextAttribute)
318 : {
319 0 : if(mpSdrTextAttribute->mnRefCount)
320 : {
321 0 : mpSdrTextAttribute->mnRefCount--;
322 : }
323 : else
324 : {
325 0 : delete mpSdrTextAttribute;
326 : }
327 :
328 0 : mpSdrTextAttribute = rCandidate.mpSdrTextAttribute;
329 0 : mpSdrTextAttribute->mnRefCount++;
330 : }
331 :
332 0 : return *this;
333 : }
334 :
335 0 : bool SdrTextAttribute::operator==(const SdrTextAttribute& rCandidate) const
336 : {
337 0 : if(rCandidate.mpSdrTextAttribute == mpSdrTextAttribute)
338 : {
339 0 : return true;
340 : }
341 :
342 0 : if(rCandidate.isDefault() != isDefault())
343 : {
344 0 : return false;
345 : }
346 :
347 0 : return (*rCandidate.mpSdrTextAttribute == *mpSdrTextAttribute);
348 : }
349 :
350 0 : const SdrText& SdrTextAttribute::getSdrText() const
351 : {
352 0 : return mpSdrTextAttribute->getSdrText();
353 : }
354 :
355 0 : const OutlinerParaObject& SdrTextAttribute::getOutlinerParaObject() const
356 : {
357 0 : return mpSdrTextAttribute->getOutlinerParaObject();
358 : }
359 :
360 0 : bool SdrTextAttribute::isContour() const
361 : {
362 0 : return mpSdrTextAttribute->isContour();
363 : }
364 :
365 0 : bool SdrTextAttribute::isFitToSize() const
366 : {
367 0 : return mpSdrTextAttribute->isFitToSize();
368 : }
369 :
370 0 : bool SdrTextAttribute::isAutoFit() const
371 : {
372 0 : return mpSdrTextAttribute->isAutoFit();
373 : }
374 :
375 0 : bool SdrTextAttribute::isHideContour() const
376 : {
377 0 : return mpSdrTextAttribute->isHideContour();
378 : }
379 :
380 0 : bool SdrTextAttribute::isBlink() const
381 : {
382 0 : return mpSdrTextAttribute->isBlink();
383 : }
384 :
385 0 : bool SdrTextAttribute::isScroll() const
386 : {
387 0 : return mpSdrTextAttribute->isScroll();
388 : }
389 :
390 0 : bool SdrTextAttribute::isInEditMode() const
391 : {
392 0 : return mpSdrTextAttribute->isInEditMode();
393 : }
394 :
395 0 : bool SdrTextAttribute::isFixedCellHeight() const
396 : {
397 0 : return mpSdrTextAttribute->isFixedCellHeight();
398 : }
399 :
400 0 : const SdrFormTextAttribute& SdrTextAttribute::getSdrFormTextAttribute() const
401 : {
402 0 : return mpSdrTextAttribute->getSdrFormTextAttribute();
403 : }
404 :
405 0 : sal_Int32 SdrTextAttribute::getTextLeftDistance() const
406 : {
407 0 : return mpSdrTextAttribute->getTextLeftDistance();
408 : }
409 :
410 0 : sal_Int32 SdrTextAttribute::getTextUpperDistance() const
411 : {
412 0 : return mpSdrTextAttribute->getTextUpperDistance();
413 : }
414 :
415 0 : sal_Int32 SdrTextAttribute::getTextRightDistance() const
416 : {
417 0 : return mpSdrTextAttribute->getTextRightDistance();
418 : }
419 :
420 0 : sal_Int32 SdrTextAttribute::getTextLowerDistance() const
421 : {
422 0 : return mpSdrTextAttribute->getTextLowerDistance();
423 : }
424 :
425 0 : SdrTextHorzAdjust SdrTextAttribute::getSdrTextHorzAdjust() const
426 : {
427 0 : return mpSdrTextAttribute->getSdrTextHorzAdjust();
428 : }
429 :
430 0 : SdrTextVertAdjust SdrTextAttribute::getSdrTextVertAdjust() const
431 : {
432 0 : return mpSdrTextAttribute->getSdrTextVertAdjust();
433 : }
434 :
435 0 : void SdrTextAttribute::getBlinkTextTiming(drawinglayer::animation::AnimationEntryList& rAnimList) const
436 : {
437 0 : if(isBlink())
438 : {
439 0 : getSdrText().GetObject().impGetBlinkTextTiming(rAnimList);
440 : }
441 0 : }
442 :
443 0 : void SdrTextAttribute::getScrollTextTiming(drawinglayer::animation::AnimationEntryList& rAnimList, double fFrameLength, double fTextLength) const
444 : {
445 0 : if(isScroll())
446 : {
447 0 : getSdrText().GetObject().impGetScrollTextTiming(rAnimList, fFrameLength, fTextLength);
448 : }
449 0 : }
450 : } // end of namespace attribute
451 : } // end of namespace drawinglayer
452 :
453 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|