1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 #ifndef CHART_AREACHARTTYPETEMPLATE_HXX
24 #define CHART_AREACHARTTYPETEMPLATE_HXX
25 
26 #include "ChartTypeTemplate.hxx"
27 #include "StackMode.hxx"
28 
29 #include "OPropertySet.hxx"
30 #include "MutexContainer.hxx"
31 #include <comphelper/uno3.hxx>
32 
33 namespace chart
34 {
35 
36 class AreaChartTypeTemplate :
37         public MutexContainer,
38         public ChartTypeTemplate,
39         public ::property::OPropertySet
40 {
41 public:
42     explicit AreaChartTypeTemplate(
43         ::com::sun::star::uno::Reference<
44             ::com::sun::star::uno::XComponentContext > const & xContext,
45         const ::rtl::OUString & rServiceName,
46         StackMode eStackMode,
47         sal_Int32 nDim = 2 );
48 	virtual ~AreaChartTypeTemplate();
49 
50     /// XServiceInfo declarations
51     APPHELPER_XSERVICEINFO_DECL()
52 
53     /// merge XInterface implementations
54  	DECLARE_XINTERFACE()
55     /// merge XTypeProvider implementations
56  	DECLARE_XTYPEPROVIDER()
57 
58 protected:
59     // ____ OPropertySet ____
60     virtual ::com::sun::star::uno::Any GetDefaultValue( sal_Int32 nHandle ) const
61         throw(::com::sun::star::beans::UnknownPropertyException);
62     virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper();
63 
64     // ____ XPropertySet ____
65     virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL
66         getPropertySetInfo()
67         throw (::com::sun::star::uno::RuntimeException);
68 
69     // ____ XChartTypeTemplate ____
70     virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
71         getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
72             ::com::sun::star::uno::Reference<
73                 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
74         throw (::com::sun::star::uno::RuntimeException);
75     virtual void SAL_CALL applyStyle(
76         const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
77         ::sal_Int32 nChartTypeGroupIndex,
78         ::sal_Int32 nSeriesIndex,
79         ::sal_Int32 nSeriesCount )
80         throw (::com::sun::star::uno::RuntimeException);
81     virtual void SAL_CALL resetStyles(
82         const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram >& xDiagram )
83         throw (::com::sun::star::uno::RuntimeException);
84 
85     // ____ ChartTypeTemplate ____
86     virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
87                 getChartTypeForIndex( sal_Int32 nChartTypeIndex );
88     virtual sal_Int32 getDimension() const;
89     virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const;
90 
91 private:
92     StackMode          m_eStackMode;
93     sal_Int32          m_nDim;
94 };
95 
96 } //  namespace chart
97 
98 // CHART_AREACHARTTYPETEMPLATE_HXX
99 #endif
100