tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sc / source / ui / inc / undo / UndoEditSparkline.hxx
blob78bd096bc9c39ca1524d81ed7aedc89f4245694c
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 */
11 #pragma once
13 #include <undobase.hxx>
14 #include <address.hxx>
15 #include <rangelst.hxx>
16 #include <memory>
18 namespace sc
20 class Sparkline;
21 struct SparklineData;
23 /** Undo action for editing a Sparkline */
24 class UndoEditSparkline : public ScSimpleUndo
26 private:
27 std::shared_ptr<sc::Sparkline> mpSparkline;
28 SCTAB mnTab;
29 ScRangeList maOldDataRange;
30 ScRangeList maNewDataRange;
32 public:
33 UndoEditSparkline(ScDocShell& rDocShell, std::shared_ptr<sc::Sparkline> pSparkline, SCTAB nTab,
34 ScRangeList rDataRange);
36 virtual ~UndoEditSparkline() override;
38 void Undo() override;
39 void Redo() override;
40 bool CanRepeat(SfxRepeatTarget& rTarget) const override;
41 void Repeat(SfxRepeatTarget& rTarget) override;
42 OUString GetComment() const override;
45 } // namespace sc
47 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */