1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
|
/*************************************************************************
*
* $RCSfile: pivot.hxx,v $
*
* $Revision: 1.1.1.1 $
*
* last change: $Author: hr $ $Date: 2000-09-18 16:44:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* 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.
*
* 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.
*
* 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
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
/*
WICHTIG:
Folgende Reihenfolge beim Aufbau der Pivot-Tabelle unbedingt einzuhalten:
pPivot->SetColFields(aColArr, aColCount)
pPivot->SetRowFields(aRowArr, aRowCount)
pPivot->SetDataFields(aDataArr, aDataCount)
if (pPivot->CreateData())
{
pPivotDrawData();
pPivotReleaseData();
}
ausserdem ist sicherzustellen, dass entweder das ColArr oder das RowArr
einen PivotDataField Eintrag enthalten
*/
#ifndef SC_PIVOT_HXX
#define SC_PIVOT_HXX
#include <global.hxx>
class SubTotal;
#ifndef SC_COLLECT_HXX
#include "collect.hxx"
#endif
#define PIVOT_DATA_FIELD (MAXCOL + 1)
#define PIVOT_FUNC_REF (MAXCOL + 1)
#define PIVOT_STYLE_INNER 0
#define PIVOT_STYLE_RESULT 1
#define PIVOT_STYLE_CATEGORY 2
#define PIVOT_STYLE_TITLE 3
#define PIVOT_STYLE_FIELDNAME 4
#define PIVOT_STYLE_TOP 5
class SvStream;
class ScDocument;
class ScUserListData;
class ScMultipleReadHeader;
class ScMultipleWriteHeader;
class ScProgress;
struct PivotColRef
{
USHORT nDataIndex;
USHORT nRecCount;
USHORT nFuncMask;
USHORT nIndex;
PivotColRef()
{
nDataIndex = nRecCount = nIndex = 0;
nFuncMask = PIVOT_FUNC_NONE;
}
};
typedef PivotField PivotFieldArr[PIVOT_MAXFIELD];
class PivotStrCollection : public StrCollection
{
ScUserListData* pUserData;
public:
PivotStrCollection(USHORT nLim = 4, USHORT nDel = 4, BOOL bDup = FALSE) :
StrCollection ( nLim, nDel, bDup ),
pUserData (NULL) { }
PivotStrCollection(const PivotStrCollection& rPivotStrCollection) :
StrCollection ( rPivotStrCollection ),
pUserData ( rPivotStrCollection.pUserData) {}
virtual DataObject* Clone() const;
virtual short Compare(DataObject* pKey1, DataObject* pKey2) const;
TypedStrData* operator[]( const USHORT nIndex) const
{ return (TypedStrData*)At(nIndex); }
void SetUserData(ScUserListData* pData)
{ pUserData = pData; }
const String& GetString(USHORT nIndex)
{ return ((TypedStrData*)At(nIndex))->GetString(); }
short GetIndex(TypedStrData* pData) const;
};
class ScPivot : public DataObject
{
ScDocument* pDoc;
ScQueryParam aQuery;
BOOL bHasHeader;
BOOL bIgnoreEmpty; // Flags aus Dialog
BOOL bDetectCat;
BOOL bMakeTotalCol;
BOOL bMakeTotalRow;
String aName;
String aTag;
USHORT nColNameCount;
String* pColNames; // Array
USHORT nSrcCol1;
USHORT nSrcRow1;
USHORT nSrcCol2;
USHORT nSrcRow2;
USHORT nSrcTab;
USHORT nDestCol1;
USHORT nDestRow1;
USHORT nDestCol2;
USHORT nDestRow2;
USHORT nDestTab;
USHORT nDataStartCol;
USHORT nDataStartRow;
short nColCount;
short nRowCount;
short nDataCount;
PivotFieldArr aColArr;
PivotFieldArr aRowArr;
PivotFieldArr aDataArr;
PivotStrCollection* pColList[PIVOT_MAXFIELD]; // pro Zeile alle Eintraege
PivotStrCollection* pRowList[PIVOT_MAXFIELD];
PivotStrCollection* pDataList; // Shortcut auf Col/RowList mit Daten
SubTotal** ppDataArr;
short nDataColCount;
short nDataRowCount;
short nRowIndex;
short nColIndex;
short nDataIndex;
short nRecCount;
PivotColRef* pColRef;
BOOL bValidArea;
BOOL bDataAtCol;
public:
ScPivot(ScDocument* pDocument);
ScPivot(const ScPivot& rPivot);
~ScPivot();
virtual DataObject* Clone() const;
ScPivot* CreateNew() const;
BOOL Load(SvStream& rStream, ScMultipleReadHeader& rHdr );
BOOL Store(SvStream& rStream, ScMultipleWriteHeader& rHdr ) const;
void SetQuery(const ScQueryParam& rQuery);
void GetQuery(ScQueryParam& rQuery) const;
void SetHeader(BOOL bHeader);
BOOL GetHeader() const;
void SetIgnoreEmpty(BOOL bIgnore);
BOOL GetIgnoreEmpty() const;
void SetDetectCat(BOOL bDetect);
BOOL GetDetectCat() const;
void SetMakeTotalCol(BOOL bSet);
BOOL GetMakeTotalCol() const;
void SetMakeTotalRow(BOOL bSet);
BOOL GetMakeTotalRow() const;
void SetName(const String& rNew);
const String& GetName() const;
void SetTag(const String& rNew);
const String& GetTag() const;
void SetSrcArea(USHORT nCol1, USHORT nRow1, USHORT nCol2, USHORT nRow2, USHORT nTab);
void GetSrcArea(USHORT& rCol1, USHORT& rRow1, USHORT& rCol2, USHORT& rRow2, USHORT& rTab) const;
ScRange GetSrcArea() const;
void SetDestPos(USHORT nCol, USHORT nRow, USHORT nTab);
void GetDestArea(USHORT& rCol1, USHORT& rRow1, USHORT& rCol2, USHORT& rRow2, USHORT& rTab) const;
ScRange GetDestArea() const;
void SetColFields(const PivotField* pFieldArr, short nCount);
void GetColFields(PivotField* pFieldArr, short& rCount) const;
short GetColFieldCount() const { return nColCount; }
void SetRowFields(const PivotField* pFieldArr, short nCount);
void GetRowFields(PivotField* pFieldArr, short& rCount) const;
short GetRowFieldCount() const { return nRowCount; }
void SetDataFields(const PivotField* pFieldArr, short nCount);
void GetDataFields(PivotField* pFieldArr, short& rCount) const;
void GetParam( ScPivotParam& rParam, ScQueryParam& rQuery, ScArea& rSrcArea ) const;
void SetParam( const ScPivotParam& rParam, const ScQueryParam& rQuery,
const ScArea& rSrcArea );
BOOL CreateData(BOOL bKeepDest = FALSE);
void DrawData();
void ReleaseData();
BOOL IsPivotAtCursor(USHORT nCol, USHORT nRow, USHORT nTab) const;
BOOL IsFilterAtCursor(USHORT nCol, USHORT nRow, USHORT nTab) const;
BOOL GetColFieldAtCursor(USHORT nCol, USHORT nRow, USHORT nTab, USHORT& rField) const;
BOOL GetRowFieldAtCursor(USHORT nCol, USHORT nRow, USHORT nTab, USHORT& rField) const;
// Referenz-Anpassung:
void MoveSrcArea( USHORT nNewCol, USHORT nNewRow, USHORT nNewTab );
void MoveDestArea( USHORT nNewCol, USHORT nNewRow, USHORT nNewTab );
void ExtendSrcArea( USHORT nNewEndCol, USHORT nNewEndRow );
private:
BOOL CreateFields();
void CreateFieldData();
void CalcArea();
void SetDataLine(USHORT nCol, USHORT nRow, USHORT nTab, USHORT nRIndex);
void SetFuncLine(USHORT nCol, USHORT nRow, USHORT nTab, USHORT nFunc, USHORT nIndex, USHORT nStartRIndex, USHORT nEndRIndex);
void ColToTable(short nField, USHORT& nRow, ScProgress& rProgress);
void RowToTable(short nField, USHORT& nCol);
void SetFrame(USHORT nCol1, USHORT nRow1, USHORT nCol2, USHORT nRow2, USHORT nWidth = 20);
void SetFrameHor(USHORT nCol1, USHORT nRow1, USHORT nCol2, USHORT nRow2);
void SetFrameVer(USHORT nCol1, USHORT nRow1, USHORT nCol2, USHORT nRow2);
void SetFontBold(USHORT nCol1, USHORT nRow1, USHORT nCol2, USHORT nRow2);
void SetJustifyLeft(USHORT nCol1, USHORT nRow1, USHORT nCol2, USHORT nRow2);
void SetJustifyRight(USHORT nCol1, USHORT nRow1, USHORT nCol2, USHORT nRow2);
void SetStyle(USHORT nCol1, USHORT nRow1, USHORT nCol2, USHORT nRow2, USHORT nId);
void SetButton(USHORT nCol1, USHORT nRow1, USHORT nCol2, USHORT nRow2);
void SetValue(USHORT nCol, USHORT nRow, const SubTotal& rTotal, USHORT nFunc);
USHORT GetCategoryRow( USHORT nCol, USHORT nRow );
};
//------------------------------------------------------------------------
class ScPivotCollection : public Collection
{
private:
ScDocument* pDoc;
public:
ScPivotCollection(USHORT nLim = 4, USHORT nDel = 4, ScDocument* pDocument = NULL) :
Collection ( nLim, nDel),
pDoc ( pDocument ) {}
ScPivotCollection(const ScPivotCollection& rScPivotCollection) :
Collection ( rScPivotCollection ),
pDoc ( rScPivotCollection.pDoc ) {}
virtual DataObject* Clone() const;
ScPivot* operator[]( const USHORT nIndex) const {return (ScPivot*)At(nIndex);}
ScPivot* GetPivotAtCursor(USHORT nCol, USHORT nRow, USHORT nTab) const;
BOOL Load( SvStream& rStream );
BOOL Store( SvStream& rStream ) const;
void UpdateReference(UpdateRefMode eUpdateRefMode,
USHORT nCol1, USHORT nRow1, USHORT nTab1,
USHORT nCol2, USHORT nRow2, USHORT nTab2,
short nDx, short nDy, short nDz );
void UpdateGrow( const ScRange& rArea, USHORT nGrowX, USHORT nGrowY );
BOOL operator==(const ScPivotCollection& rCmp) const;
String CreateNewName( USHORT nMin = 1 ) const;
};
//------------------------------------------------------------------------
struct LabelData
{
String* pStrColName;
short nCol;
BOOL bIsValue; // Summe oder Anzahl im Data-Feld
USHORT nFuncMask;
LabelData( const String& rColName,
short nColumn,
BOOL bVal,
USHORT nMask = PIVOT_FUNC_NONE )
: nCol (nColumn),
bIsValue (bVal),
nFuncMask (nMask)
{ pStrColName = new String( rColName ); }
LabelData( const LabelData& rCpy )
: nCol (rCpy.nCol),
bIsValue (rCpy.bIsValue),
nFuncMask (rCpy.nFuncMask)
{ pStrColName = new String( *(rCpy.pStrColName) ); }
~LabelData()
{ delete pStrColName; }
LabelData& operator=( const LabelData& r )
{
nCol = r.nCol;
bIsValue = r.bIsValue;
nFuncMask = r.nFuncMask;
pStrColName = new String( *(r.pStrColName) );
return *this;
}
};
#endif
|