/* -*- 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 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "fldpage.hxx" #include #include #include #include #include using namespace ::com::sun::star; // note: pAttrSet may be null if the dialog is restored on startup SwFieldPage::SwFieldPage(TabPageParent pParent, const OUString& rUIXMLDescription, const OString& rID, const SfxItemSet *pAttrSet) : SfxTabPage(pParent, rUIXMLDescription, rID, pAttrSet) , m_pCurField(nullptr) , m_pWrtShell(nullptr) , m_nTypeSel(-1) , m_nSelectionSel(-1) , m_bFieldEdit(false) , m_bInsert(true) , m_bFieldDlgHtmlMode(false) , m_bRefresh(false) , m_bFirstHTMLInit(true) { } SwFieldPage::~SwFieldPage() { } // initialise TabPage void SwFieldPage::Init() { SwDocShell* pDocSh = static_cast(SfxObjectShell::Current()); bool bNewMode = 0 != (::GetHtmlMode(pDocSh) & HTMLMODE_ON); m_bFieldEdit = nullptr == dynamic_cast(GetDialogController()); // newly initialise FieldManager. important for // Dok-Switch (fldtdlg:ReInitTabPage) m_pCurField = m_aMgr.GetCurField(); if( bNewMode != m_bFieldDlgHtmlMode ) { m_bFieldDlgHtmlMode = bNewMode; // initialise Rangelistbox if( m_bFieldDlgHtmlMode && m_bFirstHTMLInit ) { m_bFirstHTMLInit = false; SwWrtShell *pSh = m_pWrtShell; if(! pSh) pSh = ::GetActiveWrtShell(); if(pSh) { SwDoc* pDoc = pSh->GetDoc(); pSh->InsertFieldType( SwSetExpFieldType( pDoc, "HTML_ON", 1)); pSh->InsertFieldType( SwSetExpFieldType(pDoc, "HTML_OFF", 1)); } } } } // newly initialise page void SwFieldPage::ActivatePage() { EnableInsert(m_bInsert); } // complete reset; edit new field void SwFieldPage::EditNewField( bool bOnlyActivate ) { if (!bOnlyActivate) m_nTypeSel = -1; m_nSelectionSel = -1; m_bRefresh = true; Reset(nullptr); m_bRefresh = false; } // insert field void SwFieldPage::InsertField(sal_uInt16 nTypeId, sal_uInt16 nSubType, const OUString& rPar1, const OUString& rPar2, sal_uInt32 nFormatId, sal_Unicode cSeparator, bool bIsAutomaticLanguage) { SwView* pView = GetActiveView(); SwWrtShell *pSh = m_pWrtShell ? m_pWrtShell : pView->GetWrtShellPtr(); if (!IsFieldEdit()) // insert new field { SwInsertField_Data aData(nTypeId, nSubType, rPar1, rPar2, nFormatId, nullptr, cSeparator, bIsAutomaticLanguage ); //#i26566# provide parent for SwWrtShell::StartInputFieldDlg aData.m_pParent = &GetDialogController()->GetOKButton(); m_aMgr.InsertField( aData ); uno::Reference< frame::XDispatchRecorder > xRecorder = pView->GetViewFrame()->GetBindings().GetRecorder(); if ( xRecorder.is() ) { bool bRecordDB = TYP_DBFLD == nTypeId || TYP_DBSETNUMBERFLD == nTypeId || TYP_DBNUMSETFLD == nTypeId || TYP_DBNEXTSETFLD == nTypeId || TYP_DBNAMEFLD == nTypeId ; SfxRequest aReq( pView->GetViewFrame(), bRecordDB ? FN_INSERT_DBFIELD : FN_INSERT_FIELD ); if(bRecordDB) { sal_Int32 nIdx{ 0 }; aReq.AppendItem(SfxStringItem (FN_INSERT_DBFIELD,rPar1.getToken(0, DB_DELIM, nIdx))); aReq.AppendItem(SfxStringItem (FN_PARAM_1,rPar1.getToken(0, DB_DELIM, nIdx))); aReq.AppendItem(SfxInt32Item (FN_PARAM_3,rPar1.getToken(0, DB_DELIM, nIdx).toInt32())); aReq.AppendItem(SfxStringItem (FN_PARAM_2,rPar1.getToken(0, DB_DELIM, nIdx))); } else { aReq.AppendItem(SfxStringItem(FN_INSERT_FIELD, rPar1)); aReq.AppendItem(SfxStringItem (FN_PARAM_3, OUString(cSeparator))); aReq.AppendItem(SfxUInt16Item(FN_PARAM_FIELD_SUBTYPE, nSubType)); } aReq.AppendItem(SfxUInt16Item(FN_PARAM_FIELD_TYPE , nTypeId)); aReq.AppendItem(SfxStringItem(FN_PARAM_FIELD_CONTENT, rPar2)); aReq.AppendItem(SfxUInt32Item(FN_PARAM_FIELD_FORMAT , nFormatId)); aReq.Done(); } } else // change field { std::unique_ptr pTmpField = m_pCurField->CopyField(); OUString sPar1(rPar1); OUString sPar2(rPar2); switch( nTypeId ) { case TYP_DATEFLD: case TYP_TIMEFLD: nSubType = static_cast< sal_uInt16 >(((nTypeId == TYP_DATEFLD) ? DATEFLD : TIMEFLD) | ((nSubType == DATE_VAR) ? 0 : FIXEDFLD)); break; case TYP_DBNAMEFLD: case TYP_DBNEXTSETFLD: case TYP_DBNUMSETFLD: case TYP_DBSETNUMBERFLD: { sal_Int32 nPos = 0; SwDBData aData; aData.sDataSource = rPar1.getToken(0, DB_DELIM, nPos); aData.sCommand = rPar1.getToken(0, DB_DELIM, nPos); aData.nCommandType = rPar1.getToken(0, DB_DELIM, nPos).toInt32(); sPar1 = rPar1.copy(nPos); static_cast(pTmpField.get())->SetDBData(aData); } break; case TYP_DBFLD: { SwDBData aData; sal_Int32 nIdx{ 0 }; aData.sDataSource = rPar1.getToken(0, DB_DELIM, nIdx); aData.sCommand = rPar1.getToken(0, DB_DELIM, nIdx); aData.nCommandType = rPar1.getToken(0, DB_DELIM, nIdx).toInt32(); OUString sColumn = rPar1.getToken(0, DB_DELIM, nIdx); SwDBFieldType* pOldTyp = static_cast(pTmpField->GetTyp()); SwDBFieldType* pTyp = static_cast(pSh->InsertFieldType( SwDBFieldType(pSh->GetDoc(), sColumn, aData))); SwIterator aIter( *pOldTyp ); for( SwFormatField* pFormatField = aIter.First(); pFormatField; pFormatField = aIter.Next() ) { if( pFormatField->GetField() == m_pCurField) { pFormatField->RegisterToFieldType(*pTyp); pTmpField->ChgTyp(pTyp); break; } } } break; case TYP_SEQFLD: { SwSetExpFieldType* pTyp = static_cast(pTmpField->GetTyp()); pTyp->SetOutlineLvl( static_cast< sal_uInt8 >(nSubType & 0xff)); pTyp->SetDelimiter(OUString(cSeparator)); nSubType = nsSwGetSetExpType::GSE_SEQ; } break; case TYP_INPUTFLD: { // User- or SetField ? if (m_aMgr.GetFieldType(SwFieldIds::User, sPar1) == nullptr && !(pTmpField->GetSubType() & INP_TXT)) // SETEXPFLD { SwSetExpField* pField = static_cast(pTmpField.get()); pField->SetPromptText(sPar2); sPar2 = pField->GetPar2(); } } break; case TYP_DOCINFOFLD: { if( nSubType == nsSwDocInfoSubType::DI_CUSTOM ) { SwDocInfoField* pDocInfo = static_cast( pTmpField.get() ); pDocInfo->SetName( rPar1 ); } } break; } pSh->StartAllAction(); pTmpField->SetSubType(nSubType); pTmpField->SetAutomaticLanguage(bIsAutomaticLanguage); m_aMgr.UpdateCurField( nFormatId, sPar1, sPar2, std::move(pTmpField) ); m_pCurField = m_aMgr.GetCurField(); switch (nTypeId) { case TYP_HIDDENTXTFLD: case TYP_HIDDENPARAFLD: m_aMgr.EvalExpFields(pSh); break; } pSh->SetUndoNoResetModified(); pSh->EndAllAction(); } } void SwFieldPage::SavePos( const weld::TreeView& rLst1 ) { if (rLst1.n_children()) m_aLstStrArr[ 0 ] = rLst1.get_selected_text(); else m_aLstStrArr[ 0 ].clear(); m_aLstStrArr[ 1 ].clear(); m_aLstStrArr[ 2 ].clear(); } void SwFieldPage::RestorePos(weld::TreeView& rLst1) { sal_Int32 nPos = 0; if (rLst1.n_children() && !m_aLstStrArr[ 0 ].isEmpty() && -1 != ( nPos = rLst1.find_text(m_aLstStrArr[ 0 ] ) ) ) rLst1.select( nPos ); } // Insert new fields IMPL_LINK( SwFieldPage, TreeViewInsertHdl, weld::TreeView&, rBox, void ) { InsertHdl(&rBox); } void SwFieldPage::InsertHdl(weld::Widget* pBtn) { if (SwFieldDlg *pDlg = dynamic_cast(GetDialogController())) { pDlg->InsertHdl(); if (pBtn) pBtn->grab_focus(); // because of InputField-Dlg } else { SwFieldEditDlg *pEditDlg = static_cast(GetDialogController()); pEditDlg->InsertHdl(); } } // enable/disable "Insert"-Button void SwFieldPage::EnableInsert(bool bEnable) { if (SwFieldDlg *pDlg = dynamic_cast(GetDialogController())) { if (pDlg->GetCurTabPage() == this) pDlg->EnableInsert(bEnable); } else { SwFieldEditDlg *pEditDlg = static_cast(GetDialogController()); pEditDlg->EnableInsert(bEnable); } m_bInsert = bEnable; } IMPL_LINK_NOARG(SwFieldPage, NumFormatHdl, weld::TreeView&, void) { InsertHdl(nullptr); } void SwFieldPage::SetWrtShell( SwWrtShell* pShell ) { m_pWrtShell = pShell; m_aMgr.SetWrtShell( pShell ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */