Version 4.3.0.0.beta1, tag libreoffice-4.3.0.0.beta1
[LibreOffice.git] / include / test / sheet / xdatapilottable2.hxx
blob517ddadf24b9d8b3c2c9fdf4184398b7fe98b52b
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/.
8 */
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>
19 #include <vector>
21 namespace apitest {
23 class OOO_DLLPUBLIC_TEST XDataPilotTable2
25 public:
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;
35 protected:
37 private:
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: */