1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_LINECHARTTYPETEMPLATE_HXX
20 #define INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_LINECHARTTYPETEMPLATE_HXX
22 #include "ChartTypeTemplate.hxx"
23 #include "OPropertySet.hxx"
24 #include "MutexContainer.hxx"
25 #include "StackMode.hxx"
26 #include <comphelper/uno3.hxx>
27 #include <com/sun/star/chart2/CurveStyle.hpp>
32 class LineChartTypeTemplate
:
33 public MutexContainer
,
34 public ChartTypeTemplate
,
35 public ::property::OPropertySet
38 explicit LineChartTypeTemplate(
39 ::com::sun::star::uno::Reference
<
40 ::com::sun::star::uno::XComponentContext
> const & xContext
,
41 const OUString
& rServiceName
,
44 bool bHasLines
= true,
46 virtual ~LineChartTypeTemplate();
48 /// merge XInterface implementations
50 /// merge XTypeProvider implementations
51 DECLARE_XTYPEPROVIDER()
54 // ____ OPropertySet ____
55 virtual ::com::sun::star::uno::Any
GetDefaultValue( sal_Int32 nHandle
) const
56 throw(::com::sun::star::beans::UnknownPropertyException
) SAL_OVERRIDE
;
57 virtual ::cppu::IPropertyArrayHelper
& SAL_CALL
getInfoHelper() SAL_OVERRIDE
;
59 // ____ XPropertySet ____
60 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySetInfo
> SAL_CALL
62 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
64 // ____ XChartTypeTemplate ____
65 virtual sal_Bool SAL_CALL
matchesTemplate(
66 const ::com::sun::star::uno::Reference
<
67 ::com::sun::star::chart2::XDiagram
>& xDiagram
,
68 sal_Bool bAdaptProperties
)
69 throw (::com::sun::star::uno::RuntimeException
, std::exception
) SAL_OVERRIDE
;
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
, std::exception
) SAL_OVERRIDE
;
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
, std::exception
) SAL_OVERRIDE
;
82 // ____ ChartTypeTemplate ____
83 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::chart2::XChartType
>
84 getChartTypeForIndex( sal_Int32 nChartTypeIndex
) SAL_OVERRIDE
;
85 virtual sal_Int32
getDimension() const SAL_OVERRIDE
;
86 virtual StackMode
getStackMode( sal_Int32 nChartTypeIndex
) const SAL_OVERRIDE
;
89 StackMode m_eStackMode
;
97 // INCLUDED_CHART2_SOURCE_MODEL_TEMPLATE_LINECHARTTYPETEMPLATE_HXX
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */