lok: avoid ILibreOfficeKitNotifier null ptr de-reference on shutdown.
[LibreOffice.git] / sd / inc / undoanim.hxx
blob68169b686a5c9fd30528d7c7bf65d638438e3984
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 INCLUDED_SD_INC_UNDOANIM_HXX
21 #define INCLUDED_SD_INC_UNDOANIM_HXX
23 #include <com/sun/star/animations/XAnimationNode.hpp>
24 #include <svx/svdundo.hxx>
25 #include <memory>
27 #include "sdundo.hxx"
29 class SdPage;
31 namespace sd
34 struct UndoAnimationImpl;
36 class UndoAnimation final : public SdrUndoAction
38 public:
39 UndoAnimation( SdDrawDocument* pDoc, SdPage* pThePage );
40 virtual ~UndoAnimation() override;
42 virtual void Undo() override;
43 virtual void Redo() override;
45 virtual OUString GetComment() const override;
47 private:
48 std::unique_ptr<UndoAnimationImpl> mpImpl;
51 struct UndoAnimationPathImpl;
52 class UndoAnimationPath final : public SdrUndoAction
54 public:
55 UndoAnimationPath( SdDrawDocument* pDoc, SdPage* pThePage, const css::uno::Reference< css::animations::XAnimationNode >& xNode );
56 virtual ~UndoAnimationPath() override;
58 virtual void Undo() override;
59 virtual void Redo() override;
61 virtual OUString GetComment() const override;
63 private:
64 std::unique_ptr<UndoAnimationPathImpl> mpImpl;
67 struct UndoTransitionImpl;
69 class UndoTransition final : public SdUndoAction
71 public:
72 UndoTransition( SdDrawDocument* pDoc, SdPage* pThePage );
73 virtual ~UndoTransition() override;
75 virtual void Undo() override;
76 virtual void Redo() override;
78 virtual OUString GetComment() const override;
80 private:
81 std::unique_ptr<UndoTransitionImpl> mpImpl;
86 #endif // INCLUDED_SD_INC_UNDOANIM_HXX
88 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */