Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include <svl/zforlist.hxx>
21 : #include <svl/zformat.hxx>
22 :
23 : #include <svx/svdmodel.hxx>
24 :
25 : #include <calbck.hxx>
26 : #include <calc.hxx>
27 : #include <usrfld.hxx>
28 : #include <doc.hxx>
29 : #include <IDocumentFieldsAccess.hxx>
30 : #include <IDocumentUndoRedo.hxx>
31 : #include <IDocumentState.hxx>
32 : #include <editsh.hxx>
33 : #include <dpage.hxx>
34 : #include <unofldmid.h>
35 :
36 : using namespace ::com::sun::star;
37 :
38 : // Userfields
39 :
40 26 : SwUserField::SwUserField(SwUserFieldType* pTyp, sal_uInt16 nSub, sal_uInt32 nFmt)
41 : : SwValueField(pTyp, nFmt),
42 26 : nSubType(nSub)
43 : {
44 26 : }
45 :
46 8 : OUString SwUserField::Expand() const
47 : {
48 8 : if(!(nSubType & nsSwExtendedSubType::SUB_INVISIBLE))
49 8 : return ((SwUserFieldType*)GetTyp())->Expand(GetFormat(), nSubType, GetLanguage());
50 :
51 0 : return OUString();
52 : }
53 :
54 22 : SwField* SwUserField::Copy() const
55 : {
56 22 : SwField* pTmp = new SwUserField((SwUserFieldType*)GetTyp(), nSubType, GetFormat());
57 22 : pTmp->SetAutomaticLanguage(IsAutomaticLanguage());
58 22 : return pTmp;
59 : }
60 :
61 2 : OUString SwUserField::GetFieldName() const
62 : {
63 4 : return SwFieldType::GetTypeStr(TYP_USERFLD) +
64 8 : " " + GetTyp()->GetName() + " = " +
65 6 : static_cast<SwUserFieldType*>(GetTyp())->GetContent();
66 : }
67 :
68 0 : double SwUserField::GetValue() const
69 : {
70 0 : return ((SwUserFieldType*)GetTyp())->GetValue();
71 : }
72 :
73 0 : void SwUserField::SetValue( const double& rVal )
74 : {
75 0 : ((SwUserFieldType*)GetTyp())->SetValue(rVal);
76 0 : }
77 :
78 : /// Get name
79 0 : OUString SwUserField::GetPar1() const
80 : {
81 0 : return ((const SwUserFieldType*)GetTyp())->GetName();
82 : }
83 :
84 : /// Get content
85 0 : OUString SwUserField::GetPar2() const
86 : {
87 0 : return ((SwUserFieldType*)GetTyp())->GetContent(GetFormat());
88 : }
89 :
90 0 : void SwUserField::SetPar2(const OUString& rStr)
91 : {
92 0 : ((SwUserFieldType*)GetTyp())->SetContent(rStr, GetFormat());
93 0 : }
94 :
95 4 : sal_uInt16 SwUserField::GetSubType() const
96 : {
97 4 : return ((SwUserFieldType*)GetTyp())->GetType() | nSubType;
98 : }
99 :
100 0 : void SwUserField::SetSubType(sal_uInt16 nSub)
101 : {
102 0 : ((SwUserFieldType*)GetTyp())->SetType(nSub & 0x00ff);
103 0 : nSubType = nSub & 0xff00;
104 0 : }
105 :
106 0 : bool SwUserField::QueryValue( uno::Any& rAny, sal_uInt16 nWhichId ) const
107 : {
108 0 : switch( nWhichId )
109 : {
110 : case FIELD_PROP_BOOL2:
111 : {
112 0 : sal_Bool bTmp = 0 != (nSubType & nsSwExtendedSubType::SUB_CMD);
113 0 : rAny.setValue(&bTmp, ::getBooleanCppuType());
114 : }
115 0 : break;
116 : case FIELD_PROP_BOOL1:
117 : {
118 0 : sal_Bool bTmp = 0 == (nSubType & nsSwExtendedSubType::SUB_INVISIBLE);
119 0 : rAny.setValue(&bTmp, ::getBooleanCppuType());
120 : }
121 0 : break;
122 : case FIELD_PROP_FORMAT:
123 0 : rAny <<= (sal_Int32)GetFormat();
124 0 : break;
125 : default:
126 0 : return SwField::QueryValue(rAny, nWhichId);
127 : }
128 0 : return true;
129 : }
130 :
131 0 : bool SwUserField::PutValue( const uno::Any& rAny, sal_uInt16 nWhichId )
132 : {
133 0 : switch( nWhichId )
134 : {
135 : case FIELD_PROP_BOOL1:
136 0 : if(*(sal_Bool*) rAny.getValue())
137 0 : nSubType &= (~nsSwExtendedSubType::SUB_INVISIBLE);
138 : else
139 0 : nSubType |= nsSwExtendedSubType::SUB_INVISIBLE;
140 0 : break;
141 : case FIELD_PROP_BOOL2:
142 0 : if(*(sal_Bool*) rAny.getValue())
143 0 : nSubType |= nsSwExtendedSubType::SUB_CMD;
144 : else
145 0 : nSubType &= (~nsSwExtendedSubType::SUB_CMD);
146 0 : break;
147 : case FIELD_PROP_FORMAT:
148 : {
149 0 : sal_Int32 nTmp = 0;
150 0 : rAny >>= nTmp;
151 0 : SetFormat(nTmp);
152 : }
153 0 : break;
154 : default:
155 0 : return SwField::PutValue(rAny, nWhichId);
156 : }
157 0 : return true;
158 : }
159 :
160 100 : SwUserFieldType::SwUserFieldType( SwDoc* pDocPtr, const OUString& aNam )
161 : : SwValueFieldType( pDocPtr, RES_USERFLD ),
162 : nValue( 0 ),
163 100 : nType(nsSwGetSetExpType::GSE_STRING)
164 : {
165 100 : bValidValue = bDeleted = false;
166 100 : aName = aNam;
167 :
168 100 : if (nType & nsSwGetSetExpType::GSE_STRING)
169 100 : EnableFormat(false); // Do not use a Numberformatter
170 100 : }
171 :
172 14 : OUString SwUserFieldType::Expand(sal_uInt32 nFmt, sal_uInt16 nSubType, sal_uInt16 nLng)
173 : {
174 14 : if((nType & nsSwGetSetExpType::GSE_EXPR) && !(nSubType & nsSwExtendedSubType::SUB_CMD))
175 : {
176 0 : EnableFormat(true);
177 0 : return ExpandValue(nValue, nFmt, nLng);
178 : }
179 :
180 14 : EnableFormat(false); // Do not use a Numberformatter
181 14 : return aContent;
182 : }
183 :
184 50 : SwFieldType* SwUserFieldType::Copy() const
185 : {
186 50 : SwUserFieldType *pTmp = new SwUserFieldType( GetDoc(), aName );
187 50 : pTmp->aContent = aContent;
188 50 : pTmp->nType = nType;
189 50 : pTmp->bValidValue = bValidValue;
190 50 : pTmp->nValue = nValue;
191 50 : pTmp->bDeleted = bDeleted;
192 :
193 50 : return pTmp;
194 : }
195 :
196 980 : OUString SwUserFieldType::GetName() const
197 : {
198 980 : return aName;
199 : }
200 :
201 110 : void SwUserFieldType::Modify( const SfxPoolItem* pOld, const SfxPoolItem* pNew )
202 : {
203 110 : if( !pOld && !pNew )
204 110 : ChgValid( false );
205 :
206 110 : NotifyClients( pOld, pNew );
207 :
208 : // update input fields that might be connected to the user field
209 110 : if ( !IsModifyLocked() )
210 : {
211 106 : LockModify();
212 106 : GetDoc()->getIDocumentFieldsAccess().GetSysFldType( RES_INPUTFLD )->UpdateFlds();
213 106 : UnlockModify();
214 : }
215 110 : }
216 :
217 0 : double SwUserFieldType::GetValue( SwCalc& rCalc )
218 : {
219 0 : if(bValidValue)
220 0 : return nValue;
221 :
222 0 : if(!rCalc.Push( this ))
223 : {
224 0 : rCalc.SetCalcError( CALC_SYNTAX );
225 0 : return 0;
226 : }
227 0 : nValue = rCalc.Calculate( aContent ).GetDouble();
228 0 : rCalc.Pop();
229 :
230 0 : if( !rCalc.IsCalcError() )
231 0 : bValidValue = true;
232 : else
233 0 : nValue = 0;
234 :
235 0 : return nValue;
236 : }
237 :
238 28 : OUString SwUserFieldType::GetContent( sal_uInt32 nFmt )
239 : {
240 28 : if (nFmt && nFmt != SAL_MAX_UINT32)
241 : {
242 0 : OUString sFormattedValue;
243 0 : Color* pCol = 0;
244 :
245 0 : SvNumberFormatter* pFormatter = GetDoc()->GetNumberFormatter();
246 :
247 0 : pFormatter->GetOutputString(GetValue(), nFmt, sFormattedValue, &pCol);
248 0 : return sFormattedValue;
249 : }
250 :
251 28 : return aContent;
252 : }
253 :
254 58 : void SwUserFieldType::SetContent( const OUString& rStr, sal_uInt32 nFmt )
255 : {
256 58 : if( aContent != rStr )
257 : {
258 8 : aContent = rStr;
259 :
260 8 : if (nFmt && nFmt != SAL_MAX_UINT32)
261 : {
262 : double fValue;
263 :
264 0 : SvNumberFormatter* pFormatter = GetDoc()->GetNumberFormatter();
265 :
266 0 : if (pFormatter->IsNumberFormat(rStr, nFmt, fValue))
267 : {
268 0 : SetValue(fValue);
269 0 : aContent = DoubleToString(fValue, nFmt);
270 : }
271 : }
272 :
273 8 : bool bModified = GetDoc()->getIDocumentState().IsModified();
274 8 : GetDoc()->getIDocumentState().SetModified();
275 8 : if( !bModified ) // Bug 57028
276 : {
277 0 : GetDoc()->GetIDocumentUndoRedo().SetUndoNoResetModified();
278 : }
279 : }
280 58 : }
281 :
282 4 : bool SwUserFieldType::QueryValue( uno::Any& rAny, sal_uInt16 nWhichId ) const
283 : {
284 4 : switch( nWhichId )
285 : {
286 : case FIELD_PROP_DOUBLE:
287 0 : rAny <<= (double) nValue;
288 0 : break;
289 : case FIELD_PROP_PAR2:
290 2 : rAny <<= aContent;
291 2 : break;
292 : case FIELD_PROP_BOOL1:
293 : {
294 2 : sal_Bool bExpression = 0 != (nsSwGetSetExpType::GSE_EXPR&nType);
295 2 : rAny.setValue(&bExpression, ::getBooleanCppuType());
296 : }
297 2 : break;
298 : default:
299 : OSL_FAIL("illegal property");
300 : }
301 4 : return true;
302 : }
303 :
304 98 : bool SwUserFieldType::PutValue( const uno::Any& rAny, sal_uInt16 nWhichId )
305 : {
306 98 : switch( nWhichId )
307 : {
308 : case FIELD_PROP_DOUBLE:
309 : {
310 0 : double fVal = 0;
311 0 : rAny >>= fVal;
312 0 : nValue = fVal;
313 :
314 : // The following line is in fact wrong, since the language is unknown (is part of the
315 : // field) and, thus, aContent should also belong to the field. Each field can have a
316 : // differnt language, but the same content with just different formatting.
317 0 : aContent = DoubleToString(nValue, static_cast<sal_uInt32>(LANGUAGE_SYSTEM));
318 : }
319 0 : break;
320 : case FIELD_PROP_PAR2:
321 52 : rAny >>= aContent;
322 52 : break;
323 : case FIELD_PROP_BOOL1:
324 46 : if(*(sal_Bool*)rAny.getValue())
325 : {
326 0 : nType |= nsSwGetSetExpType::GSE_EXPR;
327 0 : nType &= ~nsSwGetSetExpType::GSE_STRING;
328 : }
329 : else
330 : {
331 46 : nType &= ~nsSwGetSetExpType::GSE_EXPR;
332 46 : nType |= nsSwGetSetExpType::GSE_STRING;
333 : }
334 46 : break;
335 : default:
336 : OSL_FAIL("illegal property");
337 : }
338 98 : return true;
339 270 : }
340 :
341 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|