LCOV - code coverage report
Current view: top level - oox/source/drawingml - shapegroupcontext.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 23 37 62.2 %
Date: 2012-08-25 Functions: 6 6 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 41 172 23.8 %

           Branch data     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 <com/sun/star/xml/sax/FastToken.hpp>
      21                 :            : #include <com/sun/star/beans/XMultiPropertySet.hpp>
      22                 :            : #include <com/sun/star/container/XNamed.hpp>
      23                 :            : 
      24                 :            : #include "oox/helper/attributelist.hxx"
      25                 :            : #include "oox/drawingml/shapegroupcontext.hxx"
      26                 :            : #include "oox/drawingml/connectorshapecontext.hxx"
      27                 :            : #include "oox/drawingml/graphicshapecontext.hxx"
      28                 :            : #include "oox/drawingml/lineproperties.hxx"
      29                 :            : #include "oox/drawingml/drawingmltypes.hxx"
      30                 :            : #include "oox/drawingml/customshapegeometry.hxx"
      31                 :            : #include "oox/drawingml/textbodycontext.hxx"
      32                 :            : 
      33                 :            : using rtl::OUString;
      34                 :            : using namespace oox::core;
      35                 :            : using namespace ::com::sun::star;
      36                 :            : using namespace ::com::sun::star::uno;
      37                 :            : using namespace ::com::sun::star::drawing;
      38                 :            : using namespace ::com::sun::star::beans;
      39                 :            : using namespace ::com::sun::star::text;
      40                 :            : using namespace ::com::sun::star::xml::sax;
      41                 :            : 
      42                 :            : namespace oox { namespace drawingml {
      43                 :            : 
      44                 :         36 : ShapeGroupContext::ShapeGroupContext( ContextHandler& rParent, ShapePtr pMasterShapePtr, ShapePtr pGroupShapePtr )
      45                 :            : : ContextHandler( rParent )
      46                 :            : , mpGroupShapePtr( pGroupShapePtr )
      47 [ +  - ][ +  - ]:         36 : , mpMasterShapePtr( pMasterShapePtr )
      48                 :            : {
      49                 :         36 : }
      50                 :            : 
      51 [ +  - ][ +  - ]:         36 : ShapeGroupContext::~ShapeGroupContext()
      52                 :            : {
      53 [ +  + ][ +  - ]:         36 :     if ( mpMasterShapePtr.get() && mpGroupShapePtr.get() )
                 [ +  + ]
      54 [ +  - ][ +  - ]:         33 :         mpMasterShapePtr->addChild( mpGroupShapePtr );
                 [ +  - ]
      55         [ -  + ]:         39 : }
      56                 :            : 
      57                 :         24 : Reference< XFastContextHandler > ShapeGroupContext::createFastChildContext( sal_Int32 aElementToken, const Reference< XFastAttributeList >& xAttribs ) throw (SAXException, RuntimeException)
      58                 :            : {
      59                 :         24 :     Reference< XFastContextHandler > xRet;
      60                 :            : 
      61   [ +  -  +  -  :         24 :     switch( getBaseToken( aElementToken ) )
          -  -  +  -  -  
                      + ]
      62                 :            :     {
      63                 :            :     case XML_cNvPr:
      64                 :            :     {
      65         [ +  - ]:          3 :         AttributeList aAttribs( xAttribs );
      66         [ +  - ]:          3 :         mpGroupShapePtr->setHidden( aAttribs.getBool( XML_hidden, false ) );
      67 [ +  - ][ +  - ]:          3 :         mpGroupShapePtr->setId( xAttribs->getOptionalValue( XML_id ) );
      68 [ +  - ][ +  - ]:          3 :         mpGroupShapePtr->setName( xAttribs->getOptionalValue( XML_name ) );
      69         [ +  - ]:          3 :         break;
      70                 :            :     }
      71                 :            :     case XML_ph:
      72 [ #  # ][ #  # ]:          0 :         mpGroupShapePtr->setSubType( xAttribs->getOptionalValueToken( XML_type, FastToken::DONTKNOW ) );
      73 [ #  # ][ #  # ]:          0 :         if( xAttribs->hasAttribute( XML_idx ) )
                 [ #  # ]
      74 [ #  # ][ #  # ]:          0 :             mpGroupShapePtr->setSubTypeIndex( xAttribs->getOptionalValue( XML_idx ).toInt32() );
                 [ #  # ]
      75                 :          0 :         break;
      76                 :            :     // nvSpPr CT_ShapeNonVisual end
      77                 :            : 
      78                 :            :     case XML_grpSpPr:
      79 [ +  - ][ +  - ]:          3 :         xRet = new ShapePropertiesContext( *this, *mpGroupShapePtr );
                 [ +  - ]
      80                 :          3 :         break;
      81                 :            :     case XML_spPr:
      82 [ #  # ][ #  # ]:          0 :         xRet = new ShapePropertiesContext( *this, *mpGroupShapePtr );
                 [ #  # ]
      83                 :          0 :         break;
      84                 :            : /*
      85                 :            :     case XML_style:
      86                 :            :         xRet = new ShapeStyleContext( getParser() );
      87                 :            :         break;
      88                 :            : */
      89                 :            :     case XML_cxnSp:         // connector shape
      90 [ #  # ][ #  # ]:          0 :         xRet.set( new ConnectorShapeContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.ConnectorShape" ) ) ) );
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
                 [ #  # ]
      91                 :          0 :         break;
      92                 :            :     case XML_grpSp:         // group shape
      93 [ #  # ][ #  # ]:          0 :         xRet.set( new ShapeGroupContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GroupShape" ) ) ) );
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
                 [ #  # ]
      94                 :          0 :         break;
      95                 :            :     case XML_sp:            // shape
      96 [ +  - ][ +  - ]:         12 :         xRet.set( new ShapeContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.CustomShape" ) ) ) );
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
                 [ +  - ]
      97                 :         12 :         break;
      98                 :            :     case XML_pic:           // CT_Picture
      99 [ #  # ][ #  # ]:          0 :         xRet.set( new GraphicShapeContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GraphicObjectShape" ) ) ) );
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
                 [ #  # ]
     100                 :          0 :         break;
     101                 :            :     case XML_graphicFrame:  // CT_GraphicalObjectFrame
     102 [ #  # ][ #  # ]:          0 :         xRet.set( new GraphicalObjectFrameContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GraphicObjectShape" ) ), true ) );
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
                 [ #  # ]
     103                 :          0 :         break;
     104                 :            :     }
     105         [ +  + ]:         24 :     if( !xRet.is() )
     106         [ +  - ]:          9 :         xRet.set( this );
     107                 :            : 
     108                 :            : 
     109                 :         24 :     return xRet;
     110                 :            : }
     111                 :            : 
     112 [ +  - ][ +  - ]:        285 : } }
     113                 :            : 
     114                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10