/* -*- 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 .
*/
if (eMode & ExpandMode::ExpandFields || eMode & ExpandMode::ExpandFootnote)
{ //first the normal fields, get their position in the node and what the text they expand //to is const SwpHints* pSwpHints2 = rNode.GetpSwpHints(); for ( size_t i = 0; pSwpHints2 && i < pSwpHints2->Count(); ++i )
{ const SwTextAttr* pAttr = pSwpHints2->Get(i); if (pAttr->HasDummyChar())
{ const sal_Int32 nDummyCharPos = pAttr->GetStart(); if (aHiddenMulti.IsSelected(nDummyCharPos)) continue;
std::vector<block>::iterator aFind = std::find_if(aBlocks.begin(),
aBlocks.end(), containsPos(nDummyCharPos)); if (aFind != aBlocks.end())
{
FieldResult aFieldResult(nDummyCharPos); switch (pAttr->Which())
{ case RES_TXTATR_ANNOTATION: if (eMode & ExpandMode::ExpandFields)
{ // this uses CH_TXTATR_INWORD so replace with nothing
aFieldResult.m_eType = FieldResult::FIELD;
} break; case RES_TXTATR_FIELD: if (eMode & ExpandMode::ExpandFields)
{ // add a ZWSP before the expanded field in replace mode
aFieldResult.m_sExpand = ((eMode & ExpandMode::ReplaceMode)
? OUString(CHAR_ZWSP) : u""_ustr) +
static_txtattr_cast<SwTextField const*>(pAttr)->
GetFormatField().GetField()->ExpandField(true, pLayout);
aFieldResult.m_eType = FieldResult::FIELD;
} break; case RES_TXTATR_FTN: if (eMode & ExpandMode::ExpandFootnote)
{ const SwFormatFootnote& rFootnote = static_cast<SwTextFootnote const*>(pAttr)->GetFootnote(); const SwDoc& rDoc = rNode.GetDoc();
aFieldResult.m_sExpand = (eMode & ExpandMode::ReplaceMode)
? OUString(CHAR_ZWSP)
: rFootnote.GetViewNumStr(rDoc, pLayout);
aFieldResult.m_eType = FieldResult::FOOTNOTE;
} break; default: break;
}
aFind->m_aAttrs.insert(aFieldResult);
}
}
}
if (eMode & ExpandMode::ExpandFields)
{ //now get the dropdown formfields, get their position in the node and what the text they expand //to is
SwPaM aPaM(rNode, 0, rNode, rNode.Len());
std::vector<sw::mark::Fieldmark*> aNoTextFieldmarks =
rNode.GetDoc().getIDocumentMarkAccess()->getNoTextFieldmarksIn(aPaM);
//store the end of each range in the model and where that end of range //maps to in the view
sal_Int32 nOffset = 0; for (constauto& rBlock : aBlocks)
{ const sal_Int32 nBlockLen = rBlock.m_nLen; if (!nBlockLen) continue; const sal_Int32 nBlockStart = rBlock.m_nStart; const sal_Int32 nBlockEnd = nBlockStart + nBlockLen;
/** Converts a model position into a view position
*/
sal_Int32 ModelToViewHelper::ConvertToViewPosition( sal_Int32 nModelPos ) const
{ // Search for entry after nPos: auto aIter = std::find_if(m_aMap.begin(), m_aMap.end(),
[nModelPos](const ConversionMapEntry& rEntry) { return rEntry.m_nModelPos >= nModelPos; }); if (aIter != m_aMap.end())
{ //if it's an invisible portion, map all contained positions //to the anchor viewpos if (!aIter->m_bVisible) return aIter->m_nViewPos;
//if it's a visible portion, then the view position is the anchor //viewpos - the offset of the input modelpos from the anchor //modelpos const sal_Int32 nOffsetFromEnd = aIter->m_nModelPos - nModelPos; return aIter->m_nViewPos - nOffsetFromEnd;
}
return nModelPos;
}
/** Converts a view position into a model position
*/
ModelToViewHelper::ModelPosition ModelToViewHelper::ConvertToModelPosition( sal_Int32 nViewPos ) const
{
ModelPosition aRet;
aRet.mnPos = nViewPos;
// Search for entry after nPos: auto aIter = std::find_if(m_aMap.begin(), m_aMap.end(),
[nViewPos](const ConversionMapEntry& rEntry) { return rEntry.m_nViewPos > nViewPos; });
// If nViewPos is in front of first field, we are finished. if (aIter != m_aMap.end() && aIter != m_aMap.begin())
{ const sal_Int32 nPosModel = aIter->m_nModelPos; const sal_Int32 nPosExpand = aIter->m_nViewPos;
--aIter;
// nPrevPosModel is the field position const sal_Int32 nPrevPosModel = aIter->m_nModelPos; const sal_Int32 nPrevPosExpand = aIter->m_nViewPos;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.