LibreOffice Module sc (master) 1
ChartTools.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 */
10
11#pragma once
12
13#include <string_view>
14#include <memory>
15#include <vector>
16
17#include <svx/svditer.hxx>
18#include <tools/long.hxx>
19#include "types.hxx"
20
21class ScDocShell;
22class SdrOle2Obj;
23
24namespace sc::tools {
25
27{
30};
31
33{
34private:
35 std::unique_ptr<SdrObjListIter> m_pIterator;
37public:
38 ChartIterator(ScDocShell* pDocShell, SCTAB nTab, ChartSourceType eChartSourceType);
40};
41
43 std::u16string_view rName,
44 ChartSourceType eChartSourceType);
45
47 ::tools::Long nIndex, ChartSourceType eChartSourceType);
48
49std::vector<SdrOle2Obj*> getAllPivotChartsConnectedTo(std::u16string_view sPivotTableName, ScDocShell* pDocShell);
50
51} // end sc::tools
52
53/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ChartIterator(ScDocShell *pDocShell, SCTAB nTab, ChartSourceType eChartSourceType)
Definition: ChartTools.cxx:58
ChartSourceType m_eChartSourceType
Definition: ChartTools.hxx:36
std::unique_ptr< SdrObjListIter > m_pIterator
Definition: ChartTools.hxx:35
SdrOle2Obj * getChartByIndex(ScDocShell *pDocShell, SCTAB nTab, ::tools::Long nIndex, ChartSourceType eChartSourceType)
Definition: ChartTools.cxx:120
std::vector< SdrOle2Obj * > getAllPivotChartsConnectedTo(std::u16string_view sPivotTableName, ScDocShell *pDocShell)
Definition: ChartTools.cxx:142
SdrOle2Obj * findChartsByName(ScDocShell *pDocShell, SCTAB nTab, std::u16string_view rName, ChartSourceType eChartSourceType)
Definition: ChartTools.cxx:98
long Long
sal_Int16 SCTAB
Definition: types.hxx:22