diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-11 17:16:54 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-04-19 00:30:10 -0400 |
commit | ac569ed4cf5064248b9952f182f6572f20dc9bcb (patch) | |
tree | 44789fb45958b6cc8ce21f1742a04a407d5f6c75 /offapi | |
parent | 687a821e3b4ac872fd7eb1010ea87c3d81e71991 (diff) |
fdo#60300: Work-in-progress change to rework pivot table core.
The idea is to avoid parsing the pivot table sheet output in order
to calculate GETPIVOTDATA. The table outout is configurable, and it
will only be more configurable in the future. The gist of my rework
is to calcualte the result of GETPIVOTDATA with the internl result
tree alone.
Also, the same result tree can be used for drill down too, which also
currently parses the table output, therefore subject to the same
limitation & fragility.
Change-Id: Ib0147e2aa2b710dfd627df7f535a685301214a52
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/sheet/XDataPilotResults.idl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/offapi/com/sun/star/sheet/XDataPilotResults.idl b/offapi/com/sun/star/sheet/XDataPilotResults.idl index e5b2c3c23afa..0e4486b91537 100644 --- a/offapi/com/sun/star/sheet/XDataPilotResults.idl +++ b/offapi/com/sun/star/sheet/XDataPilotResults.idl @@ -22,6 +22,7 @@ #include <com/sun/star/uno/XInterface.idl> #include <com/sun/star/sheet/DataResult.idl> +#include <com/sun/star/sheet/DataPilotFieldFilter.idl> module com { module sun { module star { module sheet { @@ -44,6 +45,8 @@ interface XDataPilotResults: com::sun::star::uno::XInterface */ sequence< sequence< DataResult > > getResults(); + sequence<any> getFilteredResults( + [in] sequence<com::sun::star::sheet::DataPilotFieldFilter> aFilters ); }; |