LibreOffice Module sc (master) 1
xedbdata.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include "xeroot.hxx"
23#include "xerecord.hxx"
24
25class ScDBData;
26
27class XclExpTables : public XclExpRecordBase, protected XclExpRoot
28{
29public:
30 XclExpTables( const XclExpRoot& rRoot );
31 virtual ~XclExpTables() override;
32
33 void AppendTable( const ScDBData* pData, sal_Int32 nTableId );
34
35protected:
36 struct Entry
37 {
39 sal_Int32 mnTableId;
40
41 Entry( const ScDBData* pData, sal_Int32 nTableId );
42 };
43
44 typedef ::std::vector<Entry> TablesType;
46
47 static void SaveTableXml( XclExpXmlStream& rStrm, const Entry& rEntry );
48};
49
53{
54public:
55 explicit XclExpTablesManager( const XclExpRoot& rRoot );
56 virtual ~XclExpTablesManager() override;
57
58 void Initialize();
60
61private:
62 typedef ::std::map< SCTAB, rtl::Reference< XclExpTables > > TablesMapType;
64};
65
66/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Base class for all Excel records.
Definition: xerecord.hxx:39
Access to global data from other classes.
Definition: xeroot.hxx:113
Stores all data for database ranges (tables in Excel speak).
Definition: xedbdata.hxx:53
rtl::Reference< XclExpTables > GetTablesBySheet(SCTAB nTab)
Definition: xedbdata.cxx:152
::std::map< SCTAB, rtl::Reference< XclExpTables > > TablesMapType
Definition: xedbdata.hxx:62
TablesMapType maTablesMap
Definition: xedbdata.hxx:63
virtual ~XclExpTablesManager() override
Definition: xedbdata.cxx:100
XclExpTablesManager(const XclExpRoot &rRoot)
Definition: xedbdata.cxx:95
::std::vector< Entry > TablesType
Definition: xedbdata.hxx:44
virtual ~XclExpTables() override
Definition: xedbdata.cxx:168
static void SaveTableXml(XclExpXmlStream &rStrm, const Entry &rEntry)
Definition: xedbdata.cxx:177
void AppendTable(const ScDBData *pData, sal_Int32 nTableId)
Definition: xedbdata.cxx:172
XclExpTables(const XclExpRoot &rRoot)
Definition: xedbdata.cxx:163
TablesType maTables
Definition: xedbdata.hxx:45
std::unique_ptr< sal_Int32[]> pData
Entry(const ScDBData *pData, sal_Int32 nTableId)
used as [n] in table[n].xml part name.
Definition: xedbdata.cxx:158
sal_Int32 mnTableId
Definition: xedbdata.hxx:39
const ScDBData * mpData
Definition: xedbdata.hxx:38
sal_Int16 SCTAB
Definition: types.hxx:22