Update ooo320-m1
[ooovba.git] / chart2 / source / model / template / ColumnLineChartTypeTemplate.hxx
bloba350eedb4dc996456f7f0fa76ccc2683f835ca95
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: ColumnLineChartTypeTemplate.hxx,v $
10 * $Revision: 1.10 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef CHART_COLUMNLINECHARTTYPETEMPLATE_HXX
31 #define CHART_COLUMNLINECHARTTYPETEMPLATE_HXX
33 #include "ChartTypeTemplate.hxx"
34 #include "StackMode.hxx"
36 #include "OPropertySet.hxx"
37 #include "MutexContainer.hxx"
38 #include <comphelper/uno3.hxx>
40 namespace chart
43 class ColumnLineChartTypeTemplate :
44 public MutexContainer,
45 public ChartTypeTemplate,
46 public ::property::OPropertySet
48 public:
49 explicit ColumnLineChartTypeTemplate(
50 ::com::sun::star::uno::Reference<
51 ::com::sun::star::uno::XComponentContext > const & xContext,
52 const ::rtl::OUString & rServiceName,
53 StackMode eStackMode,
54 sal_Int32 nNumberOfLines );
55 virtual ~ColumnLineChartTypeTemplate();
57 /// XServiceInfo declarations
58 APPHELPER_XSERVICEINFO_DECL()
60 /// merge XInterface implementations
61 DECLARE_XINTERFACE()
62 /// merge XTypeProvider implementations
63 DECLARE_XTYPEPROVIDER()
65 protected:
66 // ____ OPropertySet ____
67 virtual ::com::sun::star::uno::Any GetDefaultValue( sal_Int32 nHandle ) const
68 throw(::com::sun::star::beans::UnknownPropertyException);
69 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();
71 // ____ XPropertySet ____
72 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL
73 getPropertySetInfo()
74 throw (::com::sun::star::uno::RuntimeException);
76 // ____ XChartTypeTemplate ____
77 virtual sal_Bool SAL_CALL matchesTemplate(
78 const ::com::sun::star::uno::Reference<
79 ::com::sun::star::chart2::XDiagram >& xDiagram,
80 sal_Bool bAdaptProperties )
81 throw (::com::sun::star::uno::RuntimeException);
82 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
83 getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
84 ::com::sun::star::uno::Reference<
85 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
86 throw (::com::sun::star::uno::RuntimeException);
87 virtual void SAL_CALL applyStyle(
88 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
89 ::sal_Int32 nChartTypeGroupIndex,
90 ::sal_Int32 nSeriesIndex,
91 ::sal_Int32 nSeriesCount )
92 throw (::com::sun::star::uno::RuntimeException);
93 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataInterpreter > SAL_CALL getDataInterpreter()
94 throw (::com::sun::star::uno::RuntimeException);
96 // ____ ChartTypeTemplate ____
97 virtual void createChartTypes(
98 const ::com::sun::star::uno::Sequence<
99 ::com::sun::star::uno::Sequence<
100 ::com::sun::star::uno::Reference<
101 ::com::sun::star::chart2::XDataSeries > > > & aSeriesSeq,
102 const ::com::sun::star::uno::Sequence<
103 ::com::sun::star::uno::Reference<
104 ::com::sun::star::chart2::XCoordinateSystem > > & rCoordSys,
105 const ::com::sun::star::uno::Sequence<
106 ::com::sun::star::uno::Reference<
107 ::com::sun::star::chart2::XChartType > > & aOldChartTypesSeq
110 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
111 getChartTypeForIndex( sal_Int32 nChartTypeIndex );
113 virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const;
115 private:
116 StackMode m_eStackMode;
119 } // namespace chart
121 // CHART_COLUMNLINECHARTTYPETEMPLATE_HXX
122 #endif