LCOV - code coverage report
Current view: top level - libreoffice/xmloff/source/style - HatchStyle.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 55 83 66.3 %
Date: 2012-12-27 Functions: 5 6 83.3 %
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             : 
      21             : #include "xmloff/HatchStyle.hxx"
      22             : 
      23             : #include <com/sun/star/drawing/Hatch.hpp>
      24             : 
      25             : #include <sax/tools/converter.hxx>
      26             : 
      27             : #include <xmloff/nmspmap.hxx>
      28             : #include <xmloff/xmluconv.hxx>
      29             : #include "xmloff/xmlnmspe.hxx"
      30             : #include <xmloff/xmltoken.hxx>
      31             : #include <xmloff/xmlexp.hxx>
      32             : #include <xmloff/xmlimp.hxx>
      33             : #include <rtl/ustrbuf.hxx>
      34             : #include <rtl/ustring.hxx>
      35             : #include <tools/debug.hxx>
      36             : #include <xmloff/xmltkmap.hxx>
      37             : 
      38             : using namespace ::com::sun::star;
      39             : using ::rtl::OUString;
      40             : using ::rtl::OUStringBuffer;
      41             : 
      42             : using namespace ::xmloff::token;
      43             : 
      44             : enum SvXMLTokenMapAttrs
      45             : {
      46             :     XML_TOK_HATCH_NAME,
      47             :     XML_TOK_HATCH_DISPLAY_NAME,
      48             :     XML_TOK_HATCH_STYLE,
      49             :     XML_TOK_HATCH_COLOR,
      50             :     XML_TOK_HATCH_DISTANCE,
      51             :     XML_TOK_HATCH_ROTATION,
      52             :     XML_TOK_TABSTOP_END=XML_TOK_UNKNOWN
      53             : };
      54             : 
      55             : 
      56             : SvXMLEnumMapEntry const pXML_HatchStyle_Enum[] =
      57             : {
      58             :     { XML_HATCHSTYLE_SINGLE,    drawing::HatchStyle_SINGLE },
      59             :     { XML_HATCHSTYLE_DOUBLE,    drawing::HatchStyle_DOUBLE },
      60             :     { XML_HATCHSTYLE_TRIPLE,    drawing::HatchStyle_TRIPLE },
      61             :     { XML_TOKEN_INVALID, 0 }
      62             : };
      63             : 
      64             : 
      65             : //-------------------------------------------------------------
      66             : // Import
      67             : //-------------------------------------------------------------
      68             : 
      69           4 : XMLHatchStyleImport::XMLHatchStyleImport( SvXMLImport& rImp )
      70           4 :     : rImport(rImp)
      71             : {
      72           4 : }
      73             : 
      74           4 : XMLHatchStyleImport::~XMLHatchStyleImport()
      75             : {
      76           4 : }
      77             : 
      78           4 : sal_Bool XMLHatchStyleImport::importXML(
      79             :     const uno::Reference< xml::sax::XAttributeList >& xAttrList,
      80             :     uno::Any& rValue,
      81             :     OUString& rStrName )
      82             : {
      83           4 :     sal_Bool bRet = sal_False;
      84             : 
      85           4 :     sal_Bool bHasName  = sal_False;
      86           4 :     sal_Bool bHasStyle = sal_False;
      87           4 :     sal_Bool bHasColor = sal_False;
      88           4 :     sal_Bool bHasDist  = sal_False;
      89           4 :     OUString aDisplayName;
      90             : 
      91           4 :     drawing::Hatch aHatch;
      92           4 :     aHatch.Style = drawing::HatchStyle_SINGLE;
      93           4 :     aHatch.Color = 0;
      94           4 :     aHatch.Distance = 0;
      95           4 :     aHatch.Angle = 0;
      96             : 
      97             :     {
      98             :         static SvXMLTokenMapEntry aHatchAttrTokenMap[] =
      99             : {
     100             :     { XML_NAMESPACE_DRAW, XML_NAME, XML_TOK_HATCH_NAME },
     101             :     { XML_NAMESPACE_DRAW, XML_DISPLAY_NAME, XML_TOK_HATCH_DISPLAY_NAME },
     102             :     { XML_NAMESPACE_DRAW, XML_STYLE, XML_TOK_HATCH_STYLE },
     103             :     { XML_NAMESPACE_DRAW, XML_COLOR, XML_TOK_HATCH_COLOR },
     104             :     { XML_NAMESPACE_DRAW, XML_HATCH_DISTANCE, XML_TOK_HATCH_DISTANCE },
     105             :     { XML_NAMESPACE_DRAW, XML_ROTATION, XML_TOK_HATCH_ROTATION },
     106             :     XML_TOKEN_MAP_END
     107             : };
     108             : 
     109           4 :     SvXMLTokenMap aTokenMap( aHatchAttrTokenMap );
     110           4 :     SvXMLNamespaceMap rNamespaceMap = rImport.GetNamespaceMap();
     111           4 :     SvXMLUnitConverter& rUnitConverter = rImport.GetMM100UnitConverter();
     112             : 
     113           4 :     sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
     114          28 :     for( sal_Int16 i=0; i < nAttrCount; i++ )
     115             :     {
     116          24 :         const OUString& rFullAttrName = xAttrList->getNameByIndex( i );
     117          24 :         OUString aStrAttrName;
     118          24 :         sal_uInt16 nPrefix = rNamespaceMap.GetKeyByAttrName( rFullAttrName, &aStrAttrName );
     119          24 :         const OUString& rStrValue = xAttrList->getValueByIndex( i );
     120             : 
     121          24 :         switch( aTokenMap.Get( nPrefix, aStrAttrName ) )
     122             :         {
     123             :             case XML_TOK_HATCH_NAME:
     124             :                 {
     125           4 :                     rStrName = rStrValue;
     126           4 :                     bHasName = sal_True;
     127             :                 }
     128           4 :                 break;
     129             :             case XML_TOK_HATCH_DISPLAY_NAME:
     130           4 :                 aDisplayName = rStrValue;
     131           4 :                 break;
     132             :             case XML_TOK_HATCH_STYLE:
     133             :                 {
     134             :                     sal_uInt16 eValue;
     135           4 :                     bHasStyle = rUnitConverter.convertEnum( eValue, rStrValue, pXML_HatchStyle_Enum );
     136           4 :                     if( bHasStyle )
     137           4 :                         aHatch.Style = (drawing::HatchStyle) eValue;
     138             :                 }
     139           4 :                 break;
     140             :             case XML_TOK_HATCH_COLOR:
     141             :                 {
     142             :                     bHasColor = ::sax::Converter::convertColor(
     143           4 :                             aHatch.Color, rStrValue);
     144             :                 }
     145           4 :                 break;
     146             :             case XML_TOK_HATCH_DISTANCE:
     147             :                 bHasDist = rUnitConverter.convertMeasureToCore(
     148           4 :                         (sal_Int32&)aHatch.Distance, rStrValue );
     149           4 :                 break;
     150             :             case XML_TOK_HATCH_ROTATION:
     151             :                 {
     152             :                     sal_Int32 nValue;
     153           4 :                     ::sax::Converter::convertNumber(nValue, rStrValue, 0, 3600);
     154           4 :                     aHatch.Angle = sal_Int16( nValue );
     155             :                 }
     156           4 :                 break;
     157             : 
     158             :             default:
     159             :                 DBG_WARNING( "Unknown token at import hatch style" )
     160             :                 ;
     161             :         }
     162          24 :     }
     163             : 
     164           4 :     rValue <<= aHatch;
     165             : 
     166           4 :     if( !aDisplayName.isEmpty() )
     167             :     {
     168             :         rImport.AddStyleDisplayName( XML_STYLE_FAMILY_SD_HATCH_ID, rStrName,
     169           4 :                                      aDisplayName );
     170           4 :         rStrName = aDisplayName;
     171             :     }
     172             : 
     173           4 :     bRet = bHasName && bHasStyle && bHasColor && bHasDist;
     174             : 
     175             :     }
     176             : 
     177           4 :     return bRet;
     178             : }
     179             : 
     180             : 
     181             : //-------------------------------------------------------------
     182             : // Export
     183             : //-------------------------------------------------------------
     184             : 
     185           4 : XMLHatchStyleExport::XMLHatchStyleExport( SvXMLExport& rExp )
     186           4 :     : rExport(rExp)
     187             : {
     188           4 : }
     189             : 
     190           4 : XMLHatchStyleExport::~XMLHatchStyleExport()
     191             : {
     192           4 : }
     193             : 
     194           0 : sal_Bool XMLHatchStyleExport::exportXML(
     195             :     const OUString& rStrName,
     196             :     const uno::Any& rValue )
     197             : {
     198           0 :     sal_Bool bRet = sal_False;
     199           0 :     drawing::Hatch aHatch;
     200             : 
     201           0 :     if( !rStrName.isEmpty() )
     202             :     {
     203           0 :         if( rValue >>= aHatch )
     204             :         {
     205           0 :             OUString aStrValue;
     206           0 :             OUStringBuffer aOut;
     207             : 
     208             :             SvXMLUnitConverter& rUnitConverter =
     209           0 :                 rExport.GetMM100UnitConverter();
     210             : 
     211             :             // Style
     212           0 :             if( !rUnitConverter.convertEnum( aOut, aHatch.Style, pXML_HatchStyle_Enum ) )
     213             :             {
     214           0 :                 bRet = sal_False;
     215             :             }
     216             :             else
     217             :             {
     218             :                 // Name
     219           0 :                 sal_Bool bEncoded = sal_False;
     220             :                 rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_NAME,
     221             :                                       rExport.EncodeStyleName( rStrName,
     222           0 :                                                                 &bEncoded ) );
     223           0 :                 if( bEncoded )
     224             :                     rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_DISPLAY_NAME,
     225           0 :                                             rStrName );
     226             : 
     227           0 :                 aStrValue = aOut.makeStringAndClear();
     228           0 :                 rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_STYLE, aStrValue );
     229             : 
     230             :                 // Color
     231           0 :                 ::sax::Converter::convertColor(aOut, aHatch.Color);
     232           0 :                 aStrValue = aOut.makeStringAndClear();
     233           0 :                 rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_COLOR, aStrValue );
     234             : 
     235             :                 // Distance
     236           0 :                 rUnitConverter.convertMeasureToXML( aOut, aHatch.Distance );
     237           0 :                 aStrValue = aOut.makeStringAndClear();
     238           0 :                 rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_HATCH_DISTANCE, aStrValue );
     239             : 
     240             :                 // Angle
     241           0 :                 ::sax::Converter::convertNumber(aOut, sal_Int32(aHatch.Angle));
     242           0 :                 aStrValue = aOut.makeStringAndClear();
     243           0 :                 rExport.AddAttribute( XML_NAMESPACE_DRAW, XML_ROTATION, aStrValue );
     244             : 
     245             :                 // Do Write
     246             :                 SvXMLElementExport rElem( rExport, XML_NAMESPACE_DRAW, XML_HATCH,
     247           0 :                                           sal_True, sal_False );
     248           0 :             }
     249             :         }
     250             :     }
     251             : 
     252           0 :     return bRet;
     253             : }
     254             : 
     255             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10