diff options
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/sheet/DataPilotField.idl | 56 |
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; }; //============================================================================= |