LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/xmloff/source/style - csmaphdl.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 18 38 47.4 %
Date: 2013-07-09 Functions: 6 8 75.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 <csmaphdl.hxx>
      21             : #include <xmloff/xmltoken.hxx>
      22             : #include <xmloff/xmluconv.hxx>
      23             : #include <rtl/ustrbuf.hxx>
      24             : #include <com/sun/star/style/CaseMap.hpp>
      25             : #include <com/sun/star/uno/Any.hxx>
      26             : 
      27             : 
      28             : using namespace ::com::sun::star;
      29             : using namespace ::xmloff::token;
      30             : 
      31             : static SvXMLEnumMapEntry pXML_Casemap_Enum[] =
      32             : {
      33             :     { XML_NONE,                 style::CaseMap::NONE },
      34             :     { XML_CASEMAP_LOWERCASE,    style::CaseMap::LOWERCASE },
      35             :     { XML_CASEMAP_UPPERCASE,    style::CaseMap::UPPERCASE },
      36             :     { XML_CASEMAP_CAPITALIZE,   style::CaseMap::TITLE },
      37             :     { XML_TOKEN_INVALID,        0 }
      38             : };
      39             : 
      40             : ///////////////////////////////////////////////////////////////////////////////
      41             : //
      42             : // class XMLPosturePropHdl
      43             : //
      44             : 
      45        3862 : XMLCaseMapPropHdl::~XMLCaseMapPropHdl()
      46             : {
      47             :     // nothing to do
      48        3862 : }
      49             : 
      50           8 : sal_Bool XMLCaseMapPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
      51             : {
      52             :     sal_uInt16 nVal;
      53             :     sal_Bool bRet = SvXMLUnitConverter::convertEnum(
      54           8 :         nVal, rStrImpValue, pXML_Casemap_Enum );
      55           8 :     if( ( bRet ) )
      56           8 :         rValue <<= nVal;
      57             : 
      58           8 :     return bRet;
      59             : }
      60             : 
      61           0 : sal_Bool XMLCaseMapPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
      62             : {
      63           0 :     sal_Bool bRet = sal_False;
      64           0 :     sal_uInt16 nValue = sal_uInt16();
      65           0 :     OUStringBuffer aOut;
      66             : 
      67           0 :     if( rValue >>= nValue )
      68             :     {
      69             :         bRet = SvXMLUnitConverter::convertEnum(
      70           0 :             aOut, nValue, pXML_Casemap_Enum );
      71           0 :         if( bRet )
      72           0 :             rStrExpValue = aOut.makeStringAndClear();
      73             :     }
      74             : 
      75           0 :     return bRet;
      76             : }
      77             : 
      78             : ///////////////////////////////////////////////////////////////////////////////
      79             : //
      80             : // class XMLCaseMapVariantHdl
      81             : //
      82             : 
      83        3862 : XMLCaseMapVariantHdl::~XMLCaseMapVariantHdl()
      84             : {
      85             :     // nothing to do
      86        3862 : }
      87             : 
      88          11 : sal_Bool XMLCaseMapVariantHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
      89             : {
      90          11 :     sal_Bool bRet = sal_False;
      91             : 
      92          11 :     if( IsXMLToken( rStrImpValue, XML_CASEMAP_SMALL_CAPS ) )
      93             :     {
      94           3 :         rValue <<= (sal_Int16)style::CaseMap::SMALLCAPS;
      95           3 :         bRet = sal_True;
      96             :     }
      97           8 :     else if( IsXMLToken( rStrImpValue, XML_CASEMAP_NORMAL ) )
      98             :     {
      99           8 :         rValue <<= (sal_Int16)style::CaseMap::NONE;
     100           8 :         bRet = sal_True;
     101             :     }
     102             : 
     103          11 :     return bRet;
     104             : }
     105             : 
     106           0 : sal_Bool XMLCaseMapVariantHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
     107             : {
     108           0 :     sal_uInt16 nValue = sal_uInt16();
     109           0 :     OUStringBuffer aOut;
     110             : 
     111           0 :     if( rValue >>= nValue )
     112             :     {
     113           0 :         switch( nValue )
     114             :         {
     115             :         case style::CaseMap::NONE:
     116           0 :             aOut.append( GetXMLToken(XML_CASEMAP_NORMAL) );
     117           0 :             break;
     118             :         case style::CaseMap::SMALLCAPS:
     119           0 :             aOut.append( GetXMLToken(XML_CASEMAP_SMALL_CAPS) );
     120           0 :             break;
     121             :         }
     122             :     }
     123             : 
     124           0 :     rStrExpValue = aOut.makeStringAndClear();
     125           0 :     return !rStrExpValue.isEmpty();
     126             : }
     127             : 
     128             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10