2000-09-18 11:07:07 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 11:36:34 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 11:36:34 -05:00
|
|
|
* $RCSfile: dptabres.hxx,v $
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 11:36:34 -05:00
|
|
|
* $Revision: 1.5 $
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 11:36:34 -05:00
|
|
|
* last change: $Author: rt $ $Date: 2005-09-08 17:36:34 $
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 11:36:34 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 11:36:34 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 11:36:34 -05:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 11:36:34 -05:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
2005-09-08 11:36:34 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2000-09-18 11:07:07 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SC_DPTABRES_HXX
|
|
|
|
#define SC_DPTABRES_HXX
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
#include <vector>
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
#ifndef _SVARRAY_HXX //autogen
|
|
|
|
#include <svtools/svarray.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _STRING_HXX //autogen
|
|
|
|
#include <tools/string.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_SHEET_MEMBERRESULT_HPP_
|
|
|
|
#include <com/sun/star/sheet/MemberResult.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_SHEET_DATARESULT_HPP_
|
|
|
|
#include <com/sun/star/sheet/DataResult.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_
|
|
|
|
#include <com/sun/star/uno/Sequence.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SC_SCGLOB_HXX
|
|
|
|
#include "global.hxx" // enum ScSubTotalFunc
|
|
|
|
#endif
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
namespace com { namespace sun { namespace star { namespace sheet {
|
|
|
|
struct DataPilotFieldReference;
|
|
|
|
} } } }
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
class ScAddress;
|
|
|
|
class ScDocument;
|
|
|
|
class ScDPSource;
|
|
|
|
class ScDPDimension;
|
|
|
|
class ScDPLevel;
|
|
|
|
class ScDPMember;
|
|
|
|
class ScDPAggData;
|
2004-06-04 07:55:24 -05:00
|
|
|
class ScDPResultMember;
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
struct ScDPValueData;
|
2004-08-03 05:29:48 -05:00
|
|
|
struct ScDPItemData;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Member names that are being processed for InitFrom/LateInitFrom
|
|
|
|
// (needed for initialization of grouped items)
|
|
|
|
//
|
|
|
|
|
|
|
|
class ScDPInitState
|
|
|
|
{
|
|
|
|
long* pIndex; // array
|
|
|
|
ScDPItemData* pData; // array
|
|
|
|
long nCount;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScDPInitState();
|
|
|
|
~ScDPInitState();
|
|
|
|
|
|
|
|
void AddMember( long nSourceIndex, const ScDPItemData& rName );
|
|
|
|
void RemoveMember();
|
|
|
|
|
|
|
|
long GetCount() const { return nCount; }
|
|
|
|
const long* GetSource() const { return pIndex; }
|
|
|
|
const ScDPItemData* GetNames() const { return pData; }
|
|
|
|
|
|
|
|
const ScDPItemData* GetNameForIndex( long nIndexValue ) const;
|
|
|
|
};
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
typedef ::std::vector<sal_Int32> ScMemberSortOrder;
|
|
|
|
|
|
|
|
//
|
|
|
|
// selected subtotal information, passed down the dimensions
|
|
|
|
//
|
|
|
|
|
|
|
|
struct ScDPSubTotalState
|
|
|
|
{
|
|
|
|
ScSubTotalFunc eColForce;
|
|
|
|
ScSubTotalFunc eRowForce;
|
|
|
|
long nColSubTotalFunc;
|
|
|
|
long nRowSubTotalFunc;
|
|
|
|
|
|
|
|
ScDPSubTotalState() :
|
|
|
|
eColForce( SUBTOTAL_FUNC_NONE ),
|
|
|
|
eRowForce( SUBTOTAL_FUNC_NONE ),
|
|
|
|
nColSubTotalFunc( -1 ),
|
|
|
|
nRowSubTotalFunc( -1 )
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// indexes when calculating running totals
|
|
|
|
// Col/RowVisible: simple counts from 0 - without sort order applied - visible index
|
|
|
|
// (only used for running total / relative index)
|
|
|
|
// Col/RowIndexes: with sort order applied - member index
|
|
|
|
// (used otherwise - so other members' children can be accessed)
|
|
|
|
//
|
|
|
|
|
|
|
|
class ScDPRunningTotalState
|
|
|
|
{
|
|
|
|
ScDPResultMember* pColResRoot;
|
|
|
|
ScDPResultMember* pRowResRoot;
|
|
|
|
long* pColVisible;
|
|
|
|
long* pColIndexes;
|
|
|
|
long* pRowVisible;
|
|
|
|
long* pRowIndexes;
|
|
|
|
long nColIndexPos;
|
|
|
|
long nRowIndexPos;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScDPRunningTotalState( ScDPResultMember* pColRoot, ScDPResultMember* pRowRoot );
|
|
|
|
~ScDPRunningTotalState();
|
|
|
|
|
|
|
|
ScDPResultMember* GetColResRoot() const { return pColResRoot; }
|
|
|
|
ScDPResultMember* GetRowResRoot() const { return pRowResRoot; }
|
|
|
|
|
|
|
|
const long* GetColVisible() const { return pColVisible; }
|
|
|
|
const long* GetColIndexes() const { return pColIndexes; }
|
|
|
|
const long* GetRowVisible() const { return pRowVisible; }
|
|
|
|
const long* GetRowIndexes() const { return pRowIndexes; }
|
|
|
|
|
|
|
|
void AddColIndex( long nVisible, long nSorted );
|
|
|
|
void AddRowIndex( long nVisible, long nSorted );
|
|
|
|
void RemoveColIndex();
|
|
|
|
void RemoveRowIndex();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ScDPRelativePos
|
|
|
|
{
|
|
|
|
long nBasePos; // simple count, without sort order applied
|
|
|
|
long nDirection;
|
|
|
|
|
|
|
|
ScDPRelativePos( long nBase, long nDir );
|
|
|
|
};
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
//
|
|
|
|
// aggregated data
|
|
|
|
//! separate header file?
|
|
|
|
//
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
// Possible values for the nCount member:
|
|
|
|
// (greater than 0 counts the collected values)
|
|
|
|
const long SC_DPAGG_EMPTY = 0; // empty during data collection
|
|
|
|
const long SC_DPAGG_DATA_ERROR = -1; // error during data collection
|
|
|
|
const long SC_DPAGG_RESULT_EMPTY = -2; // empty result calculated
|
|
|
|
const long SC_DPAGG_RESULT_VALID = -3; // valid result calculated
|
|
|
|
const long SC_DPAGG_RESULT_ERROR = -4; // error in calculated result
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
class ScDPAggData
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
double fVal;
|
2004-06-04 07:55:24 -05:00
|
|
|
double fAux;
|
2000-09-18 11:07:07 -05:00
|
|
|
long nCount;
|
|
|
|
ScDPAggData* pChild;
|
|
|
|
|
|
|
|
public:
|
2004-06-04 07:55:24 -05:00
|
|
|
ScDPAggData() : fVal(0.0), fAux(0.0), nCount(SC_DPAGG_EMPTY), pChild(NULL) {}
|
2000-09-18 11:07:07 -05:00
|
|
|
~ScDPAggData() { delete pChild; }
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
void Update( const ScDPValueData& rNext, ScSubTotalFunc eFunc, const ScDPSubTotalState& rSubState );
|
|
|
|
void Calculate( ScSubTotalFunc eFunc, const ScDPSubTotalState& rSubState );
|
|
|
|
BOOL IsCalculated() const;
|
|
|
|
|
|
|
|
double GetResult() const;
|
|
|
|
BOOL HasError() const;
|
|
|
|
BOOL HasData() const;
|
|
|
|
|
|
|
|
void SetResult( double fNew );
|
|
|
|
void SetEmpty( BOOL bSet );
|
|
|
|
void SetError();
|
|
|
|
|
|
|
|
double GetAuxiliary() const;
|
|
|
|
void SetAuxiliary( double fNew );
|
|
|
|
|
|
|
|
void Reset(); // also deletes children
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
const ScDPAggData* GetExistingChild() const { return pChild; }
|
|
|
|
ScDPAggData* GetChild();
|
|
|
|
};
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
//
|
|
|
|
// Row and grand total state, passed down (column total is at result member)
|
|
|
|
//
|
|
|
|
|
|
|
|
class ScDPRowTotals
|
|
|
|
{
|
|
|
|
ScDPAggData aRowTotal;
|
|
|
|
ScDPAggData aGrandTotal;
|
|
|
|
BOOL bIsInColRoot;
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScDPRowTotals();
|
|
|
|
~ScDPRowTotals();
|
|
|
|
|
|
|
|
ScDPAggData* GetRowTotal( long nMeasure );
|
|
|
|
ScDPAggData* GetGrandTotal( long nMeasure );
|
|
|
|
|
|
|
|
BOOL IsInColRoot() const { return bIsInColRoot; }
|
|
|
|
void SetInColRoot(BOOL bSet) { bIsInColRoot = bSet; }
|
|
|
|
};
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// results for a hierarchy dimension
|
|
|
|
//
|
|
|
|
|
|
|
|
#define SC_DP_RES_GROW 16
|
|
|
|
|
|
|
|
class ScDPResultDimension;
|
|
|
|
class ScDPDataDimension;
|
|
|
|
class ScDPDataMember;
|
|
|
|
|
|
|
|
#define SC_DPMEASURE_ALL -1
|
|
|
|
#define SC_DPMEASURE_ANY -2
|
|
|
|
|
|
|
|
class ScDPResultData
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
ScDPSource* pSource; //! Ref
|
|
|
|
//! keep things like measure lists here
|
|
|
|
|
|
|
|
long nMeasCount;
|
|
|
|
ScSubTotalFunc* pMeasFuncs;
|
2004-06-04 07:55:24 -05:00
|
|
|
::com::sun::star::sheet::DataPilotFieldReference* pMeasRefs;
|
|
|
|
USHORT* pMeasRefOrient;
|
2000-09-18 11:07:07 -05:00
|
|
|
String* pMeasNames;
|
2004-06-04 07:55:24 -05:00
|
|
|
BOOL bLateInit;
|
2000-09-18 11:07:07 -05:00
|
|
|
BOOL bDataAtCol;
|
|
|
|
BOOL bDataAtRow;
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
//! add "displayed values" settings
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
public:
|
|
|
|
ScDPResultData( ScDPSource* pSrc ); //! Ref
|
|
|
|
~ScDPResultData();
|
|
|
|
|
|
|
|
void SetMeasureData( long nCount, const ScSubTotalFunc* pFunctions,
|
2004-06-04 07:55:24 -05:00
|
|
|
const ::com::sun::star::sheet::DataPilotFieldReference* pRefs,
|
|
|
|
const USHORT* pRefOrient, const String* pNames );
|
2000-09-18 11:07:07 -05:00
|
|
|
void SetDataLayoutOrientation( USHORT nOrient );
|
2004-06-04 07:55:24 -05:00
|
|
|
void SetLateInit( BOOL bSet );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
long GetMeasureCount() const { return nMeasCount; }
|
|
|
|
ScSubTotalFunc GetMeasureFunction(long nMeasure) const;
|
|
|
|
String GetMeasureString(long nMeasure, BOOL bForce, ScSubTotalFunc eForceFunc) const;
|
|
|
|
String GetMeasureDimensionName(long nMeasure) const;
|
2004-06-04 07:55:24 -05:00
|
|
|
const ::com::sun::star::sheet::DataPilotFieldReference& GetMeasureRefVal(long nMeasure) const;
|
|
|
|
USHORT GetMeasureRefOrient(long nMeasure) const;
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
BOOL IsDataAtCol() const { return bDataAtCol; }
|
|
|
|
BOOL IsDataAtRow() const { return bDataAtRow; }
|
2004-06-04 07:55:24 -05:00
|
|
|
BOOL IsLateInit() const { return bLateInit; }
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
long GetColStartMeasure() const;
|
|
|
|
long GetRowStartMeasure() const;
|
|
|
|
|
|
|
|
long GetCountForMeasure( long nMeas ) const
|
|
|
|
{ return ( nMeas == SC_DPMEASURE_ALL ) ? nMeasCount : 1; }
|
2004-08-03 05:29:48 -05:00
|
|
|
|
|
|
|
BOOL IsBaseForGroup( long nDim ) const; // any group
|
|
|
|
long GetGroupBase( long nGroupDim ) const;
|
|
|
|
BOOL IsNumOrDateGroup( long nDim ) const;
|
|
|
|
BOOL IsInGroup( const ScDPItemData& rGroupData, long nGroupIndex,
|
|
|
|
const ScDPItemData& rBaseData, long nBaseIndex ) const;
|
|
|
|
BOOL HasCommonElement( const ScDPItemData& rFirstData, long nFirstIndex,
|
|
|
|
const ScDPItemData& rSecondData, long nSecondIndex ) const;
|
2000-09-18 11:07:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class ScDPResultMember
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
ScDPResultData* pResultData;
|
|
|
|
ScDPDimension* pParentDim; //! Ref
|
|
|
|
ScDPLevel* pParentLevel; //! Ref
|
|
|
|
ScDPMember* pMemberDesc; //! Ref
|
|
|
|
ScDPResultDimension* pChildDimension;
|
|
|
|
ScDPDataMember* pDataRoot;
|
|
|
|
BOOL bHasElements;
|
|
|
|
BOOL bForceSubTotal;
|
2004-06-04 07:55:24 -05:00
|
|
|
BOOL bHasHiddenDetails;
|
2001-03-07 10:45:25 -06:00
|
|
|
BOOL bInitialized;
|
2004-06-04 07:55:24 -05:00
|
|
|
BOOL bAutoHidden;
|
|
|
|
ScDPAggData aColTotal; // to store column totals
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
ScDPResultMember( ScDPResultData* pData, ScDPDimension* pDim,
|
|
|
|
ScDPLevel* pLev, ScDPMember* pDesc,
|
|
|
|
BOOL bForceSub ); //! Ref
|
|
|
|
~ScDPResultMember();
|
|
|
|
|
2004-08-03 05:29:48 -05:00
|
|
|
void InitFrom( ScDPDimension** ppDim, ScDPLevel** ppLev, ScDPInitState& rInitState );
|
|
|
|
void LateInitFrom( ScDPDimension** ppDim, ScDPLevel** ppLev, ScDPItemData* pItemData,
|
|
|
|
ScDPInitState& rInitState );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
String GetName() const;
|
2004-08-03 05:29:48 -05:00
|
|
|
void FillItemData( ScDPItemData& rData ) const;
|
2000-09-18 11:07:07 -05:00
|
|
|
BOOL IsValid() const;
|
|
|
|
BOOL IsVisible() const;
|
|
|
|
long GetSize(long nMeasure) const;
|
2004-06-04 07:55:24 -05:00
|
|
|
BOOL HasHiddenDetails() const;
|
|
|
|
BOOL IsSubTotalInTitle(long nMeasure) const;
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
// BOOL SubTotalEnabled() const;
|
2004-06-04 07:55:24 -05:00
|
|
|
long GetSubTotalCount( long* pUserSubStart = NULL ) const;
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
BOOL IsNamedItem( const ScDPItemData& r ) const;
|
|
|
|
|
|
|
|
void SetHasElements() { bHasElements = TRUE; }
|
2004-06-04 07:55:24 -05:00
|
|
|
void SetAutoHidden() { bAutoHidden = TRUE; }
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
void ProcessData( const ScDPItemData* pChildMembers,
|
|
|
|
ScDPResultDimension* pDataDim,
|
|
|
|
const ScDPItemData* pDataMembers,
|
|
|
|
const ScDPValueData* pValues );
|
|
|
|
|
|
|
|
void FillMemberResults( com::sun::star::uno::Sequence<
|
|
|
|
com::sun::star::sheet::MemberResult>* pSequences,
|
|
|
|
long& rPos, long nMeasure, BOOL bRoot,
|
|
|
|
const String* pMemberName,
|
|
|
|
const String* pMemberCaption );
|
|
|
|
|
|
|
|
void FillDataResults( const ScDPResultMember* pRefMember,
|
|
|
|
com::sun::star::uno::Sequence<
|
|
|
|
com::sun::star::uno::Sequence<
|
|
|
|
com::sun::star::sheet::DataResult> >& rSequence,
|
|
|
|
long& rRow, long nMeasure ) const;
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
void UpdateDataResults( const ScDPResultMember* pRefMember, long nMeasure ) const;
|
|
|
|
void UpdateRunningTotals( const ScDPResultMember* pRefMember, long nMeasure,
|
|
|
|
ScDPRunningTotalState& rRunning, ScDPRowTotals& rTotals ) const;
|
|
|
|
|
|
|
|
void SortMembers( ScDPResultMember* pRefMember );
|
|
|
|
void DoAutoShow( ScDPResultMember* pRefMember );
|
|
|
|
|
|
|
|
void ResetResults( BOOL bRoot );
|
|
|
|
|
|
|
|
void DumpState( const ScDPResultMember* pRefMember, ScDocument* pDoc, ScAddress& rPos ) const;
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
//! this will be removed!
|
|
|
|
const ScDPResultDimension* GetChildDimension() const { return pChildDimension; }
|
|
|
|
ScDPResultDimension* GetChildDimension() { return pChildDimension; }
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
ScDPDataMember* GetDataRoot() const { return pDataRoot; }
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
ScDPDimension* GetParentDim() { return pParentDim; } //! Ref
|
|
|
|
ScDPLevel* GetParentLevel() { return pParentLevel; } //! Ref
|
2004-06-04 07:55:24 -05:00
|
|
|
|
|
|
|
ScDPAggData* GetColTotal( long nMeasure ) const;
|
2000-09-18 11:07:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
class ScDPDataMember
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
ScDPResultData* pResultData;
|
|
|
|
ScDPResultMember* pResultMember; //! Ref?
|
|
|
|
ScDPDataDimension* pChildDimension;
|
|
|
|
ScDPAggData aAggregate;
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
void UpdateValues( const ScDPValueData* pValues, const ScDPSubTotalState& rSubState );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
ScDPDataMember( ScDPResultData* pData, ScDPResultMember* pRes );
|
|
|
|
~ScDPDataMember();
|
|
|
|
|
|
|
|
void InitFrom( ScDPResultDimension* pDim );
|
|
|
|
|
|
|
|
String GetName() const;
|
2004-06-04 07:55:24 -05:00
|
|
|
BOOL IsVisible() const;
|
|
|
|
BOOL HasData( long nMeasure, const ScDPSubTotalState& rSubState ) const;
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
BOOL IsNamedItem( const ScDPItemData& r ) const;
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
BOOL HasHiddenDetails() const;
|
|
|
|
|
|
|
|
void ProcessData( const ScDPItemData* pChildMembers, const ScDPValueData* pValues,
|
|
|
|
const ScDPSubTotalState& rSubState );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
BOOL HasError( long nMeasure, const ScDPSubTotalState& rSubState ) const;
|
|
|
|
double GetAggregate( long nMeasure, const ScDPSubTotalState& rSubState ) const;
|
|
|
|
const ScDPAggData* GetConstAggData( long nMeasure, const ScDPSubTotalState& rSubState ) const;
|
|
|
|
ScDPAggData* GetAggData( long nMeasure, const ScDPSubTotalState& rSubState );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
void FillDataRow( const ScDPResultMember* pRefMember,
|
|
|
|
com::sun::star::uno::Sequence<com::sun::star::sheet::DataResult>& rSequence,
|
2004-06-04 07:55:24 -05:00
|
|
|
long& rCol, long nMeasure, BOOL bIsSubTotalRow,
|
|
|
|
const ScDPSubTotalState& rSubState ) const;
|
|
|
|
|
|
|
|
void UpdateDataRow( const ScDPResultMember* pRefMember, long nMeasure, BOOL bIsSubTotalRow,
|
|
|
|
const ScDPSubTotalState& rSubState );
|
|
|
|
void UpdateRunningTotals( const ScDPResultMember* pRefMember, long nMeasure, BOOL bIsSubTotalRow,
|
|
|
|
const ScDPSubTotalState& rSubState, ScDPRunningTotalState& rRunning,
|
|
|
|
ScDPRowTotals& rTotals, const ScDPResultMember& rRowParent );
|
|
|
|
|
|
|
|
void SortMembers( ScDPResultMember* pRefMember );
|
|
|
|
void DoAutoShow( ScDPResultMember* pRefMember );
|
|
|
|
|
|
|
|
void ResetResults();
|
|
|
|
|
|
|
|
void DumpState( const ScDPResultMember* pRefMember, ScDocument* pDoc, ScAddress& rPos ) const;
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
//! this will be removed!
|
|
|
|
const ScDPDataDimension* GetChildDimension() const { return pChildDimension; }
|
|
|
|
ScDPDataDimension* GetChildDimension() { return pChildDimension; }
|
|
|
|
};
|
|
|
|
|
|
|
|
//! replace PtrArr with 32-bit array ????
|
|
|
|
|
|
|
|
typedef ScDPResultMember* ScDPResultMemberPtr;
|
|
|
|
SV_DECL_PTRARR_DEL(ScDPResultMembers, ScDPResultMemberPtr, SC_DP_RES_GROW, SC_DP_RES_GROW);
|
|
|
|
|
|
|
|
typedef ScDPDataMember* ScDPDataMemberPtr;
|
|
|
|
SV_DECL_PTRARR_DEL(ScDPDataMembers, ScDPDataMemberPtr, SC_DP_RES_GROW, SC_DP_RES_GROW);
|
|
|
|
|
|
|
|
|
|
|
|
// result dimension contains only members
|
|
|
|
|
|
|
|
class ScDPResultDimension
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
ScDPResultData* pResultData;
|
|
|
|
ScDPResultMembers aMembers;
|
2004-08-03 05:29:48 -05:00
|
|
|
BOOL bInitialized;
|
2004-06-04 07:55:24 -05:00
|
|
|
String aDimensionName; //! or ptr to IntDimension?
|
2000-09-18 11:07:07 -05:00
|
|
|
BOOL bIsDataLayout; //! or ptr to IntDimension?
|
2004-06-04 07:55:24 -05:00
|
|
|
BOOL bSortByData;
|
|
|
|
BOOL bSortAscending;
|
|
|
|
long nSortMeasure;
|
|
|
|
ScMemberSortOrder aMemberOrder; // used when sorted by measure
|
|
|
|
BOOL bAutoShow;
|
|
|
|
BOOL bAutoTopItems;
|
|
|
|
long nAutoMeasure;
|
|
|
|
long nAutoCount;
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
ScDPResultDimension( ScDPResultData* pData );
|
|
|
|
~ScDPResultDimension();
|
|
|
|
|
|
|
|
// allocates new members
|
2004-08-03 05:29:48 -05:00
|
|
|
void InitFrom( ScDPDimension** ppDim, ScDPLevel** ppLev, ScDPInitState& rInitState );
|
|
|
|
void LateInitFrom( ScDPDimension** ppDim, ScDPLevel** ppLev, ScDPItemData* pItemData,
|
|
|
|
ScDPInitState& rInitState );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
long GetSize(long nMeasure) const;
|
|
|
|
|
|
|
|
BOOL IsValidEntry( const ScDPItemData* pMembers ) const;
|
|
|
|
|
|
|
|
// modifies existing members, allocates data dimensions
|
|
|
|
void ProcessData( const ScDPItemData* pMembers,
|
|
|
|
ScDPResultDimension* pDataDim,
|
|
|
|
const ScDPItemData* pDataMembers,
|
|
|
|
const ScDPValueData* pValues ); //! Test
|
|
|
|
|
|
|
|
void FillMemberResults( com::sun::star::uno::Sequence<
|
|
|
|
com::sun::star::sheet::MemberResult>* pSequences,
|
|
|
|
long nStart, long nMeasure );
|
|
|
|
|
|
|
|
void FillDataResults( const ScDPResultMember* pRefMember,
|
|
|
|
com::sun::star::uno::Sequence<
|
|
|
|
com::sun::star::uno::Sequence<
|
|
|
|
com::sun::star::sheet::DataResult> >& rSequence,
|
|
|
|
long nRow, long nMeasure ) const;
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
void UpdateDataResults( const ScDPResultMember* pRefMember, long nMeasure ) const;
|
|
|
|
void UpdateRunningTotals( const ScDPResultMember* pRefMember, long nMeasure,
|
|
|
|
ScDPRunningTotalState& rRunning, ScDPRowTotals& rTotals ) const;
|
|
|
|
|
|
|
|
void SortMembers( ScDPResultMember* pRefMember );
|
|
|
|
long GetSortedIndex( long nUnsorted ) const;
|
|
|
|
|
|
|
|
void DoAutoShow( ScDPResultMember* pRefMember );
|
|
|
|
|
|
|
|
void ResetResults();
|
|
|
|
|
|
|
|
// called for the reference dimension
|
|
|
|
ScDPDataMember* GetRowReferenceMember( const ScDPRelativePos* pMemberPos, const String* pName,
|
|
|
|
const long* pRowIndexes, const long* pColIndexes ) const;
|
|
|
|
|
|
|
|
// uses row root member from ScDPRunningTotalState
|
|
|
|
static ScDPDataMember* GetColReferenceMember( const ScDPRelativePos* pMemberPos, const String* pName,
|
|
|
|
long nRefDimPos, const ScDPRunningTotalState& rRunning );
|
|
|
|
|
|
|
|
void DumpState( const ScDPResultMember* pRefMember, ScDocument* pDoc, ScAddress& rPos ) const;
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
// for ScDPDataDimension::InitFrom
|
|
|
|
long GetMemberCount() const;
|
|
|
|
ScDPResultMember* GetMember(long n) const;
|
|
|
|
|
2004-06-04 07:55:24 -05:00
|
|
|
const ScMemberSortOrder& GetMemberOrder() const { return aMemberOrder; }
|
|
|
|
ScMemberSortOrder& GetMemberOrder() { return aMemberOrder; }
|
|
|
|
|
2000-09-18 11:07:07 -05:00
|
|
|
BOOL IsDataLayout() const { return bIsDataLayout; }
|
2004-06-04 07:55:24 -05:00
|
|
|
String GetName() const { return aDimensionName; }
|
|
|
|
|
|
|
|
BOOL IsSortByData() const { return bSortByData; }
|
|
|
|
BOOL IsSortAscending() const { return bSortAscending; }
|
|
|
|
long GetSortMeasure() const { return nSortMeasure; }
|
|
|
|
|
|
|
|
BOOL IsAutoShow() const { return bAutoShow; }
|
|
|
|
BOOL IsAutoTopItems() const { return bAutoTopItems; }
|
|
|
|
long GetAutoMeasure() const { return nAutoMeasure; }
|
|
|
|
long GetAutoCount() const { return nAutoCount; }
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
ScDPResultDimension* GetFirstChildDimension() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ScDPDataDimension
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
ScDPResultData* pResultData;
|
2004-06-04 07:55:24 -05:00
|
|
|
ScDPResultDimension* pResultDimension; // column
|
2000-09-18 11:07:07 -05:00
|
|
|
ScDPDataMembers aMembers;
|
|
|
|
BOOL bIsDataLayout; //! or ptr to IntDimension?
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScDPDataDimension( ScDPResultData* pData );
|
|
|
|
~ScDPDataDimension();
|
|
|
|
|
|
|
|
void InitFrom( ScDPResultDimension* pDim ); // recursive
|
2004-06-04 07:55:24 -05:00
|
|
|
void ProcessData( const ScDPItemData* pDataMembers, const ScDPValueData* pValues,
|
|
|
|
const ScDPSubTotalState& rSubState );
|
2000-09-18 11:07:07 -05:00
|
|
|
|
|
|
|
void FillDataRow( const ScDPResultDimension* pRefDim,
|
|
|
|
com::sun::star::uno::Sequence<com::sun::star::sheet::DataResult>& rSequence,
|
2004-06-04 07:55:24 -05:00
|
|
|
long nCol, long nMeasure, BOOL bIsSubTotalRow,
|
|
|
|
const ScDPSubTotalState& rSubState ) const;
|
|
|
|
|
|
|
|
void UpdateDataRow( const ScDPResultDimension* pRefDim, long nMeasure, BOOL bIsSubTotalRow,
|
|
|
|
const ScDPSubTotalState& rSubState ) const;
|
|
|
|
void UpdateRunningTotals( const ScDPResultDimension* pRefDim, long nMeasure, BOOL bIsSubTotalRow,
|
|
|
|
const ScDPSubTotalState& rSubState, ScDPRunningTotalState& rRunning,
|
|
|
|
ScDPRowTotals& rTotals, const ScDPResultMember& rRowParent ) const;
|
|
|
|
|
|
|
|
void SortMembers( ScDPResultDimension* pRefDim );
|
|
|
|
long GetSortedIndex( long nUnsorted ) const;
|
|
|
|
|
|
|
|
void DoAutoShow( ScDPResultDimension* pRefDim );
|
|
|
|
|
|
|
|
void ResetResults();
|
|
|
|
|
|
|
|
void DumpState( const ScDPResultDimension* pRefDim, ScDocument* pDoc, ScAddress& rPos ) const;
|
|
|
|
|
|
|
|
long GetMemberCount() const;
|
|
|
|
ScDPDataMember* GetMember(long n) const;
|
2000-09-18 11:07:07 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|