/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ::com::sun::star::i18n; using namespace ::com::sun::star; /** * Calculates if a drop caps portion intersects with a fly * The width and height of the drop caps portion are passed as arguments, * the position is calculated from the values in rInf */ static bool lcl_IsDropFlyInter( const SwTextFormatInfo &rInf, sal_uInt16 nWidth, sal_uInt16 nHeight ) { const SwTextFly& rTextFly = rInf.GetTextFly(); if( rTextFly.IsOn() ) { SwRect aRect( rInf.GetTextFrame()->Frame().Pos(), Size( nWidth, nHeight) ); aRect.Pos() += rInf.GetTextFrame()->Prt().Pos(); aRect.Pos().X() += rInf.X(); aRect.Pos().Y() = rInf.Y(); aRect = rTextFly.GetFrame( aRect ); return aRect.HasArea(); } return false; } class SwDropSave { SwTextPaintInfo* pInf; sal_Int32 nIdx; sal_Int32 nLen; long nX; long nY; public: explicit SwDropSave( const SwTextPaintInfo &rInf ); ~SwDropSave(); }; SwDropSave::SwDropSave( const SwTextPaintInfo &rInf ) : pInf( const_cast(&rInf) ), nIdx( rInf.GetIdx() ), nLen( rInf.GetLen() ), nX( rInf.X() ), nY( rInf.Y() ) { } SwDropSave::~SwDropSave() { pInf->SetIdx( nIdx ); pInf->SetLen( nLen ); pInf->X( nX ); pInf->Y( nY ); } /// SwDropPortionPart DTor SwDropPortionPart::~SwDropPortionPart() { delete pFollow; delete pFnt; } /// SwDropPortion CTor, DTor SwDropPortion::SwDropPortion( const sal_uInt16 nLineCnt, const sal_uInt16 nDrpHeight, const sal_uInt16 nDrpDescent, const sal_uInt16 nDist ) : pPart( nullptr ), nLines( nLineCnt ), nDropHeight(nDrpHeight), nDropDescent(nDrpDescent), nDistance(nDist), nFix(0), nX(0), nY(0) { SetWhichPor( POR_DROP ); } SwDropPortion::~SwDropPortion() { delete pPart; if( pBlink ) pBlink->Delete( this ); } /// nWishLen = 0 indicates that we want a whole word sal_Int32 SwTextNode::GetDropLen( sal_Int32 nWishLen ) const { sal_Int32 nEnd = GetText().getLength(); if( nWishLen && nWishLen < nEnd ) nEnd = nWishLen; if ( ! nWishLen && g_pBreakIt->GetBreakIter().is() ) { // find first word const SwAttrSet& rAttrSet = GetSwAttrSet(); const sal_uInt16 nTextScript = g_pBreakIt->GetRealScriptOfText( GetText(), 0 ); LanguageType eLanguage; switch ( nTextScript ) { case i18n::ScriptType::ASIAN : eLanguage = rAttrSet.GetCJKLanguage().GetLanguage(); break; case i18n::ScriptType::COMPLEX : eLanguage = rAttrSet.GetCTLLanguage().GetLanguage(); break; default : eLanguage = rAttrSet.GetLanguage().GetLanguage(); break; } Boundary aBound = g_pBreakIt->GetBreakIter()->getWordBoundary( GetText(), 0, g_pBreakIt->GetLocale( eLanguage ), WordType::DICTIONARY_WORD, true ); nEnd = aBound.endPos; } sal_Int32 i = 0; for( ; i < nEnd; ++i ) { sal_Unicode const cChar = GetText()[i]; if( CH_TAB == cChar || CH_BREAK == cChar || (( CH_TXTATR_BREAKWORD == cChar || CH_TXTATR_INWORD == cChar ) && SwTextSizeInfo::_HasHint( this, i ) ) ) break; } return i; } /** * If a dropcap is found the return value is true otherwise false. The * drop cap sizes passed back by reference are font height, drop height * and drop descent. */ bool SwTextNode::GetDropSize(int& rFontHeight, int& rDropHeight, int& rDropDescent) const { rFontHeight = 0; rDropHeight = 0; rDropDescent =0; const SwAttrSet& rSet = GetSwAttrSet(); const SwFormatDrop& rDrop = rSet.GetDrop(); // Return (0,0) if there is no drop cap at this paragraph if( 1 >= rDrop.GetLines() || ( !rDrop.GetChars() && !rDrop.GetWholeWord() ) ) { return false; } // get text frame SwIterator aIter( *this ); for( SwTextFrame* pLastFrame = aIter.First(); pLastFrame; pLastFrame = aIter.Next() ) { // Only (master-) text frames can have a drop cap. if ( !pLastFrame->IsFollow() ) { if( !pLastFrame->HasPara() ) pLastFrame->GetFormatted(); if ( !pLastFrame->IsEmpty() ) { const SwParaPortion* pPara = pLastFrame->GetPara(); OSL_ENSURE( pPara, "GetDropSize could not find the ParaPortion, I'll guess the drop cap size" ); if ( pPara ) { const SwLinePortion* pFirstPor = pPara->GetFirstPortion(); if (pFirstPor && pFirstPor->IsDropPortion()) { const SwDropPortion* pDrop = static_cast(pFirstPor); rDropHeight = pDrop->GetDropHeight(); rDropDescent = pDrop->GetDropDescent(); if (const SwFont *pFont = pDrop->GetFnt()) rFontHeight = pFont->GetSize(pFont->GetActual()).Height(); else { const SvxFontHeightItem& rItem = static_cast(rSet.Get(RES_CHRATR_FONTSIZE)); rFontHeight = rItem.GetHeight(); } } } } break; } } if (rFontHeight==0 && rDropHeight==0 && rDropDescent==0) { const sal_uInt16 nLines = rDrop.GetLines(); const SvxFontHeightItem& rItem = static_cast(rSet.Get( RES_CHRATR_FONTSIZE )); rFontHeight = rItem.GetHeight(); rDropHeight = nLines * rFontHeight; rDropDescent = rFontHeight / 5; return false; } return true; } /// Manipulate the width, otherwise the chars are being stretched void SwDropPortion::PaintText( const SwTextPaintInfo &rInf ) const { OSL_ENSURE( nDropHeight && pPart && nLines != 1, "Drop Portion painted twice" ); const SwDropPortionPart* pCurrPart = GetPart(); const sal_Int32 nOldLen = GetLen(); const sal_uInt16 nOldWidth = Width(); const sal_uInt16 nOldAscent = GetAscent(); const SwTwips nBasePosY = rInf.Y(); const_cast(rInf).Y( nBasePosY + nY ); const_cast(this)->SetAscent( nOldAscent + nY ); SwDropSave aSave( rInf ); // for text inside drop portions we let vcl handle the text directions SwLayoutModeModifier aLayoutModeModifier( *rInf.GetOut() ); aLayoutModeModifier.SetAuto(); while ( pCurrPart ) { const_cast(this)->SetLen( pCurrPart->GetLen() ); const_cast(this)->Width( pCurrPart->GetWidth() ); const_cast(rInf).SetLen( pCurrPart->GetLen() ); SwFontSave aFontSave( rInf, &pCurrPart->GetFont() ); const_cast(this)->SetJoinBorderWithNext(pCurrPart->GetJoinBorderWithNext()); const_cast(this)->SetJoinBorderWithPrev(pCurrPart->GetJoinBorderWithPrev()); if ( rInf.OnWin() && !rInf.GetOpt().IsPagePreview() && !rInf.GetOpt().IsReadonly() && SwViewOption::IsFieldShadings() && (!pCurrPart->GetFont().GetBackColor() || *pCurrPart->GetFont().GetBackColor() == Color(COL_TRANSPARENT)) ) { rInf.DrawBackground( *this ); } SwTextPortion::Paint( rInf ); const_cast(rInf).SetIdx( rInf.GetIdx() + pCurrPart->GetLen() ); const_cast(rInf).X( rInf.X() + pCurrPart->GetWidth() ); pCurrPart = pCurrPart->GetFollow(); } const_cast(rInf).Y( nBasePosY ); const_cast(this)->Width( nOldWidth ); const_cast(this)->SetLen( nOldLen ); const_cast(this)->SetAscent( nOldAscent ); const_cast(this)->SetJoinBorderWithNext(false); const_cast(this)->SetJoinBorderWithPrev(false); } void SwDropPortion::PaintDrop( const SwTextPaintInfo &rInf ) const { // normal output is being done during the normal painting if( ! nDropHeight || ! pPart || nLines == 1 ) return; // set the lying values const sal_uInt16 nOldHeight = Height(); const sal_uInt16 nOldWidth = Width(); const sal_uInt16 nOldAscent = GetAscent(); const SwTwips nOldPosY = rInf.Y(); const SwTwips nOldPosX = rInf.X(); const SwParaPortion *pPara = rInf.GetParaPortion(); const Point aOutPos( nOldPosX + nX, nOldPosY - pPara->GetAscent() - pPara->GetRealHeight() + pPara->Height() ); // make good for retouching // Set baseline const_cast(rInf).Y( aOutPos.Y() + nDropHeight ); // for background const_cast(this)->Height( nDropHeight + nDropDescent ); const_cast(this)->Width( Width() - nX ); const_cast(this)->SetAscent( nDropHeight ); // Always adapt Clipregion to us, never set it off using the existing ClipRect // as that could be set for the line SwRect aClipRect; if ( rInf.OnWin() ) { aClipRect = SwRect( aOutPos, SvLSize() ); aClipRect.Intersection( rInf.GetPaintRect() ); } SwSaveClip aClip( const_cast(rInf.GetOut()) ); aClip.ChgClip( aClipRect, rInf.GetTextFrame() ); // Just do, what we always do ... PaintText( rInf ); // save old values const_cast(this)->Height( nOldHeight ); const_cast(this)->Width( nOldWidth ); const_cast(this)->SetAscent( nOldAscent ); const_cast(rInf).Y( nOldPosY ); } void SwDropPortion::Paint( const SwTextPaintInfo &rInf ) const { // normal output is being done here if( ! nDropHeight || ! pPart || 1 == nLines ) { if ( rInf.OnWin() && !rInf.GetOpt().IsPagePreview() && !rInf.GetOpt().IsReadonly() && SwViewOption::IsFieldShadings() ) rInf.DrawBackground( *this ); // make sure that font is not rotated SwFont* pTmpFont = nullptr; if ( rInf.GetFont()->GetOrientation( rInf.GetTextFrame()->IsVertical() ) ) { pTmpFont = new SwFont( *rInf.GetFont() ); pTmpFont->SetVertical( 0, rInf.GetTextFrame()->IsVertical() ); } SwFontSave aFontSave( rInf, pTmpFont ); // for text inside drop portions we let vcl handle the text directions SwLayoutModeModifier aLayoutModeModifier( *rInf.GetOut() ); aLayoutModeModifier.SetAuto(); SwTextPortion::Paint( rInf ); delete pTmpFont; } } bool SwDropPortion::FormatText( SwTextFormatInfo &rInf ) { const sal_Int32 nOldLen = GetLen(); const sal_Int32 nOldInfLen = rInf.GetLen(); if (!SwTextPortion::Format( rInf )) return false; // looks like shit, but what can we do? rInf.SetUnderflow( nullptr ); Truncate(); SetLen( nOldLen ); rInf.SetLen( nOldInfLen ); return true; } SwPosSize SwDropPortion::GetTextSize( const SwTextSizeInfo &rInf ) const { sal_uInt16 nMyX = 0; sal_Int32 nIdx = 0; const SwDropPortionPart* pCurrPart = GetPart(); // skip parts while ( pCurrPart && nIdx + pCurrPart->GetLen() < rInf.GetLen() ) { nMyX = nMyX + pCurrPart->GetWidth(); nIdx = nIdx + pCurrPart->GetLen(); pCurrPart = pCurrPart->GetFollow(); } sal_Int32 nOldIdx = rInf.GetIdx(); sal_Int32 nOldLen = rInf.GetLen(); const_cast(rInf).SetIdx( nIdx ); const_cast(rInf).SetLen( rInf.GetLen() - nIdx ); if( pCurrPart ) { const_cast(this)->SetJoinBorderWithNext(pCurrPart->GetJoinBorderWithNext()); const_cast(this)->SetJoinBorderWithPrev(pCurrPart->GetJoinBorderWithPrev()); } // robust SwFontSave aFontSave( rInf, pCurrPart ? &pCurrPart->GetFont() : nullptr ); SwPosSize aPosSize( SwTextPortion::GetTextSize( rInf ) ); aPosSize.Width( aPosSize.Width() + nMyX ); const_cast(rInf).SetIdx( nOldIdx ); const_cast(rInf).SetLen( nOldLen ); if( pCurrPart ) { const_cast(this)->SetJoinBorderWithNext(false); const_cast(this)->SetJoinBorderWithPrev(false); } return aPosSize; } sal_Int32 SwDropPortion::GetCursorOfst( const sal_uInt16 ) const { return 0; } void SwTextFormatter::CalcDropHeight( const sal_uInt16 nLines ) { const SwLinePortion *const pOldCurr = GetCurr(); sal_uInt16 nDropHght = 0; sal_uInt16 nAscent = 0; sal_uInt16 nHeight = 0; sal_uInt16 nDropLns = 0; const bool bRegisterOld = IsRegisterOn(); m_bRegisterOn = false; Top(); while( GetCurr()->IsDummy() ) { if ( !Next() ) break; } // If we have only one line we return 0 if( GetNext() || GetDropLines() == 1 ) { for( ; nDropLns < nLines; nDropLns++ ) { if ( GetCurr()->IsDummy() ) break; else { CalcAscentAndHeight( nAscent, nHeight ); nDropHght = nDropHght + nHeight; m_bRegisterOn = bRegisterOld; } if ( !Next() ) { nDropLns++; break; } } // We hit the line ascent when reaching the last line! nDropHght = nDropHght - nHeight; nDropHght = nDropHght + nAscent; Top(); } m_bRegisterOn = bRegisterOld; SetDropDescent( nHeight - nAscent ); SetDropHeight( nDropHght ); SetDropLines( nDropLns ); // Alte Stelle wiederfinden! while( pOldCurr != GetCurr() ) { if( !Next() ) { OSL_ENSURE( false, "SwTextFormatter::_CalcDropHeight: left Toulouse" ); break; } } } /** * We assume hat the font height doesn't change and that at first there * are at least as many lines, as the DropCap-setting claims */ void SwTextFormatter::GuessDropHeight( const sal_uInt16 nLines ) { OSL_ENSURE( nLines, "GuessDropHeight: Give me more Lines!" ); sal_uInt16 nAscent = 0; sal_uInt16 nHeight = 0; SetDropLines( nLines ); if ( GetDropLines() > 1 ) { CalcRealHeight(); CalcAscentAndHeight( nAscent, nHeight ); } SetDropDescent( nHeight - nAscent ); SetDropHeight( nHeight * nLines - GetDropDescent() ); } SwDropPortion *SwTextFormatter::NewDropPortion( SwTextFormatInfo &rInf ) { if( !pDropFormat ) return nullptr; sal_Int32 nPorLen = pDropFormat->GetWholeWord() ? 0 : pDropFormat->GetChars(); nPorLen = m_pFrame->GetTextNode()->GetDropLen( nPorLen ); if( !nPorLen ) { static_cast(this)->ClearDropFormat(); return nullptr; } SwDropPortion *pDropPor = nullptr; // first or second round? if ( !( GetDropHeight() || IsOnceMore() ) ) { if ( GetNext() ) CalcDropHeight( pDropFormat->GetLines() ); else GuessDropHeight( pDropFormat->GetLines() ); } // the DropPortion if( GetDropHeight() ) pDropPor = new SwDropPortion( GetDropLines(), GetDropHeight(), GetDropDescent(), pDropFormat->GetDistance() ); else pDropPor = new SwDropPortion( 0,0,0,pDropFormat->GetDistance() ); pDropPor->SetLen( nPorLen ); // If it was not possible to create a proper drop cap portion // due to avoiding endless loops. We return a drop cap portion // with an empty SwDropCapPart. For these portions the current // font is used. if ( GetDropLines() < 2 ) { static_cast(this)->SetPaintDrop( true ); return pDropPor; } // build DropPortionParts: OSL_ENSURE( ! rInf.GetIdx(), "Drop Portion not at 0 position!" ); sal_Int32 nNextChg = 0; const SwCharFormat* pFormat = pDropFormat->GetCharFormat(); SwDropPortionPart* pCurrPart = nullptr; while ( nNextChg < nPorLen ) { // check for attribute changes and if the portion has to split: Seek( nNextChg ); // the font is deleted in the destructor of the drop portion part SwFont* pTmpFnt = new SwFont( *rInf.GetFont() ); if ( pFormat ) { const SwAttrSet& rSet = pFormat->GetAttrSet(); pTmpFnt->SetDiffFnt( &rSet, m_pFrame->GetTextNode()->getIDocumentSettingAccess() ); } // we do not allow a vertical font for the drop portion pTmpFnt->SetVertical( 0, rInf.GetTextFrame()->IsVertical() ); // find next attribute change / script change const sal_Int32 nTmpIdx = nNextChg; sal_Int32 nNextAttr = std::min( static_cast(GetNextAttr()), rInf.GetText().getLength() ); nNextChg = pScriptInfo->NextScriptChg( nTmpIdx ); if( nNextChg > nNextAttr ) nNextChg = nNextAttr; if ( nNextChg > nPorLen ) nNextChg = nPorLen; SwDropPortionPart* pPart = new SwDropPortionPart( *pTmpFnt, nNextChg - nTmpIdx ); if ( ! pCurrPart ) pDropPor->SetPart( pPart ); else pCurrPart->SetFollow( pPart ); pCurrPart = pPart; } static_cast(this)->SetPaintDrop( true ); return pDropPor; } void SwTextPainter::PaintDropPortion() { const SwDropPortion *pDrop = GetInfo().GetParaPortion()->FindDropPortion(); OSL_ENSURE( pDrop, "DrapCop-Portion not available." ); if( !pDrop ) return; const SwTwips nOldY = GetInfo().Y(); Top(); GetInfo().SetpSpaceAdd( m_pCurr->GetpLLSpaceAdd() ); GetInfo().ResetSpaceIdx(); GetInfo().SetKanaComp( m_pCurr->GetpKanaComp() ); GetInfo().ResetKanaIdx(); // 8047: Drops and Dummies while( !m_pCurr->GetLen() && Next() ) ; // MarginPortion und Adjustment! const SwLinePortion *pPor = m_pCurr->GetFirstPortion(); long nX = 0; while( pPor && !pPor->IsDropPortion() ) { nX = nX + pPor->Width(); pPor = pPor->GetPortion(); } Point aLineOrigin( GetTopLeft() ); aLineOrigin.X() += nX; sal_uInt16 nTmpAscent, nTmpHeight; CalcAscentAndHeight( nTmpAscent, nTmpHeight ); aLineOrigin.Y() += nTmpAscent; GetInfo().SetIdx( GetStart() ); GetInfo().SetPos( aLineOrigin ); GetInfo().SetLen( pDrop->GetLen() ); pDrop->PaintDrop( GetInfo() ); GetInfo().Y( nOldY ); } // Since the calculation of the font size is expensive, this is being // channeled through a DropCapCache #define DROP_CACHE_SIZE 10 class SwDropCapCache { long aMagicNo[ DROP_CACHE_SIZE ]; OUString aText[ DROP_CACHE_SIZE ]; sal_uInt16 aFactor[ DROP_CACHE_SIZE ]; sal_uInt16 aWishedHeight[ DROP_CACHE_SIZE ]; short aDescent[ DROP_CACHE_SIZE ]; sal_uInt16 nIndex; public: SwDropCapCache(); ~SwDropCapCache(){} void CalcFontSize( SwDropPortion* pDrop, SwTextFormatInfo &rInf ); }; // SwDropCapCache Ctor / Dtor SwDropCapCache::SwDropCapCache() : nIndex( 0 ) { memset( &aMagicNo, 0, sizeof(aMagicNo) ); memset( &aWishedHeight, 0, sizeof(aWishedHeight) ); } void SwDropPortion::DeleteDropCapCache() { delete pDropCapCache; } void SwDropCapCache::CalcFontSize( SwDropPortion* pDrop, SwTextFormatInfo &rInf ) { const void* pFntNo = nullptr; sal_uInt16 nTmpIdx = 0; OSL_ENSURE( pDrop->GetPart(),"DropPortion without part during font calculation"); SwDropPortionPart* pCurrPart = pDrop->GetPart(); const bool bUseCache = ! pCurrPart->GetFollow() && !pCurrPart->GetFont().HasBorder(); sal_Int32 nIdx = rInf.GetIdx(); OUString aStr(rInf.GetText().copy(nIdx, pCurrPart->GetLen())); long nDescent = 0; long nFactor = -1; if ( bUseCache ) { SwFont& rFnt = pCurrPart->GetFont(); rFnt.ChkMagic( rInf.GetVsh(), rFnt.GetActual() ); rFnt.GetMagic( pFntNo, nTmpIdx, rFnt.GetActual() ); nTmpIdx = 0; while( nTmpIdx < DROP_CACHE_SIZE && ( aText[ nTmpIdx ] != aStr || aMagicNo[ nTmpIdx ] != sal_IntPtr(pFntNo) || aWishedHeight[ nTmpIdx ] != pDrop->GetDropHeight() ) ) ++nTmpIdx; } // we have to calculate a new font scaling factor if // 1. we did not find a scaling factor in the cache or // 2. we are not allowed to use the cache because the drop portion // consists of more than one part if( nTmpIdx >= DROP_CACHE_SIZE || ! bUseCache ) { ++nIndex; nIndex %= DROP_CACHE_SIZE; nTmpIdx = nIndex; long nWishedHeight = pDrop->GetDropHeight(); long nAscent = 0; // find out biggest font size for initial scaling factor long nMaxFontHeight = 1; while ( pCurrPart ) { const SwFont& rFnt = pCurrPart->GetFont(); const long nCurrHeight = rFnt.GetHeight( rFnt.GetActual() ); if ( nCurrHeight > nMaxFontHeight ) nMaxFontHeight = nCurrHeight; pCurrPart = pCurrPart->GetFollow(); } nFactor = ( 1000 * nWishedHeight ) / nMaxFontHeight; if ( bUseCache ) { // save keys for cache aMagicNo[ nTmpIdx ] = sal_IntPtr(pFntNo); aText[ nTmpIdx ] = aStr; aWishedHeight[ nTmpIdx ] = sal_uInt16(nWishedHeight); // save initial scaling factor aFactor[ nTmpIdx ] = (sal_uInt16)nFactor; } bool bGrow = ( pDrop->GetLen() != 0 ); // for growing control long nMax = USHRT_MAX; long nMin = 0; #if OSL_DEBUG_LEVEL > 1 long nGrow = 0; #endif bool bWinUsed = false; vcl::Font aOldFnt; MapMode aOldMap( MAP_TWIP ); OutputDevice* pOut = rInf.GetOut(); OutputDevice* pWin; if( rInf.GetVsh() && rInf.GetVsh()->GetWin() ) pWin = rInf.GetVsh()->GetWin(); else pWin = Application::GetDefaultDevice(); while( bGrow ) { // reset pCurrPart to first part pCurrPart = pDrop->GetPart(); bool bFirstGlyphRect = true; Rectangle aCommonRect, aRect; while ( pCurrPart ) { // current font SwFont& rFnt = pCurrPart->GetFont(); // Get height including proportion const long nCurrHeight = rFnt.GetHeight( rFnt.GetActual() ); // Get without proportion const sal_uInt8 nOldProp = rFnt.GetPropr(); rFnt.SetProportion( 100 ); Size aOldSize( 0, rFnt.GetHeight( rFnt.GetActual() ) ); Size aNewSize( 0, ( nFactor * nCurrHeight ) / 1000 ); rFnt.SetSize( aNewSize, rFnt.GetActual() ); rFnt.ChgPhysFnt( rInf.GetVsh(), *pOut ); nAscent = rFnt.GetAscent( rInf.GetVsh(), *pOut ); // we get the rectangle that covers all chars bool bHaveGlyphRect = pOut->GetTextBoundRect( aRect, rInf.GetText(), 0, nIdx, pCurrPart->GetLen() ) && ! aRect.IsEmpty(); if ( ! bHaveGlyphRect ) { // getting glyph boundaries failed for some reason, // we take the window for calculating sizes if ( pWin ) { if ( ! bWinUsed ) { bWinUsed = true; aOldMap = pWin->GetMapMode( ); pWin->SetMapMode( MapMode( MAP_TWIP ) ); aOldFnt = pWin->GetFont(); } pWin->SetFont( rFnt.GetActualFont() ); bHaveGlyphRect = pWin->GetTextBoundRect( aRect, rInf.GetText(), 0, nIdx, pCurrPart->GetLen() ) && ! aRect.IsEmpty(); } if (!bHaveGlyphRect) { // We do not have a window or our window could not // give us glyph boundaries. aRect = Rectangle( Point( 0, 0 ), Size( 0, nAscent ) ); } } // Now we (hopefully) have a bounding rectangle for the // glyphs of the current portion and the ascent of the current // font // reset font size and proportion rFnt.SetSize( aOldSize, rFnt.GetActual() ); rFnt.SetProportion( nOldProp ); // Modify the bounding rectangle with the borders // Robust: If the padding is so big as drop cap letter has no enough space than // remove all padding. if( rFnt.GetTopBorderSpace() + rFnt.GetBottomBorderSpace() >= nWishedHeight ) { rFnt.SetTopBorderDist(0); rFnt.SetBottomBorderDist(0); rFnt.SetRightBorderDist(0); rFnt.SetLeftBorderDist(0); } if( rFnt.GetTopBorder() ) { aRect.setHeight(aRect.GetHeight() + rFnt.GetTopBorderSpace()); aRect.setY(aRect.getY() - rFnt.GetTopBorderSpace()); } if( rFnt.GetBottomBorder() ) { aRect.setHeight(aRect.GetHeight() + rFnt.GetBottomBorderSpace()); } if ( bFirstGlyphRect ) { aCommonRect = aRect; bFirstGlyphRect = false; } else aCommonRect.Union( aRect ); nIdx = nIdx + pCurrPart->GetLen(); pCurrPart = pCurrPart->GetFollow(); } // now we have a union ( aCommonRect ) of all glyphs with // respect to a common baseline : 0 // get descent and ascent from union if ( rInf.GetTextFrame()->IsVertical() ) { nDescent = aCommonRect.Left(); nAscent = aCommonRect.Right(); if ( nDescent < 0 ) nDescent = -nDescent; } else { nDescent = aCommonRect.Bottom(); nAscent = aCommonRect.Top(); } if ( nAscent < 0 ) nAscent = -nAscent; const long nHght = nAscent + nDescent; if ( nHght ) { if ( nHght > nWishedHeight ) nMax = nFactor; else { if ( bUseCache ) aFactor[ nTmpIdx ] = (sal_uInt16)nFactor; nMin = nFactor; } nFactor = ( nFactor * nWishedHeight ) / nHght; bGrow = ( nFactor > nMin ) && ( nFactor < nMax ); #if OSL_DEBUG_LEVEL > 1 if ( bGrow ) nGrow++; #endif nIdx = rInf.GetIdx(); } else bGrow = false; } if ( bWinUsed ) { // reset window if it has been used pWin->SetMapMode( aOldMap ); pWin->SetFont( aOldFnt ); } if ( bUseCache ) aDescent[ nTmpIdx ] = -short( nDescent ); } pCurrPart = pDrop->GetPart(); // did made any new calculations or did we use the cache? if ( -1 == nFactor ) { nFactor = aFactor[ nTmpIdx ]; nDescent = aDescent[ nTmpIdx ]; } else nDescent = -nDescent; while ( pCurrPart ) { // scale current font SwFont& rFnt = pCurrPart->GetFont(); Size aNewSize( 0, ( nFactor * rFnt.GetHeight( rFnt.GetActual() ) ) / 1000 ); const sal_uInt8 nOldProp = rFnt.GetPropr(); rFnt.SetProportion( 100 ); rFnt.SetSize( aNewSize, rFnt.GetActual() ); rFnt.SetProportion( nOldProp ); pCurrPart = pCurrPart->GetFollow(); } pDrop->SetY( (short)nDescent ); } bool SwDropPortion::Format( SwTextFormatInfo &rInf ) { bool bFull = false; Fix( (sal_uInt16)rInf.X() ); SwLayoutModeModifier aLayoutModeModifier( *rInf.GetOut() ); aLayoutModeModifier.SetAuto(); if( nDropHeight && pPart && nLines!=1 ) { if( !pDropCapCache ) pDropCapCache = new SwDropCapCache(); // adjust font sizes to fit into the rectangle pDropCapCache->CalcFontSize( this, rInf ); const long nOldX = rInf.X(); { SwDropSave aSave( rInf ); SwDropPortionPart* pCurrPart = pPart; while ( pCurrPart ) { rInf.SetLen( pCurrPart->GetLen() ); SwFont& rFnt = pCurrPart->GetFont(); { SwFontSave aFontSave( rInf, &rFnt ); SetJoinBorderWithNext(pCurrPart->GetJoinBorderWithNext()); SetJoinBorderWithPrev(pCurrPart->GetJoinBorderWithPrev()); bFull = FormatText( rInf ); if ( bFull ) break; } const SwTwips nTmpWidth = ( InSpaceGrp() && rInf.GetSpaceAdd() ) ? Width() + CalcSpacing( rInf.GetSpaceAdd(), rInf ) : Width(); // set values pCurrPart->SetWidth( (sal_uInt16)nTmpWidth ); // Move rInf.SetIdx( rInf.GetIdx() + pCurrPart->GetLen() ); rInf.X( rInf.X() + nTmpWidth ); pCurrPart = pCurrPart->GetFollow(); } SetJoinBorderWithNext(false); SetJoinBorderWithPrev(false); Width( (sal_uInt16)(rInf.X() - nOldX) ); } // reset my length SetLen( rInf.GetLen() ); // Quit when Flys are overlapping if( ! bFull ) bFull = lcl_IsDropFlyInter( rInf, Width(), nDropHeight ); if( bFull ) { // FormatText could have caused nHeight to be 0 if ( !Height() ) Height( rInf.GetTextHeight() ); // And now for another round nDropHeight = nLines = 0; delete pPart; pPart = nullptr; // Meanwhile use normal formatting bFull = SwTextPortion::Format( rInf ); } else rInf.SetDropInit( true ); Height( rInf.GetTextHeight() ); SetAscent( rInf.GetAscent() ); } else bFull = SwTextPortion::Format( rInf ); if( bFull ) nDistance = 0; else { const sal_uInt16 nWant = Width() + GetDistance(); const sal_uInt16 nRest = (sal_uInt16)(rInf.Width() - rInf.X()); if( ( nWant > nRest ) || lcl_IsDropFlyInter( rInf, Width() + GetDistance(), nDropHeight ) ) nDistance = 0; Width( Width() + nDistance ); } return bFull; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */