1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
29 * The shared part of a user field.
31 * Tracks the value, but conversion between the float and string representation
32 * always happens with the system locale.
34 class SW_DLLPUBLIC SwUserFieldType final
: public SwValueFieldType
36 bool m_bValidValue
: 1;
41 /// String value type.
43 /// Language used by m_aContents
44 OUString m_aContentLang
;
48 SwUserFieldType( SwDoc
* pDocPtr
, const OUString
& );
50 virtual OUString
GetName() const override
;
51 virtual std::unique_ptr
<SwFieldType
> Copy() const override
;
53 OUString
Expand(sal_uInt32 nFormat
, sal_uInt16 nSubType
, LanguageType nLng
);
55 OUString
GetContent( sal_uInt32 nFormat
= 0 ) const;
56 void SetContent( const OUString
& rStr
, sal_uInt32 nFormat
= 0 );
58 OUString
GetInputOrDateTime( sal_uInt32 nFormat
) const;
60 inline bool IsValid() const;
62 double GetValue(SwCalc
& rCalc
); // Recalculate member nValue.
63 inline double GetValue() const;
64 inline void SetValue(const double nVal
);
66 inline sal_uInt16
GetType() const;
67 inline void SetType(sal_uInt16
);
69 bool IsDeleted() const { return m_bDeleted
; }
70 void SetDeleted( bool b
) { m_bDeleted
= b
; }
72 virtual void QueryValue( css::uno::Any
& rVal
, sal_uInt16 nMId
) const override
;
73 virtual void PutValue( const css::uno::Any
& rVal
, sal_uInt16 nMId
) override
;
75 void dumpAsXml(xmlTextWriterPtr pWriter
) const override
;
78 virtual void SwClientNotify(const SwModify
&, const SfxHint
&) override
;
81 inline bool SwUserFieldType::IsValid() const
82 { return m_bValidValue
; }
84 inline double SwUserFieldType::GetValue() const
87 inline void SwUserFieldType::SetValue(const double nVal
)
90 inline sal_uInt16
SwUserFieldType::GetType() const
93 inline void SwUserFieldType::SetType(sal_uInt16 nSub
)
96 EnableFormat(!(nSub
& nsSwGetSetExpType::GSE_STRING
));
100 * The non-shared part of a user field.
102 * Tracks the number format and the language, conversion between the float and
103 * string representation is independent from the system locale.
105 class SwUserField final
: public SwValueField
107 sal_uInt16 m_nSubType
;
109 virtual OUString
ExpandImpl(SwRootFrame
const* pLayout
) const override
;
110 virtual std::unique_ptr
<SwField
> Copy() const override
;
113 SwUserField(SwUserFieldType
*, sal_uInt16 nSub
, sal_uInt32 nFormat
);
115 virtual sal_uInt16
GetSubType() const override
;
116 virtual void SetSubType(sal_uInt16 nSub
) override
;
118 virtual double GetValue() const override
;
119 virtual void SetValue( const double& rVal
) override
;
121 virtual OUString
GetFieldName() const override
;
123 // Name cannot be changed.
124 virtual OUString
GetPar1() const override
;
127 virtual OUString
GetPar2() const override
;
128 virtual void SetPar2(const OUString
& rStr
) override
;
129 virtual bool QueryValue( css::uno::Any
& rVal
, sal_uInt16 nWhichId
) const override
;
130 virtual bool PutValue( const css::uno::Any
& rVal
, sal_uInt16 nWhichId
) override
;
131 void dumpAsXml(xmlTextWriterPtr pWriter
) const override
;
134 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */