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

Generated by: LCOV version 1.11