1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
21 #include <OPropertySet.hxx>
22 #include <comphelper/uno3.hxx>
24 #include <ChartTypeTemplate.hxx>
25 #include <StackMode.hxx>
30 class BarChartTypeTemplate
:
31 public ChartTypeTemplate
,
32 public ::property::OPropertySet
41 explicit BarChartTypeTemplate(
42 css::uno::Reference
< css::uno::XComponentContext
> const & xContext
,
43 const OUString
& rServiceName
,
45 BarDirection eDirection
,
47 virtual ~BarChartTypeTemplate() override
;
49 /// merge XInterface implementations
51 /// merge XTypeProvider implementations
52 DECLARE_XTYPEPROVIDER()
55 // ____ OPropertySet ____
56 virtual void GetDefaultValue( sal_Int32 nHandle
, css::uno::Any
& rAny
) const override
;
57 virtual ::cppu::IPropertyArrayHelper
& SAL_CALL
getInfoHelper() override
;
59 // ____ XPropertySet ____
60 virtual css::uno::Reference
< css::beans::XPropertySetInfo
> SAL_CALL
61 getPropertySetInfo() override
;
63 // ____ ChartTypeTemplate ____
64 virtual bool matchesTemplate2(
65 const rtl::Reference
< ::chart::Diagram
>& xDiagram
,
66 bool bAdaptProperties
) override
;
67 virtual rtl::Reference
< ::chart::ChartType
>
68 getChartTypeForNewSeries2( const std::vector
<
69 rtl::Reference
< ::chart::ChartType
> >& aFormerlyUsedChartTypes
) override
;
70 virtual void applyStyle2(
71 const rtl::Reference
< ::chart::DataSeries
>& xSeries
,
72 ::sal_Int32 nChartTypeGroupIndex
,
73 ::sal_Int32 nSeriesIndex
,
74 ::sal_Int32 nSeriesCount
) override
;
75 virtual void resetStyles2(
76 const rtl::Reference
< ::chart::Diagram
>& xDiagram
) override
;
77 virtual rtl::Reference
< ::chart::ChartType
>
78 getChartTypeForIndex( sal_Int32 nChartTypeIndex
) override
;
79 virtual sal_Int32
getDimension() const override
;
80 virtual StackMode
getStackMode( sal_Int32 nChartTypeIndex
) const override
;
81 virtual bool isSwapXAndY() const override
;
83 virtual void createCoordinateSystems(
84 const rtl::Reference
< ::chart::Diagram
> & xDiagram
) override
;
87 StackMode m_eStackMode
;
88 BarDirection m_eBarDirection
;
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */