blob: 1270dc06cab73d29940e6d5c85a112716b11a0ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <UndoThemeChange.hxx>
#include <svx/dialmgr.hxx>
#include <svx/strings.hrc>
namespace sd
{
UndoThemeChange::UndoThemeChange(SdDrawDocument* pDocument, SdrPage* pMasterPage,
std::shared_ptr<model::ColorSet> const& pOldColorSet,
std::shared_ptr<model::ColorSet> const& pNewColorSet)
: SdUndoAction(pDocument)
, mpMasterPage(pMasterPage)
, mpOldColorSet(pOldColorSet)
, mpNewColorSet(pNewColorSet)
{
SetComment(SvxResId(RID_SVXSTR_UNDO_THEME_COLOR_CHANGE));
}
namespace
{
std::shared_ptr<model::Theme> getTheme(SdrPage* pMasterPage)
{
auto pTheme = pMasterPage->getSdrPageProperties().getTheme();
if (!pTheme)
{
pTheme = std::make_shared<model::Theme>("Office");
pMasterPage->getSdrPageProperties().setTheme(pTheme);
}
return pTheme;
}
}
void UndoThemeChange::Undo()
{
auto pTheme = getTheme(mpMasterPage);
pTheme->setColorSet(mpOldColorSet);
}
void UndoThemeChange::Redo()
{
auto pTheme = getTheme(mpMasterPage);
pTheme->setColorSet(mpNewColorSet);
}
} // end sd namespace
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|