fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / chart2 / source / model / template / AreaChartTypeTemplate.hxx
blobb699f7430e1e865a4cfbb54d0a08da543e488222
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_AREACHARTTYPETEMPLATE_HXX
20 #define INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_AREACHARTTYPETEMPLATE_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 AreaChartTypeTemplate :
33 public MutexContainer,
34 public ChartTypeTemplate,
35 public ::property::OPropertySet
37 public:
38 explicit AreaChartTypeTemplate(
39 ::com::sun::star::uno::Reference<
40 ::com::sun::star::uno::XComponentContext > const & xContext,
41 const OUString & rServiceName,
42 StackMode eStackMode,
43 sal_Int32 nDim = 2 );
44 virtual ~AreaChartTypeTemplate();
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 ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
64 getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
65 ::com::sun::star::uno::Reference<
66 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
67 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
68 virtual void SAL_CALL applyStyle(
69 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
70 ::sal_Int32 nChartTypeGroupIndex,
71 ::sal_Int32 nSeriesIndex,
72 ::sal_Int32 nSeriesCount )
73 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
74 virtual void SAL_CALL resetStyles(
75 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram >& xDiagram )
76 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
78 // ____ ChartTypeTemplate ____
79 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
80 getChartTypeForIndex( sal_Int32 nChartTypeIndex ) SAL_OVERRIDE;
81 virtual sal_Int32 getDimension() const SAL_OVERRIDE;
82 virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const SAL_OVERRIDE;
84 private:
85 StackMode m_eStackMode;
88 } // namespace chart
90 // INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_AREACHARTTYPETEMPLATE_HXX
91 #endif
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */