LCOV - code coverage report
Current view: top level - libreoffice/starmath/source - utility.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 40 150 26.7 %
Date: 2012-12-27 Functions: 11 34 32.4 %
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 <sfx2/app.hxx>
      21             : #include <vcl/virdev.hxx>
      22             : #include <tools/tenccvt.hxx>
      23             : #include <osl/thread.h>
      24             : 
      25             : #include <tools/stream.hxx>
      26             : 
      27             : #include "starmath.hrc"
      28             : 
      29             : #include "utility.hxx"
      30             : #include "dialog.hxx"
      31             : #include "view.hxx"
      32             : #include "smdll.hxx"
      33             : 
      34             : 
      35             : ////////////////////////////////////////////////////////////
      36             : 
      37             : // return pointer to active SmViewShell, if this is not possible
      38             : // return 0 instead.
      39             : //!! Since this method is based on the current focus it is somewhat
      40             : //!! unreliable and may return unexpected 0 pointers!
      41         803 : SmViewShell * SmGetActiveView()
      42             : {
      43         803 :     SfxViewShell *pView = SfxViewShell::Current();
      44         803 :     return PTR_CAST(SmViewShell, pView);
      45             : }
      46             : 
      47             : 
      48             : ////////////////////////////////////////////////////////////
      49             : 
      50             : 
      51             : /**************************************************************************/
      52             : 
      53          28 : SmPickList::SmPickList(sal_uInt16 nInitSize, sal_uInt16 nMaxSize) :
      54          28 :     SfxPtrArr((sal_uInt8) nInitSize, 1)
      55             : {
      56          28 :     nSize = nMaxSize;
      57          28 : }
      58             : 
      59             : 
      60           0 : SmPickList::~SmPickList()
      61             : {
      62           0 :     Clear();
      63           0 : }
      64             : 
      65             : 
      66           0 : SmPickList& SmPickList::operator=(const SmPickList& rList)
      67             : {
      68             :     sal_uInt16  nPos;
      69             : 
      70           0 :     Clear();
      71           0 :     nSize = rList.nSize;
      72           0 :     for (nPos = 0; nPos < rList.Count(); nPos++)
      73           0 :         InsertPtr(nPos, CreateItem(rList.Get(nPos)));
      74             : 
      75           0 :     return *this;
      76             : }
      77             : 
      78             : 
      79           0 : void SmPickList::Insert(const void *pItem)
      80             : {
      81           0 :     Remove(pItem);
      82           0 :     InsertPtr(0, CreateItem(pItem));
      83             : 
      84           0 :     if (Count() > nSize)
      85             :     {
      86           0 :         DestroyItem(GetPtr(nSize));
      87           0 :         RemovePtr(nSize, 1);
      88             :     }
      89           0 : }
      90             : 
      91             : 
      92           0 : void SmPickList::Update(const void *pItem, const void *pNewItem)
      93             : {
      94             :     sal_uInt16  nPos;
      95             : 
      96           0 :     for (nPos = 0; nPos < Count(); nPos++)
      97           0 :         if (CompareItem(GetPtr(nPos), pItem))
      98             :         {
      99           0 :             DestroyItem(GetPtr(nPos));
     100           0 :             GetPtr(nPos) = CreateItem(pNewItem);
     101           0 :             break;
     102             :         }
     103           0 : }
     104             : 
     105           0 : void SmPickList::Remove(const void *pItem)
     106             : {
     107             :     sal_uInt16  nPos;
     108             : 
     109           0 :     for (nPos = 0; nPos < Count(); nPos++)
     110           0 :         if (CompareItem(GetPtr(nPos), pItem))
     111             :         {
     112           0 :             DestroyItem(GetPtr(nPos));
     113           0 :             RemovePtr(nPos, 1);
     114           0 :             break;
     115             :         }
     116           0 : }
     117             : 
     118           0 : void SmPickList::Clear()
     119             : {
     120             :     sal_uInt16  nPos;
     121             : 
     122           0 :     for (nPos = 0; nPos < Count(); nPos++)
     123           0 :         DestroyItem(GetPtr(nPos));
     124             : 
     125           0 :     RemovePtr(0, Count());
     126           0 : }
     127             : 
     128             : 
     129             : /**************************************************************************/
     130             : 
     131           0 : void * SmFontPickList::CreateItem(const void *pItem)
     132             : {
     133           0 :     return new Font(*((Font *) pItem));
     134             : }
     135             : 
     136           0 : void SmFontPickList::DestroyItem(void *pItem)
     137             : {
     138           0 :     delete (Font *)pItem;
     139           0 : }
     140             : 
     141           0 : bool SmFontPickList::CompareItem(const void *pFirstItem, const void *pSecondItem) const
     142             : {
     143             :     Font    *pFirstFont, *pSecondFont;
     144             : 
     145           0 :     pFirstFont  = (Font *)pFirstItem;
     146           0 :     pSecondFont = (Font *)pSecondItem;
     147             : 
     148           0 :     if (pFirstFont->GetName() == pSecondFont->GetName())
     149           0 :         if ((pFirstFont->GetFamily()  == pSecondFont->GetFamily())  &&
     150           0 :             (pFirstFont->GetCharSet() == pSecondFont->GetCharSet()) &&
     151           0 :             (pFirstFont->GetWeight()  == pSecondFont->GetWeight())  &&
     152           0 :             (pFirstFont->GetItalic()  == pSecondFont->GetItalic()))
     153           0 :             return (true);
     154             : 
     155           0 :     return false;
     156             : }
     157             : 
     158           0 : OUString SmFontPickList::GetStringItem(void *pItem)
     159             : {
     160           0 :     Font *pFont = (Font *)pItem;
     161           0 :     OUStringBuffer aString(pFont->GetName());
     162             : 
     163           0 :     if (IsItalic( *pFont ))
     164             :     {
     165           0 :         aString.append(", ");
     166           0 :         aString.append(SM_RESSTR(RID_FONTITALIC));
     167             :     }
     168           0 :     if (IsBold( *pFont ))
     169             :     {
     170           0 :         aString.append(", ");
     171           0 :         aString.append(SM_RESSTR(RID_FONTBOLD));
     172             :     }
     173             : 
     174           0 :     return aString.makeStringAndClear();
     175             : }
     176             : 
     177           0 : void SmFontPickList::Insert(const Font &rFont)
     178             : {
     179           0 :     SmPickList::Insert((void *)&rFont);
     180           0 : }
     181             : 
     182           0 : void SmFontPickList::Update(const Font &rFont, const Font &rNewFont)
     183             : {
     184           0 :     SmPickList::Update((void *)&rFont, (void *)&rNewFont);
     185           0 : }
     186             : 
     187           0 : void SmFontPickList::Remove(const Font &rFont)
     188             : {
     189           0 :     SmPickList::Remove((void *)&rFont);
     190           0 : }
     191             : 
     192             : 
     193           0 : void SmFontPickList::ReadFrom(const SmFontDialog& rDialog)
     194             : {
     195           0 :     Insert(rDialog.GetFont());
     196           0 : }
     197             : 
     198           0 : void SmFontPickList::WriteTo(SmFontDialog& rDialog) const
     199             : {
     200           0 :     rDialog.SetFont(Get());
     201           0 : }
     202             : 
     203             : 
     204             : /**************************************************************************/
     205             : 
     206             : 
     207           0 : IMPL_LINK( SmFontPickListBox, SelectHdl, ListBox *, /*pListBox*/ )
     208             : {
     209             :     sal_uInt16  nPos;
     210           0 :     OUString aString;
     211             : 
     212           0 :     nPos = GetSelectEntryPos();
     213             : 
     214           0 :     if (nPos != 0)
     215             :     {
     216           0 :         SmFontPickList::Insert(Get(nPos));
     217           0 :         aString = GetEntry(nPos);
     218           0 :         RemoveEntry(nPos);
     219           0 :         InsertEntry(aString, 0);
     220             :     }
     221             : 
     222           0 :     SelectEntryPos(0);
     223             : 
     224           0 :     return 0;
     225             : }
     226             : 
     227             : 
     228           0 : SmFontPickListBox::SmFontPickListBox(Window* pParent, const ResId& rResId, sal_uInt16 nMax) :
     229             :     SmFontPickList(nMax, nMax),
     230           0 :     ListBox(pParent, rResId)
     231             : {
     232           0 :     SetSelectHdl(LINK(this, SmFontPickListBox, SelectHdl));
     233           0 : }
     234             : 
     235             : 
     236           0 : SmFontPickListBox& SmFontPickListBox::operator=(const SmFontPickList& rList)
     237             : {
     238             :     sal_uInt16 nPos;
     239             : 
     240           0 :     *(SmFontPickList *)this = rList;
     241             : 
     242           0 :     for (nPos = 0; nPos < Count(); nPos++)
     243           0 :         InsertEntry(GetStringItem(GetPtr(nPos)), nPos);
     244             : 
     245           0 :     if (Count() > 0)
     246           0 :         SelectEntry(GetStringItem(GetPtr(0)));
     247             : 
     248           0 :     return *this;
     249             : }
     250             : 
     251           0 : void SmFontPickListBox::Insert(const Font &rFont)
     252             : {
     253           0 :     SmFontPickList::Insert(rFont);
     254             : 
     255           0 :     RemoveEntry(GetStringItem(GetPtr(0)));
     256           0 :     InsertEntry(GetStringItem(GetPtr(0)), 0);
     257           0 :     SelectEntry(GetStringItem(GetPtr(0)));
     258             : 
     259           0 :     while (GetEntryCount() > nSize)
     260           0 :         RemoveEntry(GetEntryCount() - 1);
     261             : 
     262           0 :     return;
     263             : }
     264             : 
     265             : 
     266           0 : void SmFontPickListBox::Update(const Font &rFont, const Font &rNewFont)
     267             : {
     268           0 :     SmFontPickList::Update(rFont, rNewFont);
     269             : 
     270           0 :     return;
     271             : }
     272             : 
     273             : 
     274           0 : void SmFontPickListBox::Remove(const Font &rFont)
     275             : {
     276           0 :     SmFontPickList::Remove(rFont);
     277             : 
     278           0 :     return;
     279             : }
     280             : 
     281             : ////////////////////////////////////////
     282             : 
     283        6475 : bool IsItalic( const Font &rFont )
     284             : {
     285        6475 :     FontItalic eItalic = rFont.GetItalic();
     286             :     // the code below leaves only _NONE and _DONTKNOW as not italic
     287        6475 :     return eItalic == ITALIC_OBLIQUE  ||  eItalic == ITALIC_NORMAL;
     288             : }
     289             : 
     290             : 
     291        5289 : bool IsBold( const Font &rFont )
     292             : {
     293        5289 :     FontWeight eWeight = rFont.GetWeight();
     294        5289 :     return eWeight != WEIGHT_DONTKNOW && eWeight > WEIGHT_NORMAL;
     295             : }
     296             : 
     297             : 
     298       16739 : void SmFace::Impl_Init()
     299             : {
     300       16739 :     SetSize( GetSize() );
     301       16739 :     SetTransparent( true );
     302       16739 :     SetAlign( ALIGN_BASELINE );
     303       16739 :     SetColor( COL_AUTO );
     304       16739 : }
     305             : 
     306       25999 : void SmFace::SetSize(const Size& rSize)
     307             : {
     308       25999 :     Size  aSize (rSize);
     309             : 
     310             :     // check the requested size against minimum value
     311       25999 :     static int const    nMinVal = SmPtsTo100th_mm(2);
     312             : 
     313       25999 :     if (aSize.Height() < nMinVal)
     314       15697 :         aSize.Height() = nMinVal;
     315             : 
     316             :     //! we don't force a maximum value here because this may prevent eg the
     317             :     //! parentheses in "left ( ... right )" from matching up with large
     318             :     //! bodies (eg stack{...} with many entries).
     319             :     //! Of course this is holds only if characters are used and not polygons.
     320             : 
     321       25999 :     Font::SetSize(aSize);
     322       25999 : }
     323             : 
     324             : 
     325        5909 : long SmFace::GetBorderWidth() const
     326             : {
     327        5909 :     if (nBorderWidth < 0)
     328        3722 :         return GetDefaultBorderWidth();
     329             :     else
     330        2187 :         return nBorderWidth;
     331             : }
     332             : 
     333       25488 : SmFace & SmFace::operator = (const SmFace &rFace)
     334             : {
     335       25488 :     Font::operator = (rFace);
     336       25488 :     nBorderWidth = -1;
     337       25488 :     return *this;
     338             : }
     339             : 
     340             : 
     341        5603 : SmFace & operator *= (SmFace &rFace, const Fraction &rFrac)
     342             :     // scales the width and height of 'rFace' by 'rFrac' and returns a
     343             :     // reference to 'rFace'.
     344             :     // It's main use is to make scaling fonts look easier.
     345        5603 : {   const Size &rFaceSize = rFace.GetSize();
     346             : 
     347       11206 :     rFace.SetSize(Size(Fraction(rFaceSize.Width())  *= rFrac,
     348       16809 :                        Fraction(rFaceSize.Height()) *= rFrac));
     349        5603 :     return rFace;
     350          12 : }
     351             : 
     352             : 
     353             : 
     354             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10