Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / sc / source / filter / inc / excdoc.hxx
blobbef6e43756efe9b1e4d8af73bc74ddb95c2143e9
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SC_SOURCE_FILTER_INC_EXCDOC_HXX
21 #define INCLUDED_SC_SOURCE_FILTER_INC_EXCDOC_HXX
23 #include "xeroot.hxx"
24 #include "xerecord.hxx"
25 #include "excrecds.hxx"
26 #include <memory>
28 // Forwards -
30 class SvStream;
31 class XclExpNote;
32 class XclExpStream;
33 class XclExpXmlStream;
34 class XclExpChangeTrack;
36 // class ExcTable -
38 class XclExpCellTable;
40 class ExcTable : public XclExpRecordBase, public XclExpRoot
42 private:
43 typedef XclExpRecordList< ExcBundlesheetBase > ExcBoundsheetList;
44 typedef std::shared_ptr< XclExpCellTable > XclExpCellTableRef;
45 typedef XclExpRecordList< XclExpNote > XclExpNoteList;
46 typedef std::shared_ptr< XclExpNoteList > XclExpNoteListRef;
48 XclExpRecordList<> aRecList;
49 XclExpCellTableRef mxCellTable;
51 SCTAB const mnScTab; // table number SC document
52 sal_uInt16 const nExcTab; // table number Excel document
54 XclExpNoteListRef mxNoteList;
56 // re-create and forget pRec; delete is done by ExcTable itself!
57 void Add( XclExpRecordBase* pRec );
59 public:
60 ExcTable( const XclExpRoot& rRoot );
61 ExcTable( const XclExpRoot& rRoot, SCTAB nScTab );
62 virtual ~ExcTable() override;
64 void FillAsHeaderBinary( ExcBoundsheetList& rBoundsheetList );
65 void FillAsHeaderXml( ExcBoundsheetList& rBoundsheetList );
67 void FillAsTableBinary( SCTAB nCodeNameIdx );
68 void FillAsTableXml();
70 void FillAsEmptyTable( SCTAB nCodeNameIdx );
72 void Write( XclExpStream& );
73 void WriteXml( XclExpXmlStream& );
76 class ExcDocument : protected XclExpRoot
78 friend class ExcTable;
80 private:
81 typedef XclExpRecordList< ExcTable > ExcTableList;
82 typedef XclExpRecordList< ExcBundlesheetBase > ExcBoundsheetList;
83 typedef ExcBoundsheetList::RecordRefType ExcBoundsheetRef;
85 ExcTable aHeader;
87 ExcTableList maTableList;
88 ExcBoundsheetList maBoundsheetList;
90 std::unique_ptr<XclExpChangeTrack> m_xExpChangeTrack;
92 public:
93 explicit ExcDocument( const XclExpRoot& rRoot );
94 virtual ~ExcDocument() override;
96 void ReadDoc();
97 void Write( SvStream& rSvStrm );
98 void WriteXml( XclExpXmlStream& );
101 #endif
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */