/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: consoli.hxx,v $ * * $Revision: 1.3 $ * * last change: $Author: rt $ $Date: 2005-09-08 17:29:21 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 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 * ************************************************************************/ #ifndef SC_CONSOLI_HXX #define SC_CONSOLI_HXX #ifndef SC_SCGLOB_HXX #include "global.hxx" #endif #ifndef SC_ADDRESS_HXX #include "address.hxx" #endif class ScDocument; // ----------------------------------------------------------------------- struct ScReferenceEntry // ohne Constructor ! { SCCOL nCol; SCROW nRow; SCTAB nTab; }; //! Delta-Wert fuer Daten benutzen? class ScReferenceList // ohne Constructor ! { private: SCSIZE nCount; SCSIZE nFullSize; // inkl. Fuell-Eintraege ScReferenceEntry* pData; public: void Init() { nCount=0; nFullSize=0; pData=NULL; } void Clear() { delete[] pData; } SCSIZE GetCount() { return nCount; } const ScReferenceEntry& GetEntry( SCSIZE nPos ) { return pData[nPos]; } void SetFullSize( SCSIZE nNew ) { nFullSize = nNew; } void AddEntry( SCCOL nCol, SCROW nRow, SCTAB nTab ); }; // ----------------------------------------------------------------------- // // Reihenfolge: // 1) ScConsData anlegen // 2) Parameter (Size/Flags) // 3) AddFields fuer alle Bereiche (nur noetig bei bColByName oder bRowByName) // 4) DoneFields ( " " ) // 5) AddData fuer alle Bereiche // evtl. AddName nach jedem Bereich // 6) OutputToDocument // //! ab bestimmter Groesse ScDocument Struktur benutzen? class ScConsData { private: ScSubTotalFunc eFunction; BOOL bReference; BOOL bColByName; BOOL bRowByName; BOOL bSubTitles; SCSIZE nColCount; SCSIZE nRowCount; BOOL** ppUsed; double** ppSum; double** ppCount; double** ppSumSqr; ScReferenceList** ppRefs; String** ppColHeaders; String** ppRowHeaders; SCSIZE nDataCount; SCSIZE nTitleCount; String** ppTitles; SCSIZE** ppTitlePos; BOOL bCornerUsed; String aCornerText; // nur bei bColByName && bRowByName public: ScConsData(); ~ScConsData(); void SetSize( SCCOL nCols, SCROW nRows ); void SetFlags( ScSubTotalFunc eFunc, BOOL bColName, BOOL bRowName, BOOL bRef ); void InitData(BOOL bDelete=TRUE); void DeleteData(); void AddFields( ScDocument* pSrcDoc, SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ); void DoneFields(); void AddData( ScDocument* pSrcDoc, SCTAB nTab, SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2 ); void AddName( const String& rName ); void OutputToDocument( ScDocument* pDestDoc, SCCOL nCol, SCROW nRow, SCTAB nTab ); void GetSize( SCCOL& rCols, SCROW& rRows ) const; SCROW GetInsertCount() const; }; #endif