check IFrame "FrameURL" target
[LibreOffice.git] / sc / inc / ChartTools.hxx
blob05e3bb404b8af172acfb3e6ce25e0006a466a261
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 */
11 #pragma once
13 #include <memory>
14 #include <vector>
16 #include <svx/svditer.hxx>
17 #include <rtl/ustring.hxx>
18 #include <tools/long.hxx>
20 #include "types.hxx"
22 class ScDocShell;
23 class SdrOle2Obj;
25 namespace sc::tools {
27 enum class ChartSourceType
29 CELL_RANGE,
30 PIVOT_TABLE
33 class ChartIterator
35 private:
36 std::unique_ptr<SdrObjListIter> m_pIterator;
37 ChartSourceType m_eChartSourceType;
38 public:
39 ChartIterator(ScDocShell* pDocShell, SCTAB nTab, ChartSourceType eChartSourceType);
40 SdrOle2Obj* next();
43 SdrOle2Obj* findChartsByName(ScDocShell* pDocShell, SCTAB nTab,
44 std::u16string_view rName,
45 ChartSourceType eChartSourceType);
47 SdrOle2Obj* getChartByIndex(ScDocShell* pDocShell, SCTAB nTab,
48 ::tools::Long nIndex, ChartSourceType eChartSourceType);
50 std::vector<SdrOle2Obj*> getAllPivotChartsConnectedTo(std::u16string_view sPivotTableName, ScDocShell* pDocShell);
52 } // end sc::tools
54 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */