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
280
281
282
283
284
285
286
287
288
289
290
291
|
/* -*- 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 .
*/
#ifndef INCLUDED_SW_INC_DBFLD_HXX
#define INCLUDED_SW_INC_DBFLD_HXX
#include "swdllapi.h"
#include "fldbas.hxx"
#include "swdbdata.hxx"
class SwDoc;
// Database field.
class SW_DLLPUBLIC SwDBFieldType final : public SwValueFieldType
{
SwDBData m_aDBData;
OUString m_sName; ///< only used in ::GetName() !
OUString m_sColumn;
tools::Long m_nRefCnt;
public:
SwDBFieldType(SwDoc* pDocPtr, const OUString& rColumnName, const SwDBData& rDBData);
virtual ~SwDBFieldType() override;
virtual OUString GetName() const override;
virtual std::unique_ptr<SwFieldType> Copy() const override;
void AddRef() { m_nRefCnt++; }
void ReleaseRef();
const OUString& GetColumnName() const {return m_sColumn;}
const SwDBData& GetDBData() const {return m_aDBData;}
virtual void QueryValue( css::uno::Any& rVal, sal_uInt16 nWhich ) const override;
virtual void PutValue( const css::uno::Any& rVal, sal_uInt16 nWhich ) override;
virtual void UpdateFields() override {};
};
// Classes derived from SwFields. They overlay the expand-function.
// Content is formatted according to the format (if available).
class SW_DLLPUBLIC SwDBField final : public SwValueField
{
OUString m_aContent;
OUString m_sFieldCode; ///< contains Word's field code
sal_uInt16 m_nSubType;
bool m_bIsInBodyText : 1;
bool m_bValidValue : 1;
bool m_bInitialized : 1;
virtual OUString ExpandImpl(SwRootFrame const* pLayout) const override;
virtual std::unique_ptr<SwField> Copy() const override;
public:
SwDBField(SwDBFieldType*, sal_uInt32 nFormat = 0);
virtual ~SwDBField() override;
virtual SwFieldType* ChgTyp( SwFieldType* ) override;
/// Current text.
inline void SetExpansion(const OUString& rStr);
virtual sal_uInt16 GetSubType() const override;
virtual void SetSubType(sal_uInt16 nType) override;
virtual OUString GetFieldName() const override;
/// For calculations in expressions.
void ChgValue( double d, bool bVal );
/// Get the evaluation via DBManager string.
void Evaluate();
/// Evaluation for header and footer.
void InitContent();
void InitContent(const OUString& rExpansion);
inline void ChgBodyTextFlag( bool bIsInBody );
bool IsInitialized() const { return m_bInitialized; }
void ClearInitialized() { m_bInitialized = false; }
void SetInitialized() { m_bInitialized = true; }
/// Get name.
virtual OUString GetPar1() const override;
/// access to the command string
void SetFieldCode(const OUString& rStr) { m_sFieldCode = rStr; }
/// DBName
const SwDBData& GetDBData() const { return static_cast<SwDBFieldType*>(GetTyp())->GetDBData(); }
virtual bool QueryValue( css::uno::Any& rVal, sal_uInt16 nWhich ) const override;
virtual bool PutValue( const css::uno::Any& rVal, sal_uInt16 nWhich ) override;
static bool FormatValue( SvNumberFormatter const * pDocFormatter, OUString const &aString, sal_uInt32 nFormat,
double &aNumber, sal_Int32 nColumnType, SwDBField *pField = nullptr );
};
inline void SwDBField::SetExpansion(const OUString& rStr)
{ m_aContent = rStr; }
/// set from UpdateExpFields (the Node-Position is known there)
inline void SwDBField::ChgBodyTextFlag( bool bIsInBody )
{ m_bIsInBodyText = bIsInBody; }
// Base class for all other database fields.
class SW_DLLPUBLIC SwDBNameInfField : public SwField
{
SwDBData m_aDBData;
sal_uInt16 m_nSubType;
protected:
const SwDBData& GetDBData() const {return m_aDBData;}
SwDBData& GetDBData() {return m_aDBData;}
SwDBNameInfField(SwFieldType* pTyp, const SwDBData& rDBData, sal_uInt32 nFormat = 0);
public:
/// DBName
const SwDBData& GetRealDBData() const { return m_aDBData; }
SwDBData& GetRealDBData() { return m_aDBData; }
SwDBData GetDBData(SwDoc* pDoc);
void SetDBData(const SwDBData& rDBData);
virtual OUString GetFieldName() const override;
virtual bool QueryValue( css::uno::Any& rVal, sal_uInt16 nWhich ) const override;
virtual bool PutValue( const css::uno::Any& rVal, sal_uInt16 nWhich ) override;
virtual sal_uInt16 GetSubType() const override;
virtual void SetSubType(sal_uInt16 nType) override;
};
// Database field next record.
class SW_DLLPUBLIC SwDBNextSetFieldType final : public SwFieldType
{
public:
SwDBNextSetFieldType();
virtual std::unique_ptr<SwFieldType> Copy() const override;
};
// Next data record with condition.
class SW_DLLPUBLIC SwDBNextSetField final : public SwDBNameInfField
{
OUString m_aCond;
bool m_bCondValid;
public:
SwDBNextSetField( SwDBNextSetFieldType*,
const OUString& rCond, const SwDBData& rDBData);
virtual OUString ExpandImpl(SwRootFrame const* pLayout) const override;
virtual std::unique_ptr<SwField> Copy() const override;
void Evaluate(const SwDoc&);
inline void SetCondValid(bool bCond);
inline bool IsCondValid() const;
// Condition
virtual OUString GetPar1() const override;
virtual void SetPar1(const OUString& rStr) override;
virtual bool QueryValue( css::uno::Any& rVal, sal_uInt16 nWhich ) const override;
virtual bool PutValue( const css::uno::Any& rVal, sal_uInt16 nWhich ) override;
};
inline bool SwDBNextSetField::IsCondValid() const
{ return m_bCondValid; }
inline void SwDBNextSetField::SetCondValid(bool bCond)
{ m_bCondValid = bCond; }
// Database field next record.
class SwDBNumSetFieldType final : public SwFieldType
{
public:
SwDBNumSetFieldType();
virtual std::unique_ptr<SwFieldType> Copy() const override;
};
// Data record with number xxx.
// Number is in nFormat (bit of a misuse!)
class SwDBNumSetField final : public SwDBNameInfField
{
OUString m_aCond;
OUString m_aPar2;
bool m_bCondValid;
public:
SwDBNumSetField(SwDBNumSetFieldType*, const OUString& rCond, const OUString& rDBNum, const SwDBData& rDBData);
virtual OUString ExpandImpl(SwRootFrame const* pLayout) const override;
virtual std::unique_ptr<SwField> Copy() const override;
inline bool IsCondValid() const;
inline void SetCondValid(bool bCond);
void Evaluate(const SwDoc&);
// Condition
virtual OUString GetPar1() const override;
virtual void SetPar1(const OUString& rStr) override;
// Number of data record.
virtual OUString GetPar2() const override;
virtual void SetPar2(const OUString& rStr) override;
// Number of data record is in nFormat!!
virtual bool QueryValue( css::uno::Any& rVal, sal_uInt16 nWhich ) const override;
virtual bool PutValue( const css::uno::Any& rVal, sal_uInt16 nWhich ) override;
};
inline bool SwDBNumSetField::IsCondValid() const
{ return m_bCondValid; }
inline void SwDBNumSetField::SetCondValid(bool bCond)
{ m_bCondValid = bCond; }
// Database name.
class SwDBNameFieldType final : public SwFieldType
{
SwDoc *m_pDoc;
public:
SwDBNameFieldType(SwDoc*);
OUString Expand() const;
virtual std::unique_ptr<SwFieldType> Copy() const override;
};
// Database field.
class SwDBNameField final : public SwDBNameInfField
{
public:
SwDBNameField(SwDBNameFieldType*, const SwDBData& rDBData);
virtual OUString ExpandImpl(SwRootFrame const* pLayout) const override;
virtual std::unique_ptr<SwField> Copy() const override;
virtual bool QueryValue( css::uno::Any& rVal, sal_uInt16 nWhich ) const override;
virtual bool PutValue( const css::uno::Any& rVal, sal_uInt16 nWhich ) override;
};
// Number of data record.
class SW_DLLPUBLIC SwDBSetNumberFieldType final : public SwFieldType
{
public:
SwDBSetNumberFieldType();
virtual std::unique_ptr<SwFieldType> Copy() const override;
};
// Database field.
class SW_DLLPUBLIC SwDBSetNumberField final : public SwDBNameInfField
{
tools::Long m_nNumber;
public:
SwDBSetNumberField(SwDBSetNumberFieldType*, const SwDBData& rDBData, sal_uInt32 nFormat = 0);
virtual OUString ExpandImpl(SwRootFrame const* pLayout) const override;
virtual std::unique_ptr<SwField> Copy() const override;
void Evaluate(const SwDoc&);
inline tools::Long GetSetNumber() const;
inline void SetSetNumber(tools::Long nNum);
virtual bool QueryValue( css::uno::Any& rVal, sal_uInt16 nWhich ) const override;
virtual bool PutValue( const css::uno::Any& rVal, sal_uInt16 nWhich ) override;
};
inline tools::Long SwDBSetNumberField::GetSetNumber() const
{ return m_nNumber; }
inline void SwDBSetNumberField::SetSetNumber(tools::Long nNum)
{ m_nNumber = nNum; }
#endif // INCLUDED_SW_INC_DBFLD_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|