sync master with lastest vba changes
[ooovba.git] / sc / inc / dpsdbtab.hxx
blob771eb18658ab58be277bbbbe57ce4403512610a3
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: dpsdbtab.hxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef SC_DPSDBTAB_HXX
32 #define SC_DPSDBTAB_HXX
34 #include <com/sun/star/uno/Reference.hxx>
36 #include "dptabdat.hxx"
38 #include <vector>
39 #include <set>
41 class ScDPCacheTable;
42 class ScDocument;
44 // --------------------------------------------------------------------
46 // implementation of ScDPTableData with database data
49 struct ScImportSourceDesc
51 String aDBName;
52 String aObject;
53 USHORT nType; // enum DataImportMode
54 BOOL bNative;
56 BOOL operator== ( const ScImportSourceDesc& rOther ) const
57 { return aDBName == rOther.aDBName &&
58 aObject == rOther.aObject &&
59 nType == rOther.nType &&
60 bNative == rOther.bNative; }
63 class ScDatabaseDPData_Impl;
65 class ScDatabaseDPData : public ScDPTableData
67 private:
68 ScDatabaseDPData_Impl* pImpl;
70 BOOL OpenDatabase();
72 public:
73 ScDatabaseDPData(ScDocument* pDoc, const ScImportSourceDesc& rImport);
74 virtual ~ScDatabaseDPData();
76 virtual long GetColumnCount();
77 virtual const TypedScStrCollection& GetColumnEntries(long nColumn);
78 virtual String getDimensionName(long nColumn);
79 virtual BOOL getIsDataLayoutDimension(long nColumn);
80 virtual BOOL IsDateDimension(long nDim);
81 virtual void DisposeData();
82 virtual void SetEmptyFlags( BOOL bIgnoreEmptyRows, BOOL bRepeatIfEmpty );
84 virtual void CreateCacheTable();
85 virtual void FilterCacheTable(const ::std::vector<ScDPCacheTable::Criterion>& rCriteria, const ::std::hash_set<sal_Int32>& rDataDims);
86 virtual void GetDrillDownData(const ::std::vector<ScDPCacheTable::Criterion>& rCriteria,
87 const ::std::hash_set<sal_Int32>& rCatDims,
88 ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > >& rData);
89 virtual void CalcResults(CalcInfo& rInfo, bool bAutoShow);
90 virtual const ScDPCacheTable& GetCacheTable() const;
95 #endif