merged tag ooo/OOO330_m14
[LibreOffice.git] / chart2 / source / model / template / LineChartTypeTemplate.hxx
blobfaee9715720aa37ac46941eaee1f796ba2fb5064
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef CHART_LINECHARTTYPETEMPLATE_HXX
28 #define CHART_LINECHARTTYPETEMPLATE_HXX
30 #include "ChartTypeTemplate.hxx"
31 #include "OPropertySet.hxx"
32 #include "MutexContainer.hxx"
33 #include "StackMode.hxx"
34 #include <comphelper/uno3.hxx>
35 #include <com/sun/star/chart2/CurveStyle.hpp>
37 namespace chart
40 class LineChartTypeTemplate :
41 public MutexContainer,
42 public ChartTypeTemplate,
43 public ::property::OPropertySet
45 public:
46 explicit LineChartTypeTemplate(
47 ::com::sun::star::uno::Reference<
48 ::com::sun::star::uno::XComponentContext > const & xContext,
49 const ::rtl::OUString & rServiceName,
50 StackMode eStackMode,
51 bool bSymbols,
52 bool bHasLines = true,
53 sal_Int32 nDim = 2 );
54 virtual ~LineChartTypeTemplate();
56 /// XServiceInfo declarations
57 APPHELPER_XSERVICEINFO_DECL()
59 /// merge XInterface implementations
60 DECLARE_XINTERFACE()
61 /// merge XTypeProvider implementations
62 DECLARE_XTYPEPROVIDER()
64 protected:
65 // ____ OPropertySet ____
66 virtual ::com::sun::star::uno::Any GetDefaultValue( sal_Int32 nHandle ) const
67 throw(::com::sun::star::beans::UnknownPropertyException);
68 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();
70 // ____ XPropertySet ____
71 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL
72 getPropertySetInfo()
73 throw (::com::sun::star::uno::RuntimeException);
75 // ____ XChartTypeTemplate ____
76 virtual sal_Bool SAL_CALL matchesTemplate(
77 const ::com::sun::star::uno::Reference<
78 ::com::sun::star::chart2::XDiagram >& xDiagram,
79 sal_Bool bAdaptProperties )
80 throw (::com::sun::star::uno::RuntimeException);
81 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
82 getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
83 ::com::sun::star::uno::Reference<
84 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
85 throw (::com::sun::star::uno::RuntimeException);
86 virtual void SAL_CALL applyStyle(
87 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
88 ::sal_Int32 nChartTypeGroupIndex,
89 ::sal_Int32 nSeriesIndex,
90 ::sal_Int32 nSeriesCount )
91 throw (::com::sun::star::uno::RuntimeException);
93 // ____ ChartTypeTemplate ____
94 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
95 getChartTypeForIndex( sal_Int32 nChartTypeIndex );
96 virtual sal_Int32 getDimension() const;
97 virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const;
99 private:
100 StackMode m_eStackMode;
101 bool m_bHasSymbols;
102 bool m_bHasLines;
103 sal_Int32 m_nDim;
106 } // namespace chart
108 // CHART_LINECHARTTYPETEMPLATE_HXX
109 #endif