LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/include/toolkit/controls - geometrycontrolmodel_impl.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 23 23 100.0 %
Date: 2013-07-09 Functions: 44 174 25.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             : // no include protection. This is included from within geometrycontrolmodel.hxx only
      21             : 
      22             : //====================================================================
      23             : //= OGeometryControlModel
      24             : //====================================================================
      25             : //--------------------------------------------------------------------
      26             : template <class CONTROLMODEL>
      27          44 : OGeometryControlModel<CONTROLMODEL>::OGeometryControlModel( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& i_factory )
      28          44 :     :OGeometryControlModel_Base(new CONTROLMODEL( i_factory ) )
      29             : {
      30          44 : }
      31             : 
      32             : //--------------------------------------------------------------------
      33             : template <class CONTROLMODEL>
      34           2 : OGeometryControlModel<CONTROLMODEL>::OGeometryControlModel(::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable >& _rxAggregateInstance)
      35           2 :     :OGeometryControlModel_Base(_rxAggregateInstance)
      36             : {
      37           2 : }
      38             : 
      39             : //--------------------------------------------------------------------
      40             : template <class CONTROLMODEL>
      41        9352 : ::cppu::IPropertyArrayHelper& SAL_CALL OGeometryControlModel<CONTROLMODEL>::getInfoHelper()
      42             : {
      43        9352 :     return *this->getArrayHelper();
      44             : }
      45             : 
      46             : //--------------------------------------------------------------------
      47             : template <class CONTROLMODEL>
      48           8 : void OGeometryControlModel<CONTROLMODEL>::fillProperties(::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& _rProps, ::com::sun::star::uno::Sequence< ::com::sun::star::beans::Property >& _rAggregateProps) const
      49             : {
      50             :     // our own properties
      51           8 :     OPropertyContainer::describeProperties(_rProps);
      52             :     // the aggregate properties
      53           8 :     if (m_xAggregateSet.is())
      54           8 :         _rAggregateProps = m_xAggregateSet->getPropertySetInfo()->getProperties();
      55           8 : }
      56             : 
      57             : //--------------------------------------------------------------------
      58             : template <class CONTROLMODEL>
      59          47 : ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL OGeometryControlModel<CONTROLMODEL>::getImplementationId(  ) throw (::com::sun::star::uno::RuntimeException)
      60             : {
      61             :     static ::cppu::OImplementationId * pId = NULL;
      62          47 :     if ( !pId )
      63             :     {
      64           5 :         ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
      65           5 :         if ( !pId )
      66             :         {
      67           5 :             static ::cppu::OImplementationId s_aId;
      68           5 :             pId = &s_aId;
      69           5 :         }
      70             :     }
      71          47 :     return pId->getImplementationId();
      72             : }
      73             : 
      74             : //--------------------------------------------------------------------
      75             : template <class CONTROLMODEL>
      76           2 : OGeometryControlModel_Base* OGeometryControlModel<CONTROLMODEL>::createClone_Impl(
      77             :     ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable >& _rxAggregateInstance)
      78             : {
      79           2 :     return new OGeometryControlModel<CONTROLMODEL>(_rxAggregateInstance);
      80             : }
      81             : 
      82             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10