merged tag ooo/OOO330_m14
[LibreOffice.git] / chart2 / source / model / template / ColumnLineChartTypeTemplate.hxx
blobce86188e2bb660665e800aa14ee26ad1e7c48566
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_COLUMNLINECHARTTYPETEMPLATE_HXX
28 #define CHART_COLUMNLINECHARTTYPETEMPLATE_HXX
30 #include "ChartTypeTemplate.hxx"
31 #include "StackMode.hxx"
33 #include "OPropertySet.hxx"
34 #include "MutexContainer.hxx"
35 #include <comphelper/uno3.hxx>
37 namespace chart
40 class ColumnLineChartTypeTemplate :
41 public MutexContainer,
42 public ChartTypeTemplate,
43 public ::property::OPropertySet
45 public:
46 explicit ColumnLineChartTypeTemplate(
47 ::com::sun::star::uno::Reference<
48 ::com::sun::star::uno::XComponentContext > const & xContext,
49 const ::rtl::OUString & rServiceName,
50 StackMode eStackMode,
51 sal_Int32 nNumberOfLines );
52 virtual ~ColumnLineChartTypeTemplate();
54 /// XServiceInfo declarations
55 APPHELPER_XSERVICEINFO_DECL()
57 /// merge XInterface implementations
58 DECLARE_XINTERFACE()
59 /// merge XTypeProvider implementations
60 DECLARE_XTYPEPROVIDER()
62 protected:
63 // ____ OPropertySet ____
64 virtual ::com::sun::star::uno::Any GetDefaultValue( sal_Int32 nHandle ) const
65 throw(::com::sun::star::beans::UnknownPropertyException);
66 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();
68 // ____ XPropertySet ____
69 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL
70 getPropertySetInfo()
71 throw (::com::sun::star::uno::RuntimeException);
73 // ____ XChartTypeTemplate ____
74 virtual sal_Bool SAL_CALL matchesTemplate(
75 const ::com::sun::star::uno::Reference<
76 ::com::sun::star::chart2::XDiagram >& xDiagram,
77 sal_Bool bAdaptProperties )
78 throw (::com::sun::star::uno::RuntimeException);
79 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
80 getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
81 ::com::sun::star::uno::Reference<
82 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
83 throw (::com::sun::star::uno::RuntimeException);
84 virtual void SAL_CALL applyStyle(
85 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
86 ::sal_Int32 nChartTypeGroupIndex,
87 ::sal_Int32 nSeriesIndex,
88 ::sal_Int32 nSeriesCount )
89 throw (::com::sun::star::uno::RuntimeException);
90 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataInterpreter > SAL_CALL getDataInterpreter()
91 throw (::com::sun::star::uno::RuntimeException);
93 // ____ ChartTypeTemplate ____
94 virtual void createChartTypes(
95 const ::com::sun::star::uno::Sequence<
96 ::com::sun::star::uno::Sequence<
97 ::com::sun::star::uno::Reference<
98 ::com::sun::star::chart2::XDataSeries > > > & aSeriesSeq,
99 const ::com::sun::star::uno::Sequence<
100 ::com::sun::star::uno::Reference<
101 ::com::sun::star::chart2::XCoordinateSystem > > & rCoordSys,
102 const ::com::sun::star::uno::Sequence<
103 ::com::sun::star::uno::Reference<
104 ::com::sun::star::chart2::XChartType > > & aOldChartTypesSeq
107 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
108 getChartTypeForIndex( sal_Int32 nChartTypeIndex );
110 virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const;
112 private:
113 StackMode m_eStackMode;
116 } // namespace chart
118 // CHART_COLUMNLINECHARTTYPETEMPLATE_HXX
119 #endif