Version 7.5.1.1, tag libreoffice-7.5.1.1
[LibreOffice.git] / sc / inc / sheetdata.hxx
blob55dba5a2823440146c353d0dbf61637060b1783d
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 #pragma once
22 #include <editeng/editdata.hxx>
23 #include <map>
24 #include <unordered_set>
25 #include <utility>
26 #include <vector>
28 #include "address.hxx"
30 class SvXMLNamespaceMap;
31 enum class XmlStyleFamily;
33 struct ScStreamEntry
35 sal_Int32 mnStartOffset;
36 sal_Int32 mnEndOffset;
38 ScStreamEntry() :
39 mnStartOffset(-1),
40 mnEndOffset(-1)
44 ScStreamEntry( sal_Int32 nStart, sal_Int32 nEnd ) :
45 mnStartOffset(nStart),
46 mnEndOffset(nEnd)
51 struct ScCellStyleEntry
53 OUString maName;
54 ScAddress maCellPos;
56 ScCellStyleEntry( OUString aName, const ScAddress& rPos ) :
57 maName(std::move(aName)),
58 maCellPos(rPos)
63 struct ScNoteStyleEntry
65 OUString maStyleName;
66 OUString maTextStyle;
67 ScAddress maCellPos;
69 ScNoteStyleEntry( OUString aStyle, OUString aText, const ScAddress& rPos ) :
70 maStyleName(std::move(aStyle)),
71 maTextStyle(std::move(aText)),
72 maCellPos(rPos)
77 struct ScTextStyleEntry
79 OUString maName;
80 ScAddress maCellPos;
81 ESelection maSelection;
83 ScTextStyleEntry( OUString aName, const ScAddress& rPos, const ESelection& rSel ) :
84 maName(std::move(aName)),
85 maCellPos(rPos),
86 maSelection(rSel)
91 struct ScLoadedNamespaceEntry
93 OUString maPrefix;
94 OUString maName;
95 sal_uInt16 mnKey;
97 ScLoadedNamespaceEntry( OUString aPrefix, OUString aName, sal_uInt16 nKey ) :
98 maPrefix(std::move(aPrefix)),
99 maName(std::move(aName)),
100 mnKey(nKey)
105 class ScSheetSaveData
107 std::unordered_set<OUString> maInitialPrefixes;
108 std::vector<ScLoadedNamespaceEntry> maLoadedNamespaces;
110 std::vector<ScCellStyleEntry> maCellStyles;
111 std::vector<ScCellStyleEntry> maColumnStyles;
112 std::vector<ScCellStyleEntry> maRowStyles;
113 std::vector<ScCellStyleEntry> maTableStyles;
114 std::vector<ScNoteStyleEntry> maNoteStyles;
115 std::vector<ScTextStyleEntry> maNoteParaStyles;
116 std::vector<ScTextStyleEntry> maNoteTextStyles;
117 std::vector<ScTextStyleEntry> maTextStyles;
118 std::vector<bool> maBlocked;
119 std::vector<ScStreamEntry> maStreamEntries;
120 std::vector<ScStreamEntry> maSaveEntries;
121 SCTAB mnStartTab;
122 sal_Int32 mnStartOffset;
124 ScNoteStyleEntry maPreviousNote;
126 bool mbInSupportedSave;
128 public:
129 ScSheetSaveData();
130 ~ScSheetSaveData();
132 void AddCellStyle( const OUString& rName, const ScAddress& rCellPos );
133 void AddColumnStyle( const OUString& rName, const ScAddress& rCellPos );
134 void AddRowStyle( const OUString& rName, const ScAddress& rCellPos );
135 void AddTableStyle( const OUString& rName, const ScAddress& rCellPos );
137 void HandleNoteStyles( const OUString& rStyleName, const OUString& rTextName, const ScAddress& rCellPos );
138 void AddNoteContentStyle( XmlStyleFamily nFamily, const OUString& rName, const ScAddress& rCellPos, const ESelection& rSelection );
140 void AddTextStyle( const OUString& rName, const ScAddress& rCellPos, const ESelection& rSelection );
142 void BlockSheet( SCTAB nTab );
143 bool IsSheetBlocked( SCTAB nTab ) const;
145 void AddStreamPos( SCTAB nTab, sal_Int32 nStartOffset, sal_Int32 nEndOffset );
146 void GetStreamPos( SCTAB nTab, sal_Int32& rStartOffset, sal_Int32& rEndOffset ) const;
147 bool HasStreamPos( SCTAB nTab ) const;
149 void StartStreamPos( SCTAB nTab, sal_Int32 nStartOffset );
150 void EndStreamPos( sal_Int32 nEndOffset );
152 bool HasStartPos() const { return mnStartTab >= 0; }
154 void ResetSaveEntries();
155 void AddSavePos( SCTAB nTab, sal_Int32 nStartOffset, sal_Int32 nEndOffset );
156 void UseSaveEntries();
158 void StoreInitialNamespaces( const SvXMLNamespaceMap& rNamespaces );
159 void StoreLoadedNamespaces( const SvXMLNamespaceMap& rNamespaces );
160 bool AddLoadedNamespaces( SvXMLNamespaceMap& rNamespaces ) const;
162 const std::vector<ScCellStyleEntry>& GetCellStyles() const { return maCellStyles; }
163 const std::vector<ScCellStyleEntry>& GetColumnStyles() const { return maColumnStyles; }
164 const std::vector<ScCellStyleEntry>& GetRowStyles() const { return maRowStyles; }
165 const std::vector<ScCellStyleEntry>& GetTableStyles() const { return maTableStyles; }
166 const std::vector<ScNoteStyleEntry>& GetNoteStyles() const { return maNoteStyles; }
167 const std::vector<ScTextStyleEntry>& GetNoteParaStyles() const { return maNoteParaStyles; }
168 const std::vector<ScTextStyleEntry>& GetNoteTextStyles() const { return maNoteTextStyles; }
169 const std::vector<ScTextStyleEntry>& GetTextStyles() const { return maTextStyles; }
171 bool IsInSupportedSave() const { return mbInSupportedSave;}
172 void SetInSupportedSave( bool bSet );
175 struct ScFormatSaveData
177 std::map<sal_uInt64, OUString> maIDToName;
180 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */