LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/starmath/source - rect.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 286 328 87.2 %
Date: 2013-07-09 Functions: 21 25 84.0 %
Legend: Lines: hit not hit

          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 <osl/diagnose.h>
      21             : #include <vcl/svapp.hxx>
      22             : #include <vcl/wrkwin.hxx>
      23             : #include <vcl/virdev.hxx>
      24             : 
      25             : 
      26             : #include "rect.hxx"
      27             : #include "types.hxx"
      28             : #include "utility.hxx"
      29             : #include "smmod.hxx"
      30             : 
      31             : 
      32             : ////////////////////////////////////////////////////////////////////////////////
      33             : 
      34             : 
      35             : // '\0' terminated Array with symbol, which should be treat as letters in
      36             : // StarMath Font, (to get a normal (non-clipped) SmRect in contrast to the
      37             : // other operators and symbols).
      38             : static sal_Unicode const aMathAlpha[] =
      39             : {
      40             :     MS_ALEPH,               MS_IM,                  MS_RE,
      41             :     MS_WP,                  sal_Unicode(0xE070),    MS_EMPTYSET,
      42             :     sal_Unicode(0x2113),    sal_Unicode(0xE0D6),    sal_Unicode(0x2107),
      43             :     sal_Unicode(0x2127),    sal_Unicode(0x210A),    MS_HBAR,
      44             :     MS_LAMBDABAR,           MS_SETN,                MS_SETZ,
      45             :     MS_SETQ,                MS_SETR,                MS_SETC,
      46             :     sal_Unicode(0x2373),    sal_Unicode(0xE0A5),    sal_Unicode(0x2112),
      47             :     sal_Unicode(0x2130),    sal_Unicode(0x2131),
      48             :     sal_Unicode('\0')
      49             : };
      50             : 
      51        2978 : bool SmIsMathAlpha(const OUString &rText)
      52             :     // true iff symbol (from StarMath Font) should be treated as letter
      53             : {
      54        2978 :     if (rText.isEmpty())
      55           6 :         return false;
      56             : 
      57             :     OSL_ENSURE(rText.getLength() == 1, "Sm : string must be exactly one character long");
      58        2972 :     sal_Unicode cChar = rText[0];
      59             : 
      60             :     // is it a greek symbol?
      61        2972 :     if (sal_Unicode(0xE0AC) <= cChar  &&  cChar <= sal_Unicode(0xE0D4))
      62           0 :         return true;
      63             :     else
      64             :     {
      65             :         // appears it in 'aMathAlpha'?
      66        2972 :         const sal_Unicode *pChar = aMathAlpha;
      67       74300 :         while (*pChar  &&  *pChar != cChar)
      68       68356 :             pChar++;
      69        2972 :         return *pChar != sal_Unicode('\0');
      70             :     }
      71             : }
      72             : 
      73             : 
      74             : ////////////////////////////////////////
      75             : //
      76             : // SmRect members
      77             : //
      78             : 
      79             : 
      80       10703 : SmRect::SmRect()
      81             :     // constructs empty rectangle at (0, 0) with width and height 0.
      82             : {
      83             :     OSL_ENSURE(aTopLeft == Point(0, 0), "Sm: ooops...");
      84             :     OSL_ENSURE(aSize == Size(0, 0), "Sm: ooops...");
      85             : 
      86       10703 :     bHasBaseline = bHasAlignInfo = false;
      87             :     nBaseline = nAlignT = nAlignM = nAlignB =
      88             :     nGlyphTop = nGlyphBottom =
      89             :     nItalicLeftSpace = nItalicRightSpace =
      90       10703 :     nLoAttrFence = nHiAttrFence = 0;
      91       10703 :     nBorderWidth = 0;
      92       10703 : }
      93             : 
      94             : 
      95       10174 : SmRect::SmRect(const SmRect &rRect)
      96             : :   aTopLeft(rRect.aTopLeft),
      97       10174 :     aSize(rRect.aSize)
      98             : {
      99       10174 :     bHasBaseline  = rRect.bHasBaseline;
     100       10174 :     nBaseline     = rRect.nBaseline;
     101       10174 :     nAlignT       = rRect.nAlignT;
     102       10174 :     nAlignM       = rRect.nAlignM;
     103       10174 :     nAlignB       = rRect.nAlignB;
     104       10174 :     nGlyphTop     = rRect.nGlyphTop;
     105       10174 :     nGlyphBottom  = rRect.nGlyphBottom;
     106       10174 :     nHiAttrFence  = rRect.nHiAttrFence;
     107       10174 :     nLoAttrFence  = rRect.nLoAttrFence;
     108       10174 :     bHasAlignInfo = rRect.bHasAlignInfo;
     109       10174 :     nItalicLeftSpace  = rRect.nItalicLeftSpace;
     110       10174 :     nItalicRightSpace = rRect.nItalicRightSpace;
     111       10174 :     nBorderWidth  = rRect.nBorderWidth;
     112       10174 : }
     113             : 
     114             : 
     115          60 : void SmRect::CopyAlignInfo(const SmRect &rRect)
     116             : {
     117          60 :     nBaseline     = rRect.nBaseline;
     118          60 :     bHasBaseline  = rRect.bHasBaseline;
     119          60 :     nAlignT       = rRect.nAlignT;
     120          60 :     nAlignM       = rRect.nAlignM;
     121          60 :     nAlignB       = rRect.nAlignB;
     122          60 :     bHasAlignInfo = rRect.bHasAlignInfo;
     123          60 :     nLoAttrFence  = rRect.nLoAttrFence;
     124          60 :     nHiAttrFence  = rRect.nHiAttrFence;
     125          60 : }
     126             : 
     127             : 
     128        5729 : void SmRect::BuildRect(const OutputDevice &rDev, const SmFormat *pFormat,
     129             :                        const OUString &rText, sal_uInt16 nBorder)
     130             : {
     131             :     OSL_ENSURE(aTopLeft == Point(0, 0), "Sm: Ooops...");
     132             : 
     133        5729 :     aSize = Size(rDev.GetTextWidth(rText), rDev.GetTextHeight());
     134             : 
     135        5729 :     const FontMetric  aFM (rDev.GetFontMetric());
     136        5729 :     bool              bIsMath  = aFM.GetName().EqualsIgnoreCaseAscii( FONTNAME_MATH );
     137        5729 :     bool              bAllowSmaller = bIsMath && !SmIsMathAlpha(rText);
     138        5729 :     const long        nFontHeight = rDev.GetFont().GetSize().Height();
     139             : 
     140        5729 :     nBorderWidth  = nBorder;
     141        5729 :     bHasAlignInfo = true;
     142        5729 :     bHasBaseline  = true;
     143        5729 :     nBaseline     = aFM.GetAscent();
     144        5729 :     nAlignT       = nBaseline - nFontHeight * 750L / 1000L;
     145        5729 :     nAlignM       = nBaseline - nFontHeight * 121L / 422L;
     146             :         // that's where the horizontal bars of '+', '-', ... are
     147             :         // (1/3 of ascent over baseline)
     148             :         // (121 = 1/3 of 12pt ascent, 422 = 12pt fontheight)
     149        5729 :     nAlignB       = nBaseline;
     150             : 
     151             :     // workaround for printer fonts with very small (possible 0 or even
     152             :     // negative(!)) leading
     153        5729 :     if (aFM.GetIntLeading() < 5  &&  rDev.GetOutDevType() == OUTDEV_PRINTER)
     154             :     {
     155          21 :         OutputDevice    *pWindow = Application::GetDefaultDevice();
     156             : 
     157          21 :         pWindow->Push(PUSH_MAPMODE | PUSH_FONT);
     158             : 
     159          21 :         pWindow->SetMapMode(rDev.GetMapMode());
     160          21 :         pWindow->SetFont(rDev.GetFontMetric());
     161             : 
     162          21 :         long  nDelta = pWindow->GetFontMetric().GetIntLeading();
     163          21 :         if (nDelta == 0)
     164             :         {   // this value approx. fits a Leading of 80 at a
     165             :             // Fontheight of 422 (12pt)
     166           0 :             nDelta = nFontHeight * 8L / 43;
     167             :         }
     168          21 :         SetTop(GetTop() - nDelta);
     169             : 
     170          21 :         pWindow->Pop();
     171             :     }
     172             : 
     173             :     // get GlyphBoundRect
     174        5729 :     Rectangle  aGlyphRect;
     175             : #if OSL_DEBUG_LEVEL > 1
     176             :     bool bSuccess =
     177             : #endif
     178        5729 :                 SmGetGlyphBoundRect(rDev, rText, aGlyphRect);
     179             : #if OSL_DEBUG_LEVEL > 1
     180             :     if (!bSuccess)
     181             :     {
     182             :         OSL_FAIL( "Sm : Ooops... (fehlt evtl. der Font?)");
     183             :     }
     184             : #endif
     185             : 
     186        5729 :     nItalicLeftSpace  = GetLeft() - aGlyphRect.Left() + nBorderWidth;
     187        5729 :     nItalicRightSpace = aGlyphRect.Right() - GetRight() + nBorderWidth;
     188        5729 :     if (nItalicLeftSpace  < 0  &&  !bAllowSmaller)
     189         409 :         nItalicLeftSpace  = 0;
     190        5729 :     if (nItalicRightSpace < 0  &&  !bAllowSmaller)
     191         627 :         nItalicRightSpace = 0;
     192             : 
     193        5729 :     long  nDist = 0;
     194        5729 :     if (pFormat)
     195        5069 :         nDist = (rDev.GetFont().GetSize().Height()
     196        5069 :                 * pFormat->GetDistance(DIS_ORNAMENTSIZE)) / 100L;
     197             : 
     198        5729 :     nHiAttrFence = aGlyphRect.TopLeft().Y() - 1 - nBorderWidth - nDist;
     199        5729 :     nLoAttrFence = SmFromTo(GetAlignB(), GetBottom(), 0.0);
     200             : 
     201        5729 :     nGlyphTop    = aGlyphRect.Top() - nBorderWidth;
     202        5729 :     nGlyphBottom = aGlyphRect.Bottom() + nBorderWidth;
     203             : 
     204        5729 :     if (bAllowSmaller)
     205             :     {
     206             :         // for symbols and operators from the StarMath Font
     207             :         // we adjust upper and lower margin of the symbol
     208        2978 :         SetTop(nGlyphTop);
     209        2978 :         SetBottom(nGlyphBottom);
     210             :     }
     211             : 
     212        5729 :     if (nHiAttrFence < GetTop())
     213        2978 :         nHiAttrFence = GetTop();
     214             : 
     215        5729 :     if (nLoAttrFence > GetBottom())
     216         782 :         nLoAttrFence = GetBottom();
     217             : 
     218             :     OSL_ENSURE(rText.isEmpty() || !IsEmpty(),
     219        5729 :                "Sm: empty rectangle created");
     220        5729 : }
     221             : 
     222             : 
     223        5729 : void SmRect::Init(const OutputDevice &rDev, const SmFormat *pFormat,
     224             :                   const OUString &rText, sal_uInt16 nEBorderWidth)
     225             :     // get rectangle fitting for drawing 'rText' on OutputDevice 'rDev'
     226             : {
     227        5729 :     BuildRect(rDev, pFormat, rText, nEBorderWidth);
     228        5729 : }
     229             : 
     230             : 
     231        5729 : SmRect::SmRect(const OutputDevice &rDev, const SmFormat *pFormat,
     232        5729 :                const OUString &rText, long nEBorderWidth)
     233             : {
     234             :     OSL_ENSURE( nEBorderWidth >= 0, "BorderWidth is negative" );
     235        5729 :     if (nEBorderWidth < 0)
     236           0 :         nEBorderWidth = 0;
     237        5729 :     Init(rDev, pFormat, rText, (sal_uInt16) nEBorderWidth);
     238        5729 : }
     239             : 
     240             : 
     241         879 : SmRect::SmRect(long nWidth, long nHeight)
     242             :     // this constructor should never be used for anything textlike because
     243             :     // it will not provide useful values for baseline, AlignT and AlignB!
     244             :     // It's purpose is to get a 'SmRect' for the horizontal line in fractions
     245             :     // as used in 'SmBinVerNode'.
     246         879 : :   aSize(nWidth, nHeight)
     247             : {
     248             :     OSL_ENSURE(aTopLeft == Point(0, 0), "Sm: ooops...");
     249             : 
     250         879 :     bHasBaseline  = false;
     251         879 :     bHasAlignInfo = true;
     252         879 :     nBaseline     = 0;
     253         879 :     nAlignT       = GetTop();
     254         879 :     nAlignB       = GetBottom();
     255         879 :     nAlignM       = (nAlignT + nAlignB) / 2;        // this is the default
     256         879 :     nItalicLeftSpace = nItalicRightSpace = 0;
     257         879 :     nGlyphTop    = nHiAttrFence  = GetTop();
     258         879 :     nGlyphBottom = nLoAttrFence  = GetBottom();
     259         879 :     nBorderWidth  = 0;
     260         879 : }
     261             : 
     262             : 
     263        5258 : void SmRect::SetLeft(long nLeft)
     264             : {
     265        5258 :     if (nLeft <= GetRight())
     266        5222 :     {   aSize.Width() = GetRight() - nLeft + 1;
     267        5222 :         aTopLeft.X()  = nLeft;
     268             :     }
     269        5258 : }
     270             : 
     271             : 
     272        5258 : void SmRect::SetRight(long nRight)
     273             : {
     274        5258 :     if (nRight >= GetLeft())
     275        5258 :         aSize.Width() = nRight - GetLeft() + 1;
     276        5258 : }
     277             : 
     278             : 
     279        8327 : void SmRect::SetBottom(long nBottom)
     280             : {
     281        8327 :     if (nBottom >= GetTop())
     282        8321 :         aSize.Height() = nBottom - GetTop() + 1;
     283        8327 : }
     284             : 
     285             : 
     286        8257 : void SmRect::SetTop(long nTop)
     287             : {
     288        8257 :     if (nTop <= GetBottom())
     289        8245 :     {   aSize.Height()   = GetBottom() - nTop + 1;
     290        8245 :         aTopLeft.Y() = nTop;
     291             :     }
     292        8257 : }
     293             : 
     294             : 
     295       19009 : void SmRect::Move(const Point &rPosition)
     296             :     // move rectangle by position 'rPosition'.
     297             : {
     298       19009 :     aTopLeft  += rPosition;
     299             : 
     300       19009 :     long  nDelta = rPosition.Y();
     301       19009 :     nBaseline += nDelta;
     302       19009 :     nAlignT   += nDelta;
     303       19009 :     nAlignM   += nDelta;
     304       19009 :     nAlignB   += nDelta;
     305       19009 :     nGlyphTop    += nDelta;
     306       19009 :     nGlyphBottom += nDelta;
     307       19009 :     nHiAttrFence += nDelta;
     308       19009 :     nLoAttrFence += nDelta;
     309       19009 : }
     310             : 
     311             : 
     312        5292 : const Point SmRect::AlignTo(const SmRect &rRect, RectPos ePos,
     313             :                             RectHorAlign eHor, RectVerAlign eVer) const
     314        5292 : {   Point  aPos (GetTopLeft());
     315             :         // will become the topleft point of the new rectangle position
     316             : 
     317             :     // set horizontal or vertical new rectangle position depending on
     318             :     // 'ePos' is one of 'RP_LEFT', 'RP_RIGHT' or 'RP_TOP', 'RP_BOTTOM'
     319        5292 :     switch (ePos)
     320             :     {   case RP_LEFT :
     321         559 :             aPos.X() = rRect.GetItalicLeft() - GetItalicRightSpace()
     322         559 :                        - GetWidth();
     323         559 :             break;
     324             :         case RP_RIGHT :
     325        3248 :             aPos.X() = rRect.GetItalicRight() + 1 + GetItalicLeftSpace();
     326        3248 :             break;
     327             :         case RP_TOP :
     328         309 :             aPos.Y() = rRect.GetTop() - GetHeight();
     329         309 :             break;
     330             :         case RP_BOTTOM :
     331        1006 :             aPos.Y() = rRect.GetBottom() + 1;
     332        1006 :             break;
     333             :         case RP_ATTRIBUT :
     334         170 :             aPos.X() = rRect.GetItalicCenterX() - GetItalicWidth() / 2
     335         170 :                        + GetItalicLeftSpace();
     336         170 :             break;
     337             :         default :
     338             :             OSL_FAIL("Sm: unknown case");
     339             :     }
     340             : 
     341             :     // check if horizontal position is already set
     342        5292 :     if (ePos == RP_LEFT  ||  ePos == RP_RIGHT  ||  ePos == RP_ATTRIBUT)
     343             :         // correct error in current vertical position
     344        3977 :         switch (eVer)
     345             :         {   case RVA_TOP :
     346         246 :                 aPos.Y() += rRect.GetAlignT() - GetAlignT();
     347         246 :                 break;
     348             :             case RVA_MID :
     349         114 :                 aPos.Y() += rRect.GetAlignM() - GetAlignM();
     350         114 :                 break;
     351             :             case RVA_BASELINE :
     352             :                 // align baselines if possible else align mid's
     353        2787 :                 if (HasBaseline() && rRect.HasBaseline())
     354        2505 :                     aPos.Y() += rRect.GetBaseline() - GetBaseline();
     355             :                 else
     356         282 :                     aPos.Y() += rRect.GetAlignM() - GetAlignM();
     357        2787 :                 break;
     358             :             case RVA_BOTTOM :
     359          96 :                 aPos.Y() += rRect.GetAlignB() - GetAlignB();
     360          96 :                 break;
     361             :             case RVA_CENTERY :
     362         564 :                 aPos.Y() += rRect.GetCenterY() - GetCenterY();
     363         564 :                 break;
     364             :             case RVA_ATTRIBUT_HI:
     365         146 :                 aPos.Y() += rRect.GetHiAttrFence() - GetBottom();
     366         146 :                 break;
     367             :             case RVA_ATTRIBUT_MID :
     368          24 :                 aPos.Y() += SmFromTo(rRect.GetAlignB(), rRect.GetAlignT(), 0.4)
     369          24 :                             - GetCenterY();
     370          12 :                 break;
     371             :             case RVA_ATTRIBUT_LO :
     372          12 :                 aPos.Y() += rRect.GetLoAttrFence() - GetTop();
     373          12 :                 break;
     374             :         default :
     375             :                 OSL_FAIL("Sm: unknown case");
     376             :         }
     377             : 
     378             :     // check if vertical position is already set
     379        5292 :     if (ePos == RP_TOP  ||  ePos == RP_BOTTOM)
     380             :         // correct error in current horizontal position
     381        1315 :         switch (eHor)
     382             :         {   case RHA_LEFT :
     383           0 :                 aPos.X() += rRect.GetItalicLeft() - GetItalicLeft();
     384           0 :                 break;
     385             :             case RHA_CENTER :
     386        1260 :                 aPos.X() += rRect.GetItalicCenterX() - GetItalicCenterX();
     387        1260 :                 break;
     388             :             case RHA_RIGHT :
     389          55 :                 aPos.X() += rRect.GetItalicRight() - GetItalicRight();
     390          55 :                 break;
     391             :             default :
     392             :                 OSL_FAIL("Sm: unknown case");
     393             :         }
     394             : 
     395        5292 :     return aPos;
     396             : }
     397             : 
     398             : 
     399        5300 : SmRect & SmRect::Union(const SmRect &rRect)
     400             :     // rectangle union of current one with 'rRect'. The result is to be the
     401             :     // smallest rectangles that covers the space of both rectangles.
     402             :     // (empty rectangles cover no space)
     403             :     //! Italic correction is NOT taken into account here!
     404             : {
     405        5300 :     if (rRect.IsEmpty())
     406          42 :         return *this;
     407             : 
     408        5258 :     long  nL  = rRect.GetLeft(),
     409        5258 :           nR  = rRect.GetRight(),
     410        5258 :           nT  = rRect.GetTop(),
     411        5258 :           nB  = rRect.GetBottom(),
     412        5258 :           nGT = rRect.nGlyphTop,
     413        5258 :           nGB = rRect.nGlyphBottom;
     414        5258 :     if (!IsEmpty())
     415             :     {   long  nTmp;
     416             : 
     417        5198 :         if ((nTmp = GetLeft()) < nL)
     418        4122 :             nL = nTmp;
     419        5198 :         if ((nTmp = GetRight()) > nR)
     420        1343 :             nR = nTmp;
     421        5198 :         if ((nTmp = GetTop()) < nT)
     422        2616 :             nT = nTmp;
     423        5198 :         if ((nTmp = GetBottom()) > nB)
     424        1732 :             nB = nTmp;
     425        5198 :         if ((nTmp = nGlyphTop) < nGT)
     426        2776 :             nGT = nTmp;
     427        5198 :         if ((nTmp = nGlyphBottom) > nGB)
     428        1944 :             nGB = nTmp;
     429             :     }
     430             : 
     431        5258 :     SetLeft(nL);
     432        5258 :     SetRight(nR);
     433        5258 :     SetTop(nT);
     434        5258 :     SetBottom(nB);
     435        5258 :     nGlyphTop    = nGT;
     436        5258 :     nGlyphBottom = nGB;
     437             : 
     438        5258 :     return *this;
     439             : }
     440             : 
     441             : 
     442        5300 : SmRect & SmRect::ExtendBy(const SmRect &rRect, RectCopyMBL eCopyMode)
     443             :     // let current rectangle be the union of itself and 'rRect'
     444             :     // (the smallest rectangle surrounding both). Also adapt values for
     445             :     // 'AlignT', 'AlignM', 'AlignB', baseline and italic-spaces.
     446             :     // The baseline is set according to 'eCopyMode'.
     447             :     // If one of the rectangles has no relevant info the other one is copied.
     448             : {
     449             :     // get some values used for (italic) spaces adaption
     450             :     // ! (need to be done before changing current SmRect) !
     451        5300 :     long  nL = std::min(GetItalicLeft(),  rRect.GetItalicLeft()),
     452        5300 :           nR = std::max(GetItalicRight(), rRect.GetItalicRight());
     453             : 
     454        5300 :     Union(rRect);
     455             : 
     456        5300 :     SetItalicSpaces(GetLeft() - nL, nR - GetRight());
     457             : 
     458        5300 :     if (!HasAlignInfo())
     459          60 :         CopyAlignInfo(rRect);
     460        5240 :     else if (rRect.HasAlignInfo())
     461        5234 :     {   nAlignT = std::min(GetAlignT(), rRect.GetAlignT());
     462        5234 :         nAlignB = std::max(GetAlignB(), rRect.GetAlignB());
     463        5234 :         nHiAttrFence = std::min(GetHiAttrFence(), rRect.GetHiAttrFence());
     464        5234 :         nLoAttrFence = std::max(GetLoAttrFence(), rRect.GetLoAttrFence());
     465             :         OSL_ENSURE(HasAlignInfo(), "Sm: ooops...");
     466             : 
     467        5234 :         switch (eCopyMode)
     468             :         {   case RCP_THIS:
     469             :                 // already done
     470        1478 :                 break;
     471             :             case RCP_ARG:
     472         547 :                 CopyMBL(rRect);
     473         547 :                 break;
     474             :             case RCP_NONE:
     475         566 :                 ClearBaseline();
     476         566 :                 nAlignM = (nAlignT + nAlignB) / 2;
     477         566 :                 break;
     478             :             case RCP_XOR:
     479        2643 :                 if (!HasBaseline())
     480          90 :                     CopyMBL(rRect);
     481        2643 :                 break;
     482             :             default :
     483             :                 OSL_FAIL("Sm: unknown case");
     484             :         }
     485             :     }
     486             : 
     487        5300 :     return *this;
     488             : }
     489             : 
     490             : 
     491         220 : SmRect & SmRect::ExtendBy(const SmRect &rRect, RectCopyMBL eCopyMode,
     492             :                           long nNewAlignM)
     493             :     // as 'ExtendBy' but sets AlignM value to 'nNewAlignM'.
     494             :     // (this version will be used in 'SmBinVerNode' to provide means to
     495             :     // align eg "{a over b} over c" correctly where AlignM should not
     496             :     // be (AlignT + AlignB) / 2)
     497             : {
     498             :     OSL_ENSURE(HasAlignInfo(), "Sm: no align info");
     499             : 
     500         220 :     ExtendBy(rRect, eCopyMode);
     501         220 :     nAlignM = nNewAlignM;
     502             : 
     503         220 :     return *this;
     504             : }
     505             : 
     506             : 
     507         734 : SmRect & SmRect::ExtendBy(const SmRect &rRect, RectCopyMBL eCopyMode,
     508             :                           bool bKeepVerAlignParams)
     509             :     // as 'ExtendBy' but keeps original values for AlignT, -M and -B and
     510             :     // baseline.
     511             :     // (this is used in 'SmSupSubNode' where the sub-/supscripts shouldn't
     512             :     // be allowed to modify these values.)
     513             : {
     514         734 :     long  nOldAlignT   = GetAlignT(),
     515         734 :           nOldAlignM   = GetAlignM(),
     516         734 :           nOldAlignB   = GetAlignB(),
     517         734 :           nOldBaseline = nBaseline;     //! depends not on 'HasBaseline'
     518         734 :     bool  bOldHasAlignInfo = HasAlignInfo();
     519             : 
     520         734 :     ExtendBy(rRect, eCopyMode);
     521             : 
     522         734 :     if (bKeepVerAlignParams)
     523         734 :     {   nAlignT   = nOldAlignT;
     524         734 :         nAlignM   = nOldAlignM;
     525         734 :         nAlignB   = nOldAlignB;
     526         734 :         nBaseline = nOldBaseline;
     527         734 :         bHasAlignInfo = bOldHasAlignInfo;
     528             :     }
     529             : 
     530         734 :     return *this;
     531             : }
     532             : 
     533             : 
     534           0 : long SmRect::OrientedDist(const Point &rPoint) const
     535             :     // return oriented distance of rPoint to the current rectangle,
     536             :     // especially the return value is <= 0 iff the point is inside the
     537             :     // rectangle.
     538             :     // For simplicity the maximum-norm is used.
     539             : {
     540           0 :     bool  bIsInside = IsInsideItalicRect(rPoint);
     541             : 
     542             :     // build reference point to define the distance
     543           0 :     Point  aRef;
     544           0 :     if (bIsInside)
     545           0 :     {   Point  aIC (GetItalicCenterX(), GetCenterY());
     546             : 
     547           0 :         aRef.X() = rPoint.X() >= aIC.X() ? GetItalicRight() : GetItalicLeft();
     548           0 :         aRef.Y() = rPoint.Y() >= aIC.Y() ? GetBottom() : GetTop();
     549             :     }
     550             :     else
     551             :     {
     552             :         // x-coordinate
     553           0 :         if (rPoint.X() > GetItalicRight())
     554           0 :             aRef.X() = GetItalicRight();
     555           0 :         else if (rPoint.X() < GetItalicLeft())
     556           0 :             aRef.X() = GetItalicLeft();
     557             :         else
     558           0 :             aRef.X() = rPoint.X();
     559             :         // y-coordinate
     560           0 :         if (rPoint.Y() > GetBottom())
     561           0 :             aRef.Y() = GetBottom();
     562           0 :         else if (rPoint.Y() < GetTop())
     563           0 :             aRef.Y() = GetTop();
     564             :         else
     565           0 :             aRef.Y() = rPoint.Y();
     566             :     }
     567             : 
     568             :     // build distance vector
     569           0 :     Point  aDist (aRef - rPoint);
     570             : 
     571           0 :     long nAbsX = labs(aDist.X()),
     572           0 :          nAbsY = labs(aDist.Y());
     573             : 
     574           0 :     return bIsInside ? - std::min(nAbsX, nAbsY) : std::max (nAbsX, nAbsY);
     575             : }
     576             : 
     577             : 
     578           0 : bool SmRect::IsInsideRect(const Point &rPoint) const
     579             : {
     580           0 :     return     rPoint.Y() >= GetTop()
     581           0 :            &&  rPoint.Y() <= GetBottom()
     582           0 :            &&  rPoint.X() >= GetLeft()
     583           0 :            &&  rPoint.X() <= GetRight();
     584             : }
     585             : 
     586             : 
     587           0 : bool SmRect::IsInsideItalicRect(const Point &rPoint) const
     588             : {
     589           0 :     return     rPoint.Y() >= GetTop()
     590           0 :            &&  rPoint.Y() <= GetBottom()
     591           0 :            &&  rPoint.X() >= GetItalicLeft()
     592           0 :            &&  rPoint.X() <= GetItalicRight();
     593             : }
     594             : 
     595           0 : SmRect SmRect::AsGlyphRect() const
     596             : {
     597           0 :     SmRect aRect (*this);
     598           0 :     aRect.SetTop(nGlyphTop);
     599           0 :     aRect.SetBottom(nGlyphBottom);
     600           0 :     return aRect;
     601             : }
     602             : 
     603        5729 : bool SmGetGlyphBoundRect(const OutputDevice &rDev,
     604             :                          const OUString &rText, Rectangle &rRect)
     605             :     // basically the same as 'GetTextBoundRect' (in class 'OutputDevice')
     606             :     // but with a string as argument.
     607             : {
     608             :     // handle special case first
     609        5729 :     if (rText.isEmpty())
     610             :     {
     611           6 :         rRect.SetEmpty();
     612           6 :         return true;
     613             :     }
     614             : 
     615             :     // get a device where 'OutputDevice::GetTextBoundRect' will be successful
     616             :     OutputDevice *pGlyphDev;
     617        5723 :     if (rDev.GetOutDevType() != OUTDEV_PRINTER)
     618        5619 :         pGlyphDev = (OutputDevice *) &rDev;
     619             :     else
     620             :     {
     621             :         // since we format for the printer (where GetTextBoundRect will fail)
     622             :         // we need a virtual device here.
     623         104 :         pGlyphDev = &SM_MOD()->GetDefaultVirtualDev();
     624             :     }
     625             : 
     626        5723 :     const FontMetric  aDevFM (rDev.GetFontMetric());
     627             : 
     628        5723 :     pGlyphDev->Push(PUSH_FONT | PUSH_MAPMODE);
     629       11446 :     Font aFnt(rDev.GetFont());
     630        5723 :     aFnt.SetAlign(ALIGN_TOP);
     631             : 
     632             :     // use scale factor when calling GetTextBoundRect to counter
     633             :     // negative effects from antialiasing which may otherwise result
     634             :     // in significant incorrect bounding rectangles for some characters.
     635        5723 :     Size aFntSize = aFnt.GetSize();
     636             : 
     637             :     // Workaround to avoid HUGE font sizes and resulting problems
     638        5723 :     long nScaleFactor = 1;
     639       11446 :     while( aFntSize.Height() > 2000 * nScaleFactor )
     640           0 :         nScaleFactor *= 2;
     641             : 
     642        5723 :     aFnt.SetSize( Size( aFntSize.Width() / nScaleFactor, aFntSize.Height() / nScaleFactor ) );
     643        5723 :     pGlyphDev->SetFont(aFnt);
     644             : 
     645        5723 :     long nTextWidth = rDev.GetTextWidth(rText);
     646        5723 :     Point aPoint;
     647        5723 :     Rectangle   aResult (aPoint, Size(nTextWidth, rDev.GetTextHeight())),
     648        5723 :                 aTmp;
     649             : 
     650        5723 :     bool bSuccess = pGlyphDev->GetTextBoundRect(aTmp, rText, 0, 0);
     651             :     OSL_ENSURE( bSuccess, "GetTextBoundRect failed" );
     652             : 
     653             : 
     654        5723 :     if (!aTmp.IsEmpty())
     655             :     {
     656       11444 :         aResult = Rectangle(aTmp.Left() * nScaleFactor, aTmp.Top() * nScaleFactor,
     657       17166 :                             aTmp.Right() * nScaleFactor, aTmp.Bottom() * nScaleFactor);
     658        5722 :         if (&rDev != pGlyphDev) /* only when rDev is a printer... */
     659             :         {
     660         103 :             long nGDTextWidth  = pGlyphDev->GetTextWidth(rText);
     661         103 :             if (nGDTextWidth != 0  &&
     662             :                 nTextWidth != nGDTextWidth)
     663             :             {
     664         103 :                 aResult.Right() *= nTextWidth;
     665         103 :                 aResult.Right() /= nGDTextWidth * nScaleFactor;
     666             :             }
     667             :         }
     668             :     }
     669             : 
     670             :     // move rectangle to match possibly different baselines
     671             :     // (because of different devices)
     672        5723 :     long nDelta = aDevFM.GetAscent() - pGlyphDev->GetFontMetric().GetAscent() * nScaleFactor;
     673        5723 :     aResult.Move(0, nDelta);
     674             : 
     675        5723 :     pGlyphDev->Pop();
     676             : 
     677        5723 :     rRect = aResult;
     678       11446 :     return bSuccess;
     679          21 : }
     680             : 
     681             : 
     682             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10