diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2017-04-19 22:10:47 +0200 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2017-04-22 09:06:44 +0200 |
commit | 011057b0ce7552497858afed7252136a3fc09bf8 (patch) | |
tree | 211e74486a9d8ac4e160a81b76fb908e7c758704 /offapi | |
parent | c99f72bebdce6d294eb47e070fa1397a98ba2087 (diff) |
tdf#107068 add arrow to the buttons, mark if field is filtered
Change-Id: Iba0b4c2ce3ab84229d388a7cb2d20db1f47c0b57
Reviewed-on: https://gerrit.libreoffice.org/36738
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/chart2/data/PivotTableFieldEntry.idl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/offapi/com/sun/star/chart2/data/PivotTableFieldEntry.idl b/offapi/com/sun/star/chart2/data/PivotTableFieldEntry.idl index 126d11d4f804..4a9f7799a8e5 100644 --- a/offapi/com/sun/star/chart2/data/PivotTableFieldEntry.idl +++ b/offapi/com/sun/star/chart2/data/PivotTableFieldEntry.idl @@ -22,16 +22,31 @@ module data { /** + * Pivot table field entry data. * * @since LibreOffice 5.4 */ struct PivotTableFieldEntry { + /** + * Name of the field entry. + */ string Name; + /** + * The index of the field entry. + */ long DimensionIndex; + /** + * The output position of the field entry in its field type. + */ long DimensionPositionIndex; + + /** + * Does it have some members that are hidded (filtered). + */ + boolean HasHiddenMembers; }; }; // data |