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 .
20 #ifndef INCLUDED_SC_SOURCE_UI_VBA_VBACHART_HXX
21 #define INCLUDED_SC_SOURCE_UI_VBA_VBACHART_HXX
23 #include <com/sun/star/uno/XComponentContext.hpp>
24 #include <com/sun/star/table/XTableChart.hpp>
25 #include <com/sun/star/chart/XChartDocument.hpp>
26 #include <com/sun/star/chart/XAxisXSupplier.hpp>
27 #include <com/sun/star/chart/XAxisYSupplier.hpp>
28 #include <com/sun/star/chart/XAxisZSupplier.hpp>
29 #include <com/sun/star/chart/XTwoAxisXSupplier.hpp>
30 #include <com/sun/star/chart/XTwoAxisYSupplier.hpp>
31 #include <ooo/vba/excel/XChart.hpp>
32 #include <vbahelper/vbahelperinterface.hxx>
34 typedef InheritedHelperInterfaceWeakImpl
<ov::excel::XChart
> ChartImpl_BASE
;
36 class ScVbaChart
: public ChartImpl_BASE
38 friend class ScVbaAxis
;
40 css::uno::Reference
< css::chart::XChartDocument
> mxChartDocument
;
41 css::uno::Reference
< css::table::XTableChart
> mxTableChart
;
42 css::uno::Reference
< css::beans::XPropertySet
> mxDiagramPropertySet
;
43 css::uno::Reference
< css::beans::XPropertySet
> mxChartPropertySet
;
44 css::uno::Reference
< css::chart::XAxisXSupplier
> xAxisXSupplier
;
45 css::uno::Reference
< css::chart::XAxisYSupplier
> xAxisYSupplier
;
46 css::uno::Reference
< css::chart::XAxisZSupplier
> xAxisZSupplier
;
47 css::uno::Reference
< css::chart::XTwoAxisXSupplier
> xTwoAxisXSupplier
;
48 css::uno::Reference
< css::chart::XTwoAxisYSupplier
> xTwoAxisYSupplier
;
50 static css::uno::Sequence
< OUString
> getDefaultSeriesDescriptions( sal_Int32 nCount
);
51 /// @throws css::script::BasicErrorException
52 void setDefaultChartType() ;
53 /// @throws css::script::BasicErrorException
54 void setDiagram( const OUString
& _sDiagramType
);
55 /// @throws css::uno::RuntimeException
57 /// @throws css::uno::RuntimeException
58 bool is100PercentStacked();
59 /// @throws css::uno::RuntimeException
60 sal_Int32
getStackedType( sal_Int32 _nStacked
, sal_Int32 _n100PercentStacked
, sal_Int32 _nUnStacked
);
61 /// @throws css::script::BasicErrorException
62 sal_Int32
getSolidType(sal_Int32 _nDeep
, sal_Int32 _nVertiStacked
, sal_Int32 _nVerti100PercentStacked
, sal_Int32 _nVertiUnStacked
, sal_Int32 _nHoriStacked
, sal_Int32 _nHori100PercentStacked
, sal_Int32 _nHoriUnStacked
);
63 /// @throws css::script::BasicErrorException
64 sal_Int32
getStockUpDownValue(sal_Int32 _nUpDown
, sal_Int32 _nNotUpDown
);
65 /// @throws css::script::BasicErrorException
67 /// @throws css::script::BasicErrorException
68 sal_Int32
getMarkerType(sal_Int32 _nWithMarkers
, sal_Int32 _nWithoutMarkers
);
69 void assignDiagramAttributes();
71 ScVbaChart( const css::uno::Reference
< ov::XHelperInterface
>& _xParent
, const css::uno::Reference
< css::uno::XComponentContext
>& _xContext
, const css::uno::Reference
< css::lang::XComponent
>& _xChartComponent
, const css::uno::Reference
< css::table::XTableChart
>& _xTableChart
);
74 const css::uno::Reference
< css::beans::XPropertySet
>& xDiagramPropertySet() const { return mxDiagramPropertySet
; }
75 /// @throws css::uno::RuntimeException
77 /// @throws css::script::BasicErrorException
78 /// @throws css::uno::RuntimeException
79 css::uno::Reference
< css::beans::XPropertySet
> getAxisPropertySet(sal_Int32 _nAxisType
, sal_Int32 _nAxisGroup
);
81 virtual OUString SAL_CALL
getName() override
;
82 virtual css::uno::Any SAL_CALL
SeriesCollection(const css::uno::Any
&) override
;
83 virtual ::sal_Int32 SAL_CALL
getChartType() override
;
84 virtual void SAL_CALL
setChartType( ::sal_Int32 _charttype
) override
;
85 virtual void SAL_CALL
Activate( ) override
;
86 virtual void SAL_CALL
setSourceData( const css::uno::Reference
< ::ooo::vba::excel::XRange
>& range
, const css::uno::Any
& PlotBy
) override
;
87 virtual ::sal_Int32 SAL_CALL
Location( ) override
;
88 virtual ::sal_Int32 SAL_CALL
getLocation( ) override
;
89 virtual void SAL_CALL
setLocation( ::sal_Int32 where
, const css::uno::Any
& Name
) override
;
90 virtual sal_Bool SAL_CALL
getHasTitle( ) override
;
91 virtual void SAL_CALL
setHasTitle( sal_Bool bTitle
) override
;
92 virtual sal_Bool SAL_CALL
getHasLegend( ) override
;
93 virtual void SAL_CALL
setHasLegend( sal_Bool bLegend
) override
;
94 virtual void SAL_CALL
setPlotBy( ::sal_Int32 xlRowCol
) override
;
95 virtual ::sal_Int32 SAL_CALL
getPlotBy( ) override
;
96 virtual css::uno::Reference
< ov::excel::XChartTitle
> SAL_CALL
getChartTitle( ) override
;
97 virtual css::uno::Any SAL_CALL
Axes( const css::uno::Any
& Type
, const css::uno::Any
& AxisGroup
) override
;
99 virtual OUString
getServiceImplName() override
;
100 virtual css::uno::Sequence
<OUString
> getServiceNames() override
;
104 #endif // INCLUDED_SC_SOURCE_UI_VBA_VBACHART_HXX
106 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */