Files
libreoffice/sw/source/core/undo/SwUndoField.cxx

153 lines
4.2 KiB
C++
Raw Normal View History

/*************************************************************************
*
* 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.
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
#include <tools/rtti.hxx>
#include <SwUndoField.hxx>
#include <swundo.hxx>
#include <doc.hxx>
#include <IDocumentUndoRedo.hxx>
#include <txtfld.hxx>
#include <fldbas.hxx>
#include <ndtxt.hxx>
#include <fmtfld.hxx>
#include <dbfld.hxx>
#include <docsh.hxx>
using namespace ::com::sun::star::uno;
SwUndoField::SwUndoField(const SwPosition & rPos, SwUndoId _nId )
: SwUndo(_nId)
{
nNodeIndex = rPos.nNode.GetIndex();
nOffset = rPos.nContent.GetIndex();
pDoc = rPos.GetDoc();
}
SwUndoField::~SwUndoField()
{
}
SwPosition SwUndoField::GetPosition()
{
SwNode * pNode = pDoc->GetNodes()[nNodeIndex];
SwNodeIndex aNodeIndex(*pNode);
SwIndex aIndex(pNode->GetCntntNode(), nOffset);
SwPosition aResult(aNodeIndex, aIndex);
return aResult;
}
SwUndoFieldFromDoc::SwUndoFieldFromDoc(const SwPosition & rPos,
const SwField & rOldField,
const SwField & rNewField,
SwMsgPoolItem * _pHnt, BOOL _bUpdate, SwUndoId _nId)
: SwUndoField(rPos,_nId)
, pOldField(rOldField.CopyField())
, pNewField(rNewField.CopyField())
, pHnt(_pHnt)
, bUpdate(_bUpdate)
{
ASSERT(pOldField, "No old field!");
ASSERT(pNewField, "No new field!");
ASSERT(pDoc, "No document!");
}
SwUndoFieldFromDoc::~SwUndoFieldFromDoc()
{
delete pOldField;
delete pNewField;
}
void SwUndoFieldFromDoc::Undo( SwUndoIter& )
{
SwTxtFld * pTxtFld = SwDoc::GetTxtFld(GetPosition());
2004-05-26 06:54:03 +00:00
const SwField * pField = pTxtFld->GetFld().GetFld();
if (pField)
{
pDoc->UpdateFld(pTxtFld, *pOldField, pHnt, bUpdate);
}
}
void SwUndoFieldFromDoc::Redo( SwUndoIter& )
{
SwTxtFld * pTxtFld = SwDoc::GetTxtFld(GetPosition());
2004-05-26 06:54:03 +00:00
const SwField * pField = pTxtFld->GetFld().GetFld();
if (pField)
{
pDoc->UpdateFld(pTxtFld, *pNewField, pHnt, bUpdate);
SwFmtFld* pDstFmtFld = (SwFmtFld*)&pTxtFld->GetFld();
if ( pDoc->GetFldType(RES_POSTITFLD, aEmptyStr,false) == pDstFmtFld->GetFld()->GetTyp() )
pDoc->GetDocShell()->Broadcast( SwFmtFldHint( pDstFmtFld, SWFMTFLD_INSERTED ) );
}
}
void SwUndoFieldFromDoc::Repeat(SwUndoIter & rIt)
{
::sw::UndoGuard const undoGuard(pDoc->GetIDocumentUndoRedo());
Redo(rIt);
}
SwUndoFieldFromAPI::SwUndoFieldFromAPI(const SwPosition & rPos,
const Any & rOldVal, const Any & rNewVal,
USHORT _nWhich)
: SwUndoField(rPos), aOldVal(rOldVal), aNewVal(rNewVal), nWhich(_nWhich)
{
}
SwUndoFieldFromAPI::~SwUndoFieldFromAPI()
{
}
void SwUndoFieldFromAPI::Undo( SwUndoIter& )
{
SwField * pField = SwDoc::GetField(GetPosition());
if (pField)
pField->PutValue(aOldVal, nWhich);
}
void SwUndoFieldFromAPI::Redo( SwUndoIter& )
{
SwField * pField = SwDoc::GetField(GetPosition());
if (pField)
pField->PutValue(aNewVal, nWhich);
}
void SwUndoFieldFromAPI::Repeat(SwUndoIter & rIter)
{
Redo(rIter);
}