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/.
10 #include <com/sun/star/uno/Reference.hxx>
11 #include <com/sun/star/table/CellRangeAddress.hpp>
12 #include <com/sun/star/table/CellAddress.hpp>
13 #include <com/sun/star/sheet/XDataPilotTable2.hpp>
14 #include <com/sun/star/sheet/XSpreadsheet.hpp>
15 #include <com/sun/star/uno/Sequence.h>
17 #include <test/testdllapi.hxx>
23 class OOO_DLLPUBLIC_TEST XDataPilotTable2
26 void testGetPositionData();
27 void testGetDrillDownData();
28 void testGetOutputRangeByType();
29 void testInsertDrillDownSheet();
30 virtual ~XDataPilotTable2();
32 virtual css::uno::Reference
< css::uno::XInterface
> initDP2() = 0;
33 virtual css::uno::Reference
< css::uno::XInterface
> getSheets() = 0;
38 bool checkDrillDownSheetContent(css::uno::Reference
< css::sheet::XSpreadsheet
>, const css::uno::Sequence
< css::uno::Sequence
< css::uno::Any
> >& aData
);
40 void getOutputRanges(css::uno::Reference
< css::sheet::XDataPilotTable2
>);
41 void buildDataFields(css::uno::Reference
< css::sheet::XDataPilotTable2
>);
42 void buildResultCells(css::uno::Reference
< css::sheet::XDataPilotTable2
>);
44 std::vector
< css::table::CellAddress
> maResultCells
;
45 std::vector
< sal_Int32
> maDataFieldDims
;
46 css::table::CellRangeAddress maRangeWhole
;
47 css::table::CellRangeAddress maRangeTable
;
48 css::table::CellRangeAddress maRangeResult
;
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */