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 <vcl/svapp.hxx>
21 : #include <flddat.hxx>
22 : #include <docufld.hxx>
23 : #include <globals.hrc>
24 : #include <chpfld.hxx>
25 : #include <fldtdlg.hrc>
26 : #include <fldui.hrc>
27 : #include <flddok.hxx>
28 : #include <swmodule.hxx>
29 : #include <view.hxx>
30 : #include <wrtsh.hxx>
31 : #include <svl/zformat.hxx>
32 :
33 : #include <index.hrc>
34 :
35 : #define USER_DATA_VERSION_1 "1"
36 : #define USER_DATA_VERSION USER_DATA_VERSION_1
37 :
38 0 : SwFldDokPage::SwFldDokPage(Window* pWindow, const SfxItemSet& rCoreSet ) :
39 : SwFldPage( pWindow, SW_RES( TP_FLD_DOK ), rCoreSet ),
40 :
41 : aTypeFT (this, SW_RES(FT_DOKTYPE)),
42 : aTypeLB (this, SW_RES(LB_DOKTYPE)),
43 : aSelectionFT (this, SW_RES(FT_DOKSELECTION)),
44 : aSelectionLB (this, SW_RES(LB_DOKSELECTION)),
45 : aValueFT (this, SW_RES(FT_DOKVALUE)),
46 : aValueED (this, SW_RES(ED_DOKVALUE)),
47 : aLevelED (this, SW_RES(ED_DOKLEVEL)),
48 : aDateOffsetED (this, SW_RES(ED_DOKDATEOFF)),
49 :
50 : aFormatFT (this, SW_RES(FT_DOKFORMAT)),
51 : aFormatLB (this, SW_RES(LB_DOKFORMAT)),
52 : aNumFormatLB (this, SW_RES(LB_DOKNUMFORMAT)),
53 : aFixedCB (this, SW_RES(CB_DOKFIXEDCONTENT)),
54 :
55 : sDateOffset (SW_RES(STR_DOKDATEOFF)),
56 : sTimeOffset (SW_RES(STR_DOKTIMEOFF)),
57 : aRootOpened (SW_RES(BMP_DOKROOT_OPENED)),
58 0 : aRootClosed (SW_RES(BMP_DOKROOT_CLOSED))
59 : {
60 0 : FreeResource();
61 :
62 0 : aSelectionLB.SetDoubleClickHdl(LINK(this, SwFldDokPage, InsertHdl));
63 0 : aFormatLB.SetDoubleClickHdl(LINK(this, SwFldDokPage, InsertHdl));
64 0 : aNumFormatLB.SetDoubleClickHdl(LINK(this, SwFldDokPage, NumFormatHdl));
65 :
66 0 : aLevelED.SetMax(MAXLEVEL);
67 0 : aDateOffsetED.SetMin(LONG_MIN);
68 0 : aDateOffsetED.SetMax(LONG_MAX);
69 : //enable 'active' language selection
70 0 : aNumFormatLB.SetShowLanguageControl(sal_True);
71 0 : }
72 :
73 0 : SwFldDokPage::~SwFldDokPage()
74 : {
75 0 : }
76 :
77 0 : void SwFldDokPage::Reset(const SfxItemSet& )
78 : {
79 0 : SavePos(&aTypeLB);
80 0 : Init(); // general initialisation
81 :
82 : // initialise TypeListBox
83 0 : const SwFldGroupRgn& rRg = GetFldMgr().GetGroupRange(IsFldDlgHtmlMode(), GetGroup());
84 :
85 0 : aTypeLB.SetUpdateMode(sal_False);
86 0 : aTypeLB.Clear();
87 :
88 : sal_uInt16 nPos, nTypeId;
89 0 : sal_Bool bPage = sal_False;
90 :
91 0 : if (!IsFldEdit())
92 : {
93 : // fill Type-Listbox
94 0 : for(short i = rRg.nStart; i < rRg.nEnd; ++i)
95 : {
96 0 : nTypeId = GetFldMgr().GetTypeId(i);
97 :
98 0 : switch (nTypeId)
99 : {
100 : case TYP_PREVPAGEFLD:
101 : case TYP_NEXTPAGEFLD:
102 : case TYP_PAGENUMBERFLD:
103 0 : if (!bPage)
104 : {
105 0 : nPos = aTypeLB.InsertEntry(SW_RESSTR(FMT_REF_PAGE));
106 0 : aTypeLB.SetEntryData(nPos, (void*)USHRT_MAX);
107 0 : bPage = sal_True;
108 : }
109 0 : break;
110 :
111 : default:
112 0 : nPos = aTypeLB.InsertEntry(GetFldMgr().GetTypeStr(i));
113 0 : aTypeLB.SetEntryData(nPos, reinterpret_cast<void*>(nTypeId));
114 0 : break;
115 : }
116 : }
117 : }
118 : else
119 : {
120 0 : const SwField* pCurField = GetCurField();
121 0 : nTypeId = pCurField->GetTypeId();
122 0 : if (nTypeId == TYP_FIXDATEFLD)
123 0 : nTypeId = TYP_DATEFLD;
124 0 : if (nTypeId == TYP_FIXTIMEFLD)
125 0 : nTypeId = TYP_TIMEFLD;
126 0 : nPos = aTypeLB.InsertEntry(GetFldMgr().GetTypeStr(GetFldMgr().GetPos(nTypeId)));
127 0 : aTypeLB.SetEntryData(nPos, reinterpret_cast<void*>(nTypeId));
128 0 : aNumFormatLB.SetAutomaticLanguage(pCurField->IsAutomaticLanguage());
129 0 : SwWrtShell *pSh = GetWrtShell();
130 0 : if(!pSh)
131 0 : pSh = ::GetActiveWrtShell();
132 0 : if(pSh)
133 : {
134 0 : const SvNumberformat* pFormat = pSh->GetNumberFormatter()->GetEntry(pCurField->GetFormat());
135 0 : if(pFormat)
136 0 : aNumFormatLB.SetLanguage(pFormat->GetLanguage());
137 : }
138 : }
139 :
140 : // select old Pos
141 0 : RestorePos(&aTypeLB);
142 :
143 0 : aTypeLB.SetUpdateMode(sal_True);
144 0 : aTypeLB.SetDoubleClickHdl(LINK(this, SwFldDokPage, InsertHdl));
145 0 : aTypeLB.SetSelectHdl(LINK(this, SwFldDokPage, TypeHdl));
146 0 : aFormatLB.SetSelectHdl(LINK(this, SwFldDokPage, FormatHdl));
147 :
148 0 : if( !IsRefresh() )
149 : {
150 0 : String sUserData = GetUserData();
151 0 : if( sUserData.GetToken(0, ';').EqualsIgnoreCaseAscii(USER_DATA_VERSION_1 ))
152 : {
153 0 : String sVal = sUserData.GetToken(1, ';');
154 0 : sal_uInt16 nVal = static_cast< sal_uInt16 >(sVal.ToInt32());
155 0 : if(nVal != USHRT_MAX)
156 : {
157 0 : for(sal_uInt16 i = 0; i < aTypeLB.GetEntryCount(); i++)
158 0 : if(nVal == (sal_uInt16)(sal_uLong)aTypeLB.GetEntryData(i))
159 : {
160 0 : aTypeLB.SelectEntryPos(i);
161 0 : break;
162 : }
163 0 : }
164 0 : }
165 : }
166 0 : TypeHdl(0);
167 :
168 0 : if (IsFldEdit())
169 : {
170 0 : nOldSel = aSelectionLB.GetSelectEntryPos();
171 0 : nOldFormat = GetCurField()->GetFormat();
172 0 : aFixedCB.SaveValue();
173 0 : aValueED.SaveValue();
174 0 : aLevelED.SaveValue();
175 0 : aDateOffsetED.SaveValue();
176 : }
177 0 : }
178 :
179 0 : IMPL_LINK_NOARG(SwFldDokPage, TypeHdl)
180 : {
181 : // save old ListBoxPos
182 0 : const sal_uInt16 nOld = GetTypeSel();
183 :
184 : // current ListBoxPos
185 0 : SetTypeSel(aTypeLB.GetSelectEntryPos());
186 :
187 0 : if(GetTypeSel() == LISTBOX_ENTRY_NOTFOUND)
188 : {
189 0 : SetTypeSel(0);
190 0 : aTypeLB.SelectEntryPos(0);
191 : }
192 :
193 : sal_uInt16 nCount;
194 :
195 0 : if (nOld != GetTypeSel())
196 : {
197 0 : sal_uInt16 nTypeId = (sal_uInt16)(sal_uLong)aTypeLB.GetEntryData(GetTypeSel());
198 :
199 : // fill Selection-Listbox
200 0 : aSelectionLB.Clear();
201 :
202 0 : if (nTypeId != USHRT_MAX)
203 : {
204 0 : std::vector<rtl::OUString> aLst;
205 0 : GetFldMgr().GetSubTypes(nTypeId, aLst);
206 :
207 0 : if (nTypeId != TYP_AUTHORFLD)
208 0 : nCount = aLst.size();
209 : else
210 0 : nCount = GetFldMgr().GetFormatCount(nTypeId, sal_False, IsFldDlgHtmlMode());
211 :
212 : size_t nPos;
213 :
214 0 : for(size_t i = 0; i < nCount; ++i)
215 : {
216 0 : if (!IsFldEdit())
217 : {
218 0 : if (nTypeId != TYP_AUTHORFLD)
219 0 : nPos = aSelectionLB.InsertEntry(aLst[i]);
220 : else
221 0 : nPos = aSelectionLB.InsertEntry(GetFldMgr().GetFormatStr(nTypeId, i));
222 :
223 0 : aSelectionLB.SetEntryData(nPos, reinterpret_cast<void*>(i));
224 : }
225 : else
226 : {
227 0 : sal_Bool bInsert = sal_False;
228 :
229 0 : switch (nTypeId)
230 : {
231 : case TYP_DATEFLD:
232 : case TYP_TIMEFLD:
233 0 : nPos = aSelectionLB.InsertEntry(aLst[i]);
234 0 : aSelectionLB.SetEntryData(nPos, reinterpret_cast<void*>(i));
235 0 : if (((SwDateTimeField*)GetCurField())->IsFixed() && !i)
236 0 : aSelectionLB.SelectEntryPos(nPos);
237 0 : if (!((SwDateTimeField*)GetCurField())->IsFixed() && i)
238 0 : aSelectionLB.SelectEntryPos(nPos);
239 0 : break;
240 :
241 : case TYP_EXTUSERFLD:
242 : case TYP_DOCSTATFLD:
243 0 : nPos = aSelectionLB.InsertEntry(aLst[i]);
244 0 : aSelectionLB.SetEntryData(nPos, reinterpret_cast<void*>(i));
245 0 : if (GetCurField()->GetSubType() == i)
246 0 : aSelectionLB.SelectEntryPos(nPos);
247 0 : break;
248 :
249 : case TYP_AUTHORFLD:
250 : {
251 0 : String sFmt(GetFldMgr().GetFormatStr(nTypeId, i));
252 0 : nPos = aSelectionLB.InsertEntry(sFmt);
253 0 : aSelectionLB.SetEntryData(nPos, reinterpret_cast<void*>(i));
254 0 : aSelectionLB.SelectEntry(GetFldMgr().GetFormatStr(nTypeId, GetCurField()->GetFormat()));
255 0 : break;
256 : }
257 :
258 : default:
259 0 : if (aLst[i] == GetCurField()->GetPar1())
260 0 : bInsert = sal_True;
261 0 : break;
262 : }
263 0 : if (bInsert)
264 : {
265 0 : nPos = aSelectionLB.InsertEntry(aLst[i]);
266 0 : aSelectionLB.SetEntryData(nPos, reinterpret_cast<void*>(i));
267 0 : break;
268 : }
269 : }
270 : }
271 0 : aSelectionLB.SetSelectHdl(Link());
272 : }
273 : else
274 : {
275 0 : AddSubType(TYP_PAGENUMBERFLD);
276 0 : AddSubType(TYP_PREVPAGEFLD);
277 0 : AddSubType(TYP_NEXTPAGEFLD);
278 0 : nTypeId = (sal_uInt16)(sal_uLong)aSelectionLB.GetEntryData(0);
279 0 : nCount = 3;
280 0 : aSelectionLB.SetSelectHdl(LINK(this, SwFldDokPage, SubTypeHdl));
281 : }
282 :
283 0 : sal_Bool bEnable = nCount != 0;
284 :
285 0 : if (bEnable && !aSelectionLB.GetSelectEntryCount())
286 0 : aSelectionLB.SelectEntryPos(0);
287 :
288 0 : aSelectionLB.Enable( bEnable );
289 0 : aSelectionFT.Enable( bEnable );
290 :
291 : // fill Format-Listbox
292 0 : sal_uInt16 nSize = FillFormatLB(nTypeId);
293 :
294 0 : sal_Bool bValue = sal_False, bLevel = sal_False, bNumFmt = sal_False, bOffset = sal_False;
295 0 : sal_Bool bFormat = nSize != 0;
296 0 : sal_Bool bOneArea = sal_False;
297 0 : sal_Bool bFixed = sal_False;
298 0 : sal_uInt16 nFmtType = 0;
299 :
300 0 : switch (nTypeId)
301 : {
302 : case TYP_DATEFLD:
303 0 : bFormat = bNumFmt = bOneArea = bOffset = sal_True;
304 :
305 0 : nFmtType = NUMBERFORMAT_DATE;
306 0 : aValueFT.SetText(sDateOffset);
307 0 : aDateOffsetED.SetFirst(-31); // one month
308 0 : aDateOffsetED.SetLast(31);
309 :
310 0 : if (IsFldEdit())
311 0 : aDateOffsetED.SetValue( ((SwDateTimeField*)GetCurField())->GetOffset() / 24 / 60);
312 0 : break;
313 :
314 : case TYP_TIMEFLD:
315 0 : bFormat = bNumFmt = bOneArea = bOffset = sal_True;
316 :
317 0 : nFmtType = NUMBERFORMAT_TIME;
318 0 : aValueFT.SetText(sTimeOffset);
319 0 : aDateOffsetED.SetFirst(-1440); // one day
320 0 : aDateOffsetED.SetLast(1440);
321 :
322 0 : if (IsFldEdit())
323 0 : aDateOffsetED.SetValue( ((SwDateTimeField*)GetCurField())->GetOffset() );
324 0 : break;
325 :
326 : case TYP_PREVPAGEFLD:
327 : case TYP_NEXTPAGEFLD:
328 0 : if (IsFldEdit())
329 : {
330 : sal_uInt16 nTmp = (sal_uInt16)(sal_uLong)aFormatLB.GetEntryData(
331 0 : aFormatLB.GetSelectEntryPos() );
332 :
333 0 : if(SVX_NUM_CHAR_SPECIAL != nTmp)
334 : {
335 0 : sal_Int32 nOff = GetCurField()->GetPar2().toInt32();
336 0 : if( TYP_NEXTPAGEFLD == nTypeId && 1 != nOff )
337 : aValueED.SetText(
338 0 : String::CreateFromInt32(nOff - 1) );
339 0 : else if( TYP_PREVPAGEFLD == nTypeId && -1 != nOff )
340 : aValueED.SetText(
341 0 : String::CreateFromInt32(nOff + 1) );
342 : else
343 0 : aValueED.SetText(aEmptyStr);
344 : }
345 : else
346 0 : aValueED.SetText(((SwPageNumberField*)GetCurField())->GetUserString());
347 : }
348 0 : bValue = sal_True;
349 0 : break;
350 :
351 : case TYP_CHAPTERFLD:
352 0 : aValueFT.SetText(SW_RESSTR(STR_LEVEL));
353 0 : if (IsFldEdit())
354 0 : aLevelED.SetText(String::CreateFromInt32(((SwChapterField*)GetCurField())->GetLevel() + 1));
355 0 : bLevel = sal_True;
356 0 : break;
357 :
358 : case TYP_PAGENUMBERFLD:
359 0 : aValueFT.SetText( SW_RESSTR( STR_OFFSET ));
360 0 : if (IsFldEdit())
361 0 : aValueED.SetText(GetCurField()->GetPar2());
362 0 : bValue = sal_True;
363 0 : break;
364 :
365 : case TYP_EXTUSERFLD:
366 : case TYP_AUTHORFLD:
367 : case TYP_FILENAMEFLD:
368 0 : bFixed = sal_True;
369 0 : break;
370 :
371 : default:
372 0 : break;
373 : }
374 :
375 0 : if (bNumFmt)
376 : {
377 0 : if (IsFldEdit())
378 : {
379 0 : aNumFormatLB.SetDefFormat(GetCurField()->GetFormat());
380 :
381 0 : if (aNumFormatLB.GetFormatType() == (NUMBERFORMAT_DATE|NUMBERFORMAT_TIME))
382 : {
383 : // always set Format-Type because otherwise when date/time formats are combined,
384 : // both formats would be displayed at the same time
385 0 : aNumFormatLB.SetFormatType(0);
386 0 : aNumFormatLB.SetFormatType(nFmtType);
387 : // set correct format once again
388 0 : aNumFormatLB.SetDefFormat(GetCurField()->GetFormat());
389 : }
390 : }
391 : else
392 0 : aNumFormatLB.SetFormatType(nFmtType);
393 :
394 0 : aNumFormatLB.SetOneArea(bOneArea);
395 : }
396 :
397 0 : aFormatLB.Show(!bNumFmt);
398 0 : aNumFormatLB.Show(bNumFmt);
399 :
400 0 : Size aSz(aFormatLB.GetSizePixel());
401 :
402 0 : if (bValue | bLevel | bOffset)
403 0 : aSz.Height() = aFormatLB.LogicToPixel(Size(1, 137), MAP_APPFONT).Height();
404 : else
405 0 : aSz.Height() = aFormatLB.LogicToPixel(Size(1, 152), MAP_APPFONT).Height();
406 :
407 0 : aValueFT.Show(bValue | bLevel | bOffset);
408 0 : aValueED.Show(bValue);
409 0 : aLevelED.Show(bLevel);
410 0 : aDateOffsetED.Show(bOffset);
411 0 : aFixedCB.Show(!bValue && !bLevel && !bOffset);
412 :
413 0 : aFormatLB.SetSizePixel(aSz);
414 0 : aNumFormatLB.SetSizePixel(aSz);
415 :
416 0 : aFormatLB.Enable(bFormat);
417 0 : aFormatFT.Enable(bFormat);
418 0 : aFixedCB.Enable(bFixed);
419 :
420 0 : if (IsFldEdit())
421 0 : aFixedCB.Check( static_cast< sal_Bool >(((GetCurField()->GetFormat() & AF_FIXED) != 0) & bFixed));
422 :
423 0 : if (aNumFormatLB.GetSelectEntryPos() == LISTBOX_ENTRY_NOTFOUND)
424 0 : aNumFormatLB.SelectEntryPos(0);
425 0 : aValueFT.Enable(bValue | bLevel | bOffset);
426 0 : aValueED.Enable(bValue);
427 : }
428 :
429 0 : return 0;
430 : }
431 :
432 0 : void SwFldDokPage::AddSubType(sal_uInt16 nTypeId)
433 : {
434 0 : sal_uInt16 nPos = aSelectionLB.InsertEntry(SwFieldType::GetTypeStr(nTypeId));
435 0 : aSelectionLB.SetEntryData(nPos, reinterpret_cast<void*>(nTypeId));
436 0 : }
437 :
438 0 : IMPL_LINK_NOARG(SwFldDokPage, SubTypeHdl)
439 : {
440 0 : sal_uInt16 nPos = aSelectionLB.GetSelectEntryPos();
441 0 : if(nPos == LISTBOX_ENTRY_NOTFOUND)
442 0 : nPos = 0;
443 :
444 0 : sal_uInt16 nTypeId = (sal_uInt16)(sal_uLong)aSelectionLB.GetEntryData(nPos);
445 0 : FillFormatLB(nTypeId);
446 :
447 0 : sal_uInt16 nTextRes = 0;
448 0 : switch (nTypeId)
449 : {
450 : case TYP_CHAPTERFLD:
451 0 : nTextRes = STR_LEVEL;
452 0 : break;
453 :
454 : case TYP_PREVPAGEFLD:
455 : case TYP_NEXTPAGEFLD:
456 : nTextRes = SVX_NUM_CHAR_SPECIAL == (sal_uInt16)(sal_uLong)aFormatLB.GetEntryData(
457 0 : aFormatLB.GetSelectEntryPos() )
458 0 : ? STR_VALUE : STR_OFFSET;
459 0 : break;
460 :
461 : case TYP_PAGENUMBERFLD:
462 0 : nTextRes = STR_OFFSET;
463 0 : break;
464 : }
465 :
466 0 : if( nTextRes )
467 0 : aValueFT.SetText( SW_RESSTR( nTextRes ));
468 :
469 0 : return 0;
470 : }
471 :
472 0 : sal_uInt16 SwFldDokPage::FillFormatLB(sal_uInt16 nTypeId)
473 : {
474 : // fill Format-Listbox
475 0 : aFormatLB.Clear();
476 :
477 0 : if (nTypeId == TYP_AUTHORFLD)
478 0 : return aFormatLB.GetEntryCount();
479 :
480 0 : sal_uInt16 nSize = GetFldMgr().GetFormatCount(nTypeId, sal_False, IsFldDlgHtmlMode());
481 :
482 0 : for( sal_uInt16 i = 0; i < nSize; ++i )
483 : {
484 0 : sal_uInt16 nPos = aFormatLB.InsertEntry(GetFldMgr().GetFormatStr(nTypeId, i));
485 0 : sal_uInt16 nFmtId = GetFldMgr().GetFormatId( nTypeId, i );
486 0 : aFormatLB.SetEntryData( nPos, reinterpret_cast<void*>( nFmtId ));
487 0 : if (IsFldEdit() && nFmtId == (GetCurField()->GetFormat() & ~AF_FIXED))
488 0 : aFormatLB.SelectEntryPos( nPos );
489 : }
490 :
491 0 : if( nSize && !aFormatLB.GetSelectEntryCount() )
492 : {
493 0 : aFormatLB.SelectEntry( SW_RESSTR(FMT_NUM_PAGEDESC) );
494 0 : if( !aFormatLB.GetSelectEntryCount() )
495 : {
496 0 : aFormatLB.SelectEntry( SW_RESSTR(FMT_NUM_ARABIC) );
497 0 : if( !aFormatLB.GetSelectEntryCount() )
498 0 : aFormatLB.SelectEntryPos( 0 );
499 : }
500 : }
501 :
502 0 : FormatHdl();
503 :
504 0 : return nSize;
505 : }
506 :
507 0 : IMPL_LINK_NOARG(SwFldDokPage, FormatHdl)
508 : {
509 0 : sal_uInt16 nTypeId = (sal_uInt16)(sal_uLong)aTypeLB.GetEntryData(GetTypeSel());
510 :
511 0 : if (nTypeId == USHRT_MAX)
512 : {
513 0 : sal_uInt16 nPos = aSelectionLB.GetSelectEntryPos();
514 0 : if(nPos == LISTBOX_ENTRY_NOTFOUND)
515 0 : nPos = 0;
516 :
517 0 : nTypeId = (sal_uInt16)(sal_uLong)aSelectionLB.GetEntryData(nPos);
518 : }
519 :
520 0 : if (nTypeId == TYP_NEXTPAGEFLD || nTypeId == TYP_PREVPAGEFLD)
521 : {
522 : // Prev/Next - PageNumFields special treatment:
523 : sal_uInt16 nTmp = (sal_uInt16)(sal_uLong)aFormatLB.GetEntryData(
524 0 : aFormatLB.GetSelectEntryPos() );
525 0 : String sOldTxt( aValueFT.GetText() );
526 : String sNewTxt( SW_RES( SVX_NUM_CHAR_SPECIAL == nTmp ? STR_VALUE
527 0 : : STR_OFFSET ));
528 :
529 0 : if( sOldTxt != sNewTxt )
530 0 : aValueFT.SetText( sNewTxt );
531 :
532 0 : if (sOldTxt != aValueFT.GetText())
533 0 : aValueED.SetText( aEmptyStr );
534 : }
535 :
536 0 : return 0;
537 : }
538 :
539 0 : sal_Bool SwFldDokPage::FillItemSet(SfxItemSet& )
540 : {
541 0 : sal_uInt16 nTypeId = (sal_uInt16)(sal_uLong)aTypeLB.GetEntryData(GetTypeSel());
542 :
543 0 : if (nTypeId == USHRT_MAX)
544 : {
545 0 : sal_uInt16 nPos = aSelectionLB.GetSelectEntryPos();
546 0 : if(nPos == LISTBOX_ENTRY_NOTFOUND)
547 0 : nPos = 0;
548 0 : nTypeId = (sal_uInt16)(sal_uLong)aSelectionLB.GetEntryData(nPos);
549 : }
550 :
551 0 : String aVal(aValueED.GetText());
552 0 : sal_uLong nFormat = 0;
553 0 : sal_uInt16 nSubType = 0;
554 :
555 0 : if (aFormatLB.IsEnabled())
556 : {
557 0 : sal_uInt16 nPos = aFormatLB.GetSelectEntryPos();
558 0 : if(nPos != LISTBOX_ENTRY_NOTFOUND)
559 0 : nFormat = (sal_uInt16)(sal_uLong)aFormatLB.GetEntryData(nPos);
560 : }
561 :
562 0 : if (aSelectionLB.IsEnabled())
563 : {
564 0 : sal_uInt16 nPos = aSelectionLB.GetSelectEntryPos();
565 0 : if(nPos != LISTBOX_ENTRY_NOTFOUND)
566 0 : nSubType = (sal_uInt16)(sal_uLong)aSelectionLB.GetEntryData(nPos);
567 : }
568 :
569 0 : switch (nTypeId)
570 : {
571 : case TYP_AUTHORFLD:
572 0 : nFormat = nSubType;
573 0 : nSubType = 0;
574 : // no break!
575 : case TYP_EXTUSERFLD:
576 0 : nFormat |= aFixedCB.IsChecked() ? AF_FIXED : 0;
577 0 : break;
578 :
579 : case TYP_FILENAMEFLD:
580 0 : nFormat |= aFixedCB.IsChecked() ? FF_FIXED : 0;
581 0 : break;
582 :
583 : case TYP_DATEFLD:
584 : case TYP_TIMEFLD:
585 : {
586 0 : nFormat = aNumFormatLB.GetFormat();
587 0 : long nVal = static_cast< long >(aDateOffsetED.GetValue());
588 0 : if (nTypeId == TYP_DATEFLD)
589 0 : aVal = String::CreateFromInt32(nVal * 60 * 24);
590 : else
591 0 : aVal = String::CreateFromInt32(nVal);
592 0 : break;
593 : }
594 :
595 : case TYP_NEXTPAGEFLD:
596 : case TYP_PREVPAGEFLD:
597 : case TYP_PAGENUMBERFLD:
598 : case TYP_GETREFPAGEFLD:
599 : {
600 0 : if( SVX_NUM_CHAR_SPECIAL != nFormat &&
601 : (TYP_PREVPAGEFLD == nTypeId || TYP_NEXTPAGEFLD == nTypeId))
602 : {
603 0 : sal_Int32 nVal = aValueED.GetText().ToInt32();
604 0 : aVal = String::CreateFromInt32(nVal);
605 : }
606 0 : break;
607 : }
608 :
609 : case TYP_CHAPTERFLD:
610 0 : aVal = aLevelED.GetText();
611 0 : break;
612 :
613 : default:
614 0 : break;
615 : }
616 :
617 0 : if (!IsFldEdit() ||
618 0 : nOldSel != aSelectionLB.GetSelectEntryPos() ||
619 : nOldFormat != nFormat ||
620 0 : aFixedCB.GetState() != aFixedCB.GetSavedValue() ||
621 0 : aValueED.GetText() != aValueED.GetSavedValue() ||
622 0 : aLevelED.GetText() != aLevelED.GetSavedValue() ||
623 0 : aDateOffsetED.GetText() != aDateOffsetED.GetSavedValue())
624 : {
625 0 : InsertFld( nTypeId, nSubType, aEmptyStr, aVal, nFormat, ' ', aNumFormatLB.IsAutomaticLanguage() );
626 : }
627 :
628 0 : return sal_False;
629 : }
630 :
631 0 : SfxTabPage* SwFldDokPage::Create( Window* pParent,
632 : const SfxItemSet& rAttrSet )
633 : {
634 0 : return ( new SwFldDokPage( pParent, rAttrSet ) );
635 : }
636 :
637 0 : sal_uInt16 SwFldDokPage::GetGroup()
638 : {
639 0 : return GRP_DOC;
640 : }
641 :
642 0 : void SwFldDokPage::FillUserData()
643 : {
644 0 : String sData(rtl::OUString(USER_DATA_VERSION));
645 0 : sData += ';';
646 0 : sal_uInt16 nTypeSel = aTypeLB.GetSelectEntryPos();
647 0 : if( LISTBOX_ENTRY_NOTFOUND == nTypeSel )
648 0 : nTypeSel = USHRT_MAX;
649 : else
650 0 : nTypeSel = sal::static_int_cast< sal_uInt16 >(reinterpret_cast< sal_uIntPtr >(aTypeLB.GetEntryData( nTypeSel )));
651 0 : sData += String::CreateFromInt32( nTypeSel );
652 0 : SetUserData(sData);
653 0 : }
654 :
655 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|