tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / chart2 / source / model / template / PieChartType.hxx
blob083bd78facd31cc67018ab45696de5e310c8356e
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 .
19 #pragma once
21 #include <ChartType.hxx>
22 #include <com/sun/star/chart2/PieChartSubType.hpp>
24 namespace chart
27 class PieChartType final: public ChartType
29 public:
30 explicit PieChartType();
31 virtual ~PieChartType() override;
33 virtual OUString SAL_CALL
34 getImplementationName() override;
35 virtual sal_Bool SAL_CALL
36 supportsService( const OUString& ServiceName ) override;
37 virtual css::uno::Sequence< OUString > SAL_CALL
38 getSupportedServiceNames() override;
40 virtual rtl::Reference<ChartType> cloneChartType() const override;
42 private:
43 explicit PieChartType( const PieChartType & rOther );
45 // ____ XChartType ____
46 virtual OUString SAL_CALL getChartType() override;
47 virtual css::uno::Sequence< OUString > SAL_CALL
48 getSupportedPropertyRoles() override;
50 // ____ OPropertySet ____
51 virtual void GetDefaultValue( sal_Int32 nHandle, css::uno::Any& rAny ) const override;
53 // ____ OPropertySet ____
54 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() override;
56 // ____ XPropertySet ____
57 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL
58 getPropertySetInfo() override;
60 // ____ XCloneable ____
61 virtual css::uno::Reference< css::util::XCloneable > SAL_CALL createClone() override;
63 virtual rtl::Reference< ::chart::BaseCoordinateSystem >
64 createCoordinateSystem2( sal_Int32 DimensionCount ) override;
67 } // namespace chart
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */