2006-01-10 07:27:37 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
|
|
*
|
|
|
|
* $RCSfile: undofactory.cxx,v $
|
|
|
|
*
|
2006-09-16 12:18:29 -05:00
|
|
|
* $Revision: 1.3 $
|
2006-01-10 07:27:37 -06:00
|
|
|
*
|
2006-09-16 12:18:29 -05:00
|
|
|
* last change: $Author: obo $ $Date: 2006-09-16 18:18:03 $
|
2006-01-10 07:27:37 -06:00
|
|
|
*
|
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library 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 for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 12:18:29 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sd.hxx"
|
|
|
|
|
2006-01-10 07:27:37 -06:00
|
|
|
#ifndef _TOOLS_DEBUG_HXX
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "undo/undofactory.hxx"
|
|
|
|
#include "undo/undoobjects.hxx"
|
|
|
|
|
|
|
|
using namespace sd;
|
|
|
|
|
|
|
|
SdrUndoAction* UndoFactory::CreateUndoRemoveObject( SdrObject& rObject, bool bOrdNumDirect )
|
|
|
|
{
|
|
|
|
return new UndoRemoveObject( rObject, bOrdNumDirect );
|
|
|
|
}
|
|
|
|
|
|
|
|
SdrUndoAction* UndoFactory::CreateUndoDeleteObject( SdrObject& rObject, bool bOrdNumDirect )
|
|
|
|
{
|
|
|
|
return new UndoDeleteObject( rObject, bOrdNumDirect );
|
|
|
|
}
|
|
|
|
|
|
|
|
SdrUndoAction* UndoFactory::CreateUndoObjectSetText( SdrObject& rNewObj )
|
|
|
|
{
|
|
|
|
return new UndoObjectSetText( rNewObj );
|
|
|
|
}
|
|
|
|
|
|
|
|
SdrUndoAction* UndoFactory::CreateUndoReplaceObject( SdrObject& rOldObject, SdrObject& rNewObject, bool bOrdNumDirect )
|
|
|
|
{
|
|
|
|
return new UndoReplaceObject( rOldObject, rNewObject, bOrdNumDirect );
|
|
|
|
}
|
|
|
|
|
|
|
|
SdrUndoAction* UndoFactory::CreateUndoGeoObject( SdrObject& rObject )
|
|
|
|
{
|
|
|
|
return new UndoGeoObject( rObject );
|
|
|
|
}
|
|
|
|
|
|
|
|
SdrUndoAction* UndoFactory::CreateUndoAttrObject( SdrObject& rObject, bool bStyleSheet1, bool bSaveText )
|
|
|
|
{
|
|
|
|
return new UndoAttrObject( rObject, bStyleSheet1, bSaveText );
|
|
|
|
}
|