1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
|
/* -*- 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 <UndoRedline.hxx>
#include <hintids.hxx>
#include <osl/diagnose.h>
#include <unotools/charclass.hxx>
#include <doc.hxx>
#include <IDocumentRedlineAccess.hxx>
#include <swundo.hxx>
#include <pam.hxx>
#include <ndtxt.hxx>
#include <txtfrm.hxx>
#include <mvsave.hxx>
#include <rolbck.hxx>
#include <UndoCore.hxx>
#include <UndoDelete.hxx>
#include <strings.hrc>
#include <redline.hxx>
#include <docary.hxx>
#include <sortopt.hxx>
#include <docedt.hxx>
SwUndoRedline::SwUndoRedline( SwUndoId nUsrId, const SwPaM& rRange )
: SwUndo( SwUndoId::REDLINE, &rRange.GetDoc() ), SwUndRng( rRange ),
mnUserId( nUsrId ),
mbHiddenRedlines( false )
{
// consider Redline
SwDoc& rDoc = rRange.GetDoc();
if( rDoc.getIDocumentRedlineAccess().IsRedlineOn() )
{
switch( mnUserId )
{
case SwUndoId::DELETE:
case SwUndoId::REPLACE:
mpRedlData.reset( new SwRedlineData( RedlineType::Delete, rDoc.getIDocumentRedlineAccess().GetRedlineAuthor() ) );
break;
default:
;
}
SetRedlineFlags( rDoc.getIDocumentRedlineAccess().GetRedlineFlags() );
}
SwNodeOffset nEndExtra = rDoc.GetNodes().GetEndOfExtras().GetIndex();
mpRedlSaveData.reset( new SwRedlineSaveDatas );
if( !FillSaveData( rRange, *mpRedlSaveData, false, SwUndoId::REJECT_REDLINE != mnUserId ))
{
mpRedlSaveData.reset();
}
else
{
mbHiddenRedlines = HasHiddenRedlines( *mpRedlSaveData );
if( mbHiddenRedlines ) // then the NodeIndices of SwUndRng need to be corrected
{
nEndExtra -= rDoc.GetNodes().GetEndOfExtras().GetIndex();
m_nSttNode -= nEndExtra;
m_nEndNode -= nEndExtra;
}
}
}
SwUndoRedline::~SwUndoRedline()
{
mpRedlData.reset();
mpRedlSaveData.reset();
}
sal_uInt16 SwUndoRedline::GetRedlSaveCount() const
{
return mpRedlSaveData ? mpRedlSaveData->size() : 0;
}
void SwUndoRedline::UndoImpl(::sw::UndoRedoContext & rContext)
{
SwDoc& rDoc = rContext.GetDoc();
SwPaM& rPam(AddUndoRedoPaM(rContext));
// fix PaM for deletions shown in margin
bool bIsDeletion = dynamic_cast<SwUndoRedlineDelete*>(this);
const SwRedlineTable& rTable = rDoc.getIDocumentRedlineAccess().GetRedlineTable();
sal_uInt32 nMaxId = SAL_MAX_UINT32;
if ( bIsDeletion && rTable.size() > 0 )
{
// Nodes of the deletion range are in the newest invisible redlines.
// Set all redlines visible and recover the original deletion range.
for (SwNodeOffset nNodes(0); nNodes < m_nEndNode - m_nSttNode + 1; ++nNodes)
{
SwRedlineTable::size_type nCurRedlinePos = 0;
SwRangeRedline * pRedline(rTable[nCurRedlinePos]);
// search last but nNodes redline by its nth biggest id
for( SwRedlineTable::size_type n = 1; n < rTable.size(); ++n )
{
SwRangeRedline *pRed(rTable[n]);
if ( !pRed->HasMark() && pRedline->GetId() < pRed->GetId() && pRed->GetId() < nMaxId )
{
nCurRedlinePos = n;
pRedline = pRed;
}
}
nMaxId = pRedline->GetId();
if ( !pRedline->IsVisible() && !pRedline->HasMark() )
{
// set it visible
pRedline->Show(0, rTable.GetPos(pRedline), /*bForced=*/true);
pRedline->Show(1, rTable.GetPos(pRedline), /*bForced=*/true);
// extend the range
if ( nNodes == SwNodeOffset(0) )
rPam = *pRedline;
else
{
rPam.SetMark();
*rPam.GetMark() = *pRedline->GetMark();
}
}
}
}
UndoRedlineImpl(rDoc, rPam);
if( mpRedlSaveData )
{
SwNodeOffset nEndExtra = rDoc.GetNodes().GetEndOfExtras().GetIndex();
SetSaveData(rDoc, *mpRedlSaveData);
if( mbHiddenRedlines )
{
mpRedlSaveData->clear();
nEndExtra = rDoc.GetNodes().GetEndOfExtras().GetIndex() - nEndExtra;
m_nSttNode += nEndExtra;
m_nEndNode += nEndExtra;
}
SetPaM(rPam, true);
}
// update frames after calling SetSaveData
if ( bIsDeletion )
{
sw::UpdateFramesForRemoveDeleteRedline(rDoc, rPam);
}
else if (dynamic_cast<SwUndoAcceptRedline*>(this)
|| dynamic_cast<SwUndoRejectRedline*>(this))
{ // (can't check here if there's a delete redline being accepted)
sw::UpdateFramesForAddDeleteRedline(rDoc, rPam);
}
}
void SwUndoRedline::RedoImpl(::sw::UndoRedoContext & rContext)
{
SwDoc& rDoc = rContext.GetDoc();
RedlineFlags eOld = rDoc.getIDocumentRedlineAccess().GetRedlineFlags();
rDoc.getIDocumentRedlineAccess().SetRedlineFlags_intern(( eOld & ~RedlineFlags::Ignore) | RedlineFlags::On );
SwPaM & rPam( AddUndoRedoPaM(rContext) );
if( mpRedlSaveData && mbHiddenRedlines )
{
SwNodeOffset nEndExtra = rDoc.GetNodes().GetEndOfExtras().GetIndex();
FillSaveData(rPam, *mpRedlSaveData, false, SwUndoId::REJECT_REDLINE != mnUserId );
nEndExtra -= rDoc.GetNodes().GetEndOfExtras().GetIndex();
m_nSttNode -= nEndExtra;
m_nEndNode -= nEndExtra;
}
RedoRedlineImpl(rDoc, rPam);
SetPaM(rPam, true);
rDoc.getIDocumentRedlineAccess().SetRedlineFlags_intern( eOld );
}
void SwUndoRedline::UndoRedlineImpl(SwDoc &, SwPaM &)
{
}
// default: remove redlines
void SwUndoRedline::RedoRedlineImpl(SwDoc & rDoc, SwPaM & rPam)
{
rDoc.getIDocumentRedlineAccess().DeleteRedline(rPam, true, RedlineType::Any);
}
SwUndoRedlineDelete::SwUndoRedlineDelete(
const SwPaM& rRange, SwUndoId const nUsrId, SwDeleteFlags const flags)
: SwUndoRedline( nUsrId != SwUndoId::EMPTY ? nUsrId : SwUndoId::DELETE, rRange ),
m_bCanGroup( false ), m_bIsDelim( false ), m_bIsBackspace( false )
{
const SwTextNode* pTNd;
SetRedlineText(rRange.GetText());
if( SwUndoId::DELETE == mnUserId &&
m_nSttNode == m_nEndNode && m_nSttContent + 1 == m_nEndContent &&
nullptr != (pTNd = rRange.GetNode().GetTextNode()) )
{
sal_Unicode const cCh = pTNd->GetText()[m_nSttContent];
if( CH_TXTATR_BREAKWORD != cCh && CH_TXTATR_INWORD != cCh )
{
m_bCanGroup = true;
m_bIsDelim = !GetAppCharClass().isLetterNumeric( pTNd->GetText(),
m_nSttContent );
m_bIsBackspace = m_nSttContent == rRange.GetPoint()->nContent.GetIndex();
}
}
m_bCacheComment = false;
if (flags & SwDeleteFlags::ArtificialSelection)
{
InitHistory(rRange);
}
}
void SwUndoRedlineDelete::InitHistory(SwPaM const& rRedline)
{
m_pHistory.reset(new SwHistory);
// try to rely on direction of rPam here so it works for
// backspacing/deleting consecutive characters
SaveFlyArr flys;
SaveFlyInRange(rRedline, *rRedline.GetMark(), flys, false, m_pHistory.get());
RestFlyInRange(flys, *rRedline.GetPoint(), &rRedline.GetPoint()->nNode, true);
if (m_pHistory->Count())
{
m_bCanGroup = false; // how to group history?
}
}
// bit of a hack, replace everything...
SwRewriter SwUndoRedlineDelete::GetRewriter() const
{
SwRewriter aResult;
OUString aStr = DenoteSpecialCharacters(m_sRedlineText);
aStr = ShortenString(aStr, nUndoStringLength, SwResId(STR_LDOTS));
SwRewriter aRewriter;
aRewriter.AddRule(UndoArg1, aStr);
OUString ret = aRewriter.Apply(SwResId(STR_UNDO_REDLINE_DELETE));
aResult.AddRule(UndoArg1, ret);
return aResult;
}
void SwUndoRedlineDelete::SetRedlineText(const OUString & rText)
{
m_sRedlineText = rText;
}
void SwUndoRedlineDelete::UndoRedlineImpl(SwDoc & rDoc, SwPaM & rPam)
{
rDoc.getIDocumentRedlineAccess().DeleteRedline(rPam, true, RedlineType::Any);
if (m_pHistory)
{
m_pHistory->TmpRollback(&rDoc, 0);
}
}
void SwUndoRedlineDelete::RedoRedlineImpl(SwDoc & rDoc, SwPaM & rPam)
{
if (rPam.GetPoint() != rPam.GetMark())
{
if (m_pHistory) // if it was created before, it must be recreated now
{
rPam.Normalize(m_bIsBackspace); // to check the correct edge
InitHistory(rPam);
}
rDoc.getIDocumentRedlineAccess().AppendRedline( new SwRangeRedline(*mpRedlData, rPam), false );
}
sw::UpdateFramesForAddDeleteRedline(rDoc, rPam);
}
bool SwUndoRedlineDelete::CanGrouping( const SwUndoRedlineDelete& rNext )
{
bool bRet = false;
if( SwUndoId::DELETE == mnUserId && mnUserId == rNext.mnUserId &&
m_bCanGroup && rNext.m_bCanGroup &&
m_bIsDelim == rNext.m_bIsDelim &&
m_bIsBackspace == rNext.m_bIsBackspace &&
m_nSttNode == m_nEndNode &&
rNext.m_nSttNode == m_nSttNode &&
rNext.m_nEndNode == m_nEndNode )
{
int bIsEnd = 0;
if( rNext.m_nSttContent == m_nEndContent )
bIsEnd = 1;
else if( rNext.m_nEndContent == m_nSttContent )
bIsEnd = -1;
if( bIsEnd &&
(( !mpRedlSaveData && !rNext.mpRedlSaveData ) ||
( mpRedlSaveData && rNext.mpRedlSaveData &&
SwUndo::CanRedlineGroup( *mpRedlSaveData,
*rNext.mpRedlSaveData, 1 != bIsEnd )
)))
{
if( 1 == bIsEnd )
m_nEndContent = rNext.m_nEndContent;
else
m_nSttContent = rNext.m_nSttContent;
bRet = true;
}
}
return bRet;
}
SwUndoRedlineSort::SwUndoRedlineSort( const SwPaM& rRange,
const SwSortOptions& rOpt )
: SwUndoRedline( SwUndoId::SORT_TXT, rRange ),
m_pOpt( new SwSortOptions( rOpt ) ),
m_nSaveEndNode( m_nEndNode ), m_nSaveEndContent( m_nEndContent )
{
}
SwUndoRedlineSort::~SwUndoRedlineSort()
{
}
void SwUndoRedlineSort::UndoRedlineImpl(SwDoc & rDoc, SwPaM & rPam)
{
// rPam contains the sorted range
// aSaveRange contains copied (i.e. original) range
SwPosition *const pStart = rPam.Start();
SwPosition *const pEnd = rPam.End();
SwNodeIndex aPrevIdx( pStart->nNode, -1 );
SwNodeOffset nOffsetTemp = pEnd->nNode.GetIndex() - pStart->nNode.GetIndex();
if( !( RedlineFlags::ShowDelete & rDoc.getIDocumentRedlineAccess().GetRedlineFlags()) )
{
// Search both Redline objects and make them visible to make the nodes
// consistent again. The 'delete' one is hidden, thus search for the
// 'insert' Redline object. The former is located directly after the latter.
SwRedlineTable::size_type nFnd = rDoc.getIDocumentRedlineAccess().GetRedlinePos(
*rDoc.GetNodes()[ m_nSttNode + 1 ],
RedlineType::Insert );
OSL_ENSURE( SwRedlineTable::npos != nFnd && nFnd+1 < rDoc.getIDocumentRedlineAccess().GetRedlineTable().size(),
"could not find an Insert object" );
++nFnd;
rDoc.getIDocumentRedlineAccess().GetRedlineTable()[nFnd]->Show(1, nFnd);
}
{
SwPaM aTmp( *rPam.GetMark() );
aTmp.GetMark()->nContent = 0;
aTmp.SetMark();
aTmp.GetPoint()->nNode = m_nSaveEndNode;
aTmp.GetPoint()->nContent.Assign( aTmp.GetContentNode(), m_nSaveEndContent );
rDoc.getIDocumentRedlineAccess().DeleteRedline( aTmp, true, RedlineType::Any );
}
rDoc.getIDocumentContentOperations().DelFullPara(rPam);
SwPaM *const pPam = & rPam;
pPam->DeleteMark();
pPam->GetPoint()->nNode.Assign( aPrevIdx.GetNode(), +1 );
SwContentNode* pCNd = pPam->GetContentNode();
pPam->GetPoint()->nContent.Assign(pCNd, 0 );
pPam->SetMark();
pPam->GetPoint()->nNode += nOffsetTemp;
pCNd = pPam->GetContentNode();
pPam->GetPoint()->nContent.Assign( pCNd, pCNd->Len() );
SetValues( *pPam );
SetPaM(rPam);
}
void SwUndoRedlineSort::RedoRedlineImpl(SwDoc & rDoc, SwPaM & rPam)
{
SwPaM* pPam = &rPam;
SwPosition* pStart = pPam->Start();
SwPosition* pEnd = pPam->End();
SwNodeIndex aPrevIdx( pStart->nNode, -1 );
SwNodeOffset nOffsetTemp = pEnd->nNode.GetIndex() - pStart->nNode.GetIndex();
const sal_Int32 nCntStt = pStart->nContent.GetIndex();
rDoc.SortText(rPam, *m_pOpt);
pPam->DeleteMark();
pPam->GetPoint()->nNode.Assign( aPrevIdx.GetNode(), +1 );
SwContentNode* pCNd = pPam->GetContentNode();
sal_Int32 nLen = pCNd->Len();
if( nLen > nCntStt )
nLen = nCntStt;
pPam->GetPoint()->nContent.Assign(pCNd, nLen );
pPam->SetMark();
pPam->GetPoint()->nNode += nOffsetTemp;
pCNd = pPam->GetContentNode();
pPam->GetPoint()->nContent.Assign( pCNd, pCNd->Len() );
SetValues( rPam );
SetPaM( rPam );
rPam.GetPoint()->nNode = m_nSaveEndNode;
rPam.GetPoint()->nContent.Assign( rPam.GetContentNode(), m_nSaveEndContent );
}
void SwUndoRedlineSort::RepeatImpl(::sw::RepeatContext & rContext)
{
rContext.GetDoc().SortText( rContext.GetRepeatPaM(), *m_pOpt );
}
void SwUndoRedlineSort::SetSaveRange( const SwPaM& rRange )
{
const SwPosition& rPos = *rRange.End();
m_nSaveEndNode = rPos.nNode.GetIndex();
m_nSaveEndContent = rPos.nContent.GetIndex();
}
SwUndoAcceptRedline::SwUndoAcceptRedline( const SwPaM& rRange )
: SwUndoRedline( SwUndoId::ACCEPT_REDLINE, rRange )
{
}
void SwUndoAcceptRedline::RedoRedlineImpl(SwDoc & rDoc, SwPaM & rPam)
{
rDoc.getIDocumentRedlineAccess().AcceptRedline(rPam, false);
}
void SwUndoAcceptRedline::RepeatImpl(::sw::RepeatContext & rContext)
{
rContext.GetDoc().getIDocumentRedlineAccess().AcceptRedline(rContext.GetRepeatPaM(), true);
}
SwUndoRejectRedline::SwUndoRejectRedline( const SwPaM& rRange )
: SwUndoRedline( SwUndoId::REJECT_REDLINE, rRange )
{
}
void SwUndoRejectRedline::RedoRedlineImpl(SwDoc & rDoc, SwPaM & rPam)
{
rDoc.getIDocumentRedlineAccess().RejectRedline(rPam, false);
}
void SwUndoRejectRedline::RepeatImpl(::sw::RepeatContext & rContext)
{
rContext.GetDoc().getIDocumentRedlineAccess().RejectRedline(rContext.GetRepeatPaM(), true);
}
SwUndoCompDoc::SwUndoCompDoc( const SwPaM& rRg, bool bIns )
: SwUndo( SwUndoId::COMPAREDOC, &rRg.GetDoc() ), SwUndRng( rRg ),
m_bInsert( bIns )
{
SwDoc& rDoc = rRg.GetDoc();
if( rDoc.getIDocumentRedlineAccess().IsRedlineOn() )
{
RedlineType eTyp = m_bInsert ? RedlineType::Insert : RedlineType::Delete;
m_pRedlineData.reset( new SwRedlineData( eTyp, rDoc.getIDocumentRedlineAccess().GetRedlineAuthor() ) );
SetRedlineFlags( rDoc.getIDocumentRedlineAccess().GetRedlineFlags() );
}
}
SwUndoCompDoc::SwUndoCompDoc( const SwRangeRedline& rRedl )
: SwUndo( SwUndoId::COMPAREDOC, &rRedl.GetDoc() ), SwUndRng( rRedl ),
// for MergeDoc the corresponding inverse is needed
m_bInsert( RedlineType::Delete == rRedl.GetType() )
{
SwDoc& rDoc = rRedl.GetDoc();
if( rDoc.getIDocumentRedlineAccess().IsRedlineOn() )
{
m_pRedlineData.reset( new SwRedlineData( rRedl.GetRedlineData() ) );
SetRedlineFlags( rDoc.getIDocumentRedlineAccess().GetRedlineFlags() );
}
m_pRedlineSaveDatas.reset( new SwRedlineSaveDatas );
if( !FillSaveData( rRedl, *m_pRedlineSaveDatas, false ))
{
m_pRedlineSaveDatas.reset();
}
}
SwUndoCompDoc::~SwUndoCompDoc()
{
m_pRedlineData.reset();
m_pUndoDelete.reset();
m_pUndoDelete2.reset();
m_pRedlineSaveDatas.reset();
}
void SwUndoCompDoc::UndoImpl(::sw::UndoRedoContext & rContext)
{
SwDoc& rDoc = rContext.GetDoc();
SwPaM& rPam(AddUndoRedoPaM(rContext));
if( !m_bInsert )
{
// delete Redlines
RedlineFlags eOld = rDoc.getIDocumentRedlineAccess().GetRedlineFlags();
rDoc.getIDocumentRedlineAccess().SetRedlineFlags_intern(( eOld & ~RedlineFlags::Ignore) | RedlineFlags::On);
rDoc.getIDocumentRedlineAccess().DeleteRedline(rPam, true, RedlineType::Any);
rDoc.getIDocumentRedlineAccess().SetRedlineFlags_intern( eOld );
// per definition Point is end (in SwUndRng!)
SwContentNode* pCSttNd = rPam.GetContentNode(false);
SwContentNode* pCEndNd = rPam.GetContentNode();
// if start- and end-content is zero, then the doc-compare moves
// complete nodes into the current doc. And then the selection
// must be from end to start, so the delete join into the right
// direction.
if( !m_nSttContent && !m_nEndContent )
rPam.Exchange();
bool bJoinText, bJoinPrev;
sw_GetJoinFlags(rPam, bJoinText, bJoinPrev);
m_pUndoDelete.reset(new SwUndoDelete(rPam, SwDeleteFlags::Default, false));
if( bJoinText )
sw_JoinText(rPam, bJoinPrev);
if( pCSttNd && !pCEndNd)
{
// #112139# Do not step behind the end of content.
SwNode & rTmp = rPam.GetNode();
SwNode * pEnd = rDoc.GetNodes().DocumentSectionEndNode(&rTmp);
if (&rTmp != pEnd)
{
rPam.SetMark();
++rPam.GetPoint()->nNode;
rPam.GetBound().nContent.Assign( nullptr, 0 );
rPam.GetBound( false ).nContent.Assign( nullptr, 0 );
m_pUndoDelete2.reset(new SwUndoDelete(rPam, SwDeleteFlags::Default, true));
}
}
rPam.DeleteMark();
}
else
{
if( IDocumentRedlineAccess::IsRedlineOn( GetRedlineFlags() ))
{
rDoc.getIDocumentRedlineAccess().DeleteRedline(rPam, true, RedlineType::Any);
if( m_pRedlineSaveDatas )
SetSaveData(rDoc, *m_pRedlineSaveDatas);
}
SetPaM(rPam, true);
}
}
void SwUndoCompDoc::RedoImpl(::sw::UndoRedoContext & rContext)
{
SwDoc& rDoc = rContext.GetDoc();
if( m_bInsert )
{
SwPaM& rPam(AddUndoRedoPaM(rContext));
if( m_pRedlineData && IDocumentRedlineAccess::IsRedlineOn( GetRedlineFlags() ))
{
SwRangeRedline* pTmp = new SwRangeRedline(*m_pRedlineData, rPam);
rDoc.getIDocumentRedlineAccess().GetRedlineTable().Insert( pTmp );
pTmp->InvalidateRange(SwRangeRedline::Invalidation::Add);
}
else if( !( RedlineFlags::Ignore & GetRedlineFlags() ) &&
!rDoc.getIDocumentRedlineAccess().GetRedlineTable().empty() )
{
rDoc.getIDocumentRedlineAccess().SplitRedline(rPam);
}
SetPaM(rPam, true);
}
else
{
if( m_pUndoDelete2 )
{
m_pUndoDelete2->UndoImpl(rContext);
m_pUndoDelete2.reset();
}
m_pUndoDelete->UndoImpl(rContext);
m_pUndoDelete.reset();
// note: don't call SetPaM before executing Undo of members
SwPaM& rPam(AddUndoRedoPaM(rContext));
SwRangeRedline* pTmp = new SwRangeRedline(*m_pRedlineData, rPam);
rDoc.getIDocumentRedlineAccess().GetRedlineTable().Insert( pTmp );
pTmp->InvalidateRange(SwRangeRedline::Invalidation::Add);
SetPaM(rPam, true);
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|