Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include "unprlout.hxx"
21 :
22 : #include "strings.hrc"
23 : #include "sdpage.hxx"
24 : #include "drawdoc.hxx"
25 : #include "sdresid.hxx"
26 :
27 :
28 0 : TYPEINIT1(SdPresentationLayoutUndoAction, SdUndoAction);
29 :
30 :
31 0 : SdPresentationLayoutUndoAction::SdPresentationLayoutUndoAction(
32 : SdDrawDocument* pTheDoc,
33 : const OUString& aTheOldLayoutName,
34 : const OUString& aTheNewLayoutName,
35 : AutoLayout eTheOldAutoLayout,
36 : AutoLayout eTheNewAutoLayout,
37 : sal_Bool bSet,
38 : SdPage* pThePage):
39 0 : SdUndoAction(pTheDoc)
40 : {
41 0 : aOldLayoutName = aTheOldLayoutName;
42 0 : aNewLayoutName = aTheNewLayoutName;
43 0 : eOldAutoLayout = eTheOldAutoLayout;
44 0 : eNewAutoLayout = eTheNewAutoLayout;
45 0 : bSetAutoLayout = bSet;
46 :
47 : DBG_ASSERT(pThePage, "No Page set!");
48 0 : pPage = pThePage;
49 0 : aComment = SD_RESSTR(STR_UNDO_SET_PRESLAYOUT);
50 0 : }
51 :
52 0 : void SdPresentationLayoutUndoAction::Undo()
53 : {
54 0 : pPage->SetPresentationLayout(aOldLayoutName, sal_True, sal_True, sal_True);
55 0 : if (bSetAutoLayout)
56 0 : pPage->SetAutoLayout(eOldAutoLayout, sal_True);
57 0 : }
58 :
59 0 : void SdPresentationLayoutUndoAction::Redo()
60 : {
61 0 : pPage->SetPresentationLayout(aNewLayoutName);
62 0 : if (bSetAutoLayout)
63 0 : pPage->SetAutoLayout(eNewAutoLayout, sal_True);
64 0 : }
65 :
66 0 : SdPresentationLayoutUndoAction::~SdPresentationLayoutUndoAction()
67 : {
68 0 : }
69 :
70 0 : OUString SdPresentationLayoutUndoAction::GetComment() const
71 : {
72 0 : return aComment;
73 : }
74 :
75 :
76 :
77 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|