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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef __com_sun_star_sheet_XDataPilotDescriptor_idl__
21 #define __com_sun_star_sheet_XDataPilotDescriptor_idl__
23 #include
<com
/sun
/star
/container
/XNamed.idl
>
24 #include
<com
/sun
/star
/table
/CellRangeAddress.idl
>
25 #include
<com
/sun
/star
/sheet
/XSheetFilterDescriptor.idl
>
26 #include
<com
/sun
/star
/container
/XIndexAccess.idl
>
29 module com
{ module sun
{ module star
{ module sheet
{
32 /** provides access to the layout settings of a data pilot table.
34 <p>This interface extends the interface
35 com::sun::star::container::XNamed which provides
36 access to the name of the data pilot table used e.g. in collections.</p>
38 @see com::sun::star::sheet::DataPilotDescriptor
39 @see com::sun::star::sheet::DataPilotTable
41 published
interface XDataPilotDescriptor
: com
::sun
::star
::container
::XNamed
44 /** returns an additional string stored in the data pilot table.
49 /** sets an additional string stored in the data pilot table.
51 void setTag
( [in] string aTag
);
54 /** returns the cell range containing the data for the data pilot table.
56 com
::sun
::star
::table
::CellRangeAddress getSourceRange
();
59 /** sets the cell range containing the data for the data pilot table.
62 [in] com
::sun
::star
::table
::CellRangeAddress aSourceRange
);
65 /** returns the filter descriptor specifying which data from the
66 source cell range are used for the data pilot table.
68 com
::sun
::star
::sheet
::XSheetFilterDescriptor getFilterDescriptor
();
71 /** returns the collection of all the data pilot fields.
73 com
::sun
::star
::container
::XIndexAccess getDataPilotFields
();
76 /** returns the collection of the data pilot fields used as column fields.
78 @see com::sun::star::sheet::DataPilotFields
80 com
::sun
::star
::container
::XIndexAccess getColumnFields
();
83 /** returns the collection of the data pilot fields used as row fields.
85 @see com::sun::star::sheet::DataPilotFields
87 com
::sun
::star
::container
::XIndexAccess getRowFields
();
90 /** returns the collection of the data pilot fields used as page fields.
92 @see com::sun::star::sheet::DataPilotFields
94 com
::sun
::star
::container
::XIndexAccess getPageFields
();
97 /** returns the collection of the data pilot fields used as data fields.
99 @see com::sun::star::sheet::DataPilotFields
101 com
::sun
::star
::container
::XIndexAccess getDataFields
();
104 /** returns the collection of the data pilot fields not used as
105 column, row, page, or data fields.
107 @see com::sun::star::sheet::DataPilotFields
109 com
::sun
::star
::container
::XIndexAccess getHiddenFields
();
118 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */