/* AbiWord * Copyright (C) 1998 AbiSource, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ /*! PX_ChangeRecord describes a change made to the document. This description should be sufficient to allow undo to work and sufficient to allow the formatter to do a partial format and screen update (if appropriate). The change record must be free of pointers, since it represents what was done to the document -- and not how it was done (that is, not what was done to various intermediate data structures). This also lets it be cached to disk (for autosave and maybe multi-session undo). PX_ChangeRecord is an abstract base class. We use an enum to remember type, rather than use any of the language run-time stuff. */ #include "ut_types.h" #include "ut_debugmsg.h" #include "pt_Types.h" #include "px_ChangeRecord.h" /*! Create change record \param type Change record type \param position Position of the change record \param indexNewAP Index of new attribute property */ PX_ChangeRecord::PX_ChangeRecord(PXType type, PT_DocPosition position, PT_AttrPropIndex indexNewAP, UT_uint32 iXID): m_type(type), m_position(position), m_indexAP(indexNewAP), m_persistant(true), m_iXID(iXID) { } /*! Destruct change record */ PX_ChangeRecord::~PX_ChangeRecord() { } /*! Get type of change record \return Type */ PX_ChangeRecord::PXType PX_ChangeRecord::getType(void) const { return m_type; } /*! Get position of change record \return Document position */ PT_DocPosition PX_ChangeRecord::getPosition(void) const { return m_position; } /*! Get index of attribute property \return Attribute property index */ PT_AttrPropIndex PX_ChangeRecord::getIndexAP(void) const { return m_indexAP; } /*! Get persitance \return Persitance */ bool PX_ChangeRecord::getPersistance(void) const { return m_persistant; } /*! Create reverse change record of this one \return Reverse change record */ PX_ChangeRecord * PX_ChangeRecord::reverse(void) const { PX_ChangeRecord * pcr = new PX_ChangeRecord(getRevType(), m_position, m_indexAP, m_iXID); UT_ASSERT_HARMLESS(pcr); return pcr; } /* Find reverse change record type of this one \return Reverse change record type */ PX_ChangeRecord::PXType PX_ChangeRecord::getRevType(void) const { switch (m_type) { case PX_ChangeRecord::PXT_GlobMarker: // we are our own inverse return PX_ChangeRecord::PXT_GlobMarker; case PX_ChangeRecord::PXT_InsertSpan: return PX_ChangeRecord::PXT_DeleteSpan; case PX_ChangeRecord::PXT_DeleteSpan: return PX_ChangeRecord::PXT_InsertSpan; case PX_ChangeRecord::PXT_ChangeSpan: // we are our own inverse return PX_ChangeRecord::PXT_ChangeSpan; case PX_ChangeRecord::PXT_InsertStrux: return PX_ChangeRecord::PXT_DeleteStrux; case PX_ChangeRecord::PXT_DeleteStrux: return PX_ChangeRecord::PXT_InsertStrux; case PX_ChangeRecord::PXT_ChangeStrux: // we are our own inverse return PX_ChangeRecord::PXT_ChangeStrux; case PX_ChangeRecord::PXT_InsertObject: return PX_ChangeRecord::PXT_DeleteObject; case PX_ChangeRecord::PXT_DeleteObject: return PX_ChangeRecord::PXT_InsertObject; case PX_ChangeRecord::PXT_ChangeObject: // we are our own inverse return PX_ChangeRecord::PXT_ChangeObject; case PX_ChangeRecord::PXT_InsertFmtMark: return PX_ChangeRecord::PXT_DeleteFmtMark; case PX_ChangeRecord::PXT_DeleteFmtMark: return PX_ChangeRecord::PXT_InsertFmtMark; case PX_ChangeRecord::PXT_ChangeFmtMark: // we are our own inverse return PX_ChangeRecord::PXT_ChangeFmtMark; case PX_ChangeRecord::PXT_ChangePoint: return PX_ChangeRecord::PXT_ChangePoint; default: UT_ASSERT_HARMLESS(0); return PX_ChangeRecord::PXT_GlobMarker; // bogus } }