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 .
21 module com
{ module sun
{ module star
{ module sheet
{
24 /** represents the description of the layout of a data pilot table.
26 @see com::sun::star::sheet::DataPilotTable
28 published service DataPilotDescriptor
31 /** provides access to the layout settings of the data pilot table.
33 interface XDataPilotDescriptor
;
36 /** provides access to the layout settings of the data pilot table.
38 [optional] interface com
::sun
::star
::beans
::XPropertySet
;
41 /** Provides access to the DataPilotField used to layout
44 [optional] interface XDataPilotDataLayoutFieldSupplier
;
47 /** specifies parameters to create the data pilot table from a database.
49 @see DatabaseImportDescriptor
53 [optional, property
] sequence
< com
::sun
::star
::beans
::PropertyValue
> ImportDescriptor
;
56 /** specifies the name of a DataPilotSource implementation
57 for the data pilot table.
62 [optional, property
] string SourceServiceName
;
65 /** specifies arguments that are passed to the implementation named by
71 [optional, property
] sequence
< com
::sun
::star
::beans
::PropertyValue
> ServiceArguments
;
74 /** specifies if empty rows in the source data are ignored.
76 [optional, property
] boolean IgnoreEmptyRows
;
79 /** specifies if empty category cells in the source data should be treated
80 as repetition of the content from the previous row.
82 [optional, property
] boolean RepeatIfEmpty
;
85 /** specifies if columns for grand total results are created.
87 [optional, property
] boolean ColumnGrand
;
90 /** specifies if rows for grand total results are created.
92 [optional, property
] boolean RowGrand
;
95 /** specifies whether the filter button is shown.
97 [optional, property
] boolean ShowFilterButton
;
100 /** specifies whether to drill down to details or go into edit mode.
102 [optional, property
] boolean DrillDownOnDoubleClick
;
105 /** specifies a label for grand total results.
109 [optional, property
] string GrandTotalName
;
116 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */