LCOV - code coverage report
Current view: top level - xmloff/source/style - cdouthdl.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 60 96 62.5 %
Date: 2014-11-03 Functions: 14 16 87.5 %
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 <cdouthdl.hxx>
      21             : #include <xmloff/xmltoken.hxx>
      22             : #include <xmloff/xmluconv.hxx>
      23             : #include <rtl/ustrbuf.hxx>
      24             : 
      25             : #include <com/sun/star/awt/FontStrikeout.hpp>
      26             : #include <com/sun/star/uno/Any.hxx>
      27             : 
      28             : using namespace ::com::sun::star;
      29             : using namespace ::com::sun::star::awt;
      30             : using namespace ::xmloff::token;
      31             : 
      32             : SvXMLEnumMapEntry pXML_CrossedoutType_Enum[] =
      33             : {
      34             :     { XML_NONE,                 awt::FontStrikeout::NONE },
      35             :     { XML_SINGLE,   awt::FontStrikeout::SINGLE },
      36             :     { XML_DOUBLE,               awt::FontStrikeout::DOUBLE },
      37             :     { XML_SINGLE,    awt::FontStrikeout::BOLD },
      38             :     { XML_SINGLE,    awt::FontStrikeout::SLASH },
      39             :     { XML_SINGLE,    awt::FontStrikeout::X },
      40             :     { XML_TOKEN_INVALID,                0 }
      41             : };
      42             : 
      43             : SvXMLEnumMapEntry pXML_CrossedoutStyle_Enum[] =
      44             : {
      45             :     { XML_NONE,                         awt::FontStrikeout::NONE },
      46             :     { XML_SOLID,                        awt::FontStrikeout::SINGLE },
      47             :     { XML_SOLID,                        awt::FontStrikeout::DOUBLE },
      48             :     { XML_SOLID,                        awt::FontStrikeout::BOLD },
      49             :     { XML_SOLID,                        awt::FontStrikeout::SLASH },
      50             :     { XML_SOLID,                        awt::FontStrikeout::X },
      51             :     { XML_DOTTED,               awt::FontStrikeout::SINGLE },
      52             :     { XML_DASH,             awt::FontStrikeout::SINGLE },
      53             :     { XML_LONG_DASH,            awt::FontStrikeout::SINGLE },
      54             :     { XML_DOT_DASH,         awt::FontStrikeout::SINGLE },
      55             :     { XML_DOT_DOT_DASH,     awt::FontStrikeout::SINGLE },
      56             :     { XML_WAVE,             awt::FontStrikeout::SINGLE },
      57             :     { XML_TOKEN_INVALID,                0 }
      58             : };
      59             : 
      60             : SvXMLEnumMapEntry pXML_CrossedoutWidth_Enum[] =
      61             : {
      62             :     { XML_AUTO,                 awt::FontStrikeout::NONE },
      63             :     { XML_AUTO,                 awt::FontStrikeout::SINGLE },
      64             :     { XML_AUTO,                 awt::FontStrikeout::DOUBLE },
      65             :     { XML_BOLD,     awt::FontStrikeout::BOLD },
      66             :     { XML_AUTO,                 awt::FontStrikeout::SLASH },
      67             :     { XML_AUTO,                 awt::FontStrikeout::X },
      68             :     { XML_THIN,                 awt::FontStrikeout::NONE },
      69             :     { XML_MEDIUM,               awt::FontStrikeout::NONE },
      70             :     { XML_THICK,                awt::FontStrikeout::NONE },
      71             :     { XML_TOKEN_INVALID,                0 }
      72             : };
      73             : 
      74             : // class XMLCrossedOutTypePropHdl
      75             : 
      76       32920 : XMLCrossedOutTypePropHdl::~XMLCrossedOutTypePropHdl()
      77             : {
      78             :     // nothing to do
      79       32920 : }
      80             : 
      81         274 : bool XMLCrossedOutTypePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
      82             : {
      83             :     sal_uInt16 eNewStrikeout;
      84             :     bool bRet = SvXMLUnitConverter::convertEnum(
      85         274 :         eNewStrikeout, rStrImpValue, pXML_CrossedoutType_Enum );
      86         274 :     if( bRet )
      87             :     {
      88             :         // multi property: style and width might be set already.
      89             :         // If the old value is NONE, the new is used unchanged.
      90         274 :         sal_Int16 eStrikeout = sal_Int16();
      91         274 :         if( (rValue >>= eStrikeout) && awt::FontStrikeout::NONE!=eStrikeout )
      92             :         {
      93          24 :             switch( eNewStrikeout )
      94             :             {
      95             :             case awt::FontStrikeout::NONE:
      96             :             case awt::FontStrikeout::SINGLE:
      97             :                 // keep existing line style
      98          16 :                 eNewStrikeout = eStrikeout;
      99          16 :                 break;
     100             :             case awt::FontStrikeout::DOUBLE:
     101             :                 // A double line style has priority over a solid or a bold
     102             :                 // line style,
     103             :                 // but not about any other line style
     104           8 :                 switch( eStrikeout )
     105             :                 {
     106             :                 case awt::FontStrikeout::SINGLE:
     107             :                 case awt::FontStrikeout::BOLD:
     108           8 :                     break;
     109             :                 default:
     110             :                     // If a double line style is not supported for the existing
     111             :                     // value, keep the new one
     112           0 :                     eNewStrikeout = eStrikeout;
     113           0 :                     break;
     114             :                 }
     115           8 :                 break;
     116             :             default:
     117             :                 OSL_ENSURE( bRet, "unexpected line type value" );
     118           0 :                 break;
     119             :             }
     120          24 :             if( eNewStrikeout != eStrikeout )
     121           8 :                 rValue <<= (sal_Int16)eNewStrikeout;
     122             :         }
     123             :         else
     124             :         {
     125         250 :             rValue <<= (sal_Int16)eNewStrikeout;
     126             :         }
     127             :     }
     128             : 
     129         274 :     return bRet;
     130             : }
     131             : 
     132          72 : bool XMLCrossedOutTypePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
     133             : {
     134          72 :     bool bRet = false;
     135          72 :     sal_Int16 nValue = sal_Int16();
     136          72 :     OUStringBuffer aOut;
     137             : 
     138          72 :     if (rValue >>= nValue)
     139             :     {
     140             :         bRet = SvXMLUnitConverter::convertEnum(
     141          72 :             aOut, (sal_uInt16)nValue, pXML_CrossedoutType_Enum );
     142          72 :         if( bRet )
     143          72 :             rStrExpValue = aOut.makeStringAndClear();
     144             :     }
     145             : 
     146          72 :     return bRet;
     147             : }
     148             : 
     149             : // class XMLCrossedOutStylePropHdl
     150             : 
     151       32920 : XMLCrossedOutStylePropHdl::~XMLCrossedOutStylePropHdl()
     152             : {
     153             :     // nothing to do
     154       32920 : }
     155             : 
     156         474 : bool XMLCrossedOutStylePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
     157             : {
     158             :     sal_uInt16 eNewStrikeout;
     159             :     bool bRet = SvXMLUnitConverter::convertEnum(
     160         474 :         eNewStrikeout, rStrImpValue, pXML_CrossedoutStyle_Enum );
     161         474 :     if( bRet )
     162             :     {
     163             :         // multi property: style and width might be set already.
     164             :         // If the old value is NONE, the new is used unchanged.
     165         474 :         sal_Int16 eStrikeout = sal_Int16();
     166         474 :         if( (rValue >>= eStrikeout) && awt::FontStrikeout::NONE!=eStrikeout )
     167             :         {
     168             :             // one NONE a SINGLE are possible new values. For both, the
     169             :             // existing value is kept.
     170             :         }
     171             :         else
     172             :         {
     173         474 :             rValue <<= (sal_Int16)eNewStrikeout;
     174             :         }
     175             :     }
     176             : 
     177         474 :     return bRet;
     178             : }
     179             : 
     180          70 : bool XMLCrossedOutStylePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
     181             : {
     182          70 :     bool bRet = false;
     183          70 :     sal_Int16 nValue = sal_Int16();
     184          70 :     OUStringBuffer aOut;
     185             : 
     186          70 :     if( rValue >>= nValue )
     187             :     {
     188             :         bRet = SvXMLUnitConverter::convertEnum(
     189          70 :             aOut, (sal_uInt16)nValue, pXML_CrossedoutStyle_Enum );
     190          70 :         if( bRet )
     191          70 :             rStrExpValue = aOut.makeStringAndClear();
     192             :     }
     193             : 
     194          70 :     return bRet;
     195             : }
     196             : 
     197             : // class XMLCrossedOutWidthPropHdl
     198             : 
     199       32920 : XMLCrossedOutWidthPropHdl::~XMLCrossedOutWidthPropHdl()
     200             : {
     201             :     // nothing to do
     202       32920 : }
     203             : 
     204           0 : bool XMLCrossedOutWidthPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
     205             : {
     206             :     sal_uInt16 eNewStrikeout;
     207             :     bool bRet = SvXMLUnitConverter::convertEnum(
     208           0 :         eNewStrikeout, rStrImpValue, pXML_CrossedoutWidth_Enum );
     209           0 :     if( bRet )
     210             :     {
     211             :         // multi property: style and width might be set already.
     212             :         // If the old value is NONE, the new is used unchanged.
     213           0 :         sal_Int16 eStrikeout = sal_Int16();
     214           0 :         if( (rValue >>= eStrikeout) && awt::FontStrikeout::NONE!=eStrikeout )
     215             :         {
     216           0 :             switch( eNewStrikeout )
     217             :             {
     218             :             case awt::FontStrikeout::NONE:
     219             :                 // keep existing line style
     220           0 :                 eNewStrikeout = eStrikeout;
     221           0 :                 break;
     222             :             case awt::FontStrikeout::BOLD:
     223           0 :                 switch( eStrikeout )
     224             :                 {
     225             :                 case awt::FontStrikeout::SINGLE:
     226           0 :                     break;
     227             :                 default:
     228             :                     // If a double line style is not supported for the existing
     229             :                     // value, keep the new one
     230           0 :                     eNewStrikeout = eStrikeout;
     231           0 :                     break;
     232             :                 }
     233           0 :                 break;
     234             :             default:
     235             :                 OSL_ENSURE( bRet, "unexpected line type value" );
     236           0 :                 break;
     237             :             }
     238           0 :             if( eNewStrikeout != eStrikeout )
     239           0 :                 rValue <<= (sal_Int16)eNewStrikeout;
     240             :         }
     241             :         else
     242             :         {
     243           0 :             rValue <<= (sal_Int16)eNewStrikeout;
     244             :         }
     245             :     }
     246             : 
     247           0 :     return bRet;
     248             : }
     249             : 
     250          70 : bool XMLCrossedOutWidthPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
     251             : {
     252          70 :     bool bRet = false;
     253          70 :     sal_Int16 nValue = sal_Int16();
     254          70 :     OUStringBuffer aOut;
     255             : 
     256          70 :     if( (rValue >>= nValue) && (awt::FontStrikeout::BOLD == nValue) )
     257             :     {
     258             :         bRet = SvXMLUnitConverter::convertEnum(
     259           0 :             aOut, (sal_uInt16)nValue, pXML_CrossedoutWidth_Enum );
     260           0 :         if( bRet )
     261           0 :             rStrExpValue = aOut.makeStringAndClear();
     262             :     }
     263             : 
     264          70 :     return bRet;
     265             : }
     266             : 
     267             : // class XMLCrossedOutTextPropHdl
     268             : 
     269       32920 : XMLCrossedOutTextPropHdl::~XMLCrossedOutTextPropHdl()
     270             : {
     271             :     // nothing to do
     272       32920 : }
     273             : 
     274           0 : bool XMLCrossedOutTextPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
     275             : {
     276           0 :     bool bRet = false;
     277             : 
     278           0 :     if( !rStrImpValue.isEmpty() )
     279             :     {
     280           0 :         sal_Int16 eStrikeout = ('/' == rStrImpValue[0]
     281             :                                         ? awt::FontStrikeout::SLASH
     282           0 :                                         : awt::FontStrikeout::X);
     283           0 :         rValue <<= (sal_Int16)eStrikeout;
     284           0 :         bRet = true;
     285             :     }
     286             : 
     287           0 :     return bRet;
     288             : }
     289             : 
     290          70 : bool XMLCrossedOutTextPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
     291             : {
     292          70 :     bool bRet = false;
     293          70 :     sal_Int16 nValue = sal_Int16();
     294             : 
     295         140 :     if( (rValue >>= nValue) &&
     296         140 :         (awt::FontStrikeout::SLASH == nValue || awt::FontStrikeout::X == nValue) )
     297             :     {
     298           0 :         rStrExpValue = OUString(
     299           0 :             static_cast< sal_Unicode>( awt::FontStrikeout::SLASH == nValue ? '/'
     300           0 :                                                                       : 'X' ) );
     301           0 :         bRet = true;
     302             :     }
     303             : 
     304          70 :     return bRet;
     305             : }
     306             : 
     307             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10