fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / chart2 / source / model / template / BarChartType.cxx
blobd7423110a12654e072100f8d8dbc6420b9337339
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 "BarChartType.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 BarChartType::BarChartType(
31 const uno::Reference< uno::XComponentContext > & xContext ) :
32 ChartType( xContext )
35 BarChartType::BarChartType( const BarChartType & rOther ) :
36 ChartType( rOther )
40 BarChartType::~BarChartType()
43 // ____ XCloneable ____
44 uno::Reference< util::XCloneable > SAL_CALL BarChartType::createClone()
45 throw (uno::RuntimeException, std::exception)
47 return uno::Reference< util::XCloneable >( new BarChartType( *this ));
50 // ____ XChartType ____
51 OUString SAL_CALL BarChartType::getChartType()
52 throw (uno::RuntimeException, std::exception)
54 return OUString(CHART2_SERVICE_NAME_CHARTTYPE_BAR);
57 uno::Sequence< OUString > BarChartType::getSupportedPropertyRoles()
58 throw (uno::RuntimeException, std::exception)
60 uno::Sequence< OUString > aPropRoles(2);
61 aPropRoles[0] = "FillColor";
62 aPropRoles[1] = "BorderColor";
64 return aPropRoles;
67 uno::Sequence< OUString > BarChartType::getSupportedServiceNames_Static()
69 uno::Sequence< OUString > aServices( 2 );
70 aServices[ 0 ] = CHART2_SERVICE_NAME_CHARTTYPE_BAR;
71 aServices[ 1 ] = "com.sun.star.chart2.ChartType";
72 return aServices;
75 // implement XServiceInfo methods basing upon getSupportedServiceNames_Static
76 OUString SAL_CALL BarChartType::getImplementationName()
77 throw( css::uno::RuntimeException, std::exception )
79 return getImplementationName_Static();
82 OUString BarChartType::getImplementationName_Static()
84 return OUString("com.sun.star.comp.chart.BarChartType");
87 sal_Bool SAL_CALL BarChartType::supportsService( const OUString& rServiceName )
88 throw( css::uno::RuntimeException, std::exception )
90 return cppu::supportsService(this, rServiceName);
93 css::uno::Sequence< OUString > SAL_CALL BarChartType::getSupportedServiceNames()
94 throw( css::uno::RuntimeException, std::exception )
96 return getSupportedServiceNames_Static();
99 } // namespace chart
101 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
102 com_sun_star_comp_chart_BarChartType_get_implementation(css::uno::XComponentContext *context,
103 css::uno::Sequence<css::uno::Any> const &)
105 return cppu::acquire(new ::chart::BarChartType(context));
108 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */