LCOV - code coverage report
Current view: top level - libreoffice/oox/source/helper - modelobjecthelper.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 27 41 65.9 %
Date: 2012-12-27 Functions: 8 12 66.7 %
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 "oox/helper/modelobjecthelper.hxx"
      21             : 
      22             : #include <com/sun/star/awt/Gradient.hpp>
      23             : #include <com/sun/star/container/XNameContainer.hpp>
      24             : #include <com/sun/star/drawing/LineDash.hpp>
      25             : #include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp>
      26             : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
      27             : #include "oox/helper/containerhelper.hxx"
      28             : #include "oox/helper/helper.hxx"
      29             : 
      30             : namespace oox {
      31             : 
      32             : // ============================================================================
      33             : 
      34             : using namespace ::com::sun::star;
      35             : using namespace ::com::sun::star::drawing;
      36             : using namespace ::com::sun::star::lang;
      37             : using namespace ::com::sun::star::uno;
      38             : 
      39             : // ============================================================================
      40             : 
      41          95 : ObjectContainer::ObjectContainer( const Reference< XMultiServiceFactory >& rxModelFactory, const OUString& rServiceName ) :
      42             :     mxModelFactory( rxModelFactory ),
      43             :     maServiceName( rServiceName ),
      44          95 :     mnIndex( 0 )
      45             : {
      46             :     OSL_ENSURE( mxModelFactory.is(), "ObjectContainer::ObjectContainer - missing service factory" );
      47          95 : }
      48             : 
      49          95 : ObjectContainer::~ObjectContainer()
      50             : {
      51          95 : }
      52             : 
      53           8 : bool ObjectContainer::hasObject( const OUString& rObjName ) const
      54             : {
      55           8 :     createContainer();
      56           8 :     return mxContainer.is() && mxContainer->hasByName( rObjName );
      57             : }
      58             : 
      59           3 : OUString ObjectContainer::insertObject( const OUString& rObjName, const Any& rObj, bool bInsertByUnusedName )
      60             : {
      61           3 :     createContainer();
      62           3 :     if( mxContainer.is() )
      63             :     {
      64           3 :         if( bInsertByUnusedName )
      65           0 :             return ContainerHelper::insertByUnusedName( mxContainer, rObjName + OUString::valueOf( ++mnIndex ), ' ', rObj );
      66           3 :         if( ContainerHelper::insertByName( mxContainer, rObjName, rObj ) )
      67           3 :             return rObjName;
      68             :     }
      69           0 :     return OUString();
      70             : }
      71             : 
      72          11 : void ObjectContainer::createContainer() const
      73             : {
      74          11 :     if( !mxContainer.is() && mxModelFactory.is() ) try
      75             :     {
      76           3 :         mxContainer.set( mxModelFactory->createInstance( maServiceName ), UNO_QUERY_THROW );
      77           3 :         mxModelFactory.clear();
      78             :     }
      79           0 :     catch( Exception& )
      80             :     {
      81             :     }
      82             :     OSL_ENSURE( mxContainer.is(), "ObjectContainer::createContainer - container not found" );
      83          11 : }
      84             : 
      85             : // ============================================================================
      86             : 
      87          19 : ModelObjectHelper::ModelObjectHelper( const Reference< XMultiServiceFactory >& rxModelFactory ) :
      88             :     maMarkerContainer(    rxModelFactory, CREATE_OUSTRING( "com.sun.star.drawing.MarkerTable" ) ),
      89             :     maDashContainer(      rxModelFactory, CREATE_OUSTRING( "com.sun.star.drawing.DashTable" ) ),
      90             :     maGradientContainer(  rxModelFactory, CREATE_OUSTRING( "com.sun.star.drawing.GradientTable" ) ),
      91             :     maTransGradContainer(  rxModelFactory, CREATE_OUSTRING( "com.sun.star.drawing.TransparencyGradientTable" ) ),
      92             :     maBitmapUrlContainer( rxModelFactory, CREATE_OUSTRING( "com.sun.star.drawing.BitmapTable" ) ),
      93             :     maDashNameBase(      CREATE_OUSTRING( "msLineDash " ) ),
      94             :     maGradientNameBase(  CREATE_OUSTRING( "msFillGradient " ) ),
      95             :     maTransGradNameBase(  CREATE_OUSTRING( "msTransGradient " ) ),
      96          19 :     maBitmapUrlNameBase( CREATE_OUSTRING( "msFillBitmap " ) )
      97             : {
      98          19 : }
      99             : 
     100           8 : bool ModelObjectHelper::hasLineMarker( const OUString& rMarkerName ) const
     101             : {
     102           8 :     return maMarkerContainer.hasObject( rMarkerName );
     103             : }
     104             : 
     105           3 : bool ModelObjectHelper::insertLineMarker( const OUString& rMarkerName, const PolyPolygonBezierCoords& rMarker )
     106             : {
     107             :     OSL_ENSURE( rMarker.Coordinates.hasElements(), "ModelObjectHelper::insertLineMarker - line marker without coordinates" );
     108           3 :     if( rMarker.Coordinates.hasElements() )
     109           3 :         return !maMarkerContainer.insertObject( rMarkerName, Any( rMarker ), false ).isEmpty();
     110           0 :     return false;
     111             : }
     112             : 
     113           0 : OUString ModelObjectHelper::insertLineDash( const LineDash& rDash )
     114             : {
     115           0 :     return maDashContainer.insertObject( maDashNameBase, Any( rDash ), true );
     116             : }
     117             : 
     118           0 : OUString ModelObjectHelper::insertFillGradient( const awt::Gradient& rGradient )
     119             : {
     120           0 :     return maGradientContainer.insertObject( maGradientNameBase, Any( rGradient ), true );
     121             : }
     122             : 
     123           0 : OUString ModelObjectHelper::insertTransGrandient( const awt::Gradient& rGradient )
     124             : {
     125           0 :     return maTransGradContainer.insertObject( maTransGradNameBase, Any( rGradient ), true );
     126             : }
     127             : 
     128           0 : OUString ModelObjectHelper::insertFillBitmapUrl( const OUString& rGraphicUrl )
     129             : {
     130           0 :     if( !rGraphicUrl.isEmpty() )
     131           0 :         return maBitmapUrlContainer.insertObject( maBitmapUrlNameBase, Any( rGraphicUrl ), true );
     132           0 :     return OUString();
     133             : }
     134             : 
     135             : // ============================================================================
     136             : 
     137             : } // namespace oox
     138             : 
     139             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10