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 SC_VBA_CHART_HXX
20 #define SC_VBA_CHART_HXX
21 #include <cppuhelper/implbase1.hxx>
22 #include <com/sun/star/uno/XComponentContext.hpp>
23 #include <com/sun/star/table/XTableChart.hpp>
24 #include <com/sun/star/chart/XChartDocument.hpp>
25 #include <com/sun/star/chart/XAxisXSupplier.hpp>
26 #include <com/sun/star/chart/XAxisYSupplier.hpp>
27 #include <com/sun/star/chart/XAxisZSupplier.hpp>
28 #include <com/sun/star/chart/XTwoAxisXSupplier.hpp>
29 #include <com/sun/star/chart/XTwoAxisYSupplier.hpp>
30 #include <ooo/vba/excel/XChart.hpp>
31 #include <ooo/vba/excel/XDataLabels.hpp>
32 #include <ooo/vba/excel/XSeries.hpp>
33 #include <vbahelper/vbahelperinterface.hxx>
35 typedef InheritedHelperInterfaceImpl1
<ov::excel::XChart
> ChartImpl_BASE
;
37 class ScVbaChart
: public ChartImpl_BASE
39 friend class ScVbaAxis
;
41 css::uno::Reference
< css::chart::XChartDocument
> mxChartDocument
;
42 css::uno::Reference
< css::table::XTableChart
> mxTableChart
;
43 css::uno::Reference
< css::beans::XPropertySet
> mxDiagramPropertySet
;
44 css::uno::Reference
< css::beans::XPropertySet
> mxChartPropertySet
;
45 css::uno::Reference
< css::chart::XAxisXSupplier
> xAxisXSupplier
;
46 css::uno::Reference
< css::chart::XAxisYSupplier
> xAxisYSupplier
;
47 css::uno::Reference
< css::chart::XAxisZSupplier
> xAxisZSupplier
;
48 css::uno::Reference
< css::chart::XTwoAxisXSupplier
> xTwoAxisXSupplier
;
49 css::uno::Reference
< css::chart::XTwoAxisYSupplier
> xTwoAxisYSupplier
;
51 css::uno::Sequence
< OUString
> getDefaultSeriesDescriptions( sal_Int32 nCount
);
52 css::uno::Sequence
< css::uno::Sequence
< double > > dblValues
;
53 void setDefaultChartType()throw ( css::script::BasicErrorException
) ;
54 void setDiagram( const OUString
& _sDiagramType
) throw( css::script::BasicErrorException
);
55 bool isStacked() throw ( css::uno::RuntimeException
);
56 bool is100PercentStacked() throw ( css::uno::RuntimeException
);
57 sal_Int32
getStackedType( sal_Int32 _nStacked
, sal_Int32 _n100PercentStacked
, sal_Int32 _nUnStacked
) throw ( css::uno::RuntimeException
);
58 sal_Int32
getSolidType(sal_Int32 _nDeep
, sal_Int32 _nVertiStacked
, sal_Int32 _nVerti100PercentStacked
, sal_Int32 _nVertiUnStacked
, sal_Int32 _nHoriStacked
, sal_Int32 _nHori100PercentStacked
, sal_Int32 _nHoriUnStacked
) throw ( css::script::BasicErrorException
);
59 sal_Int32
getStockUpDownValue(sal_Int32 _nUpDown
, sal_Int32 _nNotUpDown
) throw (css::script::BasicErrorException
);
60 bool hasMarkers() throw ( css::script::BasicErrorException
);
61 sal_Int32
getMarkerType(sal_Int32 _nWithMarkers
, sal_Int32 _nWithoutMarkers
) throw ( css::script::BasicErrorException
);
62 void assignDiagramAttributes();
64 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
);
67 css::uno::Reference
< css::beans::XPropertySet
> xDiagramPropertySet() const { return mxDiagramPropertySet
; }
68 bool is3D() throw ( css::uno::RuntimeException
);
69 css::uno::Reference
< css::beans::XPropertySet
> getAxisPropertySet(sal_Int32 _nAxisType
, sal_Int32 _nAxisGroup
) throw ( css::script::BasicErrorException
);
71 virtual OUString SAL_CALL
getName() throw (css::uno::RuntimeException
);
72 virtual css::uno::Any SAL_CALL
SeriesCollection(const css::uno::Any
&) throw (css::uno::RuntimeException
);
73 virtual ::sal_Int32 SAL_CALL
getChartType() throw ( css::uno::RuntimeException
, css::script::BasicErrorException
);
74 virtual void SAL_CALL
setChartType( ::sal_Int32 _charttype
) throw ( css::uno::RuntimeException
, css::script::BasicErrorException
);
75 virtual void SAL_CALL
Activate( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
76 virtual void SAL_CALL
setSourceData( const css::uno::Reference
< ::ooo::vba::excel::XRange
>& range
, const css::uno::Any
& PlotBy
) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
77 virtual ::sal_Int32 SAL_CALL
Location( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
78 virtual ::sal_Int32 SAL_CALL
getLocation( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
79 virtual void SAL_CALL
setLocation( ::sal_Int32 where
, const css::uno::Any
& Name
) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
80 virtual ::sal_Bool SAL_CALL
getHasTitle( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
81 virtual void SAL_CALL
setHasTitle( ::sal_Bool bTitle
) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
82 virtual ::sal_Bool SAL_CALL
getHasLegend( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
83 virtual void SAL_CALL
setHasLegend( ::sal_Bool bLegend
) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
84 virtual void SAL_CALL
setPlotBy( ::sal_Int32 xlRowCol
) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
85 virtual ::sal_Int32 SAL_CALL
getPlotBy( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
86 virtual css::uno::Reference
< ov::excel::XChartTitle
> SAL_CALL
getChartTitle( ) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
87 virtual css::uno::Any SAL_CALL
Axes( const css::uno::Any
& Type
, const css::uno::Any
& AxisGroup
) throw (css::script::BasicErrorException
, css::uno::RuntimeException
);
89 virtual OUString
getServiceImplName();
90 virtual css::uno::Sequence
<OUString
> getServiceNames();
94 #endif //SC_VBA_WINDOW_HXX
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */