// #i37739# A simple 'MakeFrames' after the node sorting // does not work if the table is inside a frame and has no prev/next.
SwNode2LayoutSaveUpperFrames aNode2Layout(*pTableNd);
// move back
MoveCell(&rDoc, pTarget, pSource,
USHRT_MAX != aMovedList.GetPos(pSource) );
// store moved entry in list
aMovedList.push_back(pTarget);
}
// Restore table frames: // #i37739# A simple 'MakeFrames' after the node sorting // does not work if the table is inside a frame and has no prev/next. const SwNodeOffset nIdx = pTableNd->GetIndex();
aNode2Layout.RestoreUpperFrames( rDoc.GetNodes(), nIdx, nIdx + 1 );
} else
{ // Undo for Text
SwPaM & rPam( AddUndoRedoPaM(rContext) );
RemoveIdxFromRange(rPam, true);
// create index for (sorted) positions // The IndexList must be created based on (asc.) sorted SourcePosition.
std::vector<SwNodeIndex> aIdxList;
aIdxList.reserve(m_SortList.size());
for (size_t i = 0; i < m_SortList.size(); ++i)
{ for (std::unique_ptr<SwSortUndoElement> const& pElement : m_SortList)
{ if (pElement->mnSourceNodeOffset == (m_nSttNode + SwNodeOffset(i)))
{
aIdxList.push_back( SwNodeIndex(rDoc.GetNodes(), pElement->mnTargetNodeOffset)); break;
}
}
}
for (size_t i = 0; i < m_SortList.size(); ++i)
{
SwNodeIndex aIdx( rDoc.GetNodes(), m_nSttNode + SwNodeOffset(i) );
SwNodeRange aRg( aIdxList[i], SwNodeOffset(0), aIdxList[i], SwNodeOffset(1) );
rDoc.getIDocumentContentOperations().MoveNodeRange(aRg, aIdx.GetNode(),
SwMoveFlags::DEFAULT);
} // delete indices
aIdxList.clear();
SetPaM(rPam, true);
}
}
// #i37739# A simple 'MakeFrames' after the node sorting // does not work if the table is inside a frame and has no prev/next.
SwNode2LayoutSaveUpperFrames aNode2Layout(*pTableNd);
// move back
MoveCell(&rDoc, pSource, pTarget,
USHRT_MAX != aMovedList.GetPos( pTarget ) ); // store moved entry in list
aMovedList.push_back( pSource );
}
// Restore table frames: // #i37739# A simple 'MakeFrames' after the node sorting // does not work if the table is inside a frame and has no prev/next. const SwNodeOffset nIdx = pTableNd->GetIndex();
aNode2Layout.RestoreUpperFrames( rDoc.GetNodes(), nIdx, nIdx + 1 );
} else
{ // Redo for Text
SwPaM & rPam( AddUndoRedoPaM(rContext) );
SetPaM(rPam);
RemoveIdxFromRange(rPam, true);
for (size_t i = 0; i < m_SortList.size(); ++i)
{ // current position is starting point
aIdxList.push_back( SwNodeIndex(rDoc.GetNodes(), m_SortList[i]->mnSourceNodeOffset) );
}
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.