summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/sheet/DataPilotField.idl
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-03-29 11:58:32 +0000
committerRüdiger Timm <rt@openoffice.org>2005-03-29 11:58:32 +0000
commit4b6103ce8a34084628fe5ef89c3e09ff6a6d5d94 (patch)
treea0625bede39abb19659dadf58945ebc6e39df4c6 /offapi/com/sun/star/sheet/DataPilotField.idl
parent68957d883760a739af0ceaf687b3a823216d7c99 (diff)
INTEGRATION: CWS groupingapi (1.7.78); FILE MERGED
2005/01/05 14:32:07 sab 1.7.78.3: #i33817#; complete API 2004/09/08 17:17:04 sab 1.7.78.2: #i31477#; add additional properties 2004/09/03 17:59:51 sab 1.7.78.1: #i33817#; add grouping API
Diffstat (limited to 'offapi/com/sun/star/sheet/DataPilotField.idl')
-rw-r--r--offapi/com/sun/star/sheet/DataPilotField.idl56
1 files changed, 54 insertions, 2 deletions
diff --git a/offapi/com/sun/star/sheet/DataPilotField.idl b/offapi/com/sun/star/sheet/DataPilotField.idl
index 7d2e4309b878..c1a431bd2239 100644
--- a/offapi/com/sun/star/sheet/DataPilotField.idl
+++ b/offapi/com/sun/star/sheet/DataPilotField.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: DataPilotField.idl,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: obo $ $Date: 2004-06-04 13:49:24 $
+ * last change: $Author: rt $ $Date: 2005-03-29 12:58:32 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -74,6 +74,10 @@
#include <com/sun/star/sheet/XDataPilotField.idl>
#endif
+#ifndef __com_sun_star_sheet_XDataPilotFieldGrouping_idl__
+#include <com/sun/star/sheet/XDataPilotFieldGrouping.idl>
+#endif
+
#ifndef __com_sun_star_sheet_DataPilotFieldOrientation_idl__
#include <com/sun/star/sheet/DataPilotFieldOrientation.idl>
#endif
@@ -98,6 +102,10 @@
#include <com/sun/star/sheet/DataPilotFieldSortInfo.idl>
#endif
+#ifndef __com_sun_star_sheet_DataPilotFieldGroupInfo_idl__
+#include <com/sun/star/sheet/DataPilotFieldGroupInfo.idl>
+#endif
+
//=============================================================================
module com { module sun { module star { module sheet {
@@ -129,6 +137,10 @@ published service DataPilotField
[optional] interface com::sun::star::sheet::XDataPilotField;
+ //-------------------------------------------------------------------------
+
+ [optional] interface com::sun::star::sheet::XDataPilotFieldGrouping;
+
//=========================================================================
/** specifies the orientation of the field.
@@ -170,18 +182,36 @@ published service DataPilotField
//-------------------------------------------------------------------------
+ /** specifies whether this field has sorting information.
+ */
+ [property,optional] boolean HasSortInfo;
+
+ //-------------------------------------------------------------------------
+
/** controls how the field's items are sorted.
*/
[property,optional] com::sun::star::sheet::DataPilotFieldSortInfo SortInfo;
//-------------------------------------------------------------------------
+ /** specifies whether this field has layout information.
+ */
+ [property,optional] boolean HasLayoutInfo;
+
+ //-------------------------------------------------------------------------
+
/** controls how the field's items are laid out in the result table.
*/
[property,optional] com::sun::star::sheet::DataPilotFieldLayoutInfo LayoutInfo;
//-------------------------------------------------------------------------
+ /** specifies whether this field has auto show information.
+ */
+ [property,optional] boolean HasAutoShowInfo;
+
+ //-------------------------------------------------------------------------
+
/** enables the automatic inclusion of only a number of items with
the highest or lowest result values.
*/
@@ -189,10 +219,32 @@ published service DataPilotField
//-------------------------------------------------------------------------
+ /** specifies whether this field has a reference.
+ */
+ [property,optional] boolean HasReference;
+
+ //-------------------------------------------------------------------------
+
/** controls how the results are shown in relation to a selected
reference result.
*/
[property,optional] com::sun::star::sheet::DataPilotFieldReference Reference;
+
+ //-------------------------------------------------------------------------
+
+ /** specifies whether this field is a group field.
+ */
+ [property,optional] boolean IsGroupField;
+
+ //-------------------------------------------------------------------------
+
+ /** contains the grouping information of the Field
+ */
+ [property,optional] com::sun::star::sheet::DataPilotFieldGroupInfo GroupInfo;
+
+ /** specifies whether to show this field also if it is empty or not.
+ */
+ [property,optional] boolean ShowEmpty;
};
//=============================================================================