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 "ndtxt.hxx"
21 : #include "flyfrm.hxx"
22 : #include "paratr.hxx"
23 : #include <vcl/outdev.hxx>
24 : #include <editeng/paravertalignitem.hxx>
25 :
26 : #include "pormulti.hxx"
27 : #include <pagefrm.hxx>
28 : #include <pagedesc.hxx>
29 : #include <tgrditem.hxx>
30 : #include <porfld.hxx>
31 :
32 : #include "itrtxt.hxx"
33 : #include "txtfrm.hxx"
34 : #include "porfly.hxx"
35 :
36 : /*************************************************************************
37 : * SwTxtIter::CtorInitTxtIter()
38 : *************************************************************************/
39 :
40 0 : void SwTxtIter::CtorInitTxtIter( SwTxtFrm *pNewFrm, SwTxtInfo *pNewInf )
41 : {
42 0 : SwTxtNode *pNode = pNewFrm->GetTxtNode();
43 :
44 : OSL_ENSURE( pNewFrm->GetPara(), "No paragraph" );
45 :
46 0 : CtorInitAttrIter( *pNode, pNewFrm->GetPara()->GetScriptInfo(), pNewFrm );
47 :
48 0 : pFrm = pNewFrm;
49 0 : pInf = pNewInf;
50 0 : aLineInf.CtorInitLineInfo( pNode->GetSwAttrSet(), *pNode );
51 0 : nFrameStart = pFrm->Frm().Pos().Y() + pFrm->Prt().Pos().Y();
52 0 : SwTxtIter::Init();
53 :
54 : // Order is important: only execute FillRegister if GetValue!=0
55 0 : bRegisterOn = pNode->GetSwAttrSet().GetRegister().GetValue()
56 0 : && pFrm->FillRegister( nRegStart, nRegDiff );
57 0 : }
58 :
59 : /*************************************************************************
60 : * SwTxtIter::Init()
61 : *************************************************************************/
62 :
63 0 : void SwTxtIter::Init()
64 : {
65 0 : pCurr = pInf->GetParaPortion();
66 0 : nStart = pInf->GetTxtStart();
67 0 : nY = nFrameStart;
68 0 : bPrev = true;
69 0 : pPrev = 0;
70 0 : nLineNr = 1;
71 0 : }
72 :
73 : /*************************************************************************
74 : * SwTxtIter::_GetHeightAndAscent()
75 : *************************************************************************/
76 :
77 0 : void SwTxtIter::CalcAscentAndHeight( KSHORT &rAscent, KSHORT &rHeight ) const
78 : {
79 0 : rHeight = GetLineHeight();
80 0 : rAscent = pCurr->GetAscent() + rHeight - pCurr->Height();
81 0 : }
82 :
83 : /*************************************************************************
84 : * SwTxtIter::_GetPrev()
85 : *************************************************************************/
86 :
87 0 : SwLineLayout *SwTxtIter::_GetPrev()
88 : {
89 0 : pPrev = 0;
90 0 : bPrev = true;
91 0 : SwLineLayout *pLay = pInf->GetParaPortion();
92 0 : if( pCurr == pLay )
93 0 : return 0;
94 0 : while( pLay->GetNext() != pCurr )
95 0 : pLay = pLay->GetNext();
96 0 : return pPrev = pLay;
97 : }
98 :
99 : /*************************************************************************
100 : * SwTxtIter::GetPrev()
101 : *************************************************************************/
102 :
103 0 : const SwLineLayout *SwTxtIter::GetPrev()
104 : {
105 0 : if(! bPrev)
106 0 : _GetPrev();
107 0 : return pPrev;
108 : }
109 :
110 : /*************************************************************************
111 : * SwTxtIter::Prev()
112 : *************************************************************************/
113 :
114 0 : const SwLineLayout *SwTxtIter::Prev()
115 : {
116 0 : if( !bPrev )
117 0 : _GetPrev();
118 0 : if( pPrev )
119 : {
120 0 : bPrev = false;
121 0 : pCurr = pPrev;
122 0 : nStart = nStart - pCurr->GetLen();
123 0 : nY = nY - GetLineHeight();
124 0 : if( !pCurr->IsDummy() && !(--nLineNr) )
125 0 : ++nLineNr;
126 0 : return pCurr;
127 : }
128 : else
129 0 : return 0;
130 : }
131 :
132 : /*************************************************************************
133 : * SwTxtIter::Next()
134 : *************************************************************************/
135 :
136 0 : const SwLineLayout *SwTxtIter::Next()
137 : {
138 0 : if(pCurr->GetNext())
139 : {
140 0 : pPrev = pCurr;
141 0 : bPrev = true;
142 0 : nStart = nStart + pCurr->GetLen();
143 0 : nY += GetLineHeight();
144 0 : if( pCurr->GetLen() || ( nLineNr>1 && !pCurr->IsDummy() ) )
145 0 : ++nLineNr;
146 0 : return pCurr = pCurr->GetNext();
147 : }
148 : else
149 0 : return 0;
150 : }
151 :
152 : /*************************************************************************
153 : * SwTxtIter::NextLine()
154 : *************************************************************************/
155 :
156 0 : const SwLineLayout *SwTxtIter::NextLine()
157 : {
158 0 : const SwLineLayout *pNext = Next();
159 0 : while( pNext && pNext->IsDummy() && pNext->GetNext() )
160 : {
161 0 : pNext = Next();
162 : }
163 0 : return pNext;
164 : }
165 :
166 : /*************************************************************************
167 : * SwTxtIter::GetNextLine()
168 : *************************************************************************/
169 :
170 0 : const SwLineLayout *SwTxtIter::GetNextLine() const
171 : {
172 0 : const SwLineLayout *pNext = pCurr->GetNext();
173 0 : while( pNext && pNext->IsDummy() && pNext->GetNext() )
174 : {
175 0 : pNext = pNext->GetNext();
176 : }
177 0 : return (SwLineLayout*)pNext;
178 : }
179 :
180 : /*************************************************************************
181 : * SwTxtIter::GetPrevLine()
182 : *************************************************************************/
183 :
184 0 : const SwLineLayout *SwTxtIter::GetPrevLine()
185 : {
186 0 : const SwLineLayout *pRoot = pInf->GetParaPortion();
187 0 : if( pRoot == pCurr )
188 0 : return 0;
189 0 : const SwLineLayout *pLay = pRoot;
190 :
191 0 : while( pLay->GetNext() != pCurr )
192 0 : pLay = pLay->GetNext();
193 :
194 0 : if( pLay->IsDummy() )
195 : {
196 0 : const SwLineLayout *pTmp = pRoot;
197 0 : pLay = pRoot->IsDummy() ? 0 : pRoot;
198 0 : while( pTmp->GetNext() != pCurr )
199 : {
200 0 : if( !pTmp->IsDummy() )
201 0 : pLay = pTmp;
202 0 : pTmp = pTmp->GetNext();
203 : }
204 : }
205 :
206 : // Wenn sich nichts getan hat, dann gibt es nur noch Dummys
207 0 : return (SwLineLayout*)pLay;
208 : }
209 :
210 : /*************************************************************************
211 : * SwTxtIter::PrevLine()
212 : *************************************************************************/
213 :
214 0 : const SwLineLayout *SwTxtIter::PrevLine()
215 : {
216 0 : const SwLineLayout *pMyPrev = Prev();
217 0 : if( !pMyPrev )
218 0 : return 0;
219 :
220 0 : const SwLineLayout *pLast = pMyPrev;
221 0 : while( pMyPrev && pMyPrev->IsDummy() )
222 : {
223 0 : pLast = pMyPrev;
224 0 : pMyPrev = Prev();
225 : }
226 0 : return (SwLineLayout*)(pMyPrev ? pMyPrev : pLast);
227 : }
228 :
229 : /*************************************************************************
230 : * SwTxtIter::Bottom()
231 : *************************************************************************/
232 :
233 0 : void SwTxtIter::Bottom()
234 : {
235 0 : while( Next() )
236 : {
237 : // nothing
238 : }
239 0 : }
240 :
241 : /*************************************************************************
242 : * SwTxtIter::CharToLine()
243 : *************************************************************************/
244 :
245 0 : void SwTxtIter::CharToLine(const sal_Int32 nChar)
246 : {
247 0 : while( nStart + pCurr->GetLen() <= nChar && Next() )
248 : ;
249 0 : while( nStart > nChar && Prev() )
250 : ;
251 0 : }
252 :
253 : /*************************************************************************
254 : * SwTxtIter::CharCrsrToLine()
255 : *************************************************************************/
256 :
257 : // 1170: beruecksichtigt Mehrdeutigkeiten:
258 0 : const SwLineLayout *SwTxtCursor::CharCrsrToLine( const sal_Int32 nPosition )
259 : {
260 0 : CharToLine( nPosition );
261 0 : if( nPosition != nStart )
262 0 : bRightMargin = false;
263 0 : bool bPrevious = bRightMargin && pCurr->GetLen() && GetPrev() &&
264 0 : GetPrev()->GetLen();
265 0 : if( bPrevious && nPosition && CH_BREAK == GetInfo().GetChar( nPosition-1 ) )
266 0 : bPrevious = false;
267 0 : return bPrevious ? PrevLine() : pCurr;
268 : }
269 :
270 : /*************************************************************************
271 : * SwTxtCrsr::AdjustBaseLine()
272 : *************************************************************************/
273 :
274 0 : sal_uInt16 SwTxtCursor::AdjustBaseLine( const SwLineLayout& rLine,
275 : const SwLinePortion* pPor,
276 : sal_uInt16 nPorHeight, sal_uInt16 nPorAscent,
277 : const bool bAutoToCentered ) const
278 : {
279 0 : if ( pPor )
280 : {
281 0 : nPorHeight = pPor->Height();
282 0 : nPorAscent = pPor->GetAscent();
283 : }
284 :
285 0 : sal_uInt16 nOfst = rLine.GetRealHeight() - rLine.Height();
286 :
287 0 : SwTextGridItem const*const pGrid(GetGridItem(pFrm->FindPageFrm()));
288 :
289 0 : if ( pGrid && GetInfo().SnapToGrid() )
290 : {
291 0 : const sal_uInt16 nRubyHeight = pGrid->GetRubyHeight();
292 0 : const bool bRubyTop = ! pGrid->GetRubyTextBelow();
293 :
294 0 : if ( GetInfo().IsMulti() )
295 : // we are inside the GetCharRect recursion for multi portions
296 : // we center the portion in its surrounding line
297 0 : nOfst = ( pCurr->Height() - nPorHeight ) / 2 + nPorAscent;
298 : else
299 : {
300 : // We have to take care for ruby portions.
301 : // The ruby portion is NOT centered
302 0 : nOfst = nOfst + nPorAscent;
303 :
304 0 : if ( ! pPor || ! pPor->IsMultiPortion() ||
305 0 : ! ((SwMultiPortion*)pPor)->IsRuby() )
306 : {
307 : // Portions which are bigger than on grid distance are
308 : // centered inside the whole line.
309 :
310 : //for text refactor
311 0 : const sal_uInt16 nLineNetto = rLine.Height() - nRubyHeight;
312 : //const sal_uInt16 nLineNetto = ( nPorHeight > nGridWidth ) ?
313 : // rLine.Height() - nRubyHeight :
314 : // nGridWidth;
315 0 : nOfst += ( nLineNetto - nPorHeight ) / 2;
316 0 : if ( bRubyTop )
317 0 : nOfst += nRubyHeight;
318 : }
319 : }
320 : }
321 : else
322 : {
323 0 : switch ( GetLineInfo().GetVertAlign() ) {
324 : case SvxParaVertAlignItem::TOP :
325 0 : nOfst = nOfst + nPorAscent;
326 0 : break;
327 : case SvxParaVertAlignItem::CENTER :
328 : OSL_ENSURE( rLine.Height() >= nPorHeight, "Portion height > Line height");
329 0 : nOfst += ( rLine.Height() - nPorHeight ) / 2 + nPorAscent;
330 0 : break;
331 : case SvxParaVertAlignItem::BOTTOM :
332 0 : nOfst += rLine.Height() - nPorHeight + nPorAscent;
333 0 : break;
334 : case SvxParaVertAlignItem::AUTOMATIC :
335 0 : if ( bAutoToCentered || GetInfo().GetTxtFrm()->IsVertical() )
336 : {
337 : //Badaa: 2008-04-18 * Support for Classical Mongolian Script (SCMS) joint with Jiayanmin
338 0 : if( GetInfo().GetTxtFrm()->IsVertLR() )
339 0 : nOfst += rLine.Height() - ( rLine.Height() - nPorHeight ) / 2 - nPorAscent;
340 : else
341 0 : nOfst += ( rLine.Height() - nPorHeight ) / 2 + nPorAscent;
342 0 : break;
343 : }
344 : case SvxParaVertAlignItem::BASELINE :
345 : // base line
346 0 : nOfst = nOfst + rLine.GetAscent();
347 0 : break;
348 : }
349 : }
350 :
351 0 : return nOfst;
352 : }
353 :
354 : /*************************************************************************
355 : * SwTxtIter::TwipsToLine()
356 : *************************************************************************/
357 :
358 0 : const SwLineLayout *SwTxtIter::TwipsToLine( const SwTwips y)
359 : {
360 0 : while( nY + GetLineHeight() <= y && Next() )
361 : ;
362 0 : while( nY > y && Prev() )
363 : ;
364 0 : return pCurr;
365 : }
366 :
367 : // Local helper function to check, if pCurr needs a field rest portion:
368 :
369 0 : static bool lcl_NeedsFieldRest( const SwLineLayout* pCurr )
370 : {
371 0 : const SwLinePortion *pPor = pCurr->GetPortion();
372 0 : bool bRet = false;
373 0 : while( pPor && !bRet )
374 : {
375 0 : bRet = pPor->InFldGrp() && ((SwFldPortion*)pPor)->HasFollow();
376 0 : if( !pPor->GetPortion() || !pPor->GetPortion()->InFldGrp() )
377 0 : break;
378 0 : pPor = pPor->GetPortion();
379 : }
380 0 : return bRet;
381 : }
382 :
383 : /*************************************************************************
384 : * SwTxtIter::TruncLines()
385 : *************************************************************************/
386 :
387 0 : void SwTxtIter::TruncLines( bool bNoteFollow )
388 : {
389 0 : SwLineLayout *pDel = pCurr->GetNext();
390 0 : const sal_Int32 nEnd = nStart + pCurr->GetLen();
391 :
392 0 : if( pDel )
393 : {
394 0 : pCurr->SetNext( 0 );
395 0 : if( GetHints() && bNoteFollow )
396 : {
397 0 : GetInfo().GetParaPortion()->SetFollowField( pDel->IsRest() ||
398 0 : lcl_NeedsFieldRest( pCurr ) );
399 :
400 : // bug 88534: wrong positioning of flys
401 0 : SwTxtFrm* pFollow = GetTxtFrm()->GetFollow();
402 0 : if ( pFollow && ! pFollow->IsLocked() &&
403 0 : nEnd == pFollow->GetOfst() )
404 : {
405 0 : sal_Int32 nRangeEnd = nEnd;
406 0 : SwLineLayout* pLine = pDel;
407 :
408 : // determine range to be searched for flys anchored as characters
409 0 : while ( pLine )
410 : {
411 0 : nRangeEnd = nRangeEnd + pLine->GetLen();
412 0 : pLine = pLine->GetNext();
413 : }
414 :
415 0 : SwpHints* pTmpHints = GetTxtFrm()->GetTxtNode()->GetpSwpHints();
416 :
417 : // examine hints in range nEnd - (nEnd + nRangeChar)
418 0 : for( sal_uInt16 i = 0; i < pTmpHints->Count(); i++ )
419 : {
420 0 : const SwTxtAttr* pHt = pTmpHints->GetTextHint( i );
421 0 : if( RES_TXTATR_FLYCNT == pHt->Which() )
422 : {
423 : // check, if hint is in our range
424 0 : const sal_uInt16 nTmpPos = *pHt->GetStart();
425 0 : if ( nEnd <= nTmpPos && nTmpPos < nRangeEnd )
426 : pFollow->_InvalidateRange(
427 0 : SwCharRange( nTmpPos, nTmpPos ), 0 );
428 : }
429 : }
430 : }
431 : }
432 0 : delete pDel;
433 : }
434 0 : if( pCurr->IsDummy() &&
435 0 : !pCurr->GetLen() &&
436 0 : nStart < GetTxtFrm()->GetTxt().getLength() )
437 0 : pCurr->SetRealHeight( 1 );
438 0 : if( GetHints() )
439 0 : pFrm->RemoveFtn( nEnd );
440 0 : }
441 :
442 : /*************************************************************************
443 : * SwTxtIter::CntHyphens()
444 : *************************************************************************/
445 :
446 0 : void SwTxtIter::CntHyphens( sal_uInt8 &nEndCnt, sal_uInt8 &nMidCnt) const
447 : {
448 0 : nEndCnt = 0;
449 0 : nMidCnt = 0;
450 0 : if ( bPrev && pPrev && !pPrev->IsEndHyph() && !pPrev->IsMidHyph() )
451 0 : return;
452 0 : SwLineLayout *pLay = pInf->GetParaPortion();
453 0 : if( pCurr == pLay )
454 0 : return;
455 0 : while( pLay != pCurr )
456 : {
457 0 : if ( pLay->IsEndHyph() )
458 0 : nEndCnt++;
459 : else
460 0 : nEndCnt = 0;
461 0 : if ( pLay->IsMidHyph() )
462 0 : nMidCnt++;
463 : else
464 0 : nMidCnt = 0;
465 0 : pLay = pLay->GetNext();
466 : }
467 : }
468 :
469 : /*************************************************************************
470 : * SwHookOut
471 : *
472 : * Change current output device to formatting device, this has to be done before
473 : * formatting.
474 : *************************************************************************/
475 :
476 0 : SwHookOut::SwHookOut( SwTxtSizeInfo& rInfo ) :
477 : pInf( &rInfo ),
478 0 : pOut( rInfo.GetOut() ),
479 0 : bOnWin( rInfo.OnWin() )
480 : {
481 : OSL_ENSURE( rInfo.GetRefDev(), "No reference device for text formatting" );
482 :
483 : // set new values
484 0 : rInfo.SetOut( rInfo.GetRefDev() );
485 0 : rInfo.SetOnWin( false );
486 0 : }
487 :
488 0 : SwHookOut::~SwHookOut()
489 : {
490 0 : pInf->SetOut( pOut );
491 0 : pInf->SetOnWin( bOnWin );
492 0 : }
493 :
494 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|