diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2007-07-06 12:09:44 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2007-07-06 12:09:44 +0000 |
commit | 9808686eb0dabdcd616d1e821e2fe5cbe6ef240b (patch) | |
tree | 541a24dfca613116c29b717d451bd40f0c846205 | |
parent | 26d2135fc4ded37a66d76de06e8a2463dbc8bf44 (diff) |
INTEGRATION: CWS pathfinder01 (1.5.126); FILE MERGED
2007/07/03 14:30:01 cl 1.5.126.2: #i41800# implemented support for path animation editing for custom animations
2007/07/03 13:05:31 cl 1.5.126.1: #i41800# implemented support for path animation editing for custom animations
-rw-r--r-- | sd/inc/undoanim.hxx | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/sd/inc/undoanim.hxx b/sd/inc/undoanim.hxx index 565415140..8b9838093 100644 --- a/sd/inc/undoanim.hxx +++ b/sd/inc/undoanim.hxx @@ -4,9 +4,9 @@ * * $RCSfile: undoanim.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: kz $ $Date: 2006-12-12 16:27:06 $ + * last change: $Author: rt $ $Date: 2007-07-06 13:09:44 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -36,6 +36,9 @@ #ifndef _SD_UNDO_ANIM_HXX #define _SD_UNDO_ANIM_HXX +#include <com/sun/star/uno/Any.hxx> +#include <com/sun/star/animations/XAnimationNode.hpp> + #ifndef _SVDUNDO_HXX #include <svx/svdundo.hxx> #endif @@ -64,6 +67,22 @@ private: UndoAnimationImpl* mpImpl; }; +struct UndoAnimationPathImpl; +class UndoAnimationPath : public SdrUndoAction +{ +public: + UndoAnimationPath( SdDrawDocument* pDoc, SdPage* pThePage, const com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode ); + virtual ~UndoAnimationPath(); + + virtual void Undo(); + virtual void Redo(); + + virtual String GetComment() const; + +private: + UndoAnimationPathImpl* mpImpl; +}; + struct UndoTransitionImpl; class UndoTransition : public SdUndoAction |