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 0 : TYPEINIT1(SdPresentationLayoutUndoAction, SdUndoAction);
28 :
29 0 : SdPresentationLayoutUndoAction::SdPresentationLayoutUndoAction(
30 : SdDrawDocument* pTheDoc,
31 : const OUString& aTheOldLayoutName,
32 : const OUString& aTheNewLayoutName,
33 : AutoLayout eTheOldAutoLayout,
34 : AutoLayout eTheNewAutoLayout,
35 : bool bSet,
36 : SdPage* pThePage):
37 0 : SdUndoAction(pTheDoc)
38 : {
39 0 : aOldLayoutName = aTheOldLayoutName;
40 0 : aNewLayoutName = aTheNewLayoutName;
41 0 : eOldAutoLayout = eTheOldAutoLayout;
42 0 : eNewAutoLayout = eTheNewAutoLayout;
43 0 : bSetAutoLayout = bSet;
44 :
45 : DBG_ASSERT(pThePage, "No Page set!");
46 0 : pPage = pThePage;
47 0 : aComment = SD_RESSTR(STR_UNDO_SET_PRESLAYOUT);
48 0 : }
49 :
50 0 : void SdPresentationLayoutUndoAction::Undo()
51 : {
52 0 : pPage->SetPresentationLayout(aOldLayoutName, true, true, true);
53 0 : if (bSetAutoLayout)
54 0 : pPage->SetAutoLayout(eOldAutoLayout, true);
55 0 : }
56 :
57 0 : void SdPresentationLayoutUndoAction::Redo()
58 : {
59 0 : pPage->SetPresentationLayout(aNewLayoutName);
60 0 : if (bSetAutoLayout)
61 0 : pPage->SetAutoLayout(eNewAutoLayout, true);
62 0 : }
63 :
64 0 : SdPresentationLayoutUndoAction::~SdPresentationLayoutUndoAction()
65 : {
66 0 : }
67 :
68 0 : OUString SdPresentationLayoutUndoAction::GetComment() const
69 : {
70 0 : return aComment;
71 66 : }
72 :
73 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|