Bump version to 6.4-15
[LibreOffice.git] / sc / inc / sheetdata.hxx
blob5b2265c1d5a1e361d162eaafc768aeb4b48055da
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_INC_SHEETDATA_HXX
21 #define INCLUDED_SC_INC_SHEETDATA_HXX
23 #include <editeng/editdata.hxx>
24 #include <map>
25 #include <unordered_set>
26 #include <vector>
28 #include "address.hxx"
30 class SvXMLNamespaceMap;
32 struct ScStreamEntry
34 sal_Int32 mnStartOffset;
35 sal_Int32 mnEndOffset;
37 ScStreamEntry() :
38 mnStartOffset(-1),
39 mnEndOffset(-1)
43 ScStreamEntry( sal_Int32 nStart, sal_Int32 nEnd ) :
44 mnStartOffset(nStart),
45 mnEndOffset(nEnd)
50 struct ScCellStyleEntry
52 OUString maName;
53 ScAddress const maCellPos;
55 ScCellStyleEntry( const OUString& rName, const ScAddress& rPos ) :
56 maName(rName),
57 maCellPos(rPos)
62 struct ScNoteStyleEntry
64 OUString maStyleName;
65 OUString maTextStyle;
66 ScAddress maCellPos;
68 ScNoteStyleEntry( const OUString& rStyle, const OUString& rText, const ScAddress& rPos ) :
69 maStyleName(rStyle),
70 maTextStyle(rText),
71 maCellPos(rPos)
76 struct ScTextStyleEntry
78 OUString const maName;
79 ScAddress const maCellPos;
80 ESelection const maSelection;
82 ScTextStyleEntry( const OUString& rName, const ScAddress& rPos, const ESelection& rSel ) :
83 maName(rName),
84 maCellPos(rPos),
85 maSelection(rSel)
90 struct ScLoadedNamespaceEntry
92 OUString const maPrefix;
93 OUString const maName;
94 sal_uInt16 const mnKey;
96 ScLoadedNamespaceEntry( const OUString& rPrefix, const OUString& rName, sal_uInt16 nKey ) :
97 maPrefix(rPrefix),
98 maName(rName),
99 mnKey(nKey)
104 class ScSheetSaveData
106 std::unordered_set<OUString> maInitialPrefixes;
107 std::vector<ScLoadedNamespaceEntry> maLoadedNamespaces;
109 std::vector<ScCellStyleEntry> maCellStyles;
110 std::vector<ScCellStyleEntry> maColumnStyles;
111 std::vector<ScCellStyleEntry> maRowStyles;
112 std::vector<ScCellStyleEntry> maTableStyles;
113 std::vector<ScNoteStyleEntry> maNoteStyles;
114 std::vector<ScTextStyleEntry> maNoteParaStyles;
115 std::vector<ScTextStyleEntry> maNoteTextStyles;
116 std::vector<ScTextStyleEntry> maTextStyles;
117 std::vector<bool> maBlocked;
118 std::vector<ScStreamEntry> maStreamEntries;
119 std::vector<ScStreamEntry> maSaveEntries;
120 SCTAB mnStartTab;
121 sal_Int32 mnStartOffset;
123 ScNoteStyleEntry maPreviousNote;
125 bool mbInSupportedSave;
127 public:
128 ScSheetSaveData();
129 ~ScSheetSaveData();
131 void AddCellStyle( const OUString& rName, const ScAddress& rCellPos );
132 void AddColumnStyle( const OUString& rName, const ScAddress& rCellPos );
133 void AddRowStyle( const OUString& rName, const ScAddress& rCellPos );
134 void AddTableStyle( const OUString& rName, const ScAddress& rCellPos );
136 void HandleNoteStyles( const OUString& rStyleName, const OUString& rTextName, const ScAddress& rCellPos );
137 void AddNoteContentStyle( sal_uInt16 nFamily, const OUString& rName, const ScAddress& rCellPos, const ESelection& rSelection );
139 void AddTextStyle( const OUString& rName, const ScAddress& rCellPos, const ESelection& rSelection );
141 void BlockSheet( SCTAB nTab );
142 bool IsSheetBlocked( SCTAB nTab ) const;
144 void AddStreamPos( SCTAB nTab, sal_Int32 nStartOffset, sal_Int32 nEndOffset );
145 void GetStreamPos( SCTAB nTab, sal_Int32& rStartOffset, sal_Int32& rEndOffset ) const;
146 bool HasStreamPos( SCTAB nTab ) const;
148 void StartStreamPos( SCTAB nTab, sal_Int32 nStartOffset );
149 void EndStreamPos( sal_Int32 nEndOffset );
151 bool HasStartPos() const { return mnStartTab >= 0; }
153 void ResetSaveEntries();
154 void AddSavePos( SCTAB nTab, sal_Int32 nStartOffset, sal_Int32 nEndOffset );
155 void UseSaveEntries();
157 void StoreInitialNamespaces( const SvXMLNamespaceMap& rNamespaces );
158 void StoreLoadedNamespaces( const SvXMLNamespaceMap& rNamespaces );
159 bool AddLoadedNamespaces( SvXMLNamespaceMap& rNamespaces ) const;
161 const std::vector<ScCellStyleEntry>& GetCellStyles() const { return maCellStyles; }
162 const std::vector<ScCellStyleEntry>& GetColumnStyles() const { return maColumnStyles; }
163 const std::vector<ScCellStyleEntry>& GetRowStyles() const { return maRowStyles; }
164 const std::vector<ScCellStyleEntry>& GetTableStyles() const { return maTableStyles; }
165 const std::vector<ScNoteStyleEntry>& GetNoteStyles() const { return maNoteStyles; }
166 const std::vector<ScTextStyleEntry>& GetNoteParaStyles() const { return maNoteParaStyles; }
167 const std::vector<ScTextStyleEntry>& GetNoteTextStyles() const { return maNoteTextStyles; }
168 const std::vector<ScTextStyleEntry>& GetTextStyles() const { return maTextStyles; }
170 bool IsInSupportedSave() const { return mbInSupportedSave;}
171 void SetInSupportedSave( bool bSet );
174 struct ScFormatSaveData
176 std::map<sal_uInt64, OUString> maIDToName;
179 #endif
181 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */