Files
libreoffice/sw/source/core/undo/unspnd.cxx
Adam Co 4a68f12691 Renamed 'SwRedline' to 'SwRangeRedline'
This is in preparation to adding more types of 'SwRedlines'.

Change-Id: Id61217ed3c4622f7689427ea9f30e364f6bb65d1
Reviewed-on: https://gerrit.libreoffice.org/7410
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
2014-01-13 16:40:46 +00:00

195 lines
6.7 KiB
C++

/* -*- 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 <UndoSplitMove.hxx>
#include "doc.hxx"
#include "pam.hxx"
#include "swtable.hxx"
#include "ndtxt.hxx"
#include "swundo.hxx"
#include <editeng/formatbreakitem.hxx>
#include <fmtpdsc.hxx>
#include <frmfmt.hxx>
#include <UndoCore.hxx>
#include "rolbck.hxx"
#include "redline.hxx"
#include "docary.hxx"
#include <IShellCursorSupplier.hxx>
//------------------------------------------------------------------
// SPLITNODE
SwUndoSplitNode::SwUndoSplitNode( SwDoc* pDoc, const SwPosition& rPos,
sal_Bool bChkTable )
: SwUndo( UNDO_SPLITNODE ), pHistory( 0 ), pRedlData( 0 ), nNode( rPos.nNode.GetIndex() ),
nCntnt( rPos.nContent.GetIndex() ),
bTblFlag( sal_False ), bChkTblStt( bChkTable )
{
SwTxtNode *const pTxtNd = rPos.nNode.GetNode().GetTxtNode();
OSL_ENSURE( pTxtNd, "only for TextNode" );
if( pTxtNd->GetpSwpHints() )
{
pHistory = new SwHistory;
pHistory->CopyAttr( pTxtNd->GetpSwpHints(), nNode, 0,
pTxtNd->GetTxt().getLength(), false );
if( !pHistory->Count() )
DELETEZ( pHistory );
}
// consider Redline
if( pDoc->IsRedlineOn() )
{
pRedlData = new SwRedlineData( nsRedlineType_t::REDLINE_INSERT, pDoc->GetRedlineAuthor() );
SetRedlineMode( pDoc->GetRedlineMode() );
}
nParRsid = pTxtNd->GetParRsid();
}
SwUndoSplitNode::~SwUndoSplitNode()
{
delete pHistory;
delete pRedlData;
}
void SwUndoSplitNode::UndoImpl(::sw::UndoRedoContext & rContext)
{
SwDoc *const pDoc = & rContext.GetDoc();
SwPaM & rPam( rContext.GetCursorSupplier().CreateNewShellCursor() );
rPam.DeleteMark();
if( bTblFlag )
{
// than a TextNode was added directly before the current table
SwNodeIndex& rIdx = rPam.GetPoint()->nNode;
rIdx = nNode;
SwTxtNode* pTNd;
SwNode* pCurrNd = pDoc->GetNodes()[ nNode + 1 ];
SwTableNode* pTblNd = pCurrNd->FindTableNode();
if( pCurrNd->IsCntntNode() && pTblNd &&
0 != ( pTNd = pDoc->GetNodes()[ pTblNd->GetIndex()-1 ]->GetTxtNode() ))
{
// move break attributes
SwFrmFmt* pTableFmt = pTblNd->GetTable().GetFrmFmt();
const SfxItemSet* pNdSet = pTNd->GetpSwAttrSet();
if( pNdSet )
{
const SfxPoolItem *pItem;
if( SFX_ITEM_SET == pNdSet->GetItemState( RES_PAGEDESC, sal_False,
&pItem ) )
pTableFmt->SetFmtAttr( *pItem );
if( SFX_ITEM_SET == pNdSet->GetItemState( RES_BREAK, sal_False,
&pItem ) )
pTableFmt->SetFmtAttr( *pItem );
}
// than delete it again
SwNodeIndex aDelNd( *pTblNd, -1 );
rPam.GetPoint()->nContent.Assign( (SwCntntNode*)pCurrNd, 0 );
RemoveIdxRel( aDelNd.GetIndex(), *rPam.GetPoint() );
pDoc->GetNodes().Delete( aDelNd );
}
}
else
{
SwTxtNode * pTNd = pDoc->GetNodes()[ nNode ]->GetTxtNode();
if( pTNd )
{
rPam.GetPoint()->nNode = *pTNd;
rPam.GetPoint()->nContent.Assign(pTNd, pTNd->GetTxt().getLength());
if( IDocumentRedlineAccess::IsRedlineOn( GetRedlineMode() ))
{
rPam.SetMark();
rPam.GetMark()->nNode++;
rPam.GetMark()->nContent.Assign( rPam.GetMark()->
nNode.GetNode().GetCntntNode(), 0 );
pDoc->DeleteRedline( rPam, true, USHRT_MAX );
rPam.DeleteMark();
}
RemoveIdxRel( nNode+1, *rPam.GetPoint() );
pTNd->JoinNext();
if( pHistory )
{
rPam.GetPoint()->nContent = 0;
rPam.SetMark();
rPam.GetPoint()->nContent = pTNd->GetTxt().getLength();
pDoc->RstTxtAttrs( rPam, true );
pHistory->TmpRollback( pDoc, 0, false );
}
pDoc->UpdateParRsid( pTNd, nParRsid );
}
}
// also set the cursor onto undo section
rPam.DeleteMark();
rPam.GetPoint()->nNode = nNode;
rPam.GetPoint()->nContent.Assign( rPam.GetCntntNode(), nCntnt );
}
void SwUndoSplitNode::RedoImpl(::sw::UndoRedoContext & rContext)
{
SwPaM & rPam( rContext.GetCursorSupplier().CreateNewShellCursor() );
rPam.GetPoint()->nNode = nNode;
SwTxtNode * pTNd = rPam.GetNode()->GetTxtNode();
OSL_ENSURE(pTNd, "SwUndoSplitNode::RedoImpl(): SwTxtNode expected");
if (pTNd)
{
rPam.GetPoint()->nContent.Assign( pTNd, nCntnt );
SwDoc* pDoc = rPam.GetDoc();
pDoc->SplitNode( *rPam.GetPoint(), bChkTblStt );
if( pHistory )
pHistory->SetTmpEnd( pHistory->Count() );
if( ( pRedlData && IDocumentRedlineAccess::IsRedlineOn( GetRedlineMode() )) ||
( !( nsRedlineMode_t::REDLINE_IGNORE & GetRedlineMode() ) &&
!pDoc->GetRedlineTbl().empty() ))
{
rPam.SetMark();
if( rPam.Move( fnMoveBackward ))
{
if( pRedlData && IDocumentRedlineAccess::IsRedlineOn( GetRedlineMode() ))
{
RedlineMode_t eOld = pDoc->GetRedlineMode();
pDoc->SetRedlineMode_intern((RedlineMode_t)(eOld & ~nsRedlineMode_t::REDLINE_IGNORE));
pDoc->AppendRedline( new SwRangeRedline( *pRedlData, rPam ), true);
pDoc->SetRedlineMode_intern( eOld );
}
else
pDoc->SplitRedline( rPam );
rPam.Exchange();
}
rPam.DeleteMark();
}
}
}
void SwUndoSplitNode::RepeatImpl(::sw::RepeatContext & rContext)
{
rContext.GetDoc().SplitNode(
*rContext.GetRepeatPaM().GetPoint(), bChkTblStt );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */