merge the formfield patch from ooo-build
[ooovba.git] / chart2 / source / model / template / ScatterChartTypeTemplate.hxx
blob12e6459d8a84ae0d7be9be5b73ffeb762d284137
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: ScatterChartTypeTemplate.hxx,v $
10 * $Revision: 1.9 $
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_SCATTERCHARTTYPETEMPLATE_HXX
31 #define CHART_SCATTERCHARTTYPETEMPLATE_HXX
33 #include "ChartTypeTemplate.hxx"
34 #include "OPropertySet.hxx"
35 #include "MutexContainer.hxx"
36 #include <comphelper/uno3.hxx>
37 #include <com/sun/star/chart2/CurveStyle.hpp>
39 namespace chart
42 class ScatterChartTypeTemplate :
43 public MutexContainer,
44 public ChartTypeTemplate,
45 public ::property::OPropertySet
47 public:
48 explicit ScatterChartTypeTemplate(
49 ::com::sun::star::uno::Reference<
50 ::com::sun::star::uno::XComponentContext > const & xContext,
51 const ::rtl::OUString & rServiceName,
52 bool bSymbols,
53 bool bHasLines = true,
54 sal_Int32 nDim = 2 );
55 virtual ~ScatterChartTypeTemplate();
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::Sequence< ::rtl::OUString > SAL_CALL getAvailableCreationParameterNames()
78 throw (::com::sun::star::uno::RuntimeException);
79 virtual sal_Bool SAL_CALL matchesTemplate(
80 const ::com::sun::star::uno::Reference<
81 ::com::sun::star::chart2::XDiagram >& xDiagram,
82 sal_Bool bAdaptProperties )
83 throw (::com::sun::star::uno::RuntimeException);
84 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType > SAL_CALL
85 getChartTypeForNewSeries( const ::com::sun::star::uno::Sequence<
86 ::com::sun::star::uno::Reference<
87 ::com::sun::star::chart2::XChartType > >& aFormerlyUsedChartTypes )
88 throw (::com::sun::star::uno::RuntimeException);
89 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataInterpreter > SAL_CALL getDataInterpreter()
90 throw (::com::sun::star::uno::RuntimeException);
91 virtual void SAL_CALL applyStyle(
92 const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries,
93 ::sal_Int32 nChartTypeGroupIndex,
94 ::sal_Int32 nSeriesIndex,
95 ::sal_Int32 nSeriesCount )
96 throw (::com::sun::star::uno::RuntimeException);
98 // ____ ChartTypeTemplate ____
99 virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >
100 getChartTypeForIndex( sal_Int32 nChartTypeIndex );
101 virtual sal_Int32 getDimension() const;
102 virtual StackMode getStackMode( sal_Int32 nChartTypeIndex ) const;
104 virtual bool supportsCategories() const;
106 private:
107 bool m_bHasSymbols;
108 bool m_bHasLines;
109 sal_Int32 m_nDim;
112 } // namespace chart
114 // CHART_SCATTERCHARTTYPETEMPLATE_HXX
115 #endif