update dev300-m58
[ooovba.git] / chart2 / source / model / template / AreaChartTypeTemplate.hxx
blobcbd0704e788bd6913dd2034ba46129b02147c7a5
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: AreaChartTypeTemplate.hxx,v $
10 * $Revision: 1.8 $
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_AREACHARTTYPETEMPLATE_HXX
31 #define CHART_AREACHARTTYPETEMPLATE_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 AreaChartTypeTemplate :
44 public MutexContainer,
45 public ChartTypeTemplate,
46 public ::property::OPropertySet
48 public:
49 explicit AreaChartTypeTemplate(
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 nDim = 2 );
55 virtual ~AreaChartTypeTemplate();
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 ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
78 getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
79 ::com::sun::star::uno::Reference<
80 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
81 throw (::com::sun::star::uno::RuntimeException);
82 virtual void SAL_CALL applyStyle(
83 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
84 ::sal_Int32 nChartTypeGroupIndex,
85 ::sal_Int32 nSeriesIndex,
86 ::sal_Int32 nSeriesCount )
87 throw (::com::sun::star::uno::RuntimeException);
88 virtual void SAL_CALL resetStyles(
89 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram >& xDiagram )
90 throw (::com::sun::star::uno::RuntimeException);
92 // ____ ChartTypeTemplate ____
93 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
94 getChartTypeForIndex( sal_Int32 nChartTypeIndex );
95 virtual sal_Int32 getDimension() const;
96 virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const;
98 private:
99 StackMode m_eStackMode;
100 sal_Int32 m_nDim;
103 } // namespace chart
105 // CHART_AREACHARTTYPETEMPLATE_HXX
106 #endif