fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / chart2 / source / model / template / ColumnLineChartTypeTemplate.hxx
blobf4739ce7bc6d7fd40a05de9856e0b95ebc60ea0a
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 #ifndef INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_COLUMNLINECHARTTYPETEMPLATE_HXX
20 #define INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_COLUMNLINECHARTTYPETEMPLATE_HXX
22 #include "ChartTypeTemplate.hxx"
23 #include "StackMode.hxx"
25 #include "OPropertySet.hxx"
26 #include "MutexContainer.hxx"
27 #include <comphelper/uno3.hxx>
29 namespace chart
32 class ColumnLineChartTypeTemplate :
33 public MutexContainer,
34 public ChartTypeTemplate,
35 public ::property::OPropertySet
37 public:
38 explicit ColumnLineChartTypeTemplate(
39 ::com::sun::star::uno::Reference<
40 ::com::sun::star::uno::XComponentContext > const & xContext,
41 const OUString & rServiceName,
42 StackMode eStackMode,
43 sal_Int32 nNumberOfLines );
44 virtual ~ColumnLineChartTypeTemplate();
46 /// merge XInterface implementations
47 DECLARE_XINTERFACE()
48 /// merge XTypeProvider implementations
49 DECLARE_XTYPEPROVIDER()
51 protected:
52 // ____ OPropertySet ____
53 virtual ::com::sun::star::uno::Any GetDefaultValue( sal_Int32 nHandle ) const
54 throw(::com::sun::star::beans::UnknownPropertyException) SAL_OVERRIDE;
55 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() SAL_OVERRIDE;
57 // ____ XPropertySet ____
58 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL
59 getPropertySetInfo()
60 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
62 // ____ XChartTypeTemplate ____
63 virtual sal_Bool SAL_CALL matchesTemplate(
64 const ::com::sun::star::uno::Reference<
65 ::com::sun::star::chart2::XDiagram >& xDiagram,
66 sal_Bool bAdaptProperties )
67 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
68 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
69 getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
70 ::com::sun::star::uno::Reference<
71 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
72 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
73 virtual void SAL_CALL applyStyle(
74 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
75 ::sal_Int32 nChartTypeGroupIndex,
76 ::sal_Int32 nSeriesIndex,
77 ::sal_Int32 nSeriesCount )
78 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
79 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataInterpreter > SAL_CALL getDataInterpreter()
80 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
82 // ____ ChartTypeTemplate ____
83 virtual void createChartTypes(
84 const ::com::sun::star::uno::Sequence<
85 ::com::sun::star::uno::Sequence<
86 ::com::sun::star::uno::Reference<
87 ::com::sun::star::chart2::XDataSeries > > > & aSeriesSeq,
88 const ::com::sun::star::uno::Sequence<
89 ::com::sun::star::uno::Reference<
90 ::com::sun::star::chart2::XCoordinateSystem > > & rCoordSys,
91 const ::com::sun::star::uno::Sequence<
92 ::com::sun::star::uno::Reference<
93 ::com::sun::star::chart2::XChartType > > & aOldChartTypesSeq
94 ) SAL_OVERRIDE;
96 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
97 getChartTypeForIndex( sal_Int32 nChartTypeIndex ) SAL_OVERRIDE;
99 virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const SAL_OVERRIDE;
101 private:
102 StackMode m_eStackMode;
105 } // namespace chart
107 // INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_COLUMNLINECHARTTYPETEMPLATE_HXX
108 #endif
110 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */