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 <ChartTypeTemplate.hxx>
22 #include <StackMode.hxx>
24 #include <OPropertySet.hxx>
25 #include <comphelper/uno3.hxx>
30 class ColumnLineChartTypeTemplate
:
31 public ChartTypeTemplate
,
32 public ::property::OPropertySet
35 explicit ColumnLineChartTypeTemplate(
36 css::uno::Reference
< css::uno::XComponentContext
> const & xContext
,
37 const OUString
& rServiceName
,
39 sal_Int32 nNumberOfLines
);
40 virtual ~ColumnLineChartTypeTemplate() override
;
42 /// merge XInterface implementations
44 /// merge XTypeProvider implementations
45 DECLARE_XTYPEPROVIDER()
48 // ____ OPropertySet ____
49 virtual void GetDefaultValue( sal_Int32 nHandle
, css::uno::Any
& rAny
) const override
;
50 virtual ::cppu::IPropertyArrayHelper
& SAL_CALL
getInfoHelper() override
;
52 // ____ XPropertySet ____
53 virtual css::uno::Reference
< css::beans::XPropertySetInfo
> SAL_CALL
54 getPropertySetInfo() override
;
56 // ____ ChartTypeTemplate ____
57 virtual bool matchesTemplate2(
58 const rtl::Reference
< ::chart::Diagram
>& xDiagram
,
59 bool bAdaptProperties
) override
;
60 virtual rtl::Reference
< ::chart::ChartType
>
61 getChartTypeForNewSeries2( const std::vector
<
62 rtl::Reference
< ::chart::ChartType
> >& aFormerlyUsedChartTypes
) override
;
63 virtual void applyStyle2(
64 const rtl::Reference
< ::chart::DataSeries
>& xSeries
,
65 ::sal_Int32 nChartTypeGroupIndex
,
66 ::sal_Int32 nSeriesIndex
,
67 ::sal_Int32 nSeriesCount
) override
;
68 virtual rtl::Reference
< ::chart::DataInterpreter
> getDataInterpreter2() override
;
70 // ____ ChartTypeTemplate ____
71 virtual void createChartTypes(
75 ::chart::DataSeries
> > > & aSeriesSeq
,
78 ::chart::BaseCoordinateSystem
> > & rCoordSys
,
79 const std::vector
< rtl::Reference
< ChartType
> > & aOldChartTypesSeq
82 virtual rtl::Reference
< ::chart::ChartType
>
83 getChartTypeForIndex( sal_Int32 nChartTypeIndex
) override
;
85 virtual StackMode
getStackMode( sal_Int32 nChartTypeIndex
) const override
;
88 StackMode m_eStackMode
;
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */