1068 lines
32 KiB
C++
1068 lines
32 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*************************************************************************
|
|
*
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* This file is part of OpenOffice.org.
|
|
*
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
* only, as published by the Free Software Foundation.
|
|
*
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License version 3 for more details
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
* <http://www.openoffice.org/license.html>
|
|
* for a copy of the LGPLv3 License.
|
|
*
|
|
************************************************************************/
|
|
|
|
|
|
#include <UndoInsert.hxx>
|
|
|
|
#include <hintids.hxx>
|
|
#include <unotools/charclass.hxx>
|
|
#include <sot/storage.hxx>
|
|
#include <editeng/keepitem.hxx>
|
|
#include <svx/svdobj.hxx>
|
|
|
|
#include <docsh.hxx>
|
|
#include <fmtcntnt.hxx>
|
|
#include <fmtanchr.hxx>
|
|
#include <frmfmt.hxx>
|
|
#include <doc.hxx>
|
|
#include <IDocumentUndoRedo.hxx>
|
|
#include <swundo.hxx>
|
|
#include <pam.hxx>
|
|
#include <ndtxt.hxx>
|
|
#include <UndoCore.hxx>
|
|
#include <UndoDelete.hxx>
|
|
#include <UndoAttribute.hxx>
|
|
#include <rolbck.hxx>
|
|
#include <ndgrf.hxx>
|
|
#include <ndole.hxx>
|
|
#include <grfatr.hxx>
|
|
#include <cntfrm.hxx>
|
|
#include <flyfrm.hxx>
|
|
#include <fesh.hxx>
|
|
#include <swtable.hxx>
|
|
#include <redline.hxx>
|
|
#include <docary.hxx>
|
|
#include <acorrect.hxx>
|
|
#include <dcontact.hxx>
|
|
|
|
#include <comcore.hrc> // #111827#
|
|
#include <undo.hrc>
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
|
//------------------------------------------------------------
|
|
|
|
// INSERT
|
|
|
|
String * SwUndoInsert::GetTxtFromDoc() const
|
|
{
|
|
String * pResult = NULL;
|
|
|
|
SwNodeIndex aNd( pDoc->GetNodes(), nNode);
|
|
SwCntntNode* pCNd = aNd.GetNode().GetCntntNode();
|
|
SwPaM aPaM( *pCNd, nCntnt );
|
|
|
|
aPaM.SetMark();
|
|
|
|
if( pCNd->IsTxtNode() )
|
|
{
|
|
pResult = new String( ((SwTxtNode*)pCNd)->GetTxt().Copy(nCntnt-nLen,
|
|
nLen ) );
|
|
|
|
}
|
|
|
|
return pResult;
|
|
}
|
|
|
|
void SwUndoInsert::Init(const SwNodeIndex & rNd)
|
|
{
|
|
// consider Redline
|
|
pDoc = rNd.GetNode().GetDoc();
|
|
if( pDoc->IsRedlineOn() )
|
|
{
|
|
pRedlData = new SwRedlineData( nsRedlineType_t::REDLINE_INSERT,
|
|
pDoc->GetRedlineAuthor() );
|
|
SetRedlineMode( pDoc->GetRedlineMode() );
|
|
}
|
|
|
|
pUndoTxt = GetTxtFromDoc();
|
|
|
|
bCacheComment = false;
|
|
}
|
|
|
|
// #111827#
|
|
SwUndoInsert::SwUndoInsert( const SwNodeIndex& rNd, xub_StrLen nCnt,
|
|
xub_StrLen nL,
|
|
const IDocumentContentOperations::InsertFlags nInsertFlags,
|
|
sal_Bool bWDelim )
|
|
: SwUndo(UNDO_TYPING), pPos( 0 ), pTxt( 0 ), pRedlData( 0 ),
|
|
nNode( rNd.GetIndex() ), nCntnt(nCnt), nLen(nL),
|
|
bIsWordDelim( bWDelim ), bIsAppend( sal_False )
|
|
, m_nInsertFlags(nInsertFlags)
|
|
{
|
|
Init(rNd);
|
|
}
|
|
|
|
// #111827#
|
|
SwUndoInsert::SwUndoInsert( const SwNodeIndex& rNd )
|
|
: SwUndo(UNDO_SPLITNODE), pPos( 0 ), pTxt( 0 ),
|
|
pRedlData( 0 ), nNode( rNd.GetIndex() ), nCntnt(0), nLen(1),
|
|
bIsWordDelim( sal_False ), bIsAppend( sal_True )
|
|
, m_nInsertFlags(IDocumentContentOperations::INS_EMPTYEXPAND)
|
|
{
|
|
Init(rNd);
|
|
}
|
|
|
|
// Check if the next Insert can be combined with the current one. If so
|
|
// change the length and InsPos. As a result, SwDoc::Inser will not add a
|
|
// new object into the Undo list.
|
|
|
|
sal_Bool SwUndoInsert::CanGrouping( sal_Unicode cIns )
|
|
{
|
|
if( !bIsAppend && bIsWordDelim ==
|
|
!GetAppCharClass().isLetterNumeric( rtl::OUString( cIns )) )
|
|
{
|
|
nLen++;
|
|
nCntnt++;
|
|
|
|
if (pUndoTxt)
|
|
pUndoTxt->Insert(cIns);
|
|
|
|
return sal_True;
|
|
}
|
|
return sal_False;
|
|
}
|
|
|
|
sal_Bool SwUndoInsert::CanGrouping( const SwPosition& rPos )
|
|
{
|
|
sal_Bool bRet = sal_False;
|
|
if( nNode == rPos.nNode.GetIndex() &&
|
|
nCntnt == rPos.nContent.GetIndex() )
|
|
{
|
|
// consider Redline
|
|
SwDoc& rDoc = *rPos.nNode.GetNode().GetDoc();
|
|
if( ( ~nsRedlineMode_t::REDLINE_SHOW_MASK & rDoc.GetRedlineMode() ) ==
|
|
( ~nsRedlineMode_t::REDLINE_SHOW_MASK & GetRedlineMode() ) )
|
|
{
|
|
bRet = sal_True;
|
|
|
|
// than there is or was still an active Redline:
|
|
// Check if there is another Redline at the InsPosition. If the
|
|
// same exists only once, it can be combined.
|
|
const SwRedlineTbl& rTbl = rDoc.GetRedlineTbl();
|
|
if( !rTbl.empty() )
|
|
{
|
|
SwRedlineData aRData( nsRedlineType_t::REDLINE_INSERT, rDoc.GetRedlineAuthor() );
|
|
const SwIndexReg* pIReg = rPos.nContent.GetIdxReg();
|
|
SwIndex* pIdx;
|
|
for( sal_uInt16 i = 0; i < rTbl.size(); ++i )
|
|
{
|
|
SwRedline* pRedl = rTbl[ i ];
|
|
if( pIReg == (pIdx = &pRedl->End()->nContent)->GetIdxReg() &&
|
|
nCntnt == pIdx->GetIndex() )
|
|
{
|
|
if( !pRedl->HasMark() || !pRedlData ||
|
|
*pRedl != *pRedlData || *pRedl != aRData )
|
|
{
|
|
bRet = sal_False;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return bRet;
|
|
}
|
|
|
|
SwUndoInsert::~SwUndoInsert()
|
|
{
|
|
if( pPos ) // delete the section from UndoNodes array
|
|
{
|
|
// Insert saves the content in IconSection
|
|
SwNodes& rUNds = pPos->nNode.GetNode().GetNodes();
|
|
if( pPos->nContent.GetIndex() ) // do not delete the whole node
|
|
{
|
|
SwTxtNode* pTxtNd = pPos->nNode.GetNode().GetTxtNode();
|
|
OSL_ENSURE( pTxtNd, "no TextNode to delete from" );
|
|
pTxtNd->EraseText( pPos->nContent );
|
|
pPos->nNode++;
|
|
}
|
|
pPos->nContent.Assign( 0, 0 );
|
|
rUNds.Delete( pPos->nNode, rUNds.GetEndOfExtras().GetIndex() -
|
|
pPos->nNode.GetIndex() );
|
|
delete pPos;
|
|
}
|
|
else if( pTxt ) // the inserted text
|
|
delete pTxt;
|
|
delete pRedlData;
|
|
delete pUndoTxt;
|
|
}
|
|
|
|
|
|
|
|
void SwUndoInsert::UndoImpl(::sw::UndoRedoContext & rContext)
|
|
{
|
|
SwDoc *const pTmpDoc = & rContext.GetDoc();
|
|
SwPaM *const pPam(& rContext.GetCursorSupplier().CreateNewShellCursor());
|
|
|
|
if( bIsAppend )
|
|
{
|
|
pPam->GetPoint()->nNode = nNode;
|
|
|
|
if( IDocumentRedlineAccess::IsRedlineOn( GetRedlineMode() ))
|
|
{
|
|
pPam->GetPoint()->nContent.Assign( pPam->GetCntntNode(), 0 );
|
|
pPam->SetMark();
|
|
pPam->Move( fnMoveBackward );
|
|
pPam->Exchange();
|
|
pTmpDoc->DeleteRedline( *pPam, true, USHRT_MAX );
|
|
}
|
|
pPam->DeleteMark();
|
|
pTmpDoc->DelFullPara( *pPam );
|
|
pPam->GetPoint()->nContent.Assign( pPam->GetCntntNode(), 0 );
|
|
}
|
|
else
|
|
{
|
|
sal_uLong nNd = nNode;
|
|
xub_StrLen nCnt = nCntnt;
|
|
if( nLen )
|
|
{
|
|
SwNodeIndex aNd( pTmpDoc->GetNodes(), nNode);
|
|
SwCntntNode* pCNd = aNd.GetNode().GetCntntNode();
|
|
SwPaM aPaM( *pCNd, nCntnt );
|
|
|
|
aPaM.SetMark();
|
|
|
|
SwTxtNode * const pTxtNode( pCNd->GetTxtNode() );
|
|
if ( pTxtNode )
|
|
{
|
|
aPaM.GetPoint()->nContent -= nLen;
|
|
if( IDocumentRedlineAccess::IsRedlineOn( GetRedlineMode() ))
|
|
pTmpDoc->DeleteRedline( aPaM, true, USHRT_MAX );
|
|
RemoveIdxFromRange( aPaM, sal_False );
|
|
pTxt = new String( pTxtNode->GetTxt().Copy(nCntnt-nLen, nLen) );
|
|
pTxtNode->EraseText( aPaM.GetPoint()->nContent, nLen );
|
|
}
|
|
else // otherwise Graphics/OLE/Text/...
|
|
{
|
|
aPaM.Move(fnMoveBackward);
|
|
if( IDocumentRedlineAccess::IsRedlineOn( GetRedlineMode() ))
|
|
pTmpDoc->DeleteRedline( aPaM, true, USHRT_MAX );
|
|
RemoveIdxFromRange( aPaM, sal_False );
|
|
}
|
|
|
|
nNd = aPaM.GetPoint()->nNode.GetIndex();
|
|
nCnt = aPaM.GetPoint()->nContent.GetIndex();
|
|
|
|
if( !pTxt )
|
|
{
|
|
pPos = new SwPosition( *aPaM.GetPoint() );
|
|
MoveToUndoNds( aPaM, &pPos->nNode, &pPos->nContent );
|
|
}
|
|
nNode = aPaM.GetPoint()->nNode.GetIndex();
|
|
nCntnt = aPaM.GetPoint()->nContent.GetIndex();
|
|
}
|
|
|
|
// set cursor to Undo range
|
|
pPam->DeleteMark();
|
|
|
|
pPam->GetPoint()->nNode = nNd;
|
|
pPam->GetPoint()->nContent.Assign(
|
|
pPam->GetPoint()->nNode.GetNode().GetCntntNode(), nCnt );
|
|
}
|
|
|
|
DELETEZ(pUndoTxt);
|
|
}
|
|
|
|
|
|
void SwUndoInsert::RedoImpl(::sw::UndoRedoContext & rContext)
|
|
{
|
|
SwDoc *const pTmpDoc = & rContext.GetDoc();
|
|
SwPaM *const pPam(& rContext.GetCursorSupplier().CreateNewShellCursor());
|
|
pPam->DeleteMark();
|
|
|
|
if( bIsAppend )
|
|
{
|
|
pPam->GetPoint()->nNode = nNode - 1;
|
|
pTmpDoc->AppendTxtNode( *pPam->GetPoint() );
|
|
|
|
pPam->SetMark();
|
|
pPam->Move( fnMoveBackward );
|
|
pPam->Exchange();
|
|
|
|
if( pRedlData && IDocumentRedlineAccess::IsRedlineOn( GetRedlineMode() ))
|
|
{
|
|
RedlineMode_t eOld = pTmpDoc->GetRedlineMode();
|
|
pTmpDoc->SetRedlineMode_intern((RedlineMode_t)(eOld & ~nsRedlineMode_t::REDLINE_IGNORE));
|
|
pTmpDoc->AppendRedline( new SwRedline( *pRedlData, *pPam ), true);
|
|
pTmpDoc->SetRedlineMode_intern( eOld );
|
|
}
|
|
else if( !( nsRedlineMode_t::REDLINE_IGNORE & GetRedlineMode() ) &&
|
|
!pTmpDoc->GetRedlineTbl().empty() )
|
|
pTmpDoc->SplitRedline( *pPam );
|
|
|
|
pPam->DeleteMark();
|
|
}
|
|
else
|
|
{
|
|
pPam->GetPoint()->nNode = nNode;
|
|
SwCntntNode *const pCNd =
|
|
pPam->GetPoint()->nNode.GetNode().GetCntntNode();
|
|
pPam->GetPoint()->nContent.Assign( pCNd, nCntnt );
|
|
|
|
if( nLen )
|
|
{
|
|
sal_Bool bMvBkwrd = MovePtBackward( *pPam );
|
|
|
|
if( pTxt )
|
|
{
|
|
SwTxtNode *const pTxtNode = pCNd->GetTxtNode();
|
|
OSL_ENSURE( pTxtNode, "where is my textnode ?" );
|
|
pTxtNode->InsertText( *pTxt, pPam->GetMark()->nContent,
|
|
m_nInsertFlags );
|
|
DELETEZ( pTxt );
|
|
}
|
|
else
|
|
{
|
|
// re-insert content (log out pPos before!)
|
|
sal_uLong nMvNd = pPos->nNode.GetIndex();
|
|
xub_StrLen nMvCnt = pPos->nContent.GetIndex();
|
|
DELETEZ( pPos );
|
|
MoveFromUndoNds( *pTmpDoc, nMvNd, nMvCnt, *pPam->GetMark() );
|
|
}
|
|
nNode = pPam->GetMark()->nNode.GetIndex();
|
|
nCntnt = pPam->GetMark()->nContent.GetIndex();
|
|
|
|
MovePtForward( *pPam, bMvBkwrd );
|
|
pPam->Exchange();
|
|
if( pRedlData && IDocumentRedlineAccess::IsRedlineOn( GetRedlineMode() ))
|
|
{
|
|
RedlineMode_t eOld = pTmpDoc->GetRedlineMode();
|
|
pTmpDoc->SetRedlineMode_intern((RedlineMode_t)(eOld & ~nsRedlineMode_t::REDLINE_IGNORE));
|
|
pTmpDoc->AppendRedline( new SwRedline( *pRedlData,
|
|
*pPam ), true);
|
|
pTmpDoc->SetRedlineMode_intern( eOld );
|
|
}
|
|
else if( !( nsRedlineMode_t::REDLINE_IGNORE & GetRedlineMode() ) &&
|
|
!pTmpDoc->GetRedlineTbl().empty() )
|
|
pTmpDoc->SplitRedline(*pPam);
|
|
}
|
|
}
|
|
|
|
pUndoTxt = GetTxtFromDoc();
|
|
}
|
|
|
|
|
|
void SwUndoInsert::RepeatImpl(::sw::RepeatContext & rContext)
|
|
{
|
|
if( !nLen )
|
|
return;
|
|
|
|
SwDoc & rDoc = rContext.GetDoc();
|
|
SwNodeIndex aNd( rDoc.GetNodes(), nNode );
|
|
SwCntntNode* pCNd = aNd.GetNode().GetCntntNode();
|
|
|
|
if( !bIsAppend && 1 == nLen ) // >1 than always Text, otherwise Graphics/OLE/Text/...
|
|
{
|
|
SwPaM aPaM( *pCNd, nCntnt );
|
|
aPaM.SetMark();
|
|
aPaM.Move(fnMoveBackward);
|
|
pCNd = aPaM.GetCntntNode();
|
|
}
|
|
|
|
// What happens with the possible selected range ???
|
|
|
|
switch( pCNd->GetNodeType() )
|
|
{
|
|
case ND_TEXTNODE:
|
|
if( bIsAppend )
|
|
{
|
|
rDoc.AppendTxtNode( *rContext.GetRepeatPaM().GetPoint() );
|
|
}
|
|
else
|
|
{
|
|
String aTxt( ((SwTxtNode*)pCNd)->GetTxt() );
|
|
::sw::GroupUndoGuard const undoGuard(rDoc.GetIDocumentUndoRedo());
|
|
rDoc.InsertString( rContext.GetRepeatPaM(),
|
|
aTxt.Copy( nCntnt - nLen, nLen ) );
|
|
}
|
|
break;
|
|
case ND_GRFNODE:
|
|
{
|
|
SwGrfNode* pGrfNd = (SwGrfNode*)pCNd;
|
|
String sFile, sFilter;
|
|
if( pGrfNd->IsGrfLink() )
|
|
pGrfNd->GetFileFilterNms( &sFile, &sFilter );
|
|
|
|
rDoc.Insert( rContext.GetRepeatPaM(), sFile, sFilter,
|
|
&pGrfNd->GetGrf(),
|
|
0/* Graphics collection*/, NULL, NULL );
|
|
}
|
|
break;
|
|
|
|
case ND_OLENODE:
|
|
{
|
|
// StarView does not yet provide an option to copy a StarOBJ
|
|
SvStorageRef aRef = new SvStorage( aEmptyStr );
|
|
SwOLEObj& rSwOLE = (SwOLEObj&)((SwOLENode*)pCNd)->GetOLEObj();
|
|
|
|
// temporary storage until object is inserted
|
|
// TODO/MBA: seems that here a physical copy is done - not as in drawing layer! Testing!
|
|
// TODO/LATER: Copying through the container would copy the replacement image as well
|
|
comphelper::EmbeddedObjectContainer aCnt;
|
|
::rtl::OUString aName = aCnt.CreateUniqueObjectName();
|
|
if ( aCnt.StoreEmbeddedObject( rSwOLE.GetOleRef(), aName, sal_True ) )
|
|
{
|
|
uno::Reference < embed::XEmbeddedObject > aNew = aCnt.GetEmbeddedObject( aName );
|
|
rDoc.Insert( rContext.GetRepeatPaM(),
|
|
svt::EmbeddedObjectRef( aNew,
|
|
static_cast<SwOLENode*>(pCNd)->GetAspect() ),
|
|
NULL, NULL, NULL );
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// #111827#
|
|
SwRewriter SwUndoInsert::GetRewriter() const
|
|
{
|
|
SwRewriter aResult;
|
|
String * pStr = NULL;
|
|
bool bDone = false;
|
|
|
|
if (pTxt)
|
|
pStr = pTxt;
|
|
else if (pUndoTxt)
|
|
pStr = pUndoTxt;
|
|
|
|
if (pStr)
|
|
{
|
|
String aString = ShortenString(DenoteSpecialCharacters(*pStr),
|
|
nUndoStringLength,
|
|
String(SW_RES(STR_LDOTS)));
|
|
|
|
aResult.AddRule(UndoArg1, aString);
|
|
|
|
bDone = true;
|
|
}
|
|
|
|
if ( ! bDone )
|
|
{
|
|
aResult.AddRule(UndoArg1, String("??", RTL_TEXTENCODING_ASCII_US));
|
|
}
|
|
|
|
return aResult;
|
|
}
|
|
|
|
|
|
// SwUndoReplace /////////////////////////////////////////////////////////
|
|
|
|
|
|
class SwUndoReplace::Impl
|
|
: private SwUndoSaveCntnt
|
|
{
|
|
::rtl::OUString m_sOld;
|
|
::rtl::OUString m_sIns;
|
|
sal_uLong m_nSttNd, m_nEndNd, m_nOffset;
|
|
xub_StrLen m_nSttCnt, m_nEndCnt, m_nSetPos, m_nSelEnd;
|
|
bool m_bSplitNext : 1;
|
|
bool m_bRegExp : 1;
|
|
// metadata references for paragraph and following para (if m_bSplitNext)
|
|
::boost::shared_ptr< ::sfx2::MetadatableUndo > m_pMetadataUndoStart;
|
|
::boost::shared_ptr< ::sfx2::MetadatableUndo > m_pMetadataUndoEnd;
|
|
|
|
public:
|
|
Impl(SwPaM const& rPam, ::rtl::OUString const& rIns, bool const bRegExp);
|
|
virtual ~Impl()
|
|
{
|
|
}
|
|
|
|
virtual void UndoImpl( ::sw::UndoRedoContext & );
|
|
virtual void RedoImpl( ::sw::UndoRedoContext & );
|
|
|
|
void SetEnd(SwPaM const& rPam);
|
|
|
|
::rtl::OUString const& GetOld() const { return m_sOld; }
|
|
::rtl::OUString const& GetIns() const { return m_sIns; }
|
|
};
|
|
|
|
|
|
SwUndoReplace::SwUndoReplace(SwPaM const& rPam,
|
|
::rtl::OUString const& rIns, bool const bRegExp)
|
|
: SwUndo( UNDO_REPLACE )
|
|
, m_pImpl(new Impl(rPam, rIns, bRegExp))
|
|
{
|
|
}
|
|
|
|
SwUndoReplace::~SwUndoReplace()
|
|
{
|
|
}
|
|
|
|
void SwUndoReplace::UndoImpl(::sw::UndoRedoContext & rContext)
|
|
{
|
|
m_pImpl->UndoImpl(rContext);
|
|
}
|
|
|
|
void SwUndoReplace::RedoImpl(::sw::UndoRedoContext & rContext)
|
|
{
|
|
m_pImpl->RedoImpl(rContext);
|
|
}
|
|
|
|
SwRewriter
|
|
MakeUndoReplaceRewriter(sal_uLong const occurrences,
|
|
::rtl::OUString const& sOld, ::rtl::OUString const& sNew)
|
|
{
|
|
SwRewriter aResult;
|
|
|
|
if (1 < occurrences)
|
|
{
|
|
aResult.AddRule(UndoArg1, String::CreateFromInt32(occurrences));
|
|
aResult.AddRule(UndoArg2, String(SW_RES(STR_OCCURRENCES_OF)));
|
|
|
|
String aTmpStr;
|
|
aTmpStr += String(SW_RES(STR_START_QUOTE));
|
|
aTmpStr += ShortenString(sOld, nUndoStringLength,
|
|
SW_RES(STR_LDOTS));
|
|
aTmpStr += String(SW_RES(STR_END_QUOTE));
|
|
aResult.AddRule(UndoArg3, aTmpStr);
|
|
}
|
|
else if (1 == occurrences)
|
|
{
|
|
{
|
|
String aTmpStr;
|
|
|
|
aTmpStr += String(SW_RES(STR_START_QUOTE));
|
|
// #i33488 #
|
|
aTmpStr += ShortenString(sOld, nUndoStringLength,
|
|
SW_RES(STR_LDOTS));
|
|
aTmpStr += String(SW_RES(STR_END_QUOTE));
|
|
aResult.AddRule(UndoArg1, aTmpStr);
|
|
}
|
|
|
|
aResult.AddRule(UndoArg2, String(SW_RES(STR_YIELDS)));
|
|
|
|
{
|
|
String aTmpStr;
|
|
|
|
aTmpStr += String(SW_RES(STR_START_QUOTE));
|
|
// #i33488 #
|
|
aTmpStr += ShortenString(sNew, nUndoStringLength,
|
|
SW_RES(STR_LDOTS));
|
|
aTmpStr += String(SW_RES(STR_END_QUOTE));
|
|
aResult.AddRule(UndoArg3, aTmpStr);
|
|
}
|
|
}
|
|
|
|
return aResult;
|
|
}
|
|
|
|
// #111827#
|
|
SwRewriter SwUndoReplace::GetRewriter() const
|
|
{
|
|
return MakeUndoReplaceRewriter(1, m_pImpl->GetOld(), m_pImpl->GetIns());
|
|
}
|
|
|
|
void SwUndoReplace::SetEnd(SwPaM const& rPam)
|
|
{
|
|
m_pImpl->SetEnd(rPam);
|
|
}
|
|
|
|
SwUndoReplace::Impl::Impl(
|
|
SwPaM const& rPam, ::rtl::OUString const& rIns, bool const bRegExp)
|
|
: m_sIns( rIns )
|
|
, m_nOffset( 0 )
|
|
, m_bRegExp(bRegExp)
|
|
{
|
|
|
|
const SwPosition * pStt( rPam.Start() );
|
|
const SwPosition * pEnd( rPam.End() );
|
|
|
|
m_nSttNd = m_nEndNd = pStt->nNode.GetIndex();
|
|
m_nSttCnt = pStt->nContent.GetIndex();
|
|
m_nSelEnd = m_nEndCnt = pEnd->nContent.GetIndex();
|
|
|
|
m_bSplitNext = m_nSttNd != pEnd->nNode.GetIndex();
|
|
|
|
SwTxtNode* pNd = pStt->nNode.GetNode().GetTxtNode();
|
|
OSL_ENSURE( pNd, "Dude, where's my TextNode?" );
|
|
|
|
pHistory = new SwHistory;
|
|
DelCntntIndex( *rPam.GetMark(), *rPam.GetPoint() );
|
|
|
|
m_nSetPos = pHistory->Count();
|
|
|
|
sal_uLong nNewPos = pStt->nNode.GetIndex();
|
|
m_nOffset = m_nSttNd - nNewPos;
|
|
|
|
if ( pNd->GetpSwpHints() )
|
|
{
|
|
pHistory->CopyAttr( pNd->GetpSwpHints(), nNewPos, 0,
|
|
pNd->GetTxt().Len(), true );
|
|
}
|
|
|
|
if ( m_bSplitNext )
|
|
{
|
|
if( pNd->HasSwAttrSet() )
|
|
pHistory->CopyFmtAttr( *pNd->GetpSwAttrSet(), nNewPos );
|
|
pHistory->Add( pNd->GetTxtColl(), nNewPos, ND_TEXTNODE );
|
|
|
|
SwTxtNode* pNext = pEnd->nNode.GetNode().GetTxtNode();
|
|
sal_uLong nTmp = pNext->GetIndex();
|
|
pHistory->CopyAttr( pNext->GetpSwpHints(), nTmp, 0,
|
|
pNext->GetTxt().Len(), true );
|
|
if( pNext->HasSwAttrSet() )
|
|
pHistory->CopyFmtAttr( *pNext->GetpSwAttrSet(), nTmp );
|
|
pHistory->Add( pNext->GetTxtColl(),nTmp, ND_TEXTNODE );
|
|
// METADATA: store
|
|
m_pMetadataUndoStart = pNd ->CreateUndo();
|
|
m_pMetadataUndoEnd = pNext->CreateUndo();
|
|
}
|
|
|
|
if( !pHistory->Count() )
|
|
delete pHistory, pHistory = 0;
|
|
|
|
xub_StrLen nECnt = m_bSplitNext ? pNd->GetTxt().Len()
|
|
: pEnd->nContent.GetIndex();
|
|
m_sOld = pNd->GetTxt().Copy( m_nSttCnt, nECnt - m_nSttCnt );
|
|
}
|
|
|
|
void SwUndoReplace::Impl::UndoImpl(::sw::UndoRedoContext & rContext)
|
|
{
|
|
SwDoc *const pDoc = & rContext.GetDoc();
|
|
SwPaM & rPam(rContext.GetCursorSupplier().CreateNewShellCursor());
|
|
rPam.DeleteMark();
|
|
|
|
SwTxtNode* pNd = pDoc->GetNodes()[ m_nSttNd - m_nOffset ]->GetTxtNode();
|
|
OSL_ENSURE( pNd, "Dude, where's my TextNode?" );
|
|
|
|
SwAutoCorrExceptWord* pACEWord = pDoc->GetAutoCorrExceptWord();
|
|
if( pACEWord )
|
|
{
|
|
if ((1 == m_sIns.getLength()) && (1 == m_sOld.getLength()))
|
|
{
|
|
SwPosition aPos( *pNd ); aPos.nContent.Assign( pNd, m_nSttCnt );
|
|
pACEWord->CheckChar( aPos, m_sOld[ 0 ] );
|
|
}
|
|
pDoc->SetAutoCorrExceptWord( 0 );
|
|
}
|
|
|
|
SwIndex aIdx( pNd, m_nSttCnt );
|
|
if( m_nSttNd == m_nEndNd )
|
|
{
|
|
pNd->EraseText( aIdx, sal_uInt16( m_sIns.getLength() ) );
|
|
}
|
|
else
|
|
{
|
|
rPam.GetPoint()->nNode = *pNd;
|
|
rPam.GetPoint()->nContent.Assign( pNd, m_nSttCnt );
|
|
rPam.SetMark();
|
|
rPam.GetPoint()->nNode = m_nEndNd - m_nOffset;
|
|
rPam.GetPoint()->nContent.Assign( rPam.GetCntntNode(), m_nEndCnt );
|
|
// move it out of the way so it is not registered at deleted node
|
|
aIdx.Assign(0, 0);
|
|
|
|
pDoc->DeleteAndJoin( rPam );
|
|
rPam.DeleteMark();
|
|
pNd = rPam.GetNode()->GetTxtNode();
|
|
OSL_ENSURE( pNd, "Dude, where's my TextNode?" );
|
|
aIdx.Assign( pNd, m_nSttCnt );
|
|
}
|
|
|
|
if( m_bSplitNext )
|
|
{
|
|
SwPosition aPos( *pNd, aIdx );
|
|
pDoc->SplitNode( aPos, false );
|
|
pNd->RestoreMetadata(m_pMetadataUndoEnd);
|
|
pNd = pDoc->GetNodes()[ m_nSttNd - m_nOffset ]->GetTxtNode();
|
|
aIdx.Assign( pNd, m_nSttCnt );
|
|
// METADATA: restore
|
|
pNd->RestoreMetadata(m_pMetadataUndoStart);
|
|
}
|
|
|
|
if (!m_sOld.isEmpty())
|
|
{
|
|
pNd->InsertText( m_sOld, aIdx );
|
|
}
|
|
|
|
if( pHistory )
|
|
{
|
|
if( pNd->GetpSwpHints() )
|
|
pNd->ClearSwpHintsArr( true );
|
|
|
|
pHistory->TmpRollback( pDoc, m_nSetPos, false );
|
|
if ( m_nSetPos ) // there were footnotes/FlyFrames
|
|
{
|
|
// are there others than these?
|
|
if( m_nSetPos < pHistory->Count() )
|
|
{
|
|
// than save those attributes as well
|
|
SwHistory aHstr;
|
|
aHstr.Move( 0, pHistory, m_nSetPos );
|
|
pHistory->Rollback( pDoc );
|
|
pHistory->Move( 0, &aHstr );
|
|
}
|
|
else
|
|
{
|
|
pHistory->Rollback( pDoc );
|
|
DELETEZ( pHistory );
|
|
}
|
|
}
|
|
}
|
|
|
|
rPam.GetPoint()->nNode = m_nSttNd;
|
|
rPam.GetPoint()->nContent = aIdx;
|
|
}
|
|
|
|
void SwUndoReplace::Impl::RedoImpl(::sw::UndoRedoContext & rContext)
|
|
{
|
|
SwDoc & rDoc = rContext.GetDoc();
|
|
SwPaM & rPam(rContext.GetCursorSupplier().CreateNewShellCursor());
|
|
rPam.DeleteMark();
|
|
rPam.GetPoint()->nNode = m_nSttNd;
|
|
|
|
SwTxtNode* pNd = rPam.GetPoint()->nNode.GetNode().GetTxtNode();
|
|
OSL_ENSURE( pNd, "Dude, where's my TextNode?" );
|
|
rPam.GetPoint()->nContent.Assign( pNd, m_nSttCnt );
|
|
rPam.SetMark();
|
|
if( m_bSplitNext )
|
|
{
|
|
rPam.GetPoint()->nNode = m_nSttNd + 1;
|
|
pNd = rPam.GetPoint()->nNode.GetNode().GetTxtNode();
|
|
}
|
|
rPam.GetPoint()->nContent.Assign( pNd, m_nSelEnd );
|
|
|
|
if( pHistory )
|
|
{
|
|
SwHistory* pSave = pHistory;
|
|
SwHistory aHst;
|
|
pHistory = &aHst;
|
|
DelCntntIndex( *rPam.GetMark(), *rPam.GetPoint() );
|
|
m_nSetPos = pHistory->Count();
|
|
|
|
pHistory = pSave;
|
|
pHistory->Move( 0, &aHst );
|
|
}
|
|
else
|
|
{
|
|
pHistory = new SwHistory;
|
|
DelCntntIndex( *rPam.GetMark(), *rPam.GetPoint() );
|
|
m_nSetPos = pHistory->Count();
|
|
if( !m_nSetPos )
|
|
delete pHistory, pHistory = 0;
|
|
}
|
|
|
|
rDoc.ReplaceRange( rPam, m_sIns, m_bRegExp );
|
|
rPam.DeleteMark();
|
|
}
|
|
|
|
void SwUndoReplace::Impl::SetEnd(SwPaM const& rPam)
|
|
{
|
|
if( rPam.GetPoint()->nNode != rPam.GetMark()->nNode )
|
|
{
|
|
// multiple paragraphs were inserted
|
|
const SwPosition* pEnd = rPam.End();
|
|
m_nEndNd = m_nOffset + pEnd->nNode.GetIndex();
|
|
m_nEndCnt = pEnd->nContent.GetIndex();
|
|
}
|
|
}
|
|
|
|
|
|
// SwUndoReRead //////////////////////////////////////////////////////////
|
|
|
|
|
|
SwUndoReRead::SwUndoReRead( const SwPaM& rPam, const SwGrfNode& rGrfNd )
|
|
: SwUndo( UNDO_REREAD ), nPos( rPam.GetPoint()->nNode.GetIndex() )
|
|
{
|
|
SaveGraphicData( rGrfNd );
|
|
}
|
|
|
|
|
|
SwUndoReRead::~SwUndoReRead()
|
|
{
|
|
delete pGrf;
|
|
delete pNm;
|
|
delete pFltr;
|
|
}
|
|
|
|
|
|
void SwUndoReRead::SetAndSave(::sw::UndoRedoContext & rContext)
|
|
{
|
|
SwDoc & rDoc = rContext.GetDoc();
|
|
SwGrfNode* pGrfNd = rDoc.GetNodes()[ nPos ]->GetGrfNode();
|
|
|
|
if( !pGrfNd )
|
|
return ;
|
|
|
|
// cache the old values
|
|
Graphic* pOldGrf = pGrf;
|
|
String* pOldNm = pNm;
|
|
String* pOldFltr = pFltr;
|
|
sal_uInt16 nOldMirr = nMirr;
|
|
|
|
SaveGraphicData( *pGrfNd );
|
|
if( pOldNm )
|
|
{
|
|
pGrfNd->ReRead( *pOldNm, pFltr ? *pFltr : aEmptyStr, 0, 0, sal_True );
|
|
delete pOldNm;
|
|
delete pOldFltr;
|
|
}
|
|
else
|
|
{
|
|
pGrfNd->ReRead( aEmptyStr, aEmptyStr, pOldGrf, 0, sal_True );
|
|
delete pOldGrf;
|
|
}
|
|
|
|
if( RES_MIRROR_GRAPH_DONT != nOldMirr )
|
|
pGrfNd->SetAttr( SwMirrorGrf() );
|
|
|
|
rContext.SetSelections(pGrfNd->GetFlyFmt(), 0);
|
|
}
|
|
|
|
|
|
void SwUndoReRead::UndoImpl(::sw::UndoRedoContext & rContext)
|
|
{
|
|
SetAndSave(rContext);
|
|
}
|
|
|
|
|
|
void SwUndoReRead::RedoImpl(::sw::UndoRedoContext & rContext)
|
|
{
|
|
SetAndSave(rContext);
|
|
}
|
|
|
|
|
|
void SwUndoReRead::SaveGraphicData( const SwGrfNode& rGrfNd )
|
|
{
|
|
if( rGrfNd.IsGrfLink() )
|
|
{
|
|
pNm = new String;
|
|
pFltr = new String;
|
|
rGrfNd.GetFileFilterNms( pNm, pFltr );
|
|
pGrf = 0;
|
|
}
|
|
else
|
|
{
|
|
((SwGrfNode&)rGrfNd).SwapIn( sal_True );
|
|
pGrf = new Graphic( rGrfNd.GetGrf() );
|
|
pNm = pFltr = 0;
|
|
}
|
|
nMirr = rGrfNd.GetSwAttrSet().GetMirrorGrf().GetValue();
|
|
}
|
|
|
|
|
|
SwUndoInsertLabel::SwUndoInsertLabel( const SwLabelType eTyp,
|
|
const String &rTxt,
|
|
const String& rSeparator,
|
|
const String& rNumberSeparator,
|
|
const sal_Bool bBef,
|
|
const sal_uInt16 nInitId,
|
|
const String& rCharacterStyle,
|
|
const sal_Bool bCpyBorder )
|
|
: SwUndo( UNDO_INSERTLABEL ),
|
|
sText( rTxt ),
|
|
sSeparator( rSeparator ),
|
|
sNumberSeparator( rNumberSeparator ),//#i61007# order of captions
|
|
sCharacterStyle( rCharacterStyle ),
|
|
nFldId( nInitId ),
|
|
eType( eTyp ),
|
|
nLayerId( 0 ),
|
|
bBefore( bBef ),
|
|
bCpyBrd( bCpyBorder )
|
|
{
|
|
bUndoKeep = sal_False;
|
|
OBJECT.pUndoFly = 0;
|
|
OBJECT.pUndoAttr = 0;
|
|
}
|
|
|
|
SwUndoInsertLabel::~SwUndoInsertLabel()
|
|
{
|
|
if( LTYPE_OBJECT == eType || LTYPE_DRAW == eType )
|
|
{
|
|
delete OBJECT.pUndoFly;
|
|
delete OBJECT.pUndoAttr;
|
|
}
|
|
else
|
|
delete NODE.pUndoInsNd;
|
|
}
|
|
|
|
void SwUndoInsertLabel::UndoImpl(::sw::UndoRedoContext & rContext)
|
|
{
|
|
SwDoc & rDoc = rContext.GetDoc();
|
|
|
|
if( LTYPE_OBJECT == eType || LTYPE_DRAW == eType )
|
|
{
|
|
OSL_ENSURE( OBJECT.pUndoAttr && OBJECT.pUndoFly, "Pointer not initialized" );
|
|
SwFrmFmt* pFmt;
|
|
SdrObject *pSdrObj = 0;
|
|
if( OBJECT.pUndoAttr &&
|
|
0 != (pFmt = (SwFrmFmt*)OBJECT.pUndoAttr->GetFmt( rDoc )) &&
|
|
( LTYPE_DRAW != eType ||
|
|
0 != (pSdrObj = pFmt->FindSdrObject()) ) )
|
|
{
|
|
OBJECT.pUndoAttr->UndoImpl(rContext);
|
|
OBJECT.pUndoFly->UndoImpl(rContext);
|
|
if( LTYPE_DRAW == eType )
|
|
{
|
|
pSdrObj->SetLayer( nLayerId );
|
|
}
|
|
}
|
|
}
|
|
else if( NODE.nNode )
|
|
{
|
|
if ( eType == LTYPE_TABLE && bUndoKeep )
|
|
{
|
|
SwTableNode *pNd = rDoc.GetNodes()[
|
|
rDoc.GetNodes()[NODE.nNode-1]->StartOfSectionIndex()]->GetTableNode();
|
|
if ( pNd )
|
|
pNd->GetTable().GetFrmFmt()->ResetFmtAttr( RES_KEEP );
|
|
}
|
|
SwPaM aPam( rDoc.GetNodes().GetEndOfContent() );
|
|
aPam.GetPoint()->nNode = NODE.nNode;
|
|
aPam.SetMark();
|
|
aPam.GetPoint()->nNode = NODE.nNode + 1;
|
|
NODE.pUndoInsNd = new SwUndoDelete( aPam, sal_True );
|
|
}
|
|
}
|
|
|
|
|
|
void SwUndoInsertLabel::RedoImpl(::sw::UndoRedoContext & rContext)
|
|
{
|
|
SwDoc & rDoc = rContext.GetDoc();
|
|
|
|
if( LTYPE_OBJECT == eType || LTYPE_DRAW == eType )
|
|
{
|
|
OSL_ENSURE( OBJECT.pUndoAttr && OBJECT.pUndoFly, "Pointer not initialized" );
|
|
SwFrmFmt* pFmt;
|
|
SdrObject *pSdrObj = 0;
|
|
if( OBJECT.pUndoAttr &&
|
|
0 != (pFmt = (SwFrmFmt*)OBJECT.pUndoAttr->GetFmt( rDoc )) &&
|
|
( LTYPE_DRAW != eType ||
|
|
0 != (pSdrObj = pFmt->FindSdrObject()) ) )
|
|
{
|
|
OBJECT.pUndoFly->RedoImpl(rContext);
|
|
OBJECT.pUndoAttr->RedoImpl(rContext);
|
|
if( LTYPE_DRAW == eType )
|
|
{
|
|
pSdrObj->SetLayer( nLayerId );
|
|
if( pSdrObj->GetLayer() == rDoc.GetHellId() )
|
|
pSdrObj->SetLayer( rDoc.GetHeavenId() );
|
|
// OD 02.07.2003 #108784#
|
|
else if( pSdrObj->GetLayer() == rDoc.GetInvisibleHellId() )
|
|
pSdrObj->SetLayer( rDoc.GetInvisibleHeavenId() );
|
|
}
|
|
}
|
|
}
|
|
else if( NODE.pUndoInsNd )
|
|
{
|
|
if ( eType == LTYPE_TABLE && bUndoKeep )
|
|
{
|
|
SwTableNode *pNd = rDoc.GetNodes()[
|
|
rDoc.GetNodes()[NODE.nNode-1]->StartOfSectionIndex()]->GetTableNode();
|
|
if ( pNd )
|
|
pNd->GetTable().GetFrmFmt()->SetFmtAttr( SvxFmtKeepItem(sal_True, RES_KEEP) );
|
|
}
|
|
NODE.pUndoInsNd->UndoImpl(rContext);
|
|
delete NODE.pUndoInsNd, NODE.pUndoInsNd = 0;
|
|
}
|
|
}
|
|
|
|
void SwUndoInsertLabel::RepeatImpl(::sw::RepeatContext & rContext)
|
|
{
|
|
SwDoc & rDoc = rContext.GetDoc();
|
|
const SwPosition& rPos = *rContext.GetRepeatPaM().GetPoint();
|
|
|
|
sal_uLong nIdx = 0;
|
|
|
|
SwCntntNode* pCNd = rPos.nNode.GetNode().GetCntntNode();
|
|
if( pCNd )
|
|
switch( eType )
|
|
{
|
|
case LTYPE_TABLE:
|
|
{
|
|
const SwTableNode* pTNd = pCNd->FindTableNode();
|
|
if( pTNd )
|
|
nIdx = pTNd->GetIndex();
|
|
}
|
|
break;
|
|
|
|
case LTYPE_FLY:
|
|
case LTYPE_OBJECT:
|
|
{
|
|
SwFlyFrm* pFly;
|
|
SwCntntFrm *pCnt = pCNd->getLayoutFrm( rDoc.GetCurrentLayout() );
|
|
if( pCnt && 0 != ( pFly = pCnt->FindFlyFrm() ) )
|
|
nIdx = pFly->GetFmt()->GetCntnt().GetCntntIdx()->GetIndex();
|
|
}
|
|
break;
|
|
case LTYPE_DRAW:
|
|
break;
|
|
}
|
|
|
|
if( nIdx )
|
|
{
|
|
rDoc.InsertLabel( eType, sText, sSeparator, sNumberSeparator, bBefore,
|
|
nFldId, nIdx, sCharacterStyle, bCpyBrd );
|
|
}
|
|
}
|
|
|
|
// #111827#
|
|
SwRewriter SwUndoInsertLabel::GetRewriter() const
|
|
{
|
|
SwRewriter aRewriter;
|
|
|
|
String aTmpStr;
|
|
|
|
aTmpStr += String(SW_RES(STR_START_QUOTE));
|
|
aTmpStr += ShortenString(sText, nUndoStringLength,
|
|
String(SW_RES(STR_LDOTS)));
|
|
aTmpStr += String(SW_RES(STR_END_QUOTE));
|
|
|
|
aRewriter.AddRule(UndoArg1, aTmpStr);
|
|
|
|
return aRewriter;
|
|
}
|
|
|
|
void SwUndoInsertLabel::SetFlys( SwFrmFmt& rOldFly, SfxItemSet& rChgSet,
|
|
SwFrmFmt& rNewFly )
|
|
{
|
|
if( LTYPE_OBJECT == eType || LTYPE_DRAW == eType )
|
|
{
|
|
SwUndoFmtAttrHelper aTmp( rOldFly, false );
|
|
rOldFly.SetFmtAttr( rChgSet );
|
|
if ( aTmp.GetUndo() )
|
|
{
|
|
OBJECT.pUndoAttr = aTmp.ReleaseUndo();
|
|
}
|
|
OBJECT.pUndoFly = new SwUndoInsLayFmt( &rNewFly,0,0 );
|
|
}
|
|
}
|
|
|
|
void SwUndoInsertLabel::SetDrawObj( sal_uInt8 nLId )
|
|
{
|
|
if( LTYPE_DRAW == eType )
|
|
{
|
|
nLayerId = nLId;
|
|
}
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|