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 #ifndef INCLUDED_TEST_SHEET_XDATAPILOTTABLE2_HXX
11 #define INCLUDED_TEST_SHEET_XDATAPILOTTABLE2_HXX
13 #include <com/sun/star/uno/Reference.hxx>
14 #include <com/sun/star/table/CellRangeAddress.hpp>
15 #include <com/sun/star/table/CellAddress.hpp>
16 #include <com/sun/star/sheet/XDataPilotTable2.hpp>
17 #include <com/sun/star/sheet/XSpreadsheet.hpp>
18 #include <com/sun/star/uno/Sequence.h>
20 #include <test/testdllapi.hxx>
26 class OOO_DLLPUBLIC_TEST XDataPilotTable2
29 void testGetPositionData();
30 void testGetDrillDownData();
31 void testGetOutputRangeByType();
32 void testInsertDrillDownSheet();
33 virtual ~XDataPilotTable2();
35 virtual css::uno::Reference
< css::uno::XInterface
> initDP2() = 0;
36 virtual css::uno::Reference
< css::uno::XInterface
> getSheets() = 0;
41 static void checkDrillDownSheetContent(css::uno::Reference
< css::sheet::XSpreadsheet
> const & xSheet
, const css::uno::Sequence
< css::uno::Sequence
< css::uno::Any
> >& aData
);
43 void getOutputRanges(css::uno::Reference
< css::sheet::XDataPilotTable2
> const &);
44 void buildDataFields(css::uno::Reference
< css::sheet::XDataPilotTable2
> const &);
45 void buildResultCells(css::uno::Reference
< css::sheet::XDataPilotTable2
> const &);
47 std::vector
< css::table::CellAddress
> maResultCells
;
48 std::vector
< sal_Int32
> maDataFieldDims
;
49 css::table::CellRangeAddress maRangeWhole
;
50 css::table::CellRangeAddress maRangeTable
;
51 css::table::CellRangeAddress maRangeResult
;
56 #endif // INCLUDED_TEST_SHEET_XDATAPILOTTABLE2_HXX
58 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */