fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / chart2 / source / model / template / BarChartTypeTemplate.hxx
blob7c882aa58ed3e947880043a23ef851a3254957fb
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_BARCHARTTYPETEMPLATE_HXX
20 #define INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_BARCHARTTYPETEMPLATE_HXX
22 #include "OPropertySet.hxx"
23 #include "MutexContainer.hxx"
24 #include <comphelper/uno3.hxx>
26 #include "ChartTypeTemplate.hxx"
27 #include "StackMode.hxx"
29 namespace chart
32 class BarChartTypeTemplate :
33 public MutexContainer,
34 public ChartTypeTemplate,
35 public ::property::OPropertySet
37 public:
38 enum BarDirection
40 HORIZONTAL,
41 VERTICAL
44 explicit BarChartTypeTemplate(
45 ::com::sun::star::uno::Reference<
46 ::com::sun::star::uno::XComponentContext > const & xContext,
47 const OUString & rServiceName,
48 StackMode eStackMode,
49 BarDirection eDirection,
50 sal_Int32 nDim = 2 );
51 virtual ~BarChartTypeTemplate();
53 /// merge XInterface implementations
54 DECLARE_XINTERFACE()
55 /// merge XTypeProvider implementations
56 DECLARE_XTYPEPROVIDER()
58 protected:
59 // ____ OPropertySet ____
60 virtual ::com::sun::star::uno::Any GetDefaultValue( sal_Int32 nHandle ) const
61 throw(::com::sun::star::beans::UnknownPropertyException) SAL_OVERRIDE;
62 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() SAL_OVERRIDE;
64 // ____ XPropertySet ____
65 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL
66 getPropertySetInfo()
67 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
69 // ____ XChartTypeTemplate ____
70 virtual sal_Bool SAL_CALL matchesTemplate(
71 const ::com::sun::star::uno::Reference<
72 ::com::sun::star::chart2::XDiagram >& xDiagram,
73 sal_Bool bAdaptProperties )
74 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
75 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
76 getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
77 ::com::sun::star::uno::Reference<
78 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
79 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
80 virtual void SAL_CALL applyStyle(
81 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
82 ::sal_Int32 nChartTypeGroupIndex,
83 ::sal_Int32 nSeriesIndex,
84 ::sal_Int32 nSeriesCount )
85 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
86 virtual void SAL_CALL resetStyles(
87 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram >& xDiagram )
88 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
90 // ____ ChartTypeTemplate ____
91 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
92 getChartTypeForIndex( sal_Int32 nChartTypeIndex ) SAL_OVERRIDE;
93 virtual sal_Int32 getDimension() const SAL_OVERRIDE;
94 virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const SAL_OVERRIDE;
95 virtual bool isSwapXAndY() const SAL_OVERRIDE;
97 virtual void createCoordinateSystems(
98 const ::com::sun::star::uno::Reference<
99 ::com::sun::star::chart2::XCoordinateSystemContainer > & xCooSysCnt ) SAL_OVERRIDE;
101 private:
102 StackMode m_eStackMode;
103 BarDirection m_eBarDirection;
104 sal_Int32 m_nDim;
107 } // namespace chart
109 // INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_BARCHARTTYPETEMPLATE_HXX
110 #endif
112 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */