LCOV - code coverage report
Current view: top level - oox/source/drawingml - shapegroupcontext.cxx (source / functions) Hit Total Coverage
Test: commit 0e63ca4fde4e446f346e35849c756a30ca294aab Lines: 26 34 76.5 %
Date: 2014-04-11 Functions: 6 6 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 <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 namespace oox::core;
      34             : using namespace ::com::sun::star;
      35             : using namespace ::com::sun::star::uno;
      36             : using namespace ::com::sun::star::drawing;
      37             : using namespace ::com::sun::star::beans;
      38             : using namespace ::com::sun::star::text;
      39             : using namespace ::com::sun::star::xml::sax;
      40             : 
      41             : namespace oox { namespace drawingml {
      42             : 
      43         127 : ShapeGroupContext::ShapeGroupContext( ContextHandler2Helper& rParent, ShapePtr pMasterShapePtr, ShapePtr pGroupShapePtr )
      44             : : ContextHandler2( rParent )
      45             : , mpGroupShapePtr( pGroupShapePtr )
      46         127 : , mpMasterShapePtr( pMasterShapePtr )
      47             : {
      48         127 :     if( pMasterShapePtr )
      49         109 :         mpGroupShapePtr->setWps(pMasterShapePtr->getWps());
      50         127 : }
      51             : 
      52         286 : ShapeGroupContext::~ShapeGroupContext()
      53             : {
      54         127 :     if ( mpMasterShapePtr.get() && mpGroupShapePtr.get() )
      55         109 :         mpMasterShapePtr->addChild( mpGroupShapePtr );
      56         159 : }
      57             : 
      58         305 : ContextHandlerRef ShapeGroupContext::onCreateContext( sal_Int32 aElementToken, const AttributeList& rAttribs )
      59             : {
      60         305 :     switch( getBaseToken( aElementToken ) )
      61             :     {
      62             :     case XML_cNvPr:
      63             :     {
      64           2 :         mpGroupShapePtr->setHidden( rAttribs.getBool( XML_hidden, false ) );
      65           2 :         mpGroupShapePtr->setId( rAttribs.getString( XML_id ).get() );
      66           2 :         mpGroupShapePtr->setName( rAttribs.getString( XML_name ).get() );
      67           2 :         break;
      68             :     }
      69             :     case XML_ph:
      70           0 :         mpGroupShapePtr->setSubType( rAttribs.getToken( XML_type, FastToken::DONTKNOW ) );
      71           0 :         if( rAttribs.hasAttribute( XML_idx ) )
      72           0 :             mpGroupShapePtr->setSubTypeIndex( rAttribs.getString( XML_idx ).get().toInt32() );
      73           0 :         break;
      74             :     // nvSpPr CT_ShapeNonVisual end
      75             : 
      76             :     case XML_grpSpPr:
      77          32 :         return new ShapePropertiesContext( *this, *mpGroupShapePtr );
      78             :     case XML_nvGrpSpPr:
      79          18 :         return 0;
      80             :     case XML_spPr:
      81           0 :         return new ShapePropertiesContext( *this, *mpGroupShapePtr );
      82             : /*
      83             :     case XML_style:
      84             :         return new ShapeStyleContext( getParser() );
      85             : */
      86             :     case XML_cxnSp:         // connector shape
      87             :         {
      88           1 :             ShapePtr pShape(new Shape("com.sun.star.drawing.ConnectorShape"));
      89           1 :             pShape->setLockedCanvas(mpGroupShapePtr->getLockedCanvas());
      90           1 :             return new ConnectorShapeContext( *this, mpGroupShapePtr, pShape );
      91             :         }
      92             :     case XML_grpSp:         // group shape
      93           6 :         return new ShapeGroupContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GroupShape" ) ) );
      94             :     case XML_sp:            // shape
      95             :     case XML_wsp:
      96         230 :         return new ShapeContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.CustomShape" ) ) );
      97             :     case XML_pic:           // CT_Picture
      98           0 :         return new GraphicShapeContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GraphicObjectShape" ) ) );
      99             :     case XML_graphicFrame:  // CT_GraphicalObjectFrame
     100           0 :         return new GraphicalObjectFrameContext( *this, mpGroupShapePtr, ShapePtr( new Shape( "com.sun.star.drawing.GraphicObjectShape" ) ), true );
     101             :     case XML_cNvGrpSpPr:
     102          14 :         break;
     103             :     case XML_grpSpLocks:
     104           2 :         break;
     105             :     default:
     106             :         SAL_WARN("oox", "ShapeGroupContext::onCreateContext: unhandled element: " << getBaseToken(aElementToken));
     107           0 :         break;
     108             :     }
     109             : 
     110          18 :     return this;
     111             : }
     112             : 
     113         177 : } }
     114             : 
     115             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10