Bump for 4.0-11
[LibreOffice.git] / sd / inc / undoanim.hxx
blob0fb1784b15d4acbd4858a112a9f49a0eab8c4faf
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef _SD_UNDO_ANIM_HXX
21 #define _SD_UNDO_ANIM_HXX
23 #include <com/sun/star/uno/Any.hxx>
24 #include <com/sun/star/animations/XAnimationNode.hpp>
25 #include <svx/svdundo.hxx>
27 #include "sdundo.hxx"
29 class SdPage;
31 namespace sd
34 struct UndoAnimationImpl;
36 class UndoAnimation : public SdrUndoAction
38 public:
39 UndoAnimation( SdDrawDocument* pDoc, SdPage* pThePage );
40 virtual ~UndoAnimation();
42 virtual void Undo();
43 virtual void Redo();
45 virtual rtl::OUString GetComment() const;
47 private:
48 UndoAnimationImpl* mpImpl;
51 struct UndoAnimationPathImpl;
52 class UndoAnimationPath : public SdrUndoAction
54 public:
55 UndoAnimationPath( SdDrawDocument* pDoc, SdPage* pThePage, const com::sun::star::uno::Reference< ::com::sun::star::animations::XAnimationNode >& xNode );
56 virtual ~UndoAnimationPath();
58 virtual void Undo();
59 virtual void Redo();
61 virtual rtl::OUString GetComment() const;
63 private:
64 UndoAnimationPathImpl* mpImpl;
67 struct UndoTransitionImpl;
69 class UndoTransition : public SdUndoAction
71 public:
72 UndoTransition( SdDrawDocument* pDoc, SdPage* pThePage );
73 virtual ~UndoTransition();
75 virtual void Undo();
76 virtual void Redo();
78 virtual rtl::OUString GetComment() const;
80 private:
81 UndoTransitionImpl* mpImpl;
86 #endif // _SD_UNDO_ANIM_HXX
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */