merged tag ooo/OOO330_m14
[LibreOffice.git] / chart2 / source / model / template / AreaChartTypeTemplate.hxx
bloba84a4b645c2a23dbf039bf43d5f04e07175bf8ea
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_AREACHARTTYPETEMPLATE_HXX
28 #define CHART_AREACHARTTYPETEMPLATE_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 AreaChartTypeTemplate :
41 public MutexContainer,
42 public ChartTypeTemplate,
43 public ::property::OPropertySet
45 public:
46 explicit AreaChartTypeTemplate(
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 nDim = 2 );
52 virtual ~AreaChartTypeTemplate();
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 ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
75 getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
76 ::com::sun::star::uno::Reference<
77 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
78 throw (::com::sun::star::uno::RuntimeException);
79 virtual void SAL_CALL applyStyle(
80 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
81 ::sal_Int32 nChartTypeGroupIndex,
82 ::sal_Int32 nSeriesIndex,
83 ::sal_Int32 nSeriesCount )
84 throw (::com::sun::star::uno::RuntimeException);
85 virtual void SAL_CALL resetStyles(
86 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram >& xDiagram )
87 throw (::com::sun::star::uno::RuntimeException);
89 // ____ ChartTypeTemplate ____
90 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
91 getChartTypeForIndex( sal_Int32 nChartTypeIndex );
92 virtual sal_Int32 getDimension() const;
93 virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const;
95 private:
96 StackMode m_eStackMode;
97 sal_Int32 m_nDim;
100 } // namespace chart
102 // CHART_AREACHARTTYPETEMPLATE_HXX
103 #endif