1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
13 #include <undobase.hxx>
14 #include <address.hxx>
15 #include <rangelst.hxx>
23 /** Undo action for editing a Sparkline */
24 class UndoEditSparkline
: public ScSimpleUndo
27 std::shared_ptr
<sc::Sparkline
> mpSparkline
;
29 ScRangeList maOldDataRange
;
30 ScRangeList maNewDataRange
;
33 UndoEditSparkline(ScDocShell
& rDocShell
, std::shared_ptr
<sc::Sparkline
> pSparkline
, SCTAB nTab
,
34 ScRangeList rDataRange
);
36 virtual ~UndoEditSparkline() override
;
40 bool CanRepeat(SfxRepeatTarget
& rTarget
) const override
;
41 void Repeat(SfxRepeatTarget
& rTarget
) override
;
42 OUString
GetComment() const override
;
47 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */