LibreOffice Module vcl (master) 1
textundo.hxx
Go to the documentation of this file.
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#pragma once
20
21#include <svl/undo.hxx>
22#include <vcl/texteng.hxx>
23
24class TextEngine;
25class TextView;
26class TextSelection;
27class TextDoc;
28class TEParaPortions;
29
31{
33
34protected:
35
36 void UndoRedoStart();
37 void UndoRedoEnd();
38
40
41public:
42 explicit TextUndoManager( TextEngine* pTextEngine );
43 virtual ~TextUndoManager() override;
44
46 virtual bool Undo() override;
48 virtual bool Redo() override;
49
50};
51
52class TextUndo : public SfxUndoAction
53{
54private:
56
57protected:
58
60 void SetSelection( const TextSelection& rSel );
61
62 TextDoc* GetDoc() const { return mpTextEngine->mpDoc.get(); }
64
65public:
66 explicit TextUndo( TextEngine* pTextEngine );
67 virtual ~TextUndo() override;
68
70
71 virtual void Undo() override = 0;
72 virtual void Redo() override = 0;
73
74 virtual OUString GetComment() const override;
75};
76
77/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual bool Undo()
virtual bool Redo()
std::unique_ptr< TextDoc > mpDoc
Definition: texteng.hxx:83
TextView * GetActiveView() const
Definition: texteng.hxx:230
std::unique_ptr< TEParaPortions > mpTEParaPortions
Definition: texteng.hxx:84
virtual bool Undo() override
Definition: textundo.cxx:70
TextView * GetView() const
Definition: textundo.hxx:39
TextUndoManager(TextEngine *pTextEngine)
Definition: textundo.cxx:61
virtual bool Redo() override
Definition: textundo.cxx:86
void UndoRedoStart()
Definition: textundo.cxx:102
TextEngine * mpTextEngine
Definition: textundo.hxx:32
void UndoRedoEnd()
Definition: textundo.cxx:107
virtual ~TextUndoManager() override
Definition: textundo.cxx:66
TextEngine * mpTextEngine
Definition: textundo.hxx:55
virtual void Undo() override=0
virtual ~TextUndo() override
Definition: textundo.cxx:124
TextView * GetView() const
Definition: textundo.hxx:59
TextEngine * GetTextEngine() const
Definition: textundo.hxx:69
TextDoc * GetDoc() const
Definition: textundo.hxx:62
TEParaPortions * GetTEParaPortions() const
Definition: textundo.hxx:63
virtual OUString GetComment() const override
Definition: textundo.cxx:128
void SetSelection(const TextSelection &rSel)
Definition: textundo.cxx:133
virtual void Redo() override=0
TextUndo(TextEngine *pTextEngine)
Definition: textundo.cxx:119