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 <comphelper/string.hxx>
22 : #include <svx/svdotext.hxx>
23 : #include <svx/svdpagv.hxx>
24 : #include <svx/svdview.hxx>
25 : #include <svx/svdpage.hxx>
26 : #include <svx/svdetc.hxx>
27 : #include <svx/svdoutl.hxx>
28 : #include <svx/svdmodel.hxx>
29 : #include "svdglob.hxx"
30 : #include "svx/svdstr.hrc"
31 : #include <editeng/writingmodeitem.hxx>
32 : #include <svx/sdtfchim.hxx>
33 : #include <svtools/colorcfg.hxx>
34 : #include <editeng/editdata.hxx>
35 : #include <editeng/eeitem.hxx>
36 : #include <editeng/editstat.hxx>
37 : #include <editeng/outlobj.hxx>
38 : #include <editeng/editobj.hxx>
39 : #include <editeng/outliner.hxx>
40 : #include <editeng/fhgtitem.hxx>
41 : #include <svl/itempool.hxx>
42 : #include <editeng/adjustitem.hxx>
43 : #include <editeng/flditem.hxx>
44 : #include <svx/xftouit.hxx>
45 : #include <tools/helpers.hxx>
46 : #include <svx/xflgrit.hxx>
47 : #include <svx/svdpool.hxx>
48 : #include <svx/xflclit.hxx>
49 : #include <svl/style.hxx>
50 : #include <editeng/editeng.hxx>
51 : #include <svl/itemiter.hxx>
52 : #include <sdr/properties/textproperties.hxx>
53 : #include <vcl/metaact.hxx>
54 : #include <svx/sdr/contact/viewcontactoftextobj.hxx>
55 : #include <basegfx/tuple/b2dtuple.hxx>
56 : #include <basegfx/matrix/b2dhommatrix.hxx>
57 : #include <basegfx/polygon/b2dpolygon.hxx>
58 : #include <drawinglayer/geometry/viewinformation2d.hxx>
59 : #include <vcl/virdev.hxx>
60 : #include <basegfx/matrix/b2dhommatrixtools.hxx>
61 : #include "svdconv.hxx"
62 :
63 : using namespace com::sun::star;
64 :
65 :
66 : // BaseProperties section
67 :
68 18247 : sdr::properties::BaseProperties* SdrTextObj::CreateObjectSpecificProperties()
69 : {
70 18247 : return new sdr::properties::TextProperties(*this);
71 : }
72 :
73 :
74 : // DrawContact section
75 :
76 0 : sdr::contact::ViewContact* SdrTextObj::CreateObjectSpecificViewContact()
77 : {
78 0 : return new sdr::contact::ViewContactOfTextObj(*this);
79 : }
80 :
81 :
82 :
83 9128188 : TYPEINIT1(SdrTextObj,SdrAttrObj);
84 :
85 34568 : SdrTextObj::SdrTextObj()
86 : : SdrAttrObj(),
87 : mpText(NULL),
88 : pEdtOutl(NULL),
89 : pFormTextBoundRect(NULL),
90 34568 : eTextKind(OBJ_TEXT)
91 : {
92 34568 : bTextSizeDirty=false;
93 34568 : bTextFrame=false;
94 34568 : bPortionInfoChecked=false;
95 34568 : bNoShear=false;
96 34568 : bNoRotate=false;
97 34568 : bNoMirror=false;
98 34568 : bDisableAutoWidthOnDragging=false;
99 :
100 34568 : mbInEditMode = false;
101 34568 : mbTextHidden = false;
102 34568 : mbTextAnimationAllowed = true;
103 34568 : maTextEditOffset = Point(0, 0);
104 :
105 : // #i25616#
106 34568 : mbSupportTextIndentingOnLineWidthChange = true;
107 34568 : mbInDownScale = false;
108 34568 : }
109 :
110 3044 : SdrTextObj::SdrTextObj(const Rectangle& rNewRect)
111 : : SdrAttrObj(),
112 : aRect(rNewRect),
113 : mpText(NULL),
114 : pEdtOutl(NULL),
115 : pFormTextBoundRect(NULL),
116 3044 : eTextKind(OBJ_TEXT)
117 : {
118 3044 : bTextSizeDirty=false;
119 3044 : bTextFrame=false;
120 3044 : bPortionInfoChecked=false;
121 3044 : bNoShear=false;
122 3044 : bNoRotate=false;
123 3044 : bNoMirror=false;
124 3044 : bDisableAutoWidthOnDragging=false;
125 3044 : ImpJustifyRect(aRect);
126 :
127 3044 : mbInEditMode = false;
128 3044 : mbTextHidden = false;
129 3044 : mbTextAnimationAllowed = true;
130 3044 : mbInDownScale = false;
131 3044 : maTextEditOffset = Point(0, 0);
132 :
133 : // #i25616#
134 3044 : mbSupportTextIndentingOnLineWidthChange = true;
135 3044 : }
136 :
137 21541 : SdrTextObj::SdrTextObj(SdrObjKind eNewTextKind)
138 : : SdrAttrObj(),
139 : mpText(NULL),
140 : pEdtOutl(NULL),
141 : pFormTextBoundRect(NULL),
142 21541 : eTextKind(eNewTextKind)
143 : {
144 21541 : bTextSizeDirty=false;
145 21541 : bTextFrame=true;
146 21541 : bPortionInfoChecked=false;
147 21541 : bNoShear=true;
148 21541 : bNoRotate=false;
149 21541 : bNoMirror=true;
150 21541 : bDisableAutoWidthOnDragging=false;
151 :
152 21541 : mbInEditMode = false;
153 21541 : mbTextHidden = false;
154 21541 : mbTextAnimationAllowed = true;
155 21541 : mbInDownScale = false;
156 21541 : maTextEditOffset = Point(0, 0);
157 :
158 : // #i25616#
159 21541 : mbSupportTextIndentingOnLineWidthChange = true;
160 21541 : }
161 :
162 218 : SdrTextObj::SdrTextObj(SdrObjKind eNewTextKind, const Rectangle& rNewRect)
163 : : SdrAttrObj(),
164 : aRect(rNewRect),
165 : mpText(NULL),
166 : pEdtOutl(NULL),
167 : pFormTextBoundRect(NULL),
168 218 : eTextKind(eNewTextKind)
169 : {
170 218 : bTextSizeDirty=false;
171 218 : bTextFrame=true;
172 218 : bPortionInfoChecked=false;
173 218 : bNoShear=true;
174 218 : bNoRotate=false;
175 218 : bNoMirror=true;
176 218 : bDisableAutoWidthOnDragging=false;
177 218 : ImpJustifyRect(aRect);
178 :
179 218 : mbInEditMode = false;
180 218 : mbTextHidden = false;
181 218 : mbTextAnimationAllowed = true;
182 218 : mbInDownScale = false;
183 218 : maTextEditOffset = Point(0, 0);
184 :
185 : // #i25616#
186 218 : mbSupportTextIndentingOnLineWidthChange = true;
187 218 : }
188 :
189 116576 : SdrTextObj::~SdrTextObj()
190 : {
191 58288 : if( pModel )
192 : {
193 49942 : SdrOutliner& rOutl = pModel->GetHitTestOutliner();
194 49942 : if( rOutl.GetTextObj() == this )
195 0 : rOutl.SetTextObj( NULL );
196 : }
197 :
198 58288 : delete mpText;
199 :
200 58288 : delete pFormTextBoundRect;
201 :
202 58288 : ImpLinkAbmeldung();
203 58288 : }
204 :
205 0 : void SdrTextObj::FitFrameToTextSize()
206 : {
207 : DBG_ASSERT(pModel!=NULL,"SdrTextObj::FitFrameToTextSize(): pModel=NULL!");
208 0 : ImpJustifyRect(aRect);
209 :
210 0 : SdrText* pText = getActiveText();
211 0 : if( pText!=NULL && pText->GetOutlinerParaObject() && pModel!=NULL)
212 : {
213 0 : SdrOutliner& rOutliner=ImpGetDrawOutliner();
214 0 : rOutliner.SetPaperSize(Size(aRect.Right()-aRect.Left(),aRect.Bottom()-aRect.Top()));
215 0 : rOutliner.SetUpdateMode(true);
216 0 : rOutliner.SetText(*pText->GetOutlinerParaObject());
217 0 : Size aNewSize(rOutliner.CalcTextSize());
218 0 : rOutliner.Clear();
219 0 : aNewSize.Width()++; // because of possible rounding errors
220 0 : aNewSize.Width()+=GetTextLeftDistance()+GetTextRightDistance();
221 0 : aNewSize.Height()+=GetTextUpperDistance()+GetTextLowerDistance();
222 0 : Rectangle aNewRect(aRect);
223 0 : aNewRect.SetSize(aNewSize);
224 0 : ImpJustifyRect(aNewRect);
225 0 : if (aNewRect!=aRect) {
226 0 : SetLogicRect(aNewRect);
227 : }
228 : }
229 0 : }
230 :
231 588 : void SdrTextObj::NbcSetText(const OUString& rStr)
232 : {
233 588 : SdrOutliner& rOutliner=ImpGetDrawOutliner();
234 588 : rOutliner.SetStyleSheet( 0, GetStyleSheet());
235 588 : rOutliner.SetUpdateMode(true);
236 588 : rOutliner.SetText(rStr,rOutliner.GetParagraph( 0 ));
237 588 : OutlinerParaObject* pNewText=rOutliner.CreateParaObject();
238 588 : Size aSiz(rOutliner.CalcTextSize());
239 588 : rOutliner.Clear();
240 588 : NbcSetOutlinerParaObject(pNewText);
241 588 : aTextSize=aSiz;
242 588 : bTextSizeDirty=false;
243 588 : }
244 :
245 46 : void SdrTextObj::SetText(const OUString& rStr)
246 : {
247 46 : Rectangle aBoundRect0; if (pUserCall!=NULL) aBoundRect0=GetLastBoundRect();
248 46 : NbcSetText(rStr);
249 46 : SetChanged();
250 46 : BroadcastObjectChange();
251 46 : SendUserCall(SDRUSERCALL_RESIZE,aBoundRect0);
252 46 : }
253 :
254 0 : void SdrTextObj::NbcSetText(SvStream& rInput, const OUString& rBaseURL, sal_uInt16 eFormat)
255 : {
256 0 : SdrOutliner& rOutliner=ImpGetDrawOutliner();
257 0 : rOutliner.SetStyleSheet( 0, GetStyleSheet());
258 0 : rOutliner.Read(rInput,rBaseURL,eFormat);
259 0 : OutlinerParaObject* pNewText=rOutliner.CreateParaObject();
260 0 : rOutliner.SetUpdateMode(true);
261 0 : Size aSiz(rOutliner.CalcTextSize());
262 0 : rOutliner.Clear();
263 0 : NbcSetOutlinerParaObject(pNewText);
264 0 : aTextSize=aSiz;
265 0 : bTextSizeDirty=false;
266 0 : }
267 :
268 0 : void SdrTextObj::SetText(SvStream& rInput, const OUString& rBaseURL, sal_uInt16 eFormat)
269 : {
270 0 : Rectangle aBoundRect0; if (pUserCall!=NULL) aBoundRect0=GetLastBoundRect();
271 0 : NbcSetText(rInput,rBaseURL,eFormat);
272 0 : SetChanged();
273 0 : BroadcastObjectChange();
274 0 : SendUserCall(SDRUSERCALL_RESIZE,aBoundRect0);
275 0 : }
276 :
277 14 : const Size& SdrTextObj::GetTextSize() const
278 : {
279 14 : if (bTextSizeDirty)
280 : {
281 2 : Size aSiz;
282 2 : SdrText* pText = getActiveText();
283 2 : if( pText && pText->GetOutlinerParaObject ())
284 : {
285 2 : SdrOutliner& rOutliner=ImpGetDrawOutliner();
286 2 : rOutliner.SetText(*pText->GetOutlinerParaObject());
287 2 : rOutliner.SetUpdateMode(true);
288 2 : aSiz=rOutliner.CalcTextSize();
289 2 : rOutliner.Clear();
290 : }
291 : // casting to nonconst twice
292 2 : ((SdrTextObj*)this)->aTextSize=aSiz;
293 2 : ((SdrTextObj*)this)->bTextSizeDirty=false;
294 : }
295 14 : return aTextSize;
296 : }
297 :
298 288860 : bool SdrTextObj::IsAutoGrowHeight() const
299 : {
300 288860 : if(!bTextFrame)
301 0 : return false; // AutoGrow only together with TextFrames
302 :
303 288860 : const SfxItemSet& rSet = GetObjectItemSet();
304 288860 : bool bRet = static_cast<const SdrOnOffItem&>(rSet.Get(SDRATTR_TEXT_AUTOGROWHEIGHT)).GetValue();
305 :
306 288860 : if(bRet)
307 : {
308 206174 : SdrTextAniKind eAniKind = static_cast<const SdrTextAniKindItem&>(rSet.Get(SDRATTR_TEXT_ANIKIND)).GetValue();
309 :
310 206174 : if(eAniKind == SDRTEXTANI_SCROLL || eAniKind == SDRTEXTANI_ALTERNATE || eAniKind == SDRTEXTANI_SLIDE)
311 : {
312 0 : SdrTextAniDirection eDirection = static_cast<const SdrTextAniDirectionItem&>(rSet.Get(SDRATTR_TEXT_ANIDIRECTION)).GetValue();
313 :
314 0 : if(eDirection == SDRTEXTANI_UP || eDirection == SDRTEXTANI_DOWN)
315 : {
316 0 : bRet = false;
317 : }
318 : }
319 : }
320 288860 : return bRet;
321 : }
322 :
323 406842 : bool SdrTextObj::IsAutoGrowWidth() const
324 : {
325 406842 : if(!bTextFrame)
326 56 : return false; // AutoGrow only together with TextFrames
327 :
328 406786 : const SfxItemSet& rSet = GetObjectItemSet();
329 406786 : bool bRet = static_cast<const SdrOnOffItem&>(rSet.Get(SDRATTR_TEXT_AUTOGROWWIDTH)).GetValue();
330 :
331 406786 : bool bInEditMOde = IsInEditMode();
332 :
333 406786 : if(!bInEditMOde && bRet)
334 : {
335 112658 : SdrTextAniKind eAniKind = static_cast<const SdrTextAniKindItem&>(rSet.Get(SDRATTR_TEXT_ANIKIND)).GetValue();
336 :
337 112658 : if(eAniKind == SDRTEXTANI_SCROLL || eAniKind == SDRTEXTANI_ALTERNATE || eAniKind == SDRTEXTANI_SLIDE)
338 : {
339 0 : SdrTextAniDirection eDirection = static_cast<const SdrTextAniDirectionItem&>(rSet.Get(SDRATTR_TEXT_ANIDIRECTION)).GetValue();
340 :
341 0 : if(eDirection == SDRTEXTANI_LEFT || eDirection == SDRTEXTANI_RIGHT)
342 : {
343 0 : bRet = false;
344 : }
345 : }
346 : }
347 406786 : return bRet;
348 : }
349 :
350 34461 : SdrTextHorzAdjust SdrTextObj::GetTextHorizontalAdjust() const
351 : {
352 34461 : return GetTextHorizontalAdjust(GetObjectItemSet());
353 : }
354 :
355 53003 : SdrTextHorzAdjust SdrTextObj::GetTextHorizontalAdjust(const SfxItemSet& rSet) const
356 : {
357 53003 : if(IsContourTextFrame())
358 0 : return SDRTEXTHORZADJUST_BLOCK;
359 :
360 53003 : SdrTextHorzAdjust eRet = static_cast<const SdrTextHorzAdjustItem&>(rSet.Get(SDRATTR_TEXT_HORZADJUST)).GetValue();
361 :
362 53003 : bool bInEditMode = IsInEditMode();
363 :
364 53003 : if(!bInEditMode && eRet == SDRTEXTHORZADJUST_BLOCK)
365 : {
366 7736 : SdrTextAniKind eAniKind = static_cast<const SdrTextAniKindItem&>(rSet.Get(SDRATTR_TEXT_ANIKIND)).GetValue();
367 :
368 7736 : if(eAniKind == SDRTEXTANI_SCROLL || eAniKind == SDRTEXTANI_ALTERNATE || eAniKind == SDRTEXTANI_SLIDE)
369 : {
370 0 : SdrTextAniDirection eDirection = static_cast<const SdrTextAniDirectionItem&>(rSet.Get(SDRATTR_TEXT_ANIDIRECTION)).GetValue();
371 :
372 0 : if(eDirection == SDRTEXTANI_LEFT || eDirection == SDRTEXTANI_RIGHT)
373 : {
374 0 : eRet = SDRTEXTHORZADJUST_LEFT;
375 : }
376 : }
377 : }
378 :
379 53003 : return eRet;
380 : } // defaults: BLOCK (justify) for text frame, CENTER for captions of drawing objects
381 :
382 58599 : SdrTextVertAdjust SdrTextObj::GetTextVerticalAdjust() const
383 : {
384 58599 : return GetTextVerticalAdjust(GetObjectItemSet());
385 : }
386 :
387 77141 : SdrTextVertAdjust SdrTextObj::GetTextVerticalAdjust(const SfxItemSet& rSet) const
388 : {
389 77141 : if(IsContourTextFrame())
390 0 : return SDRTEXTVERTADJUST_TOP;
391 :
392 : // Take care for vertical text animation here
393 77141 : SdrTextVertAdjust eRet = static_cast<const SdrTextVertAdjustItem&>(rSet.Get(SDRATTR_TEXT_VERTADJUST)).GetValue();
394 77141 : bool bInEditMode = IsInEditMode();
395 :
396 : // Take care for vertical text animation here
397 77141 : if(!bInEditMode && eRet == SDRTEXTVERTADJUST_BLOCK)
398 : {
399 2 : SdrTextAniKind eAniKind = static_cast<const SdrTextAniKindItem&>(rSet.Get(SDRATTR_TEXT_ANIKIND)).GetValue();
400 :
401 2 : if(eAniKind == SDRTEXTANI_SCROLL || eAniKind == SDRTEXTANI_ALTERNATE || eAniKind == SDRTEXTANI_SLIDE)
402 : {
403 0 : SdrTextAniDirection eDirection = static_cast<const SdrTextAniDirectionItem&>(rSet.Get(SDRATTR_TEXT_ANIDIRECTION)).GetValue();
404 :
405 0 : if(eDirection == SDRTEXTANI_LEFT || eDirection == SDRTEXTANI_RIGHT)
406 : {
407 0 : eRet = SDRTEXTVERTADJUST_TOP;
408 : }
409 : }
410 : }
411 :
412 77141 : return eRet;
413 : } // defaults: TOP for text frame, CENTER for captions of drawing objects
414 :
415 150162 : void SdrTextObj::ImpJustifyRect(Rectangle& rRect) const
416 : {
417 150162 : if (!rRect.IsEmpty()) {
418 143084 : rRect.Justify();
419 143084 : if (rRect.Left()==rRect.Right()) rRect.Right()++;
420 143084 : if (rRect.Top()==rRect.Bottom()) rRect.Bottom()++;
421 : }
422 150162 : }
423 :
424 91934 : void SdrTextObj::ImpCheckShear()
425 : {
426 91934 : if (bNoShear && aGeo.nShearAngle!=0) {
427 0 : aGeo.nShearAngle=0;
428 0 : aGeo.nTan=0;
429 : }
430 91934 : }
431 :
432 0 : void SdrTextObj::TakeObjInfo(SdrObjTransformInfoRec& rInfo) const
433 : {
434 0 : bool bNoTextFrame=!IsTextFrame();
435 0 : rInfo.bResizeFreeAllowed=bNoTextFrame || aGeo.nRotationAngle%9000==0;
436 0 : rInfo.bResizePropAllowed=true;
437 0 : rInfo.bRotateFreeAllowed=true;
438 0 : rInfo.bRotate90Allowed =true;
439 0 : rInfo.bMirrorFreeAllowed=bNoTextFrame;
440 0 : rInfo.bMirror45Allowed =bNoTextFrame;
441 0 : rInfo.bMirror90Allowed =bNoTextFrame;
442 :
443 : // allow transparency
444 0 : rInfo.bTransparenceAllowed = true;
445 :
446 : // gradient depends on fillstyle
447 0 : drawing::FillStyle eFillStyle = static_cast<const XFillStyleItem&>(GetObjectItem(XATTR_FILLSTYLE)).GetValue();
448 0 : rInfo.bGradientAllowed = (eFillStyle == drawing::FillStyle_GRADIENT);
449 0 : rInfo.bShearAllowed =bNoTextFrame;
450 0 : rInfo.bEdgeRadiusAllowed=true;
451 0 : bool bCanConv=ImpCanConvTextToCurve();
452 0 : rInfo.bCanConvToPath =bCanConv;
453 0 : rInfo.bCanConvToPoly =bCanConv;
454 0 : rInfo.bCanConvToPathLineToArea=bCanConv;
455 0 : rInfo.bCanConvToPolyLineToArea=bCanConv;
456 0 : rInfo.bCanConvToContour = (rInfo.bCanConvToPoly || LineGeometryUsageIsNecessary());
457 0 : }
458 :
459 0 : sal_uInt16 SdrTextObj::GetObjIdentifier() const
460 : {
461 0 : return sal_uInt16(eTextKind);
462 : }
463 :
464 26887 : bool SdrTextObj::HasTextImpl( SdrOutliner* pOutliner )
465 : {
466 26887 : bool bRet=false;
467 26887 : if(pOutliner)
468 : {
469 0 : Paragraph* p1stPara=pOutliner->GetParagraph( 0 );
470 0 : sal_Int32 nParaAnz=pOutliner->GetParagraphCount();
471 0 : if(p1stPara==NULL)
472 0 : nParaAnz=0;
473 :
474 0 : if(nParaAnz==1)
475 : {
476 : // if it is only one paragraph, check if that paragraph is empty
477 0 : if( pOutliner->GetText(p1stPara).isEmpty() )
478 0 : nParaAnz = 0;
479 : }
480 :
481 0 : bRet= nParaAnz!=0;
482 : }
483 26887 : return bRet;
484 : }
485 :
486 0 : bool SdrTextObj::HasEditText() const
487 : {
488 0 : return HasTextImpl( pEdtOutl );
489 : }
490 :
491 125516 : void SdrTextObj::SetPage(SdrPage* pNewPage)
492 : {
493 125516 : bool bRemove=pNewPage==NULL && pPage!=NULL;
494 125516 : bool bInsert=pNewPage!=NULL && pPage==NULL;
495 125516 : bool bLinked=IsLinkedText();
496 :
497 125516 : if (bLinked && bRemove) {
498 0 : ImpLinkAbmeldung();
499 : }
500 :
501 125516 : SdrAttrObj::SetPage(pNewPage);
502 :
503 125516 : if (bLinked && bInsert) {
504 0 : ImpLinkAnmeldung();
505 : }
506 125516 : }
507 :
508 91040 : void SdrTextObj::SetModel(SdrModel* pNewModel)
509 : {
510 91040 : SdrModel* pOldModel=pModel;
511 91040 : bool bLinked=IsLinkedText();
512 91040 : bool bChg=pNewModel!=pModel;
513 :
514 91040 : if (bLinked && bChg)
515 : {
516 0 : ImpLinkAbmeldung();
517 : }
518 :
519 91040 : SdrAttrObj::SetModel(pNewModel);
520 :
521 91040 : if( bChg )
522 : {
523 49719 : if( pNewModel != 0 && pOldModel != 0 )
524 48 : SetTextSizeDirty();
525 :
526 49719 : sal_Int32 nCount = getTextCount();
527 99438 : for( sal_Int32 nText = 0; nText < nCount; nText++ )
528 : {
529 49719 : SdrText* pText = getText( nText );
530 49719 : if( pText )
531 49719 : pText->SetModel( pNewModel );
532 : }
533 : }
534 :
535 91040 : if (bLinked && bChg)
536 : {
537 0 : ImpLinkAnmeldung();
538 : }
539 91040 : }
540 :
541 0 : bool SdrTextObj::NbcSetEckenradius(long nRad)
542 : {
543 0 : SetObjectItem(makeSdrEckenradiusItem(nRad));
544 0 : return true;
545 : }
546 :
547 : // #115391# This implementation is based on the object size (aRect) and the
548 : // states of IsAutoGrowWidth/Height to correctly set TextMinFrameWidth/Height
549 119714 : void SdrTextObj::AdaptTextMinSize()
550 : {
551 119714 : if (!bTextFrame)
552 : // Only do this for text frame.
553 112228 : return;
554 :
555 66784 : if (pModel && pModel->IsPasteResize())
556 : // Don't do this during paste resize.
557 0 : return;
558 :
559 66784 : const bool bW = IsAutoGrowWidth();
560 66784 : const bool bH = IsAutoGrowHeight();
561 :
562 66784 : if (!bW && !bH)
563 : // No auto grow requested. Bail out.
564 6368 : return;
565 :
566 : SfxItemSet aSet(
567 60416 : *GetObjectItemSet().GetPool(),
568 : SDRATTR_TEXT_MINFRAMEHEIGHT, SDRATTR_TEXT_AUTOGROWHEIGHT,
569 : SDRATTR_TEXT_MINFRAMEWIDTH, SDRATTR_TEXT_AUTOGROWWIDTH, // contains SDRATTR_TEXT_MAXFRAMEWIDTH
570 60416 : 0, 0);
571 :
572 60416 : if(bW)
573 : {
574 : // Set minimum width.
575 19368 : const long nDist = GetTextLeftDistance() + GetTextRightDistance();
576 19368 : const long nW = std::max<long>(0, aRect.GetWidth() - 1 - nDist); // text width without margins
577 :
578 19368 : aSet.Put(makeSdrTextMinFrameWidthItem(nW));
579 :
580 19368 : if(!IsVerticalWriting() && bDisableAutoWidthOnDragging)
581 : {
582 0 : bDisableAutoWidthOnDragging = true;
583 0 : aSet.Put(makeSdrTextAutoGrowWidthItem(false));
584 : }
585 : }
586 :
587 60416 : if(bH)
588 : {
589 : // Set Minimum height.
590 60368 : const long nDist = GetTextUpperDistance() + GetTextLowerDistance();
591 60368 : const long nH = std::max<long>(0, aRect.GetHeight() - 1 - nDist); // text height without margins
592 :
593 60368 : aSet.Put(makeSdrTextMinFrameHeightItem(nH));
594 :
595 60368 : if(IsVerticalWriting() && bDisableAutoWidthOnDragging)
596 : {
597 0 : bDisableAutoWidthOnDragging = false;
598 0 : aSet.Put(makeSdrTextAutoGrowHeightItem(false));
599 : }
600 : }
601 :
602 60416 : SetObjectItemSet(aSet);
603 : }
604 :
605 0 : void SdrTextObj::ImpSetContourPolygon( SdrOutliner& rOutliner, Rectangle& rAnchorRect, bool bLineWidth ) const
606 : {
607 0 : basegfx::B2DPolyPolygon aXorPolyPolygon(TakeXorPoly());
608 0 : basegfx::B2DPolyPolygon* pContourPolyPolygon = 0L;
609 : basegfx::B2DHomMatrix aMatrix(basegfx::tools::createTranslateB2DHomMatrix(
610 0 : -rAnchorRect.Left(), -rAnchorRect.Top()));
611 :
612 0 : if(aGeo.nRotationAngle)
613 : {
614 : // Unrotate!
615 0 : aMatrix.rotate(-aGeo.nRotationAngle * nPi180);
616 : }
617 :
618 0 : aXorPolyPolygon.transform(aMatrix);
619 :
620 0 : if( bLineWidth )
621 : {
622 : // Take line width into account.
623 : // When doing the hit test, avoid this. (Performance!)
624 0 : pContourPolyPolygon = new basegfx::B2DPolyPolygon();
625 :
626 : // test if shadow needs to be avoided for TakeContour()
627 0 : const SfxItemSet& rSet = GetObjectItemSet();
628 0 : bool bShadowOn = static_cast<const SdrOnOffItem&>(rSet.Get(SDRATTR_SHADOW)).GetValue();
629 :
630 : // #i33696#
631 : // Remember TextObject currently set at the DrawOutliner, it WILL be
632 : // replaced during calculating the outline since it uses an own paint
633 : // and that one uses the DrawOutliner, too.
634 0 : const SdrTextObj* pLastTextObject = rOutliner.GetTextObj();
635 :
636 0 : if(bShadowOn)
637 : {
638 : // force shadow off
639 0 : SdrObject* pCopy = Clone();
640 0 : pCopy->SetMergedItem(makeSdrShadowItem(false));
641 0 : *pContourPolyPolygon = pCopy->TakeContour();
642 0 : SdrObject::Free( pCopy );
643 : }
644 : else
645 : {
646 0 : *pContourPolyPolygon = TakeContour();
647 : }
648 :
649 : // #i33696#
650 : // restore remembered text object
651 0 : if(pLastTextObject != rOutliner.GetTextObj())
652 : {
653 0 : rOutliner.SetTextObj(pLastTextObject);
654 : }
655 :
656 0 : pContourPolyPolygon->transform(aMatrix);
657 : }
658 :
659 0 : rOutliner.SetPolygon(aXorPolyPolygon, pContourPolyPolygon);
660 0 : delete pContourPolyPolygon;
661 0 : }
662 :
663 0 : void SdrTextObj::TakeUnrotatedSnapRect(Rectangle& rRect) const
664 : {
665 0 : rRect=aRect;
666 0 : }
667 :
668 0 : void SdrTextObj::TakeTextAnchorRect(Rectangle& rAnchorRect) const
669 : {
670 0 : long nLeftDist=GetTextLeftDistance();
671 0 : long nRightDist=GetTextRightDistance();
672 0 : long nUpperDist=GetTextUpperDistance();
673 0 : long nLowerDist=GetTextLowerDistance();
674 0 : Rectangle aAnkRect(aRect); // the rectangle in which we anchor
675 0 : bool bFrame=IsTextFrame();
676 0 : if (!bFrame) {
677 0 : TakeUnrotatedSnapRect(aAnkRect);
678 : }
679 0 : Point aRotateRef(aAnkRect.TopLeft());
680 0 : aAnkRect.Left()+=nLeftDist;
681 0 : aAnkRect.Top()+=nUpperDist;
682 0 : aAnkRect.Right()-=nRightDist;
683 0 : aAnkRect.Bottom()-=nLowerDist;
684 :
685 : // Since sizes may be bigger than the object bounds it is necessary to
686 : // justify the rect now.
687 0 : ImpJustifyRect(aAnkRect);
688 :
689 0 : if (bFrame) {
690 : // TODO: Optimize this.
691 0 : if (aAnkRect.GetWidth()<2) aAnkRect.Right()=aAnkRect.Left()+1; // minimum size h and v: 2 px
692 0 : if (aAnkRect.GetHeight()<2) aAnkRect.Bottom()=aAnkRect.Top()+1;
693 : }
694 0 : if (aGeo.nRotationAngle!=0) {
695 0 : Point aTmpPt(aAnkRect.TopLeft());
696 0 : RotatePoint(aTmpPt,aRotateRef,aGeo.nSin,aGeo.nCos);
697 0 : aTmpPt-=aAnkRect.TopLeft();
698 0 : aAnkRect.Move(aTmpPt.X(),aTmpPt.Y());
699 : }
700 0 : rAnchorRect=aAnkRect;
701 0 : }
702 :
703 0 : void SdrTextObj::TakeTextRect( SdrOutliner& rOutliner, Rectangle& rTextRect, bool bNoEditText,
704 : Rectangle* pAnchorRect, bool bLineWidth ) const
705 : {
706 0 : Rectangle aAnkRect; // the rectangle in which we anchor
707 0 : TakeTextAnchorRect(aAnkRect);
708 0 : SdrTextVertAdjust eVAdj=GetTextVerticalAdjust();
709 0 : SdrTextHorzAdjust eHAdj=GetTextHorizontalAdjust();
710 0 : SdrTextAniKind eAniKind=GetTextAniKind();
711 0 : SdrTextAniDirection eAniDirection=GetTextAniDirection();
712 :
713 0 : bool bFitToSize(IsFitToSize());
714 0 : bool bContourFrame=IsContourTextFrame();
715 :
716 0 : bool bFrame=IsTextFrame();
717 0 : sal_uIntPtr nStat0=rOutliner.GetControlWord();
718 0 : Size aNullSize;
719 0 : if (!bContourFrame)
720 : {
721 0 : rOutliner.SetControlWord(nStat0|EE_CNTRL_AUTOPAGESIZE);
722 0 : rOutliner.SetMinAutoPaperSize(aNullSize);
723 0 : rOutliner.SetMaxAutoPaperSize(Size(1000000,1000000));
724 : }
725 :
726 0 : if (!bFitToSize && !bContourFrame)
727 : {
728 0 : long nAnkWdt=aAnkRect.GetWidth();
729 0 : long nAnkHgt=aAnkRect.GetHeight();
730 0 : if (bFrame)
731 : {
732 0 : long nWdt=nAnkWdt;
733 0 : long nHgt=nAnkHgt;
734 :
735 0 : bool bInEditMode = IsInEditMode();
736 :
737 0 : if (!bInEditMode && (eAniKind==SDRTEXTANI_SCROLL || eAniKind==SDRTEXTANI_ALTERNATE || eAniKind==SDRTEXTANI_SLIDE))
738 : {
739 : // unlimited paper size for ticker text
740 0 : if (eAniDirection==SDRTEXTANI_LEFT || eAniDirection==SDRTEXTANI_RIGHT) nWdt=1000000;
741 0 : if (eAniDirection==SDRTEXTANI_UP || eAniDirection==SDRTEXTANI_DOWN) nHgt=1000000;
742 : }
743 :
744 : // #i119885# Do not limit/force height to geometrical frame (vice versa for vertical writing)
745 0 : if(IsVerticalWriting())
746 : {
747 0 : nWdt = 1000000;
748 : }
749 : else
750 : {
751 0 : nHgt = 1000000;
752 : }
753 :
754 0 : rOutliner.SetMaxAutoPaperSize(Size(nWdt,nHgt));
755 : }
756 :
757 : // New try with _BLOCK for hor and ver after completely
758 : // supporting full width for vertical text.
759 0 : if(SDRTEXTHORZADJUST_BLOCK == eHAdj && !IsVerticalWriting())
760 : {
761 0 : rOutliner.SetMinAutoPaperSize(Size(nAnkWdt, 0));
762 : }
763 :
764 0 : if(SDRTEXTVERTADJUST_BLOCK == eVAdj && IsVerticalWriting())
765 : {
766 0 : rOutliner.SetMinAutoPaperSize(Size(0, nAnkHgt));
767 : }
768 : }
769 :
770 0 : rOutliner.SetPaperSize(aNullSize);
771 0 : if (bContourFrame)
772 0 : ImpSetContourPolygon( rOutliner, aAnkRect, bLineWidth );
773 :
774 : // put text into the outliner, if available from the edit outliner
775 0 : SdrText* pText = getActiveText();
776 0 : OutlinerParaObject* pOutlinerParaObject = pText ? pText->GetOutlinerParaObject() : 0;
777 0 : OutlinerParaObject* pPara = (pEdtOutl && !bNoEditText) ? pEdtOutl->CreateParaObject() : pOutlinerParaObject;
778 :
779 0 : if (pPara)
780 : {
781 0 : bool bHitTest = false;
782 0 : if( pModel )
783 0 : bHitTest = &pModel->GetHitTestOutliner() == &rOutliner;
784 :
785 0 : const SdrTextObj* pTestObj = rOutliner.GetTextObj();
786 0 : if( !pTestObj || !bHitTest || pTestObj != this ||
787 0 : pTestObj->GetOutlinerParaObject() != pOutlinerParaObject )
788 : {
789 0 : if( bHitTest ) // #i33696# take back fix #i27510#
790 : {
791 0 : rOutliner.SetTextObj( this );
792 0 : rOutliner.SetFixedCellHeight(static_cast<const SdrTextFixedCellHeightItem&>(GetMergedItem(SDRATTR_TEXT_USEFIXEDCELLHEIGHT)).GetValue());
793 : }
794 :
795 0 : rOutliner.SetUpdateMode(true);
796 0 : rOutliner.SetText(*pPara);
797 : }
798 : }
799 : else
800 : {
801 0 : rOutliner.SetTextObj( NULL );
802 : }
803 :
804 0 : if (pEdtOutl && !bNoEditText && pPara)
805 0 : delete pPara;
806 :
807 0 : rOutliner.SetUpdateMode(true);
808 0 : rOutliner.SetControlWord(nStat0);
809 :
810 0 : if( pText )
811 0 : pText->CheckPortionInfo(rOutliner);
812 :
813 0 : Point aTextPos(aAnkRect.TopLeft());
814 0 : Size aTextSiz(rOutliner.GetPaperSize()); // GetPaperSize() adds a little tolerance, right?
815 :
816 : // For draw objects containing text correct hor/ver alignment if text is bigger
817 : // than the object itself. Without that correction, the text would always be
818 : // formatted to the left edge (or top edge when vertical) of the draw object.
819 0 : if(!IsTextFrame())
820 : {
821 0 : if(aAnkRect.GetWidth() < aTextSiz.Width() && !IsVerticalWriting())
822 : {
823 : // Horizontal case here. Correct only if eHAdj == SDRTEXTHORZADJUST_BLOCK,
824 : // else the alignment is wanted.
825 0 : if(SDRTEXTHORZADJUST_BLOCK == eHAdj)
826 : {
827 0 : eHAdj = SDRTEXTHORZADJUST_CENTER;
828 : }
829 : }
830 :
831 0 : if(aAnkRect.GetHeight() < aTextSiz.Height() && IsVerticalWriting())
832 : {
833 : // Vertical case here. Correct only if eHAdj == SDRTEXTVERTADJUST_BLOCK,
834 : // else the alignment is wanted.
835 0 : if(SDRTEXTVERTADJUST_BLOCK == eVAdj)
836 : {
837 0 : eVAdj = SDRTEXTVERTADJUST_CENTER;
838 : }
839 : }
840 : }
841 :
842 0 : if (eHAdj==SDRTEXTHORZADJUST_CENTER || eHAdj==SDRTEXTHORZADJUST_RIGHT)
843 : {
844 0 : long nFreeWdt=aAnkRect.GetWidth()-aTextSiz.Width();
845 0 : if (eHAdj==SDRTEXTHORZADJUST_CENTER)
846 0 : aTextPos.X()+=nFreeWdt/2;
847 0 : if (eHAdj==SDRTEXTHORZADJUST_RIGHT)
848 0 : aTextPos.X()+=nFreeWdt;
849 : }
850 0 : if (eVAdj==SDRTEXTVERTADJUST_CENTER || eVAdj==SDRTEXTVERTADJUST_BOTTOM)
851 : {
852 0 : long nFreeHgt=aAnkRect.GetHeight()-aTextSiz.Height();
853 0 : if (eVAdj==SDRTEXTVERTADJUST_CENTER)
854 0 : aTextPos.Y()+=nFreeHgt/2;
855 0 : if (eVAdj==SDRTEXTVERTADJUST_BOTTOM)
856 0 : aTextPos.Y()+=nFreeHgt;
857 : }
858 0 : if (aGeo.nRotationAngle!=0)
859 0 : RotatePoint(aTextPos,aAnkRect.TopLeft(),aGeo.nSin,aGeo.nCos);
860 :
861 0 : if (pAnchorRect)
862 0 : *pAnchorRect=aAnkRect;
863 :
864 : // rTextRect might not be correct in some cases at ContourFrame
865 0 : rTextRect=Rectangle(aTextPos,aTextSiz);
866 0 : if (bContourFrame)
867 0 : rTextRect=aAnkRect;
868 0 : }
869 :
870 26887 : OutlinerParaObject* SdrTextObj::GetEditOutlinerParaObject() const
871 : {
872 26887 : OutlinerParaObject* pPara=NULL;
873 26887 : if( HasTextImpl( pEdtOutl ) )
874 : {
875 0 : sal_Int32 nParaAnz = pEdtOutl->GetParagraphCount();
876 0 : pPara = pEdtOutl->CreateParaObject(0, nParaAnz);
877 : }
878 26887 : return pPara;
879 : }
880 :
881 0 : void SdrTextObj::ImpSetCharStretching(SdrOutliner& rOutliner, const Size& rTextSize, const Size& rShapeSize, Fraction& rFitXKorreg) const
882 : {
883 0 : OutputDevice* pOut = rOutliner.GetRefDevice();
884 0 : bool bNoStretching(false);
885 :
886 0 : if(pOut && pOut->GetOutDevType() == OUTDEV_PRINTER)
887 : {
888 : // check whether CharStretching is possible at all
889 0 : GDIMetaFile* pMtf = pOut->GetConnectMetaFile();
890 0 : OUString aTestString(static_cast<sal_Unicode>('J'));
891 :
892 0 : if(pMtf && (!pMtf->IsRecord() || pMtf->IsPause()))
893 0 : pMtf = NULL;
894 :
895 0 : if(pMtf)
896 0 : pMtf->Pause(true);
897 :
898 0 : vcl::Font aFontMerk(pOut->GetFont());
899 0 : vcl::Font aTmpFont( OutputDevice::GetDefaultFont( DEFAULTFONT_SERIF, LANGUAGE_SYSTEM, DEFAULTFONT_FLAGS_ONLYONE ) );
900 :
901 0 : aTmpFont.SetSize(Size(0,100));
902 0 : pOut->SetFont(aTmpFont);
903 0 : Size aSize1(pOut->GetTextWidth(aTestString), pOut->GetTextHeight());
904 0 : aTmpFont.SetSize(Size(800,100));
905 0 : pOut->SetFont(aTmpFont);
906 0 : Size aSize2(pOut->GetTextWidth(aTestString), pOut->GetTextHeight());
907 0 : pOut->SetFont(aFontMerk);
908 :
909 0 : if(pMtf)
910 0 : pMtf->Pause(false);
911 :
912 0 : bNoStretching = (aSize1 == aSize2);
913 :
914 : #ifdef WNT
915 : // Windows zooms the font proportionally when using Size(100,500),
916 : // we don't like that.
917 : if(aSize2.Height() >= aSize1.Height() * 2)
918 : {
919 : bNoStretching = true;
920 : }
921 : #endif
922 : }
923 0 : unsigned nLoopCount=0;
924 0 : bool bNoMoreLoop = false;
925 0 : long nXDiff0=0x7FFFFFFF;
926 0 : long nWantWdt=rShapeSize.Width();
927 0 : long nIsWdt=rTextSize.Width();
928 0 : if (nIsWdt==0) nIsWdt=1;
929 :
930 0 : long nWantHgt=rShapeSize.Height();
931 0 : long nIsHgt=rTextSize.Height();
932 0 : if (nIsHgt==0) nIsHgt=1;
933 :
934 0 : long nXTolPl=nWantWdt/100; // tolerance: +1%
935 0 : long nXTolMi=nWantWdt/25; // tolerance: -4%
936 0 : long nXKorr =nWantWdt/20; // correction scale: 5%
937 :
938 0 : long nX=(nWantWdt*100) /nIsWdt; // calculate X stretching
939 0 : long nY=(nWantHgt*100) /nIsHgt; // calculate Y stretching
940 0 : bool bChkX = true;
941 0 : if (bNoStretching) { // might only be be possible proportionally
942 0 : if (nX>nY) { nX=nY; bChkX=false; }
943 0 : else { nY=nX; }
944 : }
945 :
946 0 : while (nLoopCount<5 && !bNoMoreLoop) {
947 0 : if (nX<0) nX=-nX;
948 0 : if (nX<1) { nX=1; bNoMoreLoop = true; }
949 0 : if (nX>65535) { nX=65535; bNoMoreLoop = true; }
950 :
951 0 : if (nY<0) nY=-nY;
952 0 : if (nY<1) { nY=1; bNoMoreLoop = true; }
953 0 : if (nY>65535) { nY=65535; bNoMoreLoop = true; }
954 :
955 : // exception, there is no text yet (horizontal case)
956 0 : if(nIsWdt <= 1)
957 : {
958 0 : nX = nY;
959 0 : bNoMoreLoop = true;
960 : }
961 :
962 : // exception, there is no text yet (vertical case)
963 0 : if(nIsHgt <= 1)
964 : {
965 0 : nY = nX;
966 0 : bNoMoreLoop = true;
967 : }
968 :
969 0 : rOutliner.SetGlobalCharStretching((sal_uInt16)nX,(sal_uInt16)nY);
970 0 : nLoopCount++;
971 0 : Size aSiz(rOutliner.CalcTextSize());
972 0 : long nXDiff=aSiz.Width()-nWantWdt;
973 0 : rFitXKorreg=Fraction(nWantWdt,aSiz.Width());
974 0 : if (((nXDiff>=nXTolMi || !bChkX) && nXDiff<=nXTolPl) || nXDiff==nXDiff0) {
975 0 : bNoMoreLoop = true;
976 : } else {
977 : // correct stretching factors
978 0 : long nMul=nWantWdt;
979 0 : long nDiv=aSiz.Width();
980 0 : if (std::abs(nXDiff)<=2*nXKorr) {
981 0 : if (nMul>nDiv) nDiv+=(nMul-nDiv)/2; // but only add half of what we calculated,
982 0 : else nMul+=(nDiv-nMul)/2; // because the EditEngine calculates wrongly later on
983 : }
984 0 : nX=nX*nMul/nDiv;
985 0 : if (bNoStretching) nY=nX;
986 : }
987 0 : nXDiff0=nXDiff;
988 : }
989 0 : }
990 :
991 2580 : OUString SdrTextObj::TakeObjNameSingul() const
992 : {
993 2580 : OUString aStr;
994 :
995 2580 : switch(eTextKind)
996 : {
997 : case OBJ_OUTLINETEXT:
998 : {
999 504 : aStr = ImpGetResStr(STR_ObjNameSingulOUTLINETEXT);
1000 504 : break;
1001 : }
1002 :
1003 : case OBJ_TITLETEXT :
1004 : {
1005 664 : aStr = ImpGetResStr(STR_ObjNameSingulTITLETEXT);
1006 664 : break;
1007 : }
1008 :
1009 : default:
1010 : {
1011 1412 : if(IsLinkedText())
1012 0 : aStr = ImpGetResStr(STR_ObjNameSingulTEXTLNK);
1013 : else
1014 1412 : aStr = ImpGetResStr(STR_ObjNameSingulTEXT);
1015 1412 : break;
1016 : }
1017 : }
1018 :
1019 2580 : OutlinerParaObject* pOutlinerParaObject = GetOutlinerParaObject();
1020 2580 : if(pOutlinerParaObject && eTextKind != OBJ_OUTLINETEXT)
1021 : {
1022 : // shouldn't currently cause any problems at OUTLINETEXT
1023 2076 : OUString aStr2(comphelper::string::stripStart(pOutlinerParaObject->GetTextObject().GetText(0), ' '));
1024 :
1025 : // avoid non expanded text portions in object name
1026 : // (second condition is new)
1027 2076 : if(!aStr2.isEmpty() && aStr2.indexOf(sal_Unicode(255)) == -1)
1028 : {
1029 : // space between ResStr and content text
1030 2076 : aStr += " ";
1031 :
1032 2076 : aStr += "\'";
1033 :
1034 2076 : if(aStr2.getLength() > 10)
1035 : {
1036 1020 : aStr2 = aStr2.copy(0, 8);
1037 1020 : aStr2 += "...";
1038 : }
1039 :
1040 2076 : aStr += aStr2;
1041 2076 : aStr += "\'";
1042 2076 : }
1043 : }
1044 :
1045 2580 : OUStringBuffer sName(aStr);
1046 :
1047 5160 : OUString aName(GetName());
1048 2580 : if (!aName.isEmpty())
1049 : {
1050 0 : sName.append(' ');
1051 0 : sName.append('\'');
1052 0 : sName.append(aName);
1053 0 : sName.append('\'');
1054 : }
1055 :
1056 5160 : return sName.makeStringAndClear();
1057 : }
1058 :
1059 0 : OUString SdrTextObj::TakeObjNamePlural() const
1060 : {
1061 0 : OUString sName;
1062 0 : switch (eTextKind) {
1063 0 : case OBJ_OUTLINETEXT: sName=ImpGetResStr(STR_ObjNamePluralOUTLINETEXT); break;
1064 0 : case OBJ_TITLETEXT : sName=ImpGetResStr(STR_ObjNamePluralTITLETEXT); break;
1065 : default: {
1066 0 : if (IsLinkedText()) {
1067 0 : sName=ImpGetResStr(STR_ObjNamePluralTEXTLNK);
1068 : } else {
1069 0 : sName=ImpGetResStr(STR_ObjNamePluralTEXT);
1070 : }
1071 0 : } break;
1072 : } // switch
1073 0 : return sName;
1074 : }
1075 :
1076 0 : SdrTextObj* SdrTextObj::Clone() const
1077 : {
1078 0 : return CloneHelper< SdrTextObj >();
1079 : }
1080 :
1081 1282 : SdrTextObj& SdrTextObj::operator=(const SdrTextObj& rObj)
1082 : {
1083 1282 : if( this == &rObj )
1084 0 : return *this;
1085 : // call parent
1086 1282 : SdrObject::operator=(rObj);
1087 :
1088 1282 : aRect =rObj.aRect;
1089 1282 : aGeo =rObj.aGeo;
1090 1282 : eTextKind =rObj.eTextKind;
1091 1282 : bTextFrame=rObj.bTextFrame;
1092 1282 : aTextSize=rObj.aTextSize;
1093 1282 : bTextSizeDirty=rObj.bTextSizeDirty;
1094 :
1095 : // Not all of the necessary parameters were copied yet.
1096 1282 : bNoShear = rObj.bNoShear;
1097 1282 : bNoRotate = rObj.bNoRotate;
1098 1282 : bNoMirror = rObj.bNoMirror;
1099 1282 : bDisableAutoWidthOnDragging = rObj.bDisableAutoWidthOnDragging;
1100 :
1101 1282 : OutlinerParaObject* pNewOutlinerParaObject = 0;
1102 :
1103 1282 : SdrText* pText = getActiveText();
1104 :
1105 1282 : if( pText && rObj.HasText() )
1106 : {
1107 82 : const Outliner* pEO=rObj.pEdtOutl;
1108 82 : if (pEO!=NULL)
1109 : {
1110 0 : pNewOutlinerParaObject = pEO->CreateParaObject();
1111 : }
1112 : else
1113 : {
1114 82 : pNewOutlinerParaObject = new OutlinerParaObject(*rObj.getActiveText()->GetOutlinerParaObject());
1115 : }
1116 : }
1117 :
1118 1282 : mpText->SetOutlinerParaObject( pNewOutlinerParaObject );
1119 1282 : ImpSetTextStyleSheetListeners();
1120 1282 : return *this;
1121 : }
1122 :
1123 0 : basegfx::B2DPolyPolygon SdrTextObj::TakeXorPoly() const
1124 : {
1125 0 : Polygon aPol(aRect);
1126 0 : if (aGeo.nShearAngle!=0) ShearPoly(aPol,aRect.TopLeft(),aGeo.nTan);
1127 0 : if (aGeo.nRotationAngle!=0) RotatePoly(aPol,aRect.TopLeft(),aGeo.nSin,aGeo.nCos);
1128 :
1129 0 : basegfx::B2DPolyPolygon aRetval;
1130 0 : aRetval.append(aPol.getB2DPolygon());
1131 0 : return aRetval;
1132 : }
1133 :
1134 18 : basegfx::B2DPolyPolygon SdrTextObj::TakeContour() const
1135 : {
1136 18 : basegfx::B2DPolyPolygon aRetval(SdrAttrObj::TakeContour());
1137 :
1138 : // and now add the BoundRect of the text, if necessary
1139 18 : if ( pModel && GetOutlinerParaObject() && !IsFontwork() && !IsContourTextFrame() )
1140 : {
1141 : // using Clone()-Paint() strategy inside TakeContour() leaves a destroyed
1142 : // SdrObject as pointer in DrawOutliner. Set *this again in fetching the outliner
1143 : // in every case
1144 0 : SdrOutliner& rOutliner=ImpGetDrawOutliner();
1145 :
1146 0 : Rectangle aAnchor2;
1147 0 : Rectangle aR;
1148 0 : TakeTextRect(rOutliner,aR,false,&aAnchor2);
1149 0 : rOutliner.Clear();
1150 0 : bool bFitToSize(IsFitToSize());
1151 0 : if (bFitToSize) aR=aAnchor2;
1152 0 : Polygon aPol(aR);
1153 0 : if (aGeo.nRotationAngle!=0) RotatePoly(aPol,aR.TopLeft(),aGeo.nSin,aGeo.nCos);
1154 :
1155 0 : aRetval.append(aPol.getB2DPolygon());
1156 : }
1157 :
1158 18 : return aRetval;
1159 : }
1160 :
1161 49237 : void SdrTextObj::RecalcSnapRect()
1162 : {
1163 49237 : if (aGeo.nRotationAngle!=0 || aGeo.nShearAngle!=0) {
1164 1039 : Polygon aPol(aRect);
1165 1039 : if (aGeo.nShearAngle!=0) ShearPoly(aPol,aRect.TopLeft(),aGeo.nTan);
1166 1039 : if (aGeo.nRotationAngle!=0) RotatePoly(aPol,aRect.TopLeft(),aGeo.nSin,aGeo.nCos);
1167 1039 : maSnapRect=aPol.GetBoundRect();
1168 : } else {
1169 48198 : maSnapRect=aRect;
1170 : }
1171 49237 : }
1172 :
1173 0 : sal_uInt32 SdrTextObj::GetSnapPointCount() const
1174 : {
1175 0 : return 4L;
1176 : }
1177 :
1178 0 : Point SdrTextObj::GetSnapPoint(sal_uInt32 i) const
1179 : {
1180 0 : Point aP;
1181 0 : switch (i) {
1182 0 : case 0: aP=aRect.TopLeft(); break;
1183 0 : case 1: aP=aRect.TopRight(); break;
1184 0 : case 2: aP=aRect.BottomLeft(); break;
1185 0 : case 3: aP=aRect.BottomRight(); break;
1186 0 : default: aP=aRect.Center(); break;
1187 : }
1188 0 : if (aGeo.nShearAngle!=0) ShearPoint(aP,aRect.TopLeft(),aGeo.nTan);
1189 0 : if (aGeo.nRotationAngle!=0) RotatePoint(aP,aRect.TopLeft(),aGeo.nSin,aGeo.nCos);
1190 0 : return aP;
1191 : }
1192 :
1193 82702 : void SdrTextObj::ImpCheckMasterCachable()
1194 : {
1195 82702 : bNotMasterCachable=false;
1196 :
1197 82702 : OutlinerParaObject* pOutlinerParaObject = GetOutlinerParaObject();
1198 :
1199 82702 : if(!bNotVisibleAsMaster && pOutlinerParaObject && pOutlinerParaObject->IsEditDoc() )
1200 : {
1201 75466 : const EditTextObject& rText= pOutlinerParaObject->GetTextObject();
1202 75466 : bNotMasterCachable=rText.HasField(SvxPageField::StaticClassId());
1203 75466 : if( !bNotMasterCachable )
1204 : {
1205 72828 : bNotMasterCachable=rText.HasField(SvxHeaderField::StaticClassId());
1206 72828 : if( !bNotMasterCachable )
1207 : {
1208 71452 : bNotMasterCachable=rText.HasField(SvxFooterField::StaticClassId());
1209 71452 : if( !bNotMasterCachable )
1210 : {
1211 68986 : bNotMasterCachable=rText.HasField(SvxDateTimeField::StaticClassId());
1212 : }
1213 : }
1214 : }
1215 : }
1216 82702 : }
1217 :
1218 : // Extracted from ImpGetDrawOutliner()
1219 222360 : void SdrTextObj::ImpInitDrawOutliner( SdrOutliner& rOutl ) const
1220 : {
1221 222360 : rOutl.SetUpdateMode(false);
1222 222360 : sal_uInt16 nOutlinerMode = OUTLINERMODE_OUTLINEOBJECT;
1223 222360 : if ( !IsOutlText() )
1224 201257 : nOutlinerMode = OUTLINERMODE_TEXTOBJECT;
1225 222360 : rOutl.Init( nOutlinerMode );
1226 :
1227 222360 : rOutl.SetGlobalCharStretching(100,100);
1228 222360 : sal_uIntPtr nStat=rOutl.GetControlWord();
1229 222360 : nStat&=~(EE_CNTRL_STRETCHING|EE_CNTRL_AUTOPAGESIZE);
1230 222360 : rOutl.SetControlWord(nStat);
1231 222360 : Size aNullSize;
1232 222360 : Size aMaxSize(100000,100000);
1233 222360 : rOutl.SetMinAutoPaperSize(aNullSize);
1234 222360 : rOutl.SetMaxAutoPaperSize(aMaxSize);
1235 222360 : rOutl.SetPaperSize(aMaxSize);
1236 222360 : rOutl.ClearPolygon();
1237 222360 : }
1238 :
1239 222360 : SdrOutliner& SdrTextObj::ImpGetDrawOutliner() const
1240 : {
1241 222360 : SdrOutliner& rOutl=pModel->GetDrawOutliner(this);
1242 :
1243 : // Code extracted to ImpInitDrawOutliner()
1244 222360 : ImpInitDrawOutliner( rOutl );
1245 :
1246 222360 : return rOutl;
1247 : }
1248 :
1249 : // Extracted from Paint()
1250 0 : void SdrTextObj::ImpSetupDrawOutlinerForPaint( bool bContourFrame,
1251 : SdrOutliner& rOutliner,
1252 : Rectangle& rTextRect,
1253 : Rectangle& rAnchorRect,
1254 : Rectangle& rPaintRect,
1255 : Fraction& rFitXKorreg ) const
1256 : {
1257 0 : if (!bContourFrame)
1258 : {
1259 : // FitToSize can't be used together with ContourFrame for now
1260 0 : if (IsFitToSize() || IsAutoFit())
1261 : {
1262 0 : sal_uIntPtr nStat=rOutliner.GetControlWord();
1263 0 : nStat|=EE_CNTRL_STRETCHING|EE_CNTRL_AUTOPAGESIZE;
1264 0 : rOutliner.SetControlWord(nStat);
1265 : }
1266 : }
1267 0 : rOutliner.SetFixedCellHeight(static_cast<const SdrTextFixedCellHeightItem&>(GetMergedItem(SDRATTR_TEXT_USEFIXEDCELLHEIGHT)).GetValue());
1268 0 : TakeTextRect(rOutliner, rTextRect, false, &rAnchorRect);
1269 0 : rPaintRect = rTextRect;
1270 :
1271 0 : if (!bContourFrame)
1272 : {
1273 : // FitToSize can't be used together with ContourFrame for now
1274 0 : if (IsFitToSize())
1275 : {
1276 0 : ImpSetCharStretching(rOutliner,rTextRect.GetSize(),rAnchorRect.GetSize(),rFitXKorreg);
1277 0 : rPaintRect=rAnchorRect;
1278 : }
1279 0 : else if (IsAutoFit())
1280 : {
1281 0 : ImpAutoFitText(rOutliner);
1282 : }
1283 : }
1284 0 : }
1285 :
1286 0 : void SdrTextObj::ImpAutoFitText( SdrOutliner& rOutliner ) const
1287 : {
1288 0 : const Size aShapeSize=GetSnapRect().GetSize();
1289 : ImpAutoFitText( rOutliner,
1290 0 : Size(aShapeSize.Width()-GetTextLeftDistance()-GetTextRightDistance(),
1291 0 : aShapeSize.Height()-GetTextUpperDistance()-GetTextLowerDistance()),
1292 0 : IsVerticalWriting() );
1293 0 : }
1294 :
1295 73 : void SdrTextObj::ImpAutoFitText( SdrOutliner& rOutliner, const Size& rTextSize, bool bIsVerticalWriting )
1296 : {
1297 : // EditEngine formatting is unstable enough for
1298 : // line-breaking text that we need some more samples
1299 :
1300 : // loop early-exits if we detect an already attained value
1301 73 : sal_uInt16 nMinStretchX=0, nMinStretchY=0;
1302 73 : sal_uInt16 aOldStretchXVals[]={0,0,0,0,0,0,0,0,0,0};
1303 73 : const size_t aStretchArySize=SAL_N_ELEMENTS(aOldStretchXVals);
1304 146 : for(unsigned int i=0; i<aStretchArySize; ++i)
1305 : {
1306 146 : const Size aCurrTextSize = rOutliner.CalcTextSizeNTP();
1307 146 : double fFactor(1.0);
1308 146 : if( bIsVerticalWriting )
1309 0 : fFactor = double(rTextSize.Width())/aCurrTextSize.Width();
1310 : else
1311 146 : fFactor = double(rTextSize.Height())/aCurrTextSize.Height();
1312 : // fFactor scales in both x and y directions
1313 : // - this is fine for bulleted words
1314 : // - but it scales too much for a long paragraph
1315 : // - taking sqrt scales long paragraphs the best
1316 : // - bulleted words will have to go through more iterations
1317 146 : fFactor = std::sqrt(fFactor);
1318 :
1319 : sal_uInt16 nCurrStretchX, nCurrStretchY;
1320 146 : rOutliner.GetGlobalCharStretching(nCurrStretchX, nCurrStretchY);
1321 :
1322 146 : if (fFactor >= 1.0 )
1323 : {
1324 : // resulting text area fits into available shape rect -
1325 : // err on the larger stretching, to optimally fill area
1326 146 : nMinStretchX = std::max(nMinStretchX,nCurrStretchX);
1327 146 : nMinStretchY = std::max(nMinStretchY,nCurrStretchY);
1328 : }
1329 :
1330 146 : aOldStretchXVals[i] = nCurrStretchX;
1331 146 : if( std::find(aOldStretchXVals, aOldStretchXVals+i, nCurrStretchX) != aOldStretchXVals+i )
1332 73 : break; // same value already attained once; algo is looping, exit
1333 :
1334 73 : if (fFactor < 1.0 || (fFactor >= 1.0 && nCurrStretchX != 100))
1335 : {
1336 0 : nCurrStretchX = sal::static_int_cast<sal_uInt16>(nCurrStretchX*fFactor);
1337 0 : nCurrStretchY = sal::static_int_cast<sal_uInt16>(nCurrStretchY*fFactor);
1338 0 : rOutliner.SetGlobalCharStretching(std::min(sal_uInt16(100),nCurrStretchX),
1339 0 : std::min(sal_uInt16(100),nCurrStretchY));
1340 : OSL_TRACE("SdrTextObj::onEditOutlinerStatusEvent(): zoom is %d", nCurrStretchX);
1341 : }
1342 : }
1343 :
1344 : OSL_TRACE("---- SdrTextObj::onEditOutlinerStatusEvent(): final zoom is %d ----", nMinStretchX);
1345 146 : rOutliner.SetGlobalCharStretching(std::min(sal_uInt16(100),nMinStretchX),
1346 219 : std::min(sal_uInt16(100),nMinStretchY));
1347 73 : }
1348 :
1349 0 : void SdrTextObj::SetupOutlinerFormatting( SdrOutliner& rOutl, Rectangle& rPaintRect ) const
1350 : {
1351 0 : ImpInitDrawOutliner( rOutl );
1352 0 : UpdateOutlinerFormatting( rOutl, rPaintRect );
1353 0 : }
1354 :
1355 0 : void SdrTextObj::UpdateOutlinerFormatting( SdrOutliner& rOutl, Rectangle& rPaintRect ) const
1356 : {
1357 0 : Rectangle aTextRect;
1358 0 : Rectangle aAnchorRect;
1359 0 : Fraction aFitXKorreg(1,1);
1360 :
1361 0 : bool bContourFrame=IsContourTextFrame();
1362 :
1363 0 : if( GetModel() )
1364 : {
1365 : MapMode aMapMode(GetModel()->GetScaleUnit(), Point(0,0),
1366 0 : GetModel()->GetScaleFraction(),
1367 0 : GetModel()->GetScaleFraction());
1368 0 : rOutl.SetRefMapMode(aMapMode);
1369 : }
1370 :
1371 0 : ImpSetupDrawOutlinerForPaint( bContourFrame, rOutl, aTextRect, aAnchorRect, rPaintRect, aFitXKorreg );
1372 0 : }
1373 :
1374 :
1375 :
1376 531285 : OutlinerParaObject* SdrTextObj::GetOutlinerParaObject() const
1377 : {
1378 531285 : SdrText* pText = getActiveText();
1379 531285 : if( pText )
1380 531285 : return pText->GetOutlinerParaObject();
1381 : else
1382 0 : return 0;
1383 : }
1384 :
1385 7898 : void SdrTextObj::NbcSetOutlinerParaObject(OutlinerParaObject* pTextObject)
1386 : {
1387 7898 : NbcSetOutlinerParaObjectForText( pTextObject, getActiveText() );
1388 7898 : }
1389 :
1390 82702 : void SdrTextObj::NbcSetOutlinerParaObjectForText( OutlinerParaObject* pTextObject, SdrText* pText )
1391 : {
1392 82702 : if( pText )
1393 81998 : pText->SetOutlinerParaObject( pTextObject );
1394 :
1395 82702 : if (pText && pText->GetOutlinerParaObject())
1396 : {
1397 81096 : SvxWritingModeItem aWritingMode(pText->GetOutlinerParaObject()->IsVertical()
1398 : ? com::sun::star::text::WritingMode_TB_RL
1399 : : com::sun::star::text::WritingMode_LR_TB,
1400 81096 : SDRATTR_TEXTDIRECTION);
1401 81096 : GetProperties().SetObjectItemDirect(aWritingMode);
1402 : }
1403 :
1404 82702 : SetTextSizeDirty();
1405 82702 : if (IsTextFrame() && (IsAutoGrowHeight() || IsAutoGrowWidth()))
1406 : { // adapt text frame!
1407 63964 : NbcAdjustTextFrameWidthAndHeight();
1408 : }
1409 82702 : if (!IsTextFrame())
1410 : {
1411 : // the SnapRect keeps its size
1412 5602 : SetRectsDirty(true);
1413 : }
1414 :
1415 : // always invalidate BoundRect on change
1416 82702 : SetBoundRectDirty();
1417 82702 : ActionChanged();
1418 :
1419 82702 : ImpSetTextStyleSheetListeners();
1420 82702 : ImpCheckMasterCachable();
1421 82702 : }
1422 :
1423 86 : void SdrTextObj::NbcReformatText()
1424 : {
1425 86 : SdrText* pText = getActiveText();
1426 86 : if( pText && pText->GetOutlinerParaObject() )
1427 : {
1428 6 : pText->ReformatText();
1429 6 : if (bTextFrame)
1430 : {
1431 2 : NbcAdjustTextFrameWidthAndHeight();
1432 : }
1433 : else
1434 : {
1435 : // the SnapRect keeps its size
1436 4 : SetBoundRectDirty();
1437 4 : SetRectsDirty(true);
1438 : }
1439 6 : SetTextSizeDirty();
1440 6 : ActionChanged();
1441 : // i22396
1442 : // Necessary here since we have no compare operator at the outliner
1443 : // para object which may detect changes regarding the combination
1444 : // of outliner para data and configuration (e.g., change of
1445 : // formatting of text numerals)
1446 6 : GetViewContact().flushViewObjectContacts(false);
1447 : }
1448 86 : }
1449 :
1450 0 : void SdrTextObj::ReformatText()
1451 : {
1452 0 : if(GetOutlinerParaObject())
1453 : {
1454 0 : Rectangle aBoundRect0;
1455 0 : if (pUserCall!=NULL)
1456 0 : aBoundRect0=GetLastBoundRect();
1457 :
1458 0 : NbcReformatText();
1459 0 : SetChanged();
1460 0 : BroadcastObjectChange();
1461 0 : SendUserCall(SDRUSERCALL_RESIZE,aBoundRect0);
1462 : }
1463 0 : }
1464 :
1465 16 : SdrObjGeoData* SdrTextObj::NewGeoData() const
1466 : {
1467 16 : return new SdrTextObjGeoData;
1468 : }
1469 :
1470 2446 : void SdrTextObj::SaveGeoData(SdrObjGeoData& rGeo) const
1471 : {
1472 2446 : SdrAttrObj::SaveGeoData(rGeo);
1473 2446 : SdrTextObjGeoData& rTGeo=static_cast<SdrTextObjGeoData&>(rGeo);
1474 2446 : rTGeo.aRect =aRect;
1475 2446 : rTGeo.aGeo =aGeo;
1476 2446 : }
1477 :
1478 0 : void SdrTextObj::RestGeoData(const SdrObjGeoData& rGeo)
1479 : { // RectsDirty is called by SdrObject
1480 0 : SdrAttrObj::RestGeoData(rGeo);
1481 0 : const SdrTextObjGeoData& rTGeo=static_cast<const SdrTextObjGeoData&>(rGeo);
1482 0 : NbcSetLogicRect(rTGeo.aRect);
1483 0 : aGeo =rTGeo.aGeo;
1484 0 : SetTextSizeDirty();
1485 0 : }
1486 :
1487 184138 : SdrFitToSizeType SdrTextObj::GetFitToSize() const
1488 : {
1489 184138 : SdrFitToSizeType eType = SDRTEXTFIT_NONE;
1490 :
1491 184138 : if(!IsAutoGrowWidth())
1492 124949 : eType = static_cast<const SdrTextFitToSizeTypeItem&>(GetObjectItem(SDRATTR_TEXT_FITTOSIZE)).GetValue();
1493 :
1494 184138 : return eType;
1495 : }
1496 :
1497 6420 : void SdrTextObj::ForceOutlinerParaObject()
1498 : {
1499 6420 : SdrText* pText = getActiveText();
1500 6420 : if( pText && (pText->GetOutlinerParaObject() == 0) )
1501 : {
1502 594 : sal_uInt16 nOutlMode = OUTLINERMODE_TEXTOBJECT;
1503 594 : if( IsTextFrame() && eTextKind == OBJ_OUTLINETEXT )
1504 0 : nOutlMode = OUTLINERMODE_OUTLINEOBJECT;
1505 :
1506 594 : pText->ForceOutlinerParaObject( nOutlMode );
1507 : }
1508 6420 : }
1509 :
1510 90496 : bool SdrTextObj::IsVerticalWriting() const
1511 : {
1512 90496 : if(pEdtOutl)
1513 : {
1514 0 : return pEdtOutl->IsVertical();
1515 : }
1516 :
1517 90496 : OutlinerParaObject* pOutlinerParaObject = GetOutlinerParaObject();
1518 90496 : if(pOutlinerParaObject)
1519 : {
1520 49102 : return pOutlinerParaObject->IsVertical();
1521 : }
1522 :
1523 41394 : return false;
1524 : }
1525 :
1526 89929 : void SdrTextObj::SetVerticalWriting(bool bVertical)
1527 : {
1528 89929 : OutlinerParaObject* pOutlinerParaObject = GetOutlinerParaObject();
1529 89929 : if( !pOutlinerParaObject && bVertical )
1530 : {
1531 : // we only need to force a outliner para object if the default of
1532 : // horizontal text is changed
1533 0 : ForceOutlinerParaObject();
1534 0 : pOutlinerParaObject = GetOutlinerParaObject();
1535 : }
1536 :
1537 89929 : if( pOutlinerParaObject && (pOutlinerParaObject->IsVertical() != (bool)bVertical) )
1538 : {
1539 : // get item settings
1540 4 : const SfxItemSet& rSet = GetObjectItemSet();
1541 4 : bool bAutoGrowWidth = static_cast<const SdrOnOffItem&>(rSet.Get(SDRATTR_TEXT_AUTOGROWWIDTH)).GetValue();
1542 4 : bool bAutoGrowHeight = static_cast<const SdrOnOffItem&>(rSet.Get(SDRATTR_TEXT_AUTOGROWHEIGHT)).GetValue();
1543 :
1544 : // Also exchange hor/ver adjust items
1545 4 : SdrTextHorzAdjust eHorz = static_cast<const SdrTextHorzAdjustItem&>(rSet.Get(SDRATTR_TEXT_HORZADJUST)).GetValue();
1546 4 : SdrTextVertAdjust eVert = static_cast<const SdrTextVertAdjustItem&>(rSet.Get(SDRATTR_TEXT_VERTADJUST)).GetValue();
1547 :
1548 : // rescue object size
1549 4 : Rectangle aObjectRect = GetSnapRect();
1550 :
1551 : // prepare ItemSet to set exchanged width and height items
1552 4 : SfxItemSet aNewSet(*rSet.GetPool(),
1553 : SDRATTR_TEXT_AUTOGROWHEIGHT, SDRATTR_TEXT_AUTOGROWHEIGHT,
1554 : // Expanded item ranges to also support hor and ver adjust.
1555 : SDRATTR_TEXT_VERTADJUST, SDRATTR_TEXT_VERTADJUST,
1556 : SDRATTR_TEXT_AUTOGROWWIDTH, SDRATTR_TEXT_HORZADJUST,
1557 4 : 0, 0);
1558 :
1559 4 : aNewSet.Put(rSet);
1560 4 : aNewSet.Put(makeSdrTextAutoGrowWidthItem(bAutoGrowHeight));
1561 4 : aNewSet.Put(makeSdrTextAutoGrowHeightItem(bAutoGrowWidth));
1562 :
1563 : // Exchange horz and vert adjusts
1564 4 : switch(eVert)
1565 : {
1566 4 : case SDRTEXTVERTADJUST_TOP: aNewSet.Put(SdrTextHorzAdjustItem(SDRTEXTHORZADJUST_RIGHT)); break;
1567 0 : case SDRTEXTVERTADJUST_CENTER: aNewSet.Put(SdrTextHorzAdjustItem(SDRTEXTHORZADJUST_CENTER)); break;
1568 0 : case SDRTEXTVERTADJUST_BOTTOM: aNewSet.Put(SdrTextHorzAdjustItem(SDRTEXTHORZADJUST_LEFT)); break;
1569 0 : case SDRTEXTVERTADJUST_BLOCK: aNewSet.Put(SdrTextHorzAdjustItem(SDRTEXTHORZADJUST_BLOCK)); break;
1570 : }
1571 4 : switch(eHorz)
1572 : {
1573 0 : case SDRTEXTHORZADJUST_LEFT: aNewSet.Put(SdrTextVertAdjustItem(SDRTEXTVERTADJUST_BOTTOM)); break;
1574 0 : case SDRTEXTHORZADJUST_CENTER: aNewSet.Put(SdrTextVertAdjustItem(SDRTEXTVERTADJUST_CENTER)); break;
1575 4 : case SDRTEXTHORZADJUST_RIGHT: aNewSet.Put(SdrTextVertAdjustItem(SDRTEXTVERTADJUST_TOP)); break;
1576 0 : case SDRTEXTHORZADJUST_BLOCK: aNewSet.Put(SdrTextVertAdjustItem(SDRTEXTVERTADJUST_BLOCK)); break;
1577 : }
1578 :
1579 4 : SetObjectItemSet(aNewSet);
1580 :
1581 4 : pOutlinerParaObject = GetOutlinerParaObject();
1582 4 : if( pOutlinerParaObject )
1583 : {
1584 : // set ParaObject orientation accordingly
1585 4 : pOutlinerParaObject->SetVertical(bVertical);
1586 : }
1587 :
1588 : // restore object size
1589 4 : SetSnapRect(aObjectRect);
1590 : }
1591 89929 : }
1592 :
1593 :
1594 :
1595 : // transformation interface for StarOfficeAPI. This implements support for
1596 : // homogeneous 3x3 matrices containing the transformation of the SdrObject. At the
1597 : // moment it contains a shearX, rotation and translation, but for setting all linear
1598 : // transforms like Scale, ShearX, ShearY, Rotate and Translate are supported.
1599 :
1600 :
1601 : // gets base transformation and rectangle of object. If it's an SdrPathObj it fills the PolyPolygon
1602 : // with the base geometry and returns TRUE. Otherwise it returns FALSE.
1603 22644 : bool SdrTextObj::TRGetBaseGeometry(basegfx::B2DHomMatrix& rMatrix, basegfx::B2DPolyPolygon& /*rPolyPolygon*/) const
1604 : {
1605 : // get turn and shear
1606 22644 : double fRotate = (aGeo.nRotationAngle / 100.0) * F_PI180;
1607 22644 : double fShearX = (aGeo.nShearAngle / 100.0) * F_PI180;
1608 :
1609 : // get aRect, this is the unrotated snaprect
1610 22644 : Rectangle aRectangle(aRect);
1611 :
1612 : // fill other values
1613 22644 : basegfx::B2DTuple aScale(aRectangle.GetWidth(), aRectangle.GetHeight());
1614 45288 : basegfx::B2DTuple aTranslate(aRectangle.Left(), aRectangle.Top());
1615 :
1616 : // position maybe relative to anchorpos, convert
1617 22644 : if( pModel && pModel->IsWriter() )
1618 : {
1619 974 : if(GetAnchorPos().X() || GetAnchorPos().Y())
1620 : {
1621 192 : aTranslate -= basegfx::B2DTuple(GetAnchorPos().X(), GetAnchorPos().Y());
1622 : }
1623 : }
1624 :
1625 : // force MapUnit to 100th mm
1626 22644 : const SfxMapUnit eMapUnit(GetObjectMapUnit());
1627 22644 : if(eMapUnit != SFX_MAPUNIT_100TH_MM)
1628 : {
1629 974 : switch(eMapUnit)
1630 : {
1631 : case SFX_MAPUNIT_TWIP :
1632 : {
1633 : // position
1634 974 : aTranslate.setX(ImplTwipsToMM(aTranslate.getX()));
1635 974 : aTranslate.setY(ImplTwipsToMM(aTranslate.getY()));
1636 :
1637 : // size
1638 974 : aScale.setX(ImplTwipsToMM(aScale.getX()));
1639 974 : aScale.setY(ImplTwipsToMM(aScale.getY()));
1640 :
1641 974 : break;
1642 : }
1643 : default:
1644 : {
1645 : OSL_FAIL("TRGetBaseGeometry: Missing unit translation to 100th mm!");
1646 : }
1647 : }
1648 : }
1649 :
1650 : // build matrix
1651 67932 : rMatrix = basegfx::tools::createScaleShearXRotateTranslateB2DHomMatrix(
1652 : aScale,
1653 22644 : basegfx::fTools::equalZero(fShearX) ? 0.0 : tan(fShearX),
1654 22644 : basegfx::fTools::equalZero(fRotate) ? 0.0 : -fRotate,
1655 22644 : aTranslate);
1656 :
1657 45288 : return false;
1658 : }
1659 :
1660 : // sets the base geometry of the object using infos contained in the homogeneous 3x3 matrix.
1661 : // If it's an SdrPathObj it will use the provided geometry information. The Polygon has
1662 : // to use (0,0) as upper left and will be scaled to the given size in the matrix.
1663 22120 : void SdrTextObj::TRSetBaseGeometry(const basegfx::B2DHomMatrix& rMatrix, const basegfx::B2DPolyPolygon& /*rPolyPolygon*/)
1664 : {
1665 : // break up matrix
1666 22120 : basegfx::B2DTuple aScale;
1667 44240 : basegfx::B2DTuple aTranslate;
1668 22120 : double fRotate(0.0);
1669 22120 : double fShearX(0.0);
1670 22120 : rMatrix.decompose(aScale, aTranslate, fRotate, fShearX);
1671 :
1672 : // #i75086# Old DrawingLayer (GeoStat and geometry) does not support holding negative scalings
1673 : // in X and Y which equal a 180 degree rotation. Recognize it and react accordingly
1674 22120 : if(basegfx::fTools::less(aScale.getX(), 0.0) && basegfx::fTools::less(aScale.getY(), 0.0))
1675 : {
1676 0 : aScale.setX(fabs(aScale.getX()));
1677 0 : aScale.setY(fabs(aScale.getY()));
1678 0 : fRotate = fmod(fRotate + F_PI, F_2PI);
1679 : }
1680 :
1681 : // reset object shear and rotations
1682 22120 : aGeo.nRotationAngle = 0;
1683 22120 : aGeo.RecalcSinCos();
1684 22120 : aGeo.nShearAngle = 0;
1685 22120 : aGeo.RecalcTan();
1686 :
1687 : // force metric to pool metric
1688 22120 : const SfxMapUnit eMapUnit(GetObjectMapUnit());
1689 22120 : if(eMapUnit != SFX_MAPUNIT_100TH_MM)
1690 : {
1691 734 : switch(eMapUnit)
1692 : {
1693 : case SFX_MAPUNIT_TWIP :
1694 : {
1695 : // position
1696 734 : aTranslate.setX(ImplMMToTwips(aTranslate.getX()));
1697 734 : aTranslate.setY(ImplMMToTwips(aTranslate.getY()));
1698 :
1699 : // size
1700 734 : aScale.setX(ImplMMToTwips(aScale.getX()));
1701 734 : aScale.setY(ImplMMToTwips(aScale.getY()));
1702 :
1703 734 : break;
1704 : }
1705 : default:
1706 : {
1707 : OSL_FAIL("TRSetBaseGeometry: Missing unit translation to PoolMetric!");
1708 : }
1709 : }
1710 : }
1711 :
1712 : // if anchor is used, make position relative to it
1713 22120 : if( pModel && pModel->IsWriter() )
1714 : {
1715 734 : if(GetAnchorPos().X() || GetAnchorPos().Y())
1716 : {
1717 0 : aTranslate += basegfx::B2DTuple(GetAnchorPos().X(), GetAnchorPos().Y());
1718 : }
1719 : }
1720 :
1721 : // build and set BaseRect (use scale)
1722 22120 : Point aPoint = Point();
1723 22120 : Size aSize(FRound(aScale.getX()), FRound(aScale.getY()));
1724 22120 : Rectangle aBaseRect(aPoint, aSize);
1725 22120 : SetSnapRect(aBaseRect);
1726 :
1727 : // shear?
1728 22120 : if(!basegfx::fTools::equalZero(fShearX))
1729 : {
1730 0 : GeoStat aGeoStat;
1731 0 : aGeoStat.nShearAngle = FRound((atan(fShearX) / F_PI180) * 100.0);
1732 0 : aGeoStat.RecalcTan();
1733 0 : Shear(Point(), aGeoStat.nShearAngle, aGeoStat.nTan, false);
1734 : }
1735 :
1736 : // rotation?
1737 22120 : if(!basegfx::fTools::equalZero(fRotate))
1738 : {
1739 377 : GeoStat aGeoStat;
1740 :
1741 : // #i78696#
1742 : // fRotate is matematically correct, but aGeoStat.nRotationAngle is
1743 : // mirrored -> mirror value here
1744 377 : aGeoStat.nRotationAngle = NormAngle360(FRound(-fRotate / F_PI18000));
1745 377 : aGeoStat.RecalcSinCos();
1746 377 : Rotate(Point(), aGeoStat.nRotationAngle, aGeoStat.nSin, aGeoStat.nCos);
1747 : }
1748 :
1749 : // translate?
1750 22120 : if(!aTranslate.equalZero())
1751 : {
1752 21092 : Move(Size(FRound(aTranslate.getX()), FRound(aTranslate.getY())));
1753 22120 : }
1754 22120 : }
1755 :
1756 0 : bool SdrTextObj::IsRealyEdited() const
1757 : {
1758 0 : return pEdtOutl && pEdtOutl->IsModified();
1759 : }
1760 :
1761 :
1762 : // moved inlines here form hxx
1763 :
1764 32173 : long SdrTextObj::GetEckenradius() const
1765 : {
1766 32173 : return static_cast<const SdrMetricItem&>(GetObjectItemSet().Get(SDRATTR_ECKENRADIUS)).GetValue();
1767 : }
1768 :
1769 86388 : long SdrTextObj::GetMinTextFrameHeight() const
1770 : {
1771 86388 : return static_cast<const SdrMetricItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_MINFRAMEHEIGHT)).GetValue();
1772 : }
1773 :
1774 86388 : long SdrTextObj::GetMaxTextFrameHeight() const
1775 : {
1776 86388 : return static_cast<const SdrMetricItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_MAXFRAMEHEIGHT)).GetValue();
1777 : }
1778 :
1779 36191 : long SdrTextObj::GetMinTextFrameWidth() const
1780 : {
1781 36191 : return static_cast<const SdrMetricItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_MINFRAMEWIDTH)).GetValue();
1782 : }
1783 :
1784 36191 : long SdrTextObj::GetMaxTextFrameWidth() const
1785 : {
1786 36191 : return static_cast<const SdrMetricItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_MAXFRAMEWIDTH)).GetValue();
1787 : }
1788 :
1789 1680 : bool SdrTextObj::IsFontwork() const
1790 : {
1791 : return (bTextFrame) ? false // Default is FALSE
1792 1680 : : static_cast<const XFormTextStyleItem&>(GetObjectItemSet().Get(XATTR_FORMTXTSTYLE)).GetValue() != XFT_NONE;
1793 : }
1794 :
1795 0 : bool SdrTextObj::IsHideContour() const
1796 : {
1797 : return (bTextFrame) ? false // Default is: no, don't HideContour; HideContour not together with TextFrames
1798 0 : : static_cast<const XFormTextHideFormItem&>(GetObjectItemSet().Get(XATTR_FORMTXTHIDEFORM)).GetValue();
1799 : }
1800 :
1801 130144 : bool SdrTextObj::IsContourTextFrame() const
1802 : {
1803 : return (bTextFrame) ? false // ContourFrame not together with normal TextFrames
1804 130144 : : static_cast<const SdrOnOffItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_CONTOURFRAME)).GetValue();
1805 : }
1806 :
1807 204449 : long SdrTextObj::GetTextLeftDistance() const
1808 : {
1809 204449 : return static_cast<const SdrMetricItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_LEFTDIST)).GetValue();
1810 : }
1811 :
1812 204449 : long SdrTextObj::GetTextRightDistance() const
1813 : {
1814 204449 : return static_cast<const SdrMetricItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_RIGHTDIST)).GetValue();
1815 : }
1816 :
1817 245449 : long SdrTextObj::GetTextUpperDistance() const
1818 : {
1819 245449 : return static_cast<const SdrMetricItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_UPPERDIST)).GetValue();
1820 : }
1821 :
1822 245449 : long SdrTextObj::GetTextLowerDistance() const
1823 : {
1824 245449 : return static_cast<const SdrMetricItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_LOWERDIST)).GetValue();
1825 : }
1826 :
1827 1113683 : SdrTextAniKind SdrTextObj::GetTextAniKind() const
1828 : {
1829 1113683 : return static_cast<const SdrTextAniKindItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_ANIKIND)).GetValue();
1830 : }
1831 :
1832 84778 : SdrTextAniDirection SdrTextObj::GetTextAniDirection() const
1833 : {
1834 84778 : return static_cast<const SdrTextAniDirectionItem&>(GetObjectItemSet().Get(SDRATTR_TEXT_ANIDIRECTION)).GetValue();
1835 : }
1836 :
1837 : // Get necessary data for text scroll animation. ATM base it on a Text-Metafile and a
1838 : // painting rectangle. Rotation is excluded from the returned values.
1839 0 : GDIMetaFile* SdrTextObj::GetTextScrollMetaFileAndRectangle(
1840 : Rectangle& rScrollRectangle, Rectangle& rPaintRectangle)
1841 : {
1842 0 : GDIMetaFile* pRetval = 0L;
1843 0 : SdrOutliner& rOutliner = ImpGetDrawOutliner();
1844 0 : Rectangle aTextRect;
1845 0 : Rectangle aAnchorRect;
1846 0 : Rectangle aPaintRect;
1847 0 : Fraction aFitXKorreg(1,1);
1848 0 : bool bContourFrame(IsContourTextFrame());
1849 :
1850 : // get outliner set up. To avoid getting a somehow rotated MetaFile,
1851 : // temporarily disable object rotation.
1852 0 : sal_Int32 nAngle(aGeo.nRotationAngle);
1853 0 : aGeo.nRotationAngle = 0L;
1854 0 : ImpSetupDrawOutlinerForPaint( bContourFrame, rOutliner, aTextRect, aAnchorRect, aPaintRect, aFitXKorreg );
1855 0 : aGeo.nRotationAngle = nAngle;
1856 :
1857 0 : Rectangle aScrollFrameRect(aPaintRect);
1858 0 : const SfxItemSet& rSet = GetObjectItemSet();
1859 0 : SdrTextAniDirection eDirection = static_cast<const SdrTextAniDirectionItem&>(rSet.Get(SDRATTR_TEXT_ANIDIRECTION)).GetValue();
1860 :
1861 0 : if(SDRTEXTANI_LEFT == eDirection || SDRTEXTANI_RIGHT == eDirection)
1862 : {
1863 0 : aScrollFrameRect.Left() = aAnchorRect.Left();
1864 0 : aScrollFrameRect.Right() = aAnchorRect.Right();
1865 : }
1866 :
1867 0 : if(SDRTEXTANI_UP == eDirection || SDRTEXTANI_DOWN == eDirection)
1868 : {
1869 0 : aScrollFrameRect.Top() = aAnchorRect.Top();
1870 0 : aScrollFrameRect.Bottom() = aAnchorRect.Bottom();
1871 : }
1872 :
1873 : // create the MetaFile
1874 0 : pRetval = new GDIMetaFile;
1875 0 : VirtualDevice aBlackHole;
1876 0 : aBlackHole.EnableOutput(false);
1877 0 : pRetval->Record(&aBlackHole);
1878 0 : Point aPaintPos = aPaintRect.TopLeft();
1879 :
1880 0 : rOutliner.Draw(&aBlackHole, aPaintPos);
1881 :
1882 0 : pRetval->Stop();
1883 0 : pRetval->WindStart();
1884 :
1885 : // return PaintRectanglePixel and pRetval;
1886 0 : rScrollRectangle = aScrollFrameRect;
1887 0 : rPaintRectangle = aPaintRect;
1888 :
1889 0 : return pRetval;
1890 : }
1891 :
1892 : // Access to TextAnimationAllowed flag
1893 18471 : bool SdrTextObj::IsAutoFit() const
1894 : {
1895 18471 : return GetFitToSize()==SDRTEXTFIT_AUTOFIT;
1896 : }
1897 :
1898 165661 : bool SdrTextObj::IsFitToSize() const
1899 : {
1900 165661 : const SdrFitToSizeType eFit=GetFitToSize();
1901 165661 : return (eFit==SDRTEXTFIT_PROPORTIONAL || eFit==SDRTEXTFIT_ALLLINES);
1902 : }
1903 :
1904 0 : void SdrTextObj::SetTextAnimationAllowed(bool bNew)
1905 : {
1906 0 : if(mbTextAnimationAllowed != bNew)
1907 : {
1908 0 : mbTextAnimationAllowed = bNew;
1909 0 : ActionChanged();
1910 : }
1911 0 : }
1912 :
1913 : /** called from the SdrObjEditView during text edit when the status of the edit outliner changes */
1914 0 : void SdrTextObj::onEditOutlinerStatusEvent( EditStatus* pEditStatus )
1915 : {
1916 0 : const sal_uInt32 nStat = pEditStatus->GetStatusWord();
1917 0 : const bool bGrowX=(nStat & EE_STAT_TEXTWIDTHCHANGED) !=0;
1918 0 : const bool bGrowY=(nStat & EE_STAT_TEXTHEIGHTCHANGED) !=0;
1919 0 : if(bTextFrame && (bGrowX || bGrowY))
1920 : {
1921 0 : if ((bGrowX && IsAutoGrowWidth()) || (bGrowY && IsAutoGrowHeight()))
1922 : {
1923 0 : AdjustTextFrameWidthAndHeight();
1924 : }
1925 0 : else if (IsAutoFit() && !mbInDownScale)
1926 : {
1927 : assert(pEdtOutl);
1928 0 : mbInDownScale = true;
1929 :
1930 : // sucks that we cannot disable paints via
1931 : // pEdtOutl->SetUpdateMode(FALSE) - but EditEngine skips
1932 : // formatting as well, then.
1933 0 : ImpAutoFitText(*pEdtOutl);
1934 0 : mbInDownScale = false;
1935 : }
1936 : }
1937 0 : }
1938 :
1939 : /** returns the currently active text. */
1940 569164 : SdrText* SdrTextObj::getActiveText() const
1941 : {
1942 569164 : if( !mpText )
1943 7122 : return getText( 0 );
1944 : else
1945 562042 : return mpText;
1946 : }
1947 :
1948 : /** returns the nth available text. */
1949 496768 : SdrText* SdrTextObj::getText( sal_Int32 nIndex ) const
1950 : {
1951 496768 : if( nIndex == 0 )
1952 : {
1953 496768 : if( mpText == 0 )
1954 58825 : const_cast< SdrTextObj* >(this)->mpText = new SdrText( *(const_cast< SdrTextObj* >(this)) );
1955 496768 : return mpText;
1956 : }
1957 : else
1958 : {
1959 0 : return 0;
1960 : }
1961 : }
1962 :
1963 : /** returns the number of texts available for this object. */
1964 456516 : sal_Int32 SdrTextObj::getTextCount() const
1965 : {
1966 456516 : return 1;
1967 : }
1968 :
1969 : /** changes the current active text */
1970 0 : void SdrTextObj::setActiveText( sal_Int32 /*nIndex*/ )
1971 : {
1972 0 : }
1973 :
1974 : /** returns the index of the text that contains the given point or -1 */
1975 0 : sal_Int32 SdrTextObj::CheckTextHit(const Point& /*rPnt*/) const
1976 : {
1977 0 : return 0;
1978 : }
1979 :
1980 0 : void SdrTextObj::SetObjectItemNoBroadcast(const SfxPoolItem& rItem)
1981 : {
1982 0 : static_cast< sdr::properties::TextProperties& >(GetProperties()).SetObjectItemNoBroadcast(rItem);
1983 651 : }
1984 :
1985 :
1986 :
1987 : // The concept of the text object:
1988 : // ~~~~~~~~~~~~~~~~~~~~~~~~
1989 : // Attributes/Variations:
1990 : // - bool text frame / graphics object with caption
1991 : // - bool FontWork (if it is not a text frame and not a ContourTextFrame)
1992 : // - bool ContourTextFrame (if it is not a text frame and not Fontwork)
1993 : // - long rotation angle (if it is not FontWork)
1994 : // - long text frame margins (if it is not FontWork)
1995 : // - bool FitToSize (if it is not FontWork)
1996 : // - bool AutoGrowingWidth/Height (if it is not FitToSize and not FontWork)
1997 : // - long Min/MaxFrameWidth/Height (if AutoGrowingWidth/Height)
1998 : // - enum horizontal text anchoring left,center,right,justify/block,Stretch(ni)
1999 : // - enum vertical text anchoring top, middle, bottom, block, stretch(ni)
2000 : // - enum ticker text (if it is not FontWork)
2001 :
2002 : // Every derived object is either a text frame (bTextFrame=true)
2003 : // or a drawing object with a caption (bTextFrame=false).
2004 :
2005 : // Default anchoring for text frames:
2006 : // SDRTEXTHORZADJUST_BLOCK, SDRTEXTVERTADJUST_TOP
2007 : // = static Pool defaults
2008 : // Default anchoring for drawing objects with a caption:
2009 : // SDRTEXTHORZADJUST_CENTER, SDRTEXTVERTADJUST_CENTER
2010 : // via "hard" attribution of SdrAttrObj
2011 :
2012 : // Every object derived from SdrTextObj must return an "UnrotatedSnapRect"
2013 : // (->TakeUnrotatedSnapRect()) (the reference point for the rotation is the top
2014 : // left of the rectangle (aGeo.nRotationAngle)) which is the basis for anchoring
2015 : // text. We then subtract the text frame margins from this rectangle, as a re-
2016 : // sult we get the anchoring area (->TakeTextAnchorRect()). Within this area, we
2017 : // calculate the anchoring point and the painting area, depending on the hori-
2018 : // zontal and vertical adjustment of the text (SdrTextVertAdjust,
2019 : // SdrTextHorzAdjust).
2020 : // In the case of drawing objects with a caption the painting area might well
2021 : // be larger than the anchoring area, for text frames on the other hand, it is
2022 : // always of the same or a smaller size (except when there are negative text
2023 : // frame margins).
2024 :
2025 : // FitToSize takes priority over text anchoring and AutoGrowHeight/Width. When
2026 : // FitToSize is turned on, the painting area is always equal to the anchoring
2027 : // area. Additionally, FitToSize doesn't allow automatic line breaks.
2028 :
2029 : // ContourTextFrame:
2030 : // - long rotation angle
2031 : // - long text frame margins (maybe later)
2032 : // - bool FitToSize (maybe later)
2033 : // - bool AutoGrowingWidth/Height (maybe much later)
2034 : // - long Min/MaxFrameWidth/Height (maybe much later)
2035 : // - enum horizontal text anchoring (maybe later, for now: left, centered)
2036 : // - enum vertical text anchoring (maybe later, for now: top)
2037 : // - enum ticker text (maybe later, maybe even with correct clipping)
2038 :
2039 : // When making changes, check these:
2040 : // - Paint
2041 : // - HitTest
2042 : // - ConvertToPoly
2043 : // - Edit
2044 : // - Printing, Saving, Painting in neighboring View while editing
2045 : // - ModelChanged (e. g. through a neighboring View or rulers) while editing
2046 : // - FillColorChanged while editin
2047 : // - and many more...
2048 :
2049 :
2050 :
2051 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|