summaryrefslogtreecommitdiff
path: root/sd/inc/undoanim.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2007-07-06 12:09:44 +0000
committerRüdiger Timm <rt@openoffice.org>2007-07-06 12:09:44 +0000
commit75261f9f2c3badd8d60c5d12cdbaf2b288e4a594 (patch)
tree28775181d108db9d71deb016635e0f8f2d37286a /sd/inc/undoanim.hxx
parentce466c29d2064ae61af7b513b9305311b04779b0 (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
Diffstat (limited to 'sd/inc/undoanim.hxx')
-rw-r--r--sd/inc/undoanim.hxx23
1 files changed, 21 insertions, 2 deletions
diff --git a/sd/inc/undoanim.hxx b/sd/inc/undoanim.hxx
index 6e061be0f08f..46da9f94cf68 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