LCOV - code coverage report
Current view: top level - sw/source/ui/fldui - flddok.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 366 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 19 0.0 %
Legend: Lines: hit not hit

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

Generated by: LCOV version 1.11