LCOV - code coverage report
Current view: top level - svx/source/form - fmdpage.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 35 44 79.5 %
Date: 2014-11-03 Functions: 11 13 84.6 %
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 <svx/fmpage.hxx>
      21             : #include "fmobj.hxx"
      22             : #include <svx/fmglob.hxx>
      23             : #include <svx/fmdpage.hxx>
      24             : #include <svx/unoshape.hxx>
      25             : #include <cppuhelper/queryinterface.hxx>
      26             : #include <cppuhelper/typeprovider.hxx>
      27             : 
      28             : using ::com::sun::star::uno::Any;
      29             : using ::com::sun::star::uno::RuntimeException;
      30             : using ::com::sun::star::form::XFormsSupplier2;
      31             : 
      32        8593 : SvxFmDrawPage::SvxFmDrawPage( SdrPage* pInPage ) :
      33        8593 :     SvxDrawPage( pInPage )
      34             : {
      35        8593 : }
      36             : 
      37        9515 : SvxFmDrawPage::~SvxFmDrawPage() throw ()
      38             : {
      39        9515 : }
      40             : 
      41           0 : ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL SvxFmDrawPage::getImplementationId() throw(::com::sun::star::uno::RuntimeException, std::exception)
      42             : {
      43           0 :     return css::uno::Sequence<sal_Int8>();
      44             : }
      45             : 
      46      112462 : Any SAL_CALL SvxFmDrawPage::queryAggregation( const ::com::sun::star::uno::Type& _rType ) throw(RuntimeException, std::exception)
      47             : {
      48             :     Any aRet = ::cppu::queryInterface   (   _rType
      49             :                                         ,   static_cast< XFormsSupplier2* >( this )
      50             :                                         ,   static_cast< XFormsSupplier* >( this )
      51      112462 :                                         );
      52      112462 :     if ( !aRet.hasValue() )
      53      110372 :         aRet = SvxDrawPage::queryAggregation( _rType );
      54             : 
      55      112462 :     return aRet;
      56             : }
      57             : 
      58           0 : ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL SvxFmDrawPage::getTypes(  ) throw(::com::sun::star::uno::RuntimeException, std::exception)
      59             : {
      60           0 :     ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > aTypes(SvxDrawPage::getTypes());
      61           0 :     aTypes.realloc(aTypes.getLength() + 1);
      62           0 :     ::com::sun::star::uno::Type* pTypes = aTypes.getArray();
      63             : 
      64           0 :     pTypes[aTypes.getLength()-1] = cppu::UnoType<com::sun::star::form::XFormsSupplier>::get();
      65           0 :     return aTypes;
      66             : }
      67             : 
      68       65380 : SdrObject *SvxFmDrawPage::_CreateSdrObject( const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape > & xDescr )
      69             :     throw (css::uno::RuntimeException, std::exception)
      70             : {
      71       65380 :     OUString aShapeType( xDescr->getShapeType() );
      72             : 
      73      130760 :     if  (   aShapeType == "com.sun.star.drawing.ShapeControl"   // compatibility
      74       65380 :         ||  aShapeType == "com.sun.star.drawing.ControlShape"
      75             :         )
      76           0 :         return new FmFormObj();
      77             :     else
      78       65380 :         return SvxDrawPage::_CreateSdrObject( xDescr );
      79             : 
      80             : }
      81             : 
      82       50392 : ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >  SvxFmDrawPage::_CreateShape( SdrObject *pObj ) const
      83             :     throw (css::uno::RuntimeException, std::exception)
      84             : {
      85       50392 :     if( FmFormInventor == pObj->GetObjInventor() )
      86             :     {
      87         166 :         ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >  xShape = (SvxShape*)new SvxShapeControl( pObj );
      88         166 :         return xShape;
      89             :     }
      90             :     else
      91       50226 :         return SvxDrawPage::_CreateShape( pObj );
      92             : }
      93             : 
      94             : // XFormsSupplier
      95         528 : ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > SAL_CALL SvxFmDrawPage::getForms(void) throw( ::com::sun::star::uno::RuntimeException, std::exception )
      96             : {
      97         528 :     ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer >  xForms;
      98             : 
      99         528 :     FmFormPage *pFmPage = PTR_CAST( FmFormPage, GetSdrPage() );
     100         528 :     if( pFmPage )
     101         528 :         xForms.set( pFmPage->GetForms(), css::uno::UNO_QUERY_THROW );
     102             : 
     103         528 :     return xForms;
     104             : }
     105             : 
     106             : // XFormsSupplier2
     107        1516 : sal_Bool SAL_CALL SvxFmDrawPage::hasForms(void) throw( ::com::sun::star::uno::RuntimeException, std::exception )
     108             : {
     109        1516 :     bool bHas = false;
     110        1516 :     FmFormPage* pFormPage = PTR_CAST( FmFormPage, GetSdrPage() );
     111        1516 :     if ( pFormPage )
     112        1516 :         bHas = pFormPage->GetForms( false ).is();
     113        1516 :     return bHas;
     114             : }
     115             : 
     116             : // ::com::sun::star::lang::XServiceInfo
     117         316 : ::com::sun::star::uno::Sequence< OUString > SAL_CALL SvxFmDrawPage::getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException, std::exception )
     118             : {
     119         316 :     return SvxDrawPage::getSupportedServiceNames();
     120         651 : }
     121             : 
     122             : 
     123             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10