Branch libreoffice-5-0-4
[LibreOffice.git] / include / xmloff / SchXMLSeriesHelper.hxx
blobe8e56393c54ac2b283fafa1f240ed927ad895d8c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_XMLOFF_SCHXMLSERIESHELPER_HXX
21 #define INCLUDED_XMLOFF_SCHXMLSERIESHELPER_HXX
23 #include <com/sun/star/chart2/data/XDataSequence.hpp>
24 #include <com/sun/star/chart2/data/XDataSource.hpp>
25 #include <com/sun/star/chart2/XDataSeries.hpp>
26 #include <com/sun/star/chart2/XDiagram.hpp>
27 #include <com/sun/star/frame/XModel.hpp>
29 #include <xmloff/dllapi.h>
31 #include <vector>
32 #include <map>
33 #include <iterator>
35 class XMLOFF_DLLPUBLIC SchXMLSeriesHelper
37 public:
38 static ::std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries > >
39 getDataSeriesFromDiagram(
40 const ::com::sun::star::uno::Reference<
41 ::com::sun::star::chart2::XDiagram > & xDiagram );
42 static ::std::map< ::com::sun::star::uno::Reference<
43 ::com::sun::star::chart2::XDataSeries >, sal_Int32 >
44 getDataSeriesIndexMapFromDiagram(
45 const ::com::sun::star::uno::Reference<
46 ::com::sun::star::chart2::XDiagram > & xDiagram );
48 static bool isCandleStickSeries(
49 const ::com::sun::star::uno::Reference<
50 ::com::sun::star::chart2::XDataSeries >& xSeries
51 , const ::com::sun::star::uno::Reference<
52 ::com::sun::star::frame::XModel >& xChartModel );
54 static ::com::sun::star::uno::Reference<
55 ::com::sun::star::beans::XPropertySet > createOldAPISeriesPropertySet(
56 const ::com::sun::star::uno::Reference<
57 ::com::sun::star::chart2::XDataSeries >& xSeries
58 , const ::com::sun::star::uno::Reference<
59 ::com::sun::star::frame::XModel >& xChartModel );
61 static ::com::sun::star::uno::Reference<
62 ::com::sun::star::beans::XPropertySet > createOldAPIDataPointPropertySet(
63 const ::com::sun::star::uno::Reference<
64 ::com::sun::star::chart2::XDataSeries >& xSeries
65 , sal_Int32 nPointIndex
66 , const ::com::sun::star::uno::Reference<
67 ::com::sun::star::frame::XModel >& xChartModel );
70 // INCLUDED_XMLOFF_SCHXMLSERIESHELPER_HXX
71 #endif
73 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */