LCOV - code coverage report
Current view: top level - xmloff/source/style - breakhdl.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 39 66 59.1 %
Date: 2014-11-03 Functions: 8 8 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 <breakhdl.hxx>
      21             : #include <xmloff/xmltoken.hxx>
      22             : #include <xmloff/xmluconv.hxx>
      23             : #include <rtl/ustrbuf.hxx>
      24             : #include <com/sun/star/style/BreakType.hpp>
      25             : #include <com/sun/star/uno/Any.hxx>
      26             : 
      27             : using namespace ::com::sun::star;
      28             : using namespace ::xmloff::token;
      29             : 
      30             : SvXMLEnumMapEntry pXML_BreakTypes[] =
      31             : {
      32             :     { XML_AUTO,         0 },
      33             :     { XML_COLUMN,       1 },
      34             :     { XML_PAGE,         2 },
      35             :     { XML_EVEN_PAGE,    2 },
      36             :     { XML_ODD_PAGE,     2 },
      37             :     { XML_TOKEN_INVALID, 0}
      38             : };
      39             : 
      40             : 
      41             : // class XMLFmtBreakBeforePropHdl
      42             : 
      43             : 
      44       23184 : XMLFmtBreakBeforePropHdl::~XMLFmtBreakBeforePropHdl()
      45             : {
      46             :     // Nothing to do
      47       23184 : }
      48             : 
      49          98 : bool XMLFmtBreakBeforePropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
      50             : {
      51             :     sal_uInt16 nEnum;
      52          98 :     bool bRet = SvXMLUnitConverter::convertEnum( nEnum, rStrImpValue, pXML_BreakTypes );
      53          98 :     if( bRet )
      54             :     {
      55             :         style::BreakType eBreak;
      56          98 :         switch ( nEnum )
      57             :         {
      58             :         case 0:
      59           2 :             eBreak = style::BreakType_NONE;
      60           2 :             break;
      61             :         case 1:
      62          22 :             eBreak = style::BreakType_COLUMN_BEFORE;
      63          22 :             break;
      64             :         default:
      65          74 :             eBreak = style::BreakType_PAGE_BEFORE;
      66          74 :             break;
      67             :         }
      68          98 :         rValue <<= eBreak;
      69             :     }
      70             : 
      71          98 :     return bRet;
      72             : }
      73             : 
      74           4 : bool XMLFmtBreakBeforePropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
      75             : {
      76             :     style::BreakType eBreak;
      77             : 
      78           4 :     if( !( rValue >>= eBreak ) )
      79             :     {
      80           0 :         sal_Int32 nValue = 0;
      81           0 :         if( !( rValue >>= nValue ) )
      82           0 :             return false;
      83             : 
      84           0 :         eBreak = (style::BreakType) nValue;
      85             :     }
      86             : 
      87           4 :     sal_uInt16 nEnum = 0;
      88           4 :     switch( eBreak )
      89             :     {
      90             :         case style::BreakType_COLUMN_BEFORE:
      91           0 :             nEnum = 1;
      92           0 :             break;
      93             :         case style::BreakType_PAGE_BEFORE:
      94           4 :             nEnum = 2;
      95           4 :             break;
      96             :         case style::BreakType_NONE:
      97           0 :             nEnum = 0;
      98           0 :             break;
      99             :         default:
     100           0 :             return false;
     101             :     }
     102             : 
     103           4 :     OUStringBuffer aOut;
     104           4 :     /* bool bOk = */ SvXMLUnitConverter::convertEnum( aOut, nEnum, pXML_BreakTypes );
     105           4 :     rStrExpValue = aOut.makeStringAndClear();
     106             : 
     107           4 :     return true;
     108             : }
     109             : 
     110             : 
     111             : // class XMLFmtBreakBeforePropHdl
     112             : 
     113             : 
     114       23184 : XMLFmtBreakAfterPropHdl::~XMLFmtBreakAfterPropHdl()
     115             : {
     116             :     // Nothing to do
     117       23184 : }
     118             : 
     119           2 : bool XMLFmtBreakAfterPropHdl::importXML( const OUString& rStrImpValue, uno::Any& rValue, const SvXMLUnitConverter& ) const
     120             : {
     121             :     sal_uInt16 nEnum;
     122           2 :     bool bRet = SvXMLUnitConverter::convertEnum( nEnum, rStrImpValue, pXML_BreakTypes );
     123           2 :     if( bRet )
     124             :     {
     125             :         style::BreakType eBreak;
     126           2 :         switch ( nEnum )
     127             :         {
     128             :         case 0:
     129           2 :             eBreak = style::BreakType_NONE;
     130           2 :             break;
     131             :         case 1:
     132           0 :             eBreak = style::BreakType_COLUMN_AFTER;
     133           0 :             break;
     134             :         default:
     135           0 :             eBreak = style::BreakType_PAGE_AFTER;
     136           0 :             break;
     137             :         }
     138           2 :         rValue <<= eBreak;
     139             :     }
     140             : 
     141           2 :     return bRet;
     142             : }
     143             : 
     144           4 : bool XMLFmtBreakAfterPropHdl::exportXML( OUString& rStrExpValue, const uno::Any& rValue, const SvXMLUnitConverter& ) const
     145             : {
     146             :     style::BreakType eBreak;
     147             : 
     148           4 :     if( !( rValue >>= eBreak ) )
     149             :     {
     150           0 :         sal_Int32 nValue = 0;
     151           0 :         if( !( rValue >>= nValue ) )
     152           0 :             return false;
     153             : 
     154           0 :         eBreak = (style::BreakType) nValue;
     155             :     }
     156             : 
     157           4 :     sal_uInt16 nEnum = 0;
     158           4 :     switch( eBreak )
     159             :     {
     160             :         case style::BreakType_COLUMN_AFTER:
     161           0 :             nEnum = 1;
     162           0 :             break;
     163             :         case style::BreakType_PAGE_AFTER:
     164           0 :             nEnum = 2;
     165           0 :             break;
     166             :         case style::BreakType_NONE:
     167           0 :             nEnum = 0;
     168           0 :             break;
     169             :         default:
     170           4 :             return false;
     171             :     }
     172             : 
     173           0 :     OUStringBuffer aOut;
     174           0 :     /* bool bOk = */ SvXMLUnitConverter::convertEnum( aOut, nEnum, pXML_BreakTypes );
     175           0 :     rStrExpValue = aOut.makeStringAndClear();
     176             : 
     177           0 :     return true;
     178             : }
     179             : 
     180             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10