/* -*- 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 "flddb.hxx" #include "flddinf.hxx" #include "fldvar.hxx" #include "flddok.hxx" #include "fldfunc.hxx" #include "fldref.hxx" #include #include #include #include #include #include #include #include void SwFieldEditDlg::EnsureSelection(SwField *pCurField, SwFieldMgr &rMgr) { if (pSh->CursorInsideInputField()) { // move cursor to start of Input Field SwInputField* pInputField = dynamic_cast(pCurField); if (pInputField && pInputField->GetFormatField()) { pSh->GotoField( *(pInputField->GetFormatField()) ); } } /* Only create selection if there is none already. Normalize PaM instead of swapping. */ if (!pSh->HasSelection()) { SwShellCursor* pCursor = pSh->getShellCursor(true); SwPosition aOrigPos(*pCursor->GetPoint()); //After this attempt it is possible that rMgr.GetCurField() != pCurField if //the field was in e.g. a zero height portion and so invisible in which //case it will be skipped over pSh->Right(CRSR_SKIP_CHARS, true, 1, false ); //So (fdo#50640) if it didn't work then reposition back to the original //location where the field was SwField *pRealCurField = rMgr.GetCurField(); bool bSelectionFailed = pCurField != pRealCurField; if (bSelectionFailed) { pCursor->DeleteMark(); *pCursor->GetPoint() = aOrigPos; } } pSh->NormalizePam(); assert(pCurField == rMgr.GetCurField()); } SwFieldEditDlg::SwFieldEditDlg(SwView const & rVw) : SfxSingleTabDialog(&rVw.GetViewFrame()->GetWindow(), nullptr, "EditFieldDialog", "modules/swriter/ui/editfielddialog.ui") , pSh(rVw.GetWrtShellPtr()) { get(m_pPrevBT, "prev"); get(m_pNextBT, "next"); get(m_pAddressBT, "edit"); SwFieldMgr aMgr(pSh); SwField *pCurField = aMgr.GetCurField(); if (!pCurField) return; SwViewShell::SetCareWin(this); EnsureSelection(pCurField, aMgr); sal_uInt16 nGroup = SwFieldMgr::GetGroup(pCurField->GetTypeId(), pCurField->GetSubType()); CreatePage(nGroup); GetOKButton()->SetClickHdl(LINK(this, SwFieldEditDlg, OKHdl)); m_pPrevBT->SetClickHdl(LINK(this, SwFieldEditDlg, NextPrevHdl)); m_pNextBT->SetClickHdl(LINK(this, SwFieldEditDlg, NextPrevHdl)); m_pAddressBT->SetClickHdl(LINK(this, SwFieldEditDlg, AddressHdl)); Init(); } // initialise controls void SwFieldEditDlg::Init() { VclPtr pTabPage = static_cast(GetTabPage()); if( pTabPage ) { SwFieldMgr& rMgr = pTabPage->GetFieldMgr(); SwField *pCurField = rMgr.GetCurField(); if(!pCurField) return; // Traveling only when more than one field pSh->StartAction(); pSh->ClearMark(); pSh->CreateCursor(); bool bMove = rMgr.GoNext(); if( bMove ) rMgr.GoPrev(); m_pNextBT->Enable(bMove); bMove = rMgr.GoPrev(); if( bMove ) rMgr.GoNext(); m_pPrevBT->Enable( bMove ); if (pCurField->GetTypeId() == TYP_EXTUSERFLD) m_pAddressBT->Enable(); else m_pAddressBT->Disable(); pSh->DestroyCursor(); pSh->EndAction(); } GetOKButton()->Enable( !pSh->IsReadOnlyAvailable() || !pSh->HasReadonlySel() ); } VclPtr SwFieldEditDlg::CreatePage(sal_uInt16 nGroup) { // create TabPage VclPtr pTabPage; switch (nGroup) { case GRP_DOC: pTabPage = SwFieldDokPage::Create(get_content_area(), nullptr); break; case GRP_FKT: pTabPage = SwFieldFuncPage::Create(get_content_area(), nullptr); break; case GRP_REF: pTabPage = SwFieldRefPage::Create(get_content_area(), nullptr); break; case GRP_REG: { SfxObjectShell* pDocSh = SfxObjectShell::Current(); SfxItemSet* pSet = new SfxItemSet( pDocSh->GetPool(), svl::Items{} ); using namespace ::com::sun::star; uno::Reference xDPS( pDocSh->GetModel(), uno::UNO_QUERY_THROW); uno::Reference xDocProps = xDPS->getDocumentProperties(); uno::Reference< beans::XPropertySet > xUDProps( xDocProps->getUserDefinedProperties(), uno::UNO_QUERY_THROW); pSet->Put( SfxUnoAnyItem( SID_DOCINFO, uno::makeAny(xUDProps) ) ); pTabPage = SwFieldDokInfPage::Create(get_content_area(), pSet); break; } #if HAVE_FEATURE_DBCONNECTIVITY case GRP_DB: pTabPage = SwFieldDBPage::Create(get_content_area(), nullptr); static_cast(pTabPage.get())->SetWrtShell(*pSh); break; #endif case GRP_VAR: pTabPage = SwFieldVarPage::Create(get_content_area(), nullptr); break; } assert(pTabPage); if (pTabPage) { static_cast(pTabPage.get())->SetWrtShell(pSh); SetTabPage(pTabPage); } return pTabPage; } SwFieldEditDlg::~SwFieldEditDlg() { disposeOnce(); } void SwFieldEditDlg::dispose() { SwViewShell::SetCareWin(nullptr); pSh->EnterStdMode(); m_pPrevBT.clear(); m_pNextBT.clear(); m_pAddressBT.clear(); SfxSingleTabDialog::dispose(); } void SwFieldEditDlg::EnableInsert(bool bEnable) { if( bEnable && pSh->IsReadOnlyAvailable() && pSh->HasReadonlySel() ) bEnable = false; GetOKButton()->Enable( bEnable ); } void SwFieldEditDlg::InsertHdl() { GetOKButton()->Click(); } // kick off changing of the field IMPL_LINK_NOARG(SwFieldEditDlg, OKHdl, Button*, void) { if (GetOKButton()->IsEnabled()) { VclPtr pTabPage = GetTabPage(); if (pTabPage) pTabPage->FillItemSet(nullptr); EndDialog( RET_OK ); } } short SwFieldEditDlg::Execute() { // without TabPage no dialog return GetTabPage() ? Dialog::Execute() : static_cast(RET_CANCEL); } // Traveling between fields of the same type IMPL_LINK( SwFieldEditDlg, NextPrevHdl, Button *, pButton, void ) { bool bNext = pButton == m_pNextBT; pSh->EnterStdMode(); SwFieldType *pOldTyp = nullptr; VclPtr pTabPage = static_cast(GetTabPage()); //#112462# FillItemSet may delete the current field //that's why it has to be called before accessing the current field if( GetOKButton()->IsEnabled() ) pTabPage->FillItemSet(nullptr); SwFieldMgr& rMgr = pTabPage->GetFieldMgr(); SwField *pCurField = rMgr.GetCurField(); if (pCurField->GetTypeId() == TYP_DBFLD) pOldTyp = static_cast(pCurField->GetTyp()); rMgr.GoNextPrev( bNext, pOldTyp ); pCurField = rMgr.GetCurField(); EnsureSelection(pCurField, rMgr); sal_uInt16 nGroup = SwFieldMgr::GetGroup(pCurField->GetTypeId(), pCurField->GetSubType()); if (nGroup != pTabPage->GetGroup()) pTabPage = static_cast(CreatePage(nGroup).get()); pTabPage->EditNewField(); Init(); } IMPL_LINK_NOARG(SwFieldEditDlg, AddressHdl, Button*, void) { SwFieldPage* pTabPage = static_cast(GetTabPage()); SwFieldMgr& rMgr = pTabPage->GetFieldMgr(); SwField *pCurField = rMgr.GetCurField(); SfxItemSet aSet( pSh->GetAttrPool(), svl::Items{} ); EditPosition nEditPos = EditPosition::UNKNOWN; switch(pCurField->GetSubType()) { case EU_FIRSTNAME: nEditPos = EditPosition::FIRSTNAME; break; case EU_NAME: nEditPos = EditPosition::LASTNAME; break; case EU_SHORTCUT: nEditPos = EditPosition::SHORTNAME; break; case EU_COMPANY: nEditPos = EditPosition::COMPANY; break; case EU_STREET: nEditPos = EditPosition::STREET; break; case EU_TITLE: nEditPos = EditPosition::TITLE; break; case EU_POSITION: nEditPos = EditPosition::POSITION; break; case EU_PHONE_PRIVATE:nEditPos = EditPosition::TELPRIV; break; case EU_PHONE_COMPANY:nEditPos = EditPosition::TELCOMPANY; break; case EU_FAX: nEditPos = EditPosition::FAX; break; case EU_EMAIL: nEditPos = EditPosition::EMAIL; break; case EU_COUNTRY: nEditPos = EditPosition::COUNTRY; break; case EU_ZIP: nEditPos = EditPosition::PLZ; break; case EU_CITY: nEditPos = EditPosition::CITY; break; case EU_STATE: nEditPos = EditPosition::STATE; break; default: nEditPos = EditPosition::UNKNOWN; break; } aSet.Put(SfxUInt16Item(SID_FIELD_GRABFOCUS, static_cast(nEditPos))); SwAbstractDialogFactory& rFact = swui::GetFactory(); ScopedVclPtr pDlg(rFact.CreateSwAddressAbstractDlg(this, aSet)); if (RET_OK == pDlg->Execute()) { pSh->UpdateOneField(*pCurField); } } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */