diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-01-10 13:24:11 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-01-10 13:24:11 +0000 |
commit | c46f1385a1bdd667993e94349967725b56f13aad (patch) | |
tree | 9c4b8b973d63065caecd6259649385c0f9437617 /sd/inc/undo | |
parent | 91b854d9a4525a3ea9cbcdcb213dfd874193da6c (diff) |
INTEGRATION: CWS impresspresobjs (1.1.2); FILE ADDED
2005/12/13 19:12:53 cl 1.1.2.2: #i58649# added isInUndo()
2005/11/24 11:59:29 cl 1.1.2.1: #123595# added application specific undo actions
Diffstat (limited to 'sd/inc/undo')
-rw-r--r-- | sd/inc/undo/undomanager.hxx | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/sd/inc/undo/undomanager.hxx b/sd/inc/undo/undomanager.hxx new file mode 100644 index 000000000000..ca37e335b526 --- /dev/null +++ b/sd/inc/undo/undomanager.hxx @@ -0,0 +1,73 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: undomanager.hxx,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: rt $ $Date: 2006-01-10 14:24:11 $ + * + * 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 + * + ************************************************************************/ + +#ifndef _SD_UNDOMANAGER_HXX +#define _SD_UNDOMANAGER_HXX + +#ifndef _SD_SCOPELOCK_HXX +#include "misc/scopelock.hxx" +#endif + +#ifndef _UNDO_HXX +#include <svtools/undo.hxx> +#endif + +namespace sd +{ + +class UndoManager : public SfxUndoManager +{ +public: + UndoManager( USHORT nMaxUndoActionCount = 20 ); + + virtual void EnterListAction(const UniString &rComment, const UniString& rRepeatComment, USHORT nId=0); + virtual void LeaveListAction(); + + virtual void AddUndoAction( SfxUndoAction *pAction, BOOL bTryMerg=FALSE ); + + bool isInListAction() const { return mnListLevel != 0; } + bool isInUndo() const { return maIsInUndoLock.isLocked(); } + + virtual BOOL Undo( USHORT nCount=1 ); + virtual BOOL Redo( USHORT nCount=1 ); + +private: + int mnListLevel; + ScopeLock maIsInUndoLock; +}; + +} + +#endif // _SD_UNDOMANAGER_HXX |