LCOV - code coverage report
Current view: top level - libreoffice/xmloff/source/style - undlihdl.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 47 113 41.6 %
Date: 2012-12-27 Functions: 11 12 91.7 %
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 <undlihdl.hxx>
      21             : #include <xmloff/xmltoken.hxx>
      22             : #include <xmloff/xmluconv.hxx>
      23             : #include <rtl/ustrbuf.hxx>
      24             : 
      25             : 
      26             : #include <com/sun/star/uno/Any.hxx>
      27             : #include <com/sun/star/awt/FontUnderline.hpp>
      28             : 
      29             : using ::rtl::OUString;
      30             : using ::rtl::OUStringBuffer;
      31             : 
      32             : using namespace ::com::sun::star;
      33             : using namespace ::com::sun::star::awt;
      34             : using namespace ::xmloff::token;
      35             : 
      36             : SvXMLEnumMapEntry const pXML_UnderlineType_Enum[] =
      37             : {
      38             :     { XML_NONE,                         awt::FontUnderline::NONE },
      39             :     { XML_SINGLE,               awt::FontUnderline::SINGLE },
      40             :     { XML_DOUBLE,                       awt::FontUnderline::DOUBLE },
      41             :     { XML_SINGLE,               awt::FontUnderline::DOTTED },
      42             :     { XML_SINGLE,               awt::FontUnderline::DASH },
      43             :     { XML_SINGLE,               awt::FontUnderline::LONGDASH },
      44             :     { XML_SINGLE,               awt::FontUnderline::DASHDOT },
      45             :     { XML_SINGLE,               awt::FontUnderline::DASHDOTDOT },
      46             :     { XML_SINGLE,               awt::FontUnderline::WAVE },
      47             :     { XML_SINGLE,               awt::FontUnderline::BOLD },
      48             :     { XML_SINGLE,               awt::FontUnderline::BOLDDOTTED },
      49             :     { XML_SINGLE,               awt::FontUnderline::BOLDDASH },
      50             :     { XML_SINGLE,               awt::FontUnderline::BOLDLONGDASH },
      51             :     { XML_SINGLE,               awt::FontUnderline::BOLDDASHDOT },
      52             :     { XML_SINGLE,           awt::FontUnderline::BOLDDASHDOTDOT },
      53             :     { XML_SINGLE,               awt::FontUnderline::BOLDWAVE },
      54             :     { XML_DOUBLE,                       awt::FontUnderline::DOUBLEWAVE },
      55             :     { XML_SINGLE,               awt::FontUnderline::SMALLWAVE },
      56             :     { XML_TOKEN_INVALID,                0 }
      57             : };
      58             : 
      59             : SvXMLEnumMapEntry const pXML_UnderlineStyle_Enum[] =
      60             : {
      61             :     { XML_NONE,                         awt::FontUnderline::NONE },
      62             :     { XML_SOLID,                        awt::FontUnderline::SINGLE },
      63             :     { XML_SOLID,                        awt::FontUnderline::DOUBLE },
      64             :     { XML_DOTTED,               awt::FontUnderline::DOTTED },
      65             :     { XML_DASH,             awt::FontUnderline::DASH },
      66             :     { XML_LONG_DASH,            awt::FontUnderline::LONGDASH },
      67             :     { XML_DOT_DASH,         awt::FontUnderline::DASHDOT },
      68             :     { XML_DOT_DOT_DASH,     awt::FontUnderline::DASHDOTDOT },
      69             :     { XML_WAVE,             awt::FontUnderline::WAVE },
      70             :     { XML_SOLID,                        awt::FontUnderline::BOLD },
      71             :     { XML_DOTTED,               awt::FontUnderline::BOLDDOTTED },
      72             :     { XML_DASH,             awt::FontUnderline::BOLDDASH },
      73             :     { XML_LONG_DASH,            awt::FontUnderline::BOLDLONGDASH },
      74             :     { XML_DOT_DASH,         awt::FontUnderline::BOLDDASHDOT },
      75             :     { XML_DOT_DOT_DASH,         awt::FontUnderline::BOLDDASHDOTDOT },
      76             :     { XML_WAVE,             awt::FontUnderline::BOLDWAVE },
      77             :     { XML_WAVE,                 awt::FontUnderline::DOUBLEWAVE },
      78             :     { XML_SMALL_WAVE,           awt::FontUnderline::SMALLWAVE },
      79             :     { XML_TOKEN_INVALID,                0 }
      80             : };
      81             : 
      82             : SvXMLEnumMapEntry const pXML_UnderlineWidth_Enum[] =
      83             : {
      84             :     { XML_AUTO,                         awt::FontUnderline::NONE },
      85             :     { XML_AUTO,                         awt::FontUnderline::SINGLE },
      86             :     { XML_AUTO,                         awt::FontUnderline::DOUBLE },
      87             :     { XML_AUTO,                         awt::FontUnderline::DOTTED },
      88             :     { XML_AUTO,                         awt::FontUnderline::DASH },
      89             :     { XML_AUTO,                         awt::FontUnderline::LONGDASH },
      90             :     { XML_AUTO,                         awt::FontUnderline::DASHDOT },
      91             :     { XML_AUTO,                         awt::FontUnderline::DASHDOTDOT },
      92             :     { XML_AUTO,                         awt::FontUnderline::WAVE },
      93             :     { XML_BOLD,             awt::FontUnderline::BOLD },
      94             :     { XML_BOLD,             awt::FontUnderline::BOLDDOTTED },
      95             :     { XML_BOLD,             awt::FontUnderline::BOLDDASH },
      96             :     { XML_BOLD,             awt::FontUnderline::BOLDLONGDASH },
      97             :     { XML_BOLD,             awt::FontUnderline::BOLDDASHDOT },
      98             :     { XML_BOLD,                 awt::FontUnderline::BOLDDASHDOTDOT },
      99             :     { XML_BOLD,             awt::FontUnderline::BOLDWAVE },
     100             :     { XML_AUTO,                         awt::FontUnderline::DOUBLEWAVE },
     101             :     { XML_THIN,                         awt::FontUnderline::NONE },
     102             :     { XML_MEDIUM,                       awt::FontUnderline::NONE },
     103             :     { XML_THICK,                        awt::FontUnderline::BOLD},
     104             :     { XML_TOKEN_INVALID,                0 }
     105             : };
     106             : 
     107             : 
     108             : 
     109             : ///////////////////////////////////////////////////////////////////////////////
     110             : //
     111             : // class XMLUnderlineTypePropHdl
     112             : //
     113             : 
     114        1932 : XMLUnderlineTypePropHdl::~XMLUnderlineTypePropHdl()
     115             : {
     116             :     // nothing to do
     117        1932 : }
     118             : 
     119           0 : sal_Bool XMLUnderlineTypePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
     120             : {
     121             :     sal_uInt16 eNewUnderline;
     122             :     sal_Bool bRet = SvXMLUnitConverter::convertEnum(
     123           0 :         eNewUnderline, rStrImpValue, pXML_UnderlineType_Enum );
     124           0 :     if( bRet )
     125             :     {
     126             :         // multi property: style and width might be set already.
     127             :         // If the old value is NONE, the new is used unchanged.
     128           0 :         sal_Int16 eUnderline = sal_Int16();
     129           0 :         if( (rValue >>= eUnderline) && awt::FontUnderline::NONE!=eUnderline )
     130             :         {
     131           0 :             switch( eNewUnderline )
     132             :             {
     133             :             case awt::FontUnderline::NONE:
     134             :             case awt::FontUnderline::SINGLE:
     135             :                 // keep existing line style
     136           0 :                 eNewUnderline = eUnderline;
     137           0 :                 break;
     138             :             case awt::FontUnderline::DOUBLE:
     139             :                 // A double line style has priority over a bold line style,
     140             :                 // but not over the line style itself.
     141           0 :                 switch( eUnderline )
     142             :                 {
     143             :                 case awt::FontUnderline::SINGLE:
     144             :                 case awt::FontUnderline::BOLD:
     145           0 :                     break;
     146             :                 case awt::FontUnderline::WAVE:
     147             :                 case awt::FontUnderline::BOLDWAVE:
     148           0 :                     eNewUnderline = awt::FontUnderline::DOUBLEWAVE;
     149           0 :                     break;
     150             :                 default:
     151             :                     // If a double line style is not supported for the existing
     152             :                     // value, keep the new one
     153           0 :                     eNewUnderline = eUnderline;
     154           0 :                     break;
     155             :                 }
     156           0 :                 break;
     157             :             default:
     158             :                 OSL_ENSURE( bRet, "unexpected line type value" );
     159           0 :                 break;
     160             :             }
     161           0 :             if( eNewUnderline != eUnderline )
     162           0 :                 rValue <<= (sal_Int16)eNewUnderline;
     163             :         }
     164             :         else
     165             :         {
     166           0 :             rValue <<= (sal_Int16)eNewUnderline;
     167             :         }
     168             :     }
     169             : 
     170           0 :     return bRet;
     171             : }
     172             : 
     173           2 : sal_Bool XMLUnderlineTypePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
     174             : {
     175           2 :     sal_Bool bRet = sal_False;
     176           2 :     sal_Int16 nValue = sal_Int16();
     177           2 :     OUStringBuffer aOut;
     178             : 
     179           2 :     if( (rValue >>= nValue) &&
     180             :         (awt::FontUnderline::DOUBLE == nValue ||
     181             :          awt::FontUnderline::DOUBLEWAVE == nValue) )
     182             :     {
     183             :         bRet = SvXMLUnitConverter::convertEnum(
     184           0 :             aOut, (sal_uInt16)nValue, pXML_UnderlineType_Enum );
     185           0 :         if( bRet )
     186           0 :             rStrExpValue = aOut.makeStringAndClear();
     187             :     }
     188             : 
     189           2 :     return bRet;
     190             : }
     191             : 
     192             : ///////////////////////////////////////////////////////////////////////////////
     193             : //
     194             : // class XMLUnderlineStylePropHdl
     195             : //
     196             : 
     197        1932 : XMLUnderlineStylePropHdl::~XMLUnderlineStylePropHdl()
     198             : {
     199             :     // nothing to do
     200        1932 : }
     201             : 
     202          40 : sal_Bool XMLUnderlineStylePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
     203             : {
     204             :     sal_uInt16 eNewUnderline;
     205             :     sal_Bool bRet = SvXMLUnitConverter::convertEnum(
     206          40 :         eNewUnderline, rStrImpValue, pXML_UnderlineStyle_Enum );
     207          40 :     if( bRet )
     208             :     {
     209             :         // multi property: style and width might be set already.
     210             :         // If the old value is NONE, the new is used unchanged.
     211          40 :         sal_Int16 eUnderline = sal_Int16();
     212          40 :         if( (rValue >>= eUnderline) && awt::FontUnderline::NONE!=eUnderline )
     213             :         {
     214           0 :             switch( eNewUnderline )
     215             :             {
     216             :             case awt::FontUnderline::NONE:
     217             :             case awt::FontUnderline::SINGLE:
     218             :                 // keep double or bold line style
     219           0 :                 eNewUnderline = eUnderline;
     220             :             case awt::FontUnderline::DOTTED:
     221             :                 // The line style has priority over a double type.
     222           0 :                 if( awt::FontUnderline::BOLD == eUnderline )
     223           0 :                     eNewUnderline = awt::FontUnderline::BOLDDOTTED;
     224           0 :                 break;
     225             :             case awt::FontUnderline::DASH:
     226           0 :                 if( awt::FontUnderline::BOLD == eUnderline )
     227           0 :                     eNewUnderline = awt::FontUnderline::BOLDDASH;
     228           0 :                 break;
     229             :             case awt::FontUnderline::LONGDASH:
     230           0 :                 if( awt::FontUnderline::BOLD == eUnderline )
     231           0 :                     eNewUnderline = awt::FontUnderline::BOLDLONGDASH;
     232           0 :                 break;
     233             :             case awt::FontUnderline::DASHDOT:
     234           0 :                 if( awt::FontUnderline::BOLD == eUnderline )
     235           0 :                     eNewUnderline = awt::FontUnderline::BOLDDASHDOT;
     236           0 :                 break;
     237             :             case awt::FontUnderline::DASHDOTDOT:
     238           0 :                 if( awt::FontUnderline::BOLD == eUnderline )
     239           0 :                     eNewUnderline = awt::FontUnderline::BOLDDASHDOTDOT;
     240           0 :                 break;
     241             :             case awt::FontUnderline::WAVE:
     242           0 :                 if( awt::FontUnderline::BOLD == eUnderline )
     243           0 :                     eNewUnderline = awt::FontUnderline::BOLDWAVE;
     244           0 :                 break;
     245             :             case awt::FontUnderline::SMALLWAVE:
     246             :                 // SMALLWAVE is not used
     247             :             default:
     248             :                 OSL_ENSURE( bRet, "unexpected line style value" );
     249           0 :                 break;
     250             :             }
     251           0 :             if( eNewUnderline != eUnderline )
     252           0 :                 rValue <<= (sal_Int16)eNewUnderline;
     253             :         }
     254             :         else
     255             :         {
     256          40 :             rValue <<= (sal_Int16)eNewUnderline;
     257             :         }
     258             :     }
     259             : 
     260          40 :     return bRet;
     261             : }
     262             : 
     263           2 : sal_Bool XMLUnderlineStylePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
     264             : {
     265           2 :     sal_Bool bRet = sal_False;
     266           2 :     sal_Int16 nValue = sal_Int16();
     267           2 :     OUStringBuffer aOut;
     268             : 
     269           2 :     if( rValue >>= nValue )
     270             :     {
     271             :         bRet = SvXMLUnitConverter::convertEnum(
     272           2 :             aOut, (sal_uInt16)nValue, pXML_UnderlineStyle_Enum );
     273           2 :         if( bRet )
     274           2 :             rStrExpValue = aOut.makeStringAndClear();
     275             :     }
     276             : 
     277           2 :     return bRet;
     278             : }
     279             : 
     280             : ///////////////////////////////////////////////////////////////////////////////
     281             : //
     282             : // class XMLUnderlineWidthPropHdl
     283             : //
     284             : 
     285        1932 : XMLUnderlineWidthPropHdl::~XMLUnderlineWidthPropHdl()
     286             : {
     287             :     // nothing to do
     288        1932 : }
     289             : 
     290          26 : sal_Bool XMLUnderlineWidthPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
     291             : {
     292             :     sal_uInt16 eNewUnderline;
     293             :     sal_Bool bRet = SvXMLUnitConverter::convertEnum(
     294          26 :         eNewUnderline, rStrImpValue, pXML_UnderlineWidth_Enum );
     295          26 :     if( bRet )
     296             :     {
     297             :         // multi property: style and width might be set already.
     298             :         // If the old value is NONE, the new is used unchanged.
     299          26 :         sal_Int16 eUnderline = sal_Int16();
     300          26 :         if( (rValue >>= eUnderline) && awt::FontUnderline::NONE!=eUnderline )
     301             :         {
     302          26 :             switch( eNewUnderline )
     303             :             {
     304             :             case awt::FontUnderline::NONE:
     305             :                 // keep existing line style
     306          26 :                 eNewUnderline = eUnderline;
     307          26 :                 break;
     308             :             case awt::FontUnderline::BOLD:
     309             :                 // A double line style has priority over a bold line style,
     310             :                 // but not over the line style itself.
     311           0 :                 switch( eUnderline )
     312             :                 {
     313             :                 case awt::FontUnderline::SINGLE:
     314           0 :                     break;
     315             :                 case awt::FontUnderline::DOTTED:
     316           0 :                     eNewUnderline = awt::FontUnderline::BOLDDOTTED;
     317           0 :                     break;
     318             :                 case awt::FontUnderline::DASH:
     319           0 :                     eNewUnderline = awt::FontUnderline::BOLDDASH;
     320           0 :                     break;
     321             :                 case awt::FontUnderline::LONGDASH:
     322           0 :                     eNewUnderline = awt::FontUnderline::BOLDLONGDASH;
     323           0 :                     break;
     324             :                 case awt::FontUnderline::DASHDOT:
     325           0 :                     eNewUnderline = awt::FontUnderline::BOLDDASHDOT;
     326           0 :                     break;
     327             :                 case awt::FontUnderline::DASHDOTDOT:
     328           0 :                     eNewUnderline = awt::FontUnderline::BOLDDASHDOTDOT;
     329           0 :                     break;
     330             :                 case awt::FontUnderline::WAVE:
     331           0 :                     eNewUnderline = awt::FontUnderline::BOLDWAVE;
     332           0 :                     break;
     333             :                 default:
     334             :                     // a doube line style overwrites a bold one
     335           0 :                     eNewUnderline = eUnderline;
     336           0 :                     break;
     337             :                 }
     338           0 :                 break;
     339             :             default:
     340             :                 OSL_ENSURE( bRet, "unexpected line width value" );
     341           0 :                 break;
     342             :             }
     343          26 :             if( eNewUnderline != eUnderline )
     344           0 :                 rValue <<= (sal_Int16)eNewUnderline;
     345             :         }
     346             :         else
     347             :         {
     348           0 :             rValue <<= (sal_Int16)eNewUnderline;
     349             :         }
     350             :     }
     351             : 
     352          26 :     return bRet;
     353             : }
     354             : 
     355           2 : sal_Bool XMLUnderlineWidthPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
     356             : {
     357           2 :     sal_Bool bRet = sal_False;
     358           2 :     sal_Int16 nValue = sal_Int16();
     359           2 :     OUStringBuffer aOut;
     360             : 
     361           2 :     if( (rValue >>= nValue) && (awt::FontUnderline::NONE != nValue) )
     362             :     {
     363             :         bRet = SvXMLUnitConverter::convertEnum(
     364           2 :             aOut, (sal_uInt16)nValue, pXML_UnderlineWidth_Enum );
     365           2 :         if( bRet )
     366           2 :             rStrExpValue = aOut.makeStringAndClear();
     367             :     }
     368             : 
     369           2 :     return bRet;
     370             : }
     371             : 
     372             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10