tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / chart2 / source / model / template / BarChartType.cxx
blob7bd27a94323838371b40cd66c97b4a47abd50dd9
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 <servicenames_charttypes.hxx>
22 #include <cppuhelper/supportsservice.hxx>
24 namespace com::sun::star::uno { class XComponentContext; }
26 using namespace ::com::sun::star;
28 namespace chart
31 BarChartType::BarChartType()
34 BarChartType::BarChartType( const BarChartType & rOther ) :
35 ChartType( rOther )
39 BarChartType::~BarChartType()
42 // ____ XCloneable ____
43 uno::Reference< util::XCloneable > SAL_CALL BarChartType::createClone()
45 return uno::Reference< util::XCloneable >( new BarChartType( *this ));
48 rtl::Reference< ChartType > BarChartType::cloneChartType() const
50 return new BarChartType( *this );
53 // ____ XChartType ____
54 OUString SAL_CALL BarChartType::getChartType()
56 return CHART2_SERVICE_NAME_CHARTTYPE_BAR;
59 uno::Sequence< OUString > BarChartType::getSupportedPropertyRoles()
61 return { u"FillColor"_ustr, u"BorderColor"_ustr };
64 OUString SAL_CALL BarChartType::getImplementationName()
66 return u"com.sun.star.comp.chart.BarChartType"_ustr;
69 sal_Bool SAL_CALL BarChartType::supportsService( const OUString& rServiceName )
71 return cppu::supportsService(this, rServiceName);
74 css::uno::Sequence< OUString > SAL_CALL BarChartType::getSupportedServiceNames()
76 return {
77 CHART2_SERVICE_NAME_CHARTTYPE_BAR,
78 u"com.sun.star.chart2.ChartType"_ustr };
81 } // namespace chart
83 extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface *
84 com_sun_star_comp_chart_BarChartType_get_implementation(css::uno::XComponentContext * /*context*/,
85 css::uno::Sequence<css::uno::Any> const &)
87 return cppu::acquire(new ::chart::BarChartType);
90 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */