LibreOffice Module sw (master) 1
SwUndoField.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#ifndef INCLUDED_SW_INC_SWUNDOFIELD_HXX
20#define INCLUDED_SW_INC_SWUNDOFIELD_HXX
21
22#include "undobj.hxx"
23
24#include <com/sun/star/uno/Any.h>
25
26class SwDoc;
27class SwField;
28class SwMsgPoolItem;
29
30class SwUndoField : public SwUndo
31{
33 sal_Int32 m_nOffset;
34
35protected:
38
39public:
40 SwUndoField(const SwPosition & rPos );
41 virtual ~SwUndoField() override;
42};
43
44class SwUndoFieldFromDoc final : public SwUndoField
45{
46 std::unique_ptr<SwField> m_pOldField, m_pNewField;
48
49 void DoImpl();
50
51public:
53 const SwField& aOldField,
54 const SwField& aNewField,
55 bool bUpdate);
56
57 virtual ~SwUndoFieldFromDoc() override;
58
59 virtual void UndoImpl( ::sw::UndoRedoContext & ) override;
60 virtual void RedoImpl( ::sw::UndoRedoContext & ) override;
61 virtual void RepeatImpl( ::sw::RepeatContext & ) override;
62};
63
64class SwUndoFieldFromAPI final : public SwUndoField
65{
66 css::uno::Any m_aOldVal, m_aNewVal;
67 sal_uInt16 m_nWhich;
68
69 void DoImpl();
70
71public:
72 SwUndoFieldFromAPI(const SwPosition & rPos,
73 css::uno::Any aOldVal,
74 css::uno::Any aNewVal,
75 sal_uInt16 nWhich);
76 virtual ~SwUndoFieldFromAPI() override;
77
78 virtual void UndoImpl( ::sw::UndoRedoContext & ) override;
79 virtual void RedoImpl( ::sw::UndoRedoContext & ) override;
80 virtual void RepeatImpl( ::sw::RepeatContext & ) override;
81};
82
83#endif // INCLUDED_SW_INC_SWUNDOFIELD_HXX
84
85/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: doc.hxx:197
Base class of all fields.
Definition: fldbas.hxx:296
css::uno::Any m_aOldVal
Definition: SwUndoField.hxx:66
SwUndoFieldFromAPI(const SwPosition &rPos, css::uno::Any aOldVal, css::uno::Any aNewVal, sal_uInt16 nWhich)
virtual void UndoImpl(::sw::UndoRedoContext &) override
virtual void RepeatImpl(::sw::RepeatContext &) override
virtual void RedoImpl(::sw::UndoRedoContext &) override
virtual ~SwUndoFieldFromAPI() override
css::uno::Any m_aNewVal
Definition: SwUndoField.hxx:66
sal_uInt16 m_nWhich
Definition: SwUndoField.hxx:67
SwUndoFieldFromDoc(const SwPosition &rPos, const SwField &aOldField, const SwField &aNewField, bool bUpdate)
Definition: SwUndoField.cxx:57
virtual ~SwUndoFieldFromDoc() override
Definition: SwUndoField.cxx:71
virtual void UndoImpl(::sw::UndoRedoContext &) override
Definition: SwUndoField.cxx:75
virtual void RepeatImpl(::sw::RepeatContext &) override
virtual void RedoImpl(::sw::UndoRedoContext &) override
std::unique_ptr< SwField > m_pNewField
Definition: SwUndoField.hxx:46
std::unique_ptr< SwField > m_pOldField
Definition: SwUndoField.hxx:46
SwUndoField(const SwPosition &rPos)
Definition: SwUndoField.cxx:36
sal_Int32 m_nOffset
Definition: SwUndoField.hxx:33
virtual ~SwUndoField() override
Definition: SwUndoField.cxx:44
SwPosition GetPosition()
Definition: SwUndoField.cxx:48
SwNodeOffset m_nNodeIndex
Definition: SwUndoField.hxx:32
SwDoc * m_pDoc
Definition: SwUndoField.hxx:36
Marks a position in the document model.
Definition: pam.hxx:38