2004-05-18 12:55:49 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 09:46:11 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-05-18 12:55:49 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2004-05-18 12:55:49 +00:00
|
|
|
*
|
2008-04-10 09:46:11 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-05-18 12:55:49 +00:00
|
|
|
*
|
2008-04-10 09:46:11 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-05-18 12:55:49 +00:00
|
|
|
*
|
2008-04-10 09:46:11 +00:00
|
|
|
* 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.
|
2004-05-18 12:55:49 +00:00
|
|
|
*
|
2008-04-10 09:46:11 +00:00
|
|
|
* 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).
|
2004-05-18 12:55:49 +00:00
|
|
|
*
|
2008-04-10 09:46:11 +00:00
|
|
|
* 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.
|
2004-05-18 12:55:49 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef _SW_UNDO_FIELD_HXX
|
|
|
|
#define _SW_UNDO_FIELD_HXX
|
|
|
|
|
|
|
|
#include <undobj.hxx>
|
|
|
|
|
2006-08-14 14:14:54 +00:00
|
|
|
class SwDoc;
|
2004-05-18 12:55:49 +00:00
|
|
|
class SwField;
|
|
|
|
class SwMsgPoolItem;
|
|
|
|
|
|
|
|
class SwUndoField : public SwUndo
|
|
|
|
{
|
|
|
|
ULONG nNodeIndex;
|
|
|
|
xub_StrLen nOffset;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
SwDoc * pDoc;
|
|
|
|
SwPosition GetPosition();
|
|
|
|
|
|
|
|
public:
|
2008-04-03 15:49:30 +00:00
|
|
|
SwUndoField(const SwPosition & rPos, SwUndoId nId = UNDO_FIELD );
|
2004-05-18 12:55:49 +00:00
|
|
|
virtual ~SwUndoField();
|
|
|
|
};
|
|
|
|
|
|
|
|
class SwUndoFieldFromDoc : public SwUndoField
|
|
|
|
{
|
|
|
|
SwField * pOldField, * pNewField;
|
|
|
|
SwMsgPoolItem * pHnt;
|
|
|
|
BOOL bUpdate;
|
|
|
|
|
|
|
|
public:
|
|
|
|
SwUndoFieldFromDoc(const SwPosition & rPos, const SwField & aOldField,
|
|
|
|
const SwField & aNewField,
|
2008-04-03 15:49:30 +00:00
|
|
|
SwMsgPoolItem * pHnt, BOOL bUpdate,
|
|
|
|
SwUndoId nId = UNDO_FIELD );
|
2004-05-18 12:55:49 +00:00
|
|
|
virtual ~SwUndoFieldFromDoc();
|
|
|
|
|
|
|
|
virtual void Undo(SwUndoIter & rIt);
|
|
|
|
virtual void Redo(SwUndoIter & rIt);
|
|
|
|
virtual void Repeat(SwUndoIter & rIt);
|
|
|
|
};
|
|
|
|
|
|
|
|
class SwUndoFieldFromAPI : public SwUndoField
|
|
|
|
{
|
|
|
|
com::sun::star::uno::Any aOldVal, aNewVal;
|
2007-09-27 06:55:01 +00:00
|
|
|
USHORT nWhich;
|
2004-05-18 12:55:49 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
SwUndoFieldFromAPI(const SwPosition & rPos,
|
|
|
|
const com::sun::star::uno::Any & rOldVal,
|
|
|
|
const com::sun::star::uno::Any & rNewVal,
|
2007-09-27 06:55:01 +00:00
|
|
|
USHORT nWhich);
|
2004-05-18 12:55:49 +00:00
|
|
|
virtual ~SwUndoFieldFromAPI();
|
|
|
|
|
|
|
|
virtual void Undo(SwUndoIter & rIt);
|
|
|
|
virtual void Redo(SwUndoIter & rIt);
|
|
|
|
virtual void Repeat(SwUndoIter & rIt);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _SW_UNDO_FIELD_HXX
|