fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / chart2 / source / model / template / AreaChartType.cxx
blobe9e057f1e490cf1ff612cdd6f3169509b06378b8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "AreaChartType.hxx"
21 #include "macros.hxx"
22 #include "servicenames_charttypes.hxx"
23 #include <cppuhelper/supportsservice.hxx>
25 using namespace ::com::sun::star;
27 namespace chart
30 AreaChartType::AreaChartType(
31 const uno::Reference< uno::XComponentContext > & xContext ) :
32 ChartType( xContext )
35 AreaChartType::AreaChartType( const AreaChartType & rOther ) :
36 ChartType( rOther )
39 AreaChartType::~AreaChartType()
42 // ____ XCloneable ____
43 uno::Reference< util::XCloneable > SAL_CALL AreaChartType::createClone()
44 throw (uno::RuntimeException, std::exception)
46 return uno::Reference< util::XCloneable >( new AreaChartType( *this ));
49 // ____ XChartType ____
50 OUString SAL_CALL AreaChartType::getChartType()
51 throw (uno::RuntimeException, std::exception)
53 return OUString(CHART2_SERVICE_NAME_CHARTTYPE_AREA);
56 uno::Sequence< OUString > AreaChartType::getSupportedServiceNames_Static()
58 uno::Sequence< OUString > aServices( 2 );
59 aServices[ 0 ] = CHART2_SERVICE_NAME_CHARTTYPE_AREA;
60 aServices[ 1 ] = "com.sun.star.chart2.ChartType";
61 return aServices;
64 // implement XServiceInfo methods basing upon getSupportedServiceNames_Static
65 OUString SAL_CALL AreaChartType::getImplementationName()
66 throw( css::uno::RuntimeException, std::exception )
68 return getImplementationName_Static();
71 OUString AreaChartType::getImplementationName_Static()
73 return OUString("com.sun.star.comp.chart.AreaChartType");
76 sal_Bool SAL_CALL AreaChartType::supportsService( const OUString& rServiceName )
77 throw( css::uno::RuntimeException, std::exception )
79 return cppu::supportsService(this, rServiceName);
82 css::uno::Sequence< OUString > SAL_CALL AreaChartType::getSupportedServiceNames()
83 throw( css::uno::RuntimeException, std::exception )
85 return getSupportedServiceNames_Static();
88 } // namespace chart
90 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
91 com_sun_star_comp_chart_AreaChartType_get_implementation(css::uno::XComponentContext *context,
92 css::uno::Sequence<css::uno::Any> const &)
94 return cppu::acquire(new ::chart::AreaChartType(context));
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */