fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / chart2 / source / model / template / NetChartTypeTemplate.hxx
blob5d8482f8663bf143e9f02a6cced642f12e1fd436
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_NETCHARTTYPETEMPLATE_HXX
20 #define INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_NETCHARTTYPETEMPLATE_HXX
22 #include "ChartTypeTemplate.hxx"
23 #include "StackMode.hxx"
25 namespace chart
28 class NetChartTypeTemplate : public ChartTypeTemplate
30 public:
31 explicit NetChartTypeTemplate(
32 ::com::sun::star::uno::Reference<
33 ::com::sun::star::uno::XComponentContext > const & xContext,
34 const OUString & rServiceName,
35 StackMode eStackMode,
36 bool bSymbols,
37 bool bHasLines = true,
38 bool bHasFilledArea = false
40 virtual ~NetChartTypeTemplate();
42 protected:
43 // ____ XChartTypeTemplate ____
44 virtual sal_Bool SAL_CALL matchesTemplate(
45 const ::com::sun::star::uno::Reference<
46 ::com::sun::star::chart2::XDiagram >& xDiagram,
47 sal_Bool bAdaptProperties )
48 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
49 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
50 getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
51 ::com::sun::star::uno::Reference<
52 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
53 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
54 virtual void SAL_CALL applyStyle(
55 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
56 ::sal_Int32 nChartTypeGroupIndex,
57 ::sal_Int32 nSeriesIndex,
58 ::sal_Int32 nSeriesCount )
59 throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
61 // ____ ChartTypeTemplate ____
62 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
63 getChartTypeForIndex( sal_Int32 nChartTypeIndex ) SAL_OVERRIDE;
64 virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const SAL_OVERRIDE;
66 private:
67 StackMode m_eStackMode;
68 bool m_bHasSymbols;
69 bool m_bHasLines;
70 bool m_bHasFilledArea;
73 } // namespace chart
75 // INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_NETCHARTTYPETEMPLATE_HXX
76 #endif
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */