LCOV - code coverage report
Current view: top level - chart2/source/model/template - BarChartType.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 18 32 56.2 %
Date: 2015-06-13 12:38:46 Functions: 8 13 61.5 %
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 "BarChartType.hxx"
      21             : #include "macros.hxx"
      22             : #include "servicenames_charttypes.hxx"
      23             : #include <cppuhelper/supportsservice.hxx>
      24             : 
      25             : using namespace ::com::sun::star;
      26             : 
      27             : namespace chart
      28             : {
      29             : 
      30           1 : BarChartType::BarChartType(
      31             :     const uno::Reference< uno::XComponentContext > & xContext ) :
      32           1 :         ChartType( xContext )
      33           1 : {}
      34             : 
      35           0 : BarChartType::BarChartType( const BarChartType & rOther ) :
      36           0 :         ChartType( rOther )
      37             : {
      38           0 : }
      39             : 
      40           2 : BarChartType::~BarChartType()
      41           2 : {}
      42             : 
      43             : // ____ XCloneable ____
      44           0 : uno::Reference< util::XCloneable > SAL_CALL BarChartType::createClone()
      45             :     throw (uno::RuntimeException, std::exception)
      46             : {
      47           0 :     return uno::Reference< util::XCloneable >( new BarChartType( *this ));
      48             : }
      49             : 
      50             : // ____ XChartType ____
      51           0 : OUString SAL_CALL BarChartType::getChartType()
      52             :     throw (uno::RuntimeException, std::exception)
      53             : {
      54           0 :     return OUString(CHART2_SERVICE_NAME_CHARTTYPE_BAR);
      55             : }
      56             : 
      57           0 : uno::Sequence< OUString > BarChartType::getSupportedPropertyRoles()
      58             :     throw (uno::RuntimeException, std::exception)
      59             : {
      60           0 :     uno::Sequence< OUString > aPropRoles(2);
      61           0 :     aPropRoles[0] = "FillColor";
      62           0 :     aPropRoles[1] = "BorderColor";
      63             : 
      64           0 :     return aPropRoles;
      65             : }
      66             : 
      67           1 : uno::Sequence< OUString > BarChartType::getSupportedServiceNames_Static()
      68             : {
      69           1 :     uno::Sequence< OUString > aServices( 2 );
      70           1 :     aServices[ 0 ] = CHART2_SERVICE_NAME_CHARTTYPE_BAR;
      71           1 :     aServices[ 1 ] = "com.sun.star.chart2.ChartType";
      72           1 :     return aServices;
      73             : }
      74             : 
      75             : // implement XServiceInfo methods basing upon getSupportedServiceNames_Static
      76           1 : OUString SAL_CALL BarChartType::getImplementationName()
      77             :     throw( css::uno::RuntimeException, std::exception )
      78             : {
      79           1 :     return getImplementationName_Static();
      80             : }
      81             : 
      82           1 : OUString BarChartType::getImplementationName_Static()
      83             : {
      84           1 :     return OUString("com.sun.star.comp.chart.BarChartType");
      85             : }
      86             : 
      87           0 : sal_Bool SAL_CALL BarChartType::supportsService( const OUString& rServiceName )
      88             :     throw( css::uno::RuntimeException, std::exception )
      89             : {
      90           0 :     return cppu::supportsService(this, rServiceName);
      91             : }
      92             : 
      93           1 : css::uno::Sequence< OUString > SAL_CALL BarChartType::getSupportedServiceNames()
      94             :     throw( css::uno::RuntimeException, std::exception )
      95             : {
      96           1 :     return getSupportedServiceNames_Static();
      97             : }
      98             : 
      99             : } //  namespace chart
     100             : 
     101             : extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
     102           1 : com_sun_star_comp_chart_BarChartType_get_implementation(css::uno::XComponentContext *context,
     103             :         css::uno::Sequence<css::uno::Any> const &)
     104             : {
     105           1 :     return cppu::acquire(new ::chart::BarChartType(context));
     106             : }
     107             : 
     108             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11