1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279 | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#pragma once
#include <editeng/editobj.hxx>
#include <editeng/fieldupdater.hxx>
#include <editeng/outliner.hxx>
#include <editdoc.hxx>
#include <svl/sharedstring.hxx>
#include <svl/languageoptions.hxx>
#include <memory>
#include <vector>
namespace editeng {
struct Section;
}
namespace svl {
class SharedStringPool;
}
class XEditAttribute
{
private:
const SfxPoolItem* pItem;
sal_Int32 nStart;
sal_Int32 nEnd;
XEditAttribute( const XEditAttribute& rCopyFrom ) = delete;
public:
XEditAttribute( const SfxPoolItem& rAttr, sal_Int32 nStart, sal_Int32 nEnd );
~XEditAttribute();
const SfxPoolItem* GetItem() const { return pItem; }
sal_Int32& GetStart() { return nStart; }
sal_Int32& GetEnd() { return nEnd; }
sal_Int32 GetStart() const { return nStart; }
sal_Int32 GetEnd() const { return nEnd; }
sal_Int32 GetLen() const { return nEnd-nStart; }
bool IsFeature() const;
void SetItem(const SfxPoolItem& rNew);
inline bool operator==( const XEditAttribute& rCompare ) const;
};
inline bool XEditAttribute::operator==( const XEditAttribute& rCompare ) const
{
return (nStart == rCompare.nStart) &&
(nEnd == rCompare.nEnd) &&
((pItem == rCompare.pItem) ||
((pItem->Which() == rCompare.pItem->Which()) &&
(*pItem == *rCompare.pItem)));
}
struct XParaPortion
{
long nHeight;
sal_uInt16 nFirstLineOffset;
EditLineList aLines;
TextPortionList aTextPortions;
};
class XParaPortionList
{
typedef std::vector<std::unique_ptr<XParaPortion> > ListType;
ListType maList;
VclPtr<OutputDevice> pRefDevPtr;
sal_uInt16 nStretchX;
sal_uInt16 nStretchY;
sal_uInt32 nPaperWidth;
public:
XParaPortionList(OutputDevice* pRefDev, sal_uInt32 nPW, sal_uInt16 _nStretchX, sal_uInt16 _nStretchY);
void push_back(XParaPortion* p);
const XParaPortion& operator[](size_t i) const;
OutputDevice* GetRefDevPtr() const { return pRefDevPtr; }
sal_uInt32 GetPaperWidth() const { return nPaperWidth; }
bool RefDevIsVirtual() const {return pRefDevPtr->IsVirtual();}
const MapMode& GetRefMapMode() const { return pRefDevPtr->GetMapMode(); }
sal_uInt16 GetStretchX() const { return nStretchX; }
sal_uInt16 GetStretchY() const { return nStretchY; }
};
class ContentInfo
{
friend class EditTextObjectImpl;
public:
typedef std::vector<std::unique_ptr<XEditAttribute> > XEditAttributesType;
private:
svl::SharedString maText;
OUString aStyle;
XEditAttributesType maCharAttribs;
SfxStyleFamily eFamily;
SfxItemSet aParaAttribs;
std::unique_ptr<WrongList>
mpWrongs;
ContentInfo( SfxItemPool& rPool );<--- Class 'ContentInfo' has a constructor with 1 argument that is not explicit. [+]Class 'ContentInfo' has a constructor with 1 argument that is not explicit. Such constructors should in general be explicit for type safety reasons. Using the explicit keyword in the constructor means some mistakes when using the class can be avoided.
ContentInfo( const ContentInfo& rCopyFrom, SfxItemPool& rPoolToUse );
public:
~ContentInfo();
ContentInfo(const ContentInfo&) = delete;
ContentInfo& operator=(const ContentInfo&) = delete;
void NormalizeString( svl::SharedStringPool& rPool );
const svl::SharedString& GetSharedString() const { return maText;}
OUString GetText() const;
void SetText( const OUString& rStr );
void dumpAsXml(xmlTextWriterPtr pWriter) const;
const XEditAttributesType& GetCharAttribs() const { return maCharAttribs; }
XEditAttributesType& GetCharAttribs() { return maCharAttribs; }
const OUString& GetStyle() const { return aStyle; }
SfxStyleFamily GetFamily() const { return eFamily; }
void SetStyle(const OUString& rStyle) { aStyle = rStyle; }
void SetFamily(const SfxStyleFamily& rFamily) { eFamily = rFamily; }
const SfxItemSet& GetParaAttribs() const { return aParaAttribs; }
SfxItemSet& GetParaAttribs() { return aParaAttribs; }
const WrongList* GetWrongList() const;
void SetWrongList( WrongList* p );
bool Equals( const ContentInfo& rCompare, bool bComparePool ) const;
// #i102062#
bool isWrongListEqual(const ContentInfo& rCompare) const;
#if DEBUG_EDIT_ENGINE
void Dump() const;
#endif
};
class EditTextObjectImpl
{
friend class EditTextObject;
public:
typedef std::vector<std::unique_ptr<ContentInfo> > ContentInfosType;
private:
EditTextObject* mpFront;
ContentInfosType aContents;
SfxItemPool* pPool;
std::unique_ptr<XParaPortionList> pPortionInfo;
sal_uInt16 nMetric;
OutlinerMode nUserType;
SvtScriptType nScriptType;
bool bOwnerOfPool:1;
bool bVertical:1;
TextRotation mnRotation;
bool ImpChangeStyleSheets( const OUString& rOldName, SfxStyleFamily eOldFamily,
const OUString& rNewName, SfxStyleFamily eNewFamily );
public:
EditTextObjectImpl( EditTextObject* pFront, SfxItemPool* pPool );
EditTextObjectImpl( EditTextObject* pFront, const EditTextObjectImpl& r );
~EditTextObjectImpl();
EditTextObjectImpl(const EditTextObjectImpl&) = delete;
EditTextObjectImpl& operator=(const EditTextObjectImpl&) = delete;
OutlinerMode GetUserType() const { return nUserType;}
void SetUserType( OutlinerMode n );
void NormalizeString( svl::SharedStringPool& rPool );
std::vector<svl::SharedString> GetSharedStrings() const;
bool IsVertical() const;
bool GetDirectVertical() const;
bool IsTopToBottom() const;
void SetVertical( bool bVert);
void SetRotation(TextRotation nRotation);
TextRotation GetRotation() const;
SvtScriptType GetScriptType() const { return nScriptType;}
void SetScriptType( SvtScriptType nType );
ContentInfo* CreateAndInsertContent();
std::unique_ptr<XEditAttribute> CreateAttrib( const SfxPoolItem& rItem, sal_Int32 nStart, sal_Int32 nEnd );
void DestroyAttrib( std::unique_ptr<XEditAttribute> pAttr );
ContentInfosType& GetContents() { return aContents;}
const ContentInfosType& GetContents() const { return aContents;}
SfxItemPool* GetPool() const { return pPool; }
XParaPortionList* GetPortionInfo() const { return pPortionInfo.get(); }
void SetPortionInfo( std::unique_ptr<XParaPortionList> pP )
{ pPortionInfo = std::move(pP); }
sal_Int32 GetParagraphCount() const;
OUString GetText(sal_Int32 nParagraph) const;
void ClearPortionInfo();
bool HasOnlineSpellErrors() const;
void GetCharAttribs( sal_Int32 nPara, std::vector<EECharAttrib>& rLst ) const;
bool RemoveCharAttribs( sal_uInt16 nWhich );
void GetAllSections( std::vector<editeng::Section>& rAttrs ) const;
bool IsFieldObject() const;
const SvxFieldItem* GetField() const;
const SvxFieldData* GetFieldData(sal_Int32 nPara, size_t nPos, sal_Int32 nType) const;
bool HasField( sal_Int32 nType ) const;
const SfxItemSet& GetParaAttribs(sal_Int32 nPara) const;
void GetStyleSheet(sal_Int32 nPara, OUString& rName, SfxStyleFamily& eFamily) const;
void SetStyleSheet(sal_Int32 nPara, const OUString& rName, const SfxStyleFamily& eFamily);
bool ChangeStyleSheets(
const OUString& rOldName, SfxStyleFamily eOldFamily, const OUString& rNewName, SfxStyleFamily eNewFamily);
void ChangeStyleSheetName(SfxStyleFamily eFamily, const OUString& rOldName, const OUString& rNewName);
editeng::FieldUpdater GetFieldUpdater() const { return editeng::FieldUpdater(*mpFront);}
bool HasMetric() const { return nMetric != 0xFFFF; }
sal_uInt16 GetMetric() const { return nMetric; }
void SetMetric( sal_uInt16 n ) { nMetric = n; }
bool IsOwnerOfPool() const { return bOwnerOfPool; }
bool operator==( const EditTextObjectImpl& rCompare ) const;
bool Equals( const EditTextObjectImpl& rCompare, bool bComparePool ) const;
// #i102062#
bool isWrongListEqual(const EditTextObjectImpl& rCompare) const;
// from SfxItemPoolUser
void ObjectInDestruction(const SfxItemPool& rSfxItemPool);
#if DEBUG_EDIT_ENGINE
void Dump() const;
#endif
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|