diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-07-23 11:51:46 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-07-23 11:51:46 +0000 |
commit | ab5174f332ebce68b5add6e1ef7a783b03680dd2 (patch) | |
tree | 1cd0e7a172657f4f6bbcd3eb22b1e3153f45ff5b /sc/inc/dpsave.hxx | |
parent | cb328d54c1ec752b45b35da758f68b1e6ccc9902 (diff) |
INTEGRATION: CWS tableoptions (1.4.34); FILE MERGED
2004/07/05 17:06:53 nn 1.4.34.1: #i25111# table options, drill to details
Diffstat (limited to 'sc/inc/dpsave.hxx')
-rw-r--r-- | sc/inc/dpsave.hxx | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/sc/inc/dpsave.hxx b/sc/inc/dpsave.hxx index 84d1088d3496..de41e0bc7a50 100644 --- a/sc/inc/dpsave.hxx +++ b/sc/inc/dpsave.hxx @@ -2,9 +2,9 @@ * * $RCSfile: dpsave.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: obo $ $Date: 2004-06-04 13:55:09 $ + * last change: $Author: hr $ $Date: 2004-07-23 12:51:46 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -207,6 +207,8 @@ private: USHORT nRowGrandMode; USHORT nIgnoreEmptyMode; USHORT nRepeatEmptyMode; + BOOL bFilterButton; // not passed to DataPilotSource + BOOL bDrillDown; // not passed to DataPilotSource public: ScDPSaveData(); @@ -229,6 +231,9 @@ public: ScDPSaveDimension* GetExistingDimensionByName(const String& rName); ScDPSaveDimension* GetNewDimensionByName(const String& rName); + ScDPSaveDimension* GetInnermostDimension(USHORT nOrientation); + long GetDataDimensionCount() const; + void SetPosition( ScDPSaveDimension* pDim, long nNew ); void SetColumnGrand( BOOL bSet ); BOOL GetColumnGrand() const { return BOOL(nColumnGrandMode); } @@ -239,6 +244,11 @@ public: void SetRepeatIfEmpty( BOOL bSet ); BOOL GetRepeatIfEmpty() const { return BOOL(nRepeatEmptyMode); } + void SetFilterButton( BOOL bSet ); + BOOL GetFilterButton() const { return bFilterButton; } + void SetDrillDown( BOOL bSet ); + BOOL GetDrillDown() const { return bDrillDown; } + void WriteToSource( const com::sun::star::uno::Reference< com::sun::star::sheet::XDimensionsSupplier>& xSource ); |