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_DataPilotDescriptor_idl__
21 #define __com_sun_star_sheet_DataPilotDescriptor_idl__
23 #include
<com
/sun
/star
/sheet
/XDataPilotDescriptor.idl
>
24 #include
<com
/sun
/star
/sheet
/XDataPilotDataLayoutFieldSupplier.idl
>
25 #include
<com
/sun
/star
/beans
/XPropertySet.idl
>
26 #include
<com
/sun
/star
/beans
/PropertyValue.idl
>
29 module com
{ module sun
{ module star
{ module sheet
{
32 /** represents the description of the layout of a data pilot table.
34 @see com::sun::star::sheet::DataPilotTable
36 published service DataPilotDescriptor
39 /** provides access to the layout settings of the data pilot table.
41 interface XDataPilotDescriptor
;
44 /** provides access to the layout settings of the data pilot table.
46 [optional] interface com
::sun
::star
::beans
::XPropertySet
;
49 /** Provides access to the DataPilotField used to layout
52 [optional] interface XDataPilotDataLayoutFieldSupplier
;
55 /** specifies parameters to create the data pilot table from a database.
57 @see DatabaseImportDescriptor
61 [optional, property
] sequence
< com
::sun
::star
::beans
::PropertyValue
> ImportDescriptor
;
64 /** specifies the name of a DataPilotSource implementation
65 for the data pilot table.
70 [optional, property
] string SourceServiceName
;
73 /** specifies arguments that are passed to the implementation named by
79 [optional, property
] sequence
< com
::sun
::star
::beans
::PropertyValue
> ServiceArguments
;
82 /** specifies if empty rows in the source data are ignored.
84 [optional, property
] boolean IgnoreEmptyRows
;
87 /** specifies if empty category cells in the source data should be treated
88 as repetition of the content from the previous row.
90 [optional, property
] boolean RepeatIfEmpty
;
93 /** specifies if columns for grand total results are created.
95 [optional, property
] boolean ColumnGrand
;
98 /** specifies if rows for grand total results are created.
100 [optional, property
] boolean RowGrand
;
103 /** specifies whether the filter button is shown.
105 [optional, property
] boolean ShowFilterButton
;
108 /** specifies whether to drill down to details or go into edit mode.
110 [optional, property
] boolean DrillDownOnDoubleClick
;
113 /** specifies a label for grand total results.
117 [optional, property
] string GrandTotalName
;
126 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */