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_LINECHARTTYPETEMPLATE_HXX 24 #define CHART_LINECHARTTYPETEMPLATE_HXX 25 26 #include "ChartTypeTemplate.hxx" 27 #include "OPropertySet.hxx" 28 #include "MutexContainer.hxx" 29 #include "StackMode.hxx" 30 #include <comphelper/uno3.hxx> 31 #include <com/sun/star/chart2/CurveStyle.hpp> 32 33 namespace chart 34 { 35 36 class LineChartTypeTemplate : 37 public MutexContainer, 38 public ChartTypeTemplate, 39 public ::property::OPropertySet 40 { 41 public: 42 explicit LineChartTypeTemplate( 43 ::com::sun::star::uno::Reference< 44 ::com::sun::star::uno::XComponentContext > const & xContext, 45 const ::rtl::OUString & rServiceName, 46 StackMode eStackMode, 47 bool bSymbols, 48 bool bHasLines = true, 49 sal_Int32 nDim = 2 ); 50 virtual ~LineChartTypeTemplate(); 51 52 /// XServiceInfo declarations 53 APPHELPER_XSERVICEINFO_DECL() 54 55 /// merge XInterface implementations 56 DECLARE_XINTERFACE() 57 /// merge XTypeProvider implementations 58 DECLARE_XTYPEPROVIDER() 59 60 protected: 61 // ____ OPropertySet ____ 62 virtual ::com::sun::star::uno::Any GetDefaultValue( sal_Int32 nHandle ) const 63 throw(::com::sun::star::beans::UnknownPropertyException); 64 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper(); 65 66 // ____ XPropertySet ____ 67 virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL 68 getPropertySetInfo() 69 throw (::com::sun::star::uno::RuntimeException); 70 71 // ____ XChartTypeTemplate ____ 72 virtual sal_Bool SAL_CALL matchesTemplate( 73 const ::com::sun::star::uno::Reference< 74 ::com::sun::star::chart2::XDiagram >& xDiagram, 75 sal_Bool bAdaptProperties ) 76 throw (::com::sun::star::uno::RuntimeException); 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 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; 94 95 private: 96 StackMode m_eStackMode; 97 bool m_bHasSymbols; 98 bool m_bHasLines; 99 sal_Int32 m_nDim; 100 }; 101 102 } // namespace chart 103 104 // CHART_LINECHARTTYPETEMPLATE_HXX 105 #endif 106