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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SW_SOURCE_CORE_INC_UNDOSECTION_HXX
21 #define INCLUDED_SW_SOURCE_CORE_INC_UNDOSECTION_HXX
23 #include <o3tl/deleter.hxx>
31 class SwSectionFormat
;
35 enum class RedlineMode
;
36 enum class FieldmarkMode
;
39 class SwUndoInsSection
: public SwUndo
, private SwUndRng
42 const std::unique_ptr
<SwSectionData
> m_pSectionData
;
43 const std::unique_ptr
<std::tuple
<SwTOXBase
*, sw::RedlineMode
, sw::FieldmarkMode
>> m_pTOXBase
; /// set iff section is TOX
44 const std::unique_ptr
<SfxItemSet
> m_pAttrSet
;
45 std::unique_ptr
<SwHistory
> m_pHistory
;
46 std::unique_ptr
<SwRedlineData
> m_pRedlData
;
47 std::unique_ptr
<SwRedlineSaveDatas
> m_pRedlineSaveData
;
48 sal_uLong m_nSectionNodePos
;
49 bool m_bSplitAtStart
: 1;
50 bool m_bSplitAtEnd
: 1;
51 bool m_bUpdateFootnote
: 1;
53 void Join( SwDoc
& rDoc
, sal_uLong nNode
);
56 SwUndoInsSection(SwPaM
const&, SwSectionData
const&,
57 SfxItemSet
const* pSet
,
58 std::tuple
<SwTOXBase
const*, sw::RedlineMode
, sw::FieldmarkMode
> const* pTOXBase
);
60 virtual ~SwUndoInsSection() override
;
62 virtual void UndoImpl( ::sw::UndoRedoContext
& ) override
;
63 virtual void RedoImpl( ::sw::UndoRedoContext
& ) override
;
64 virtual void RepeatImpl( ::sw::RepeatContext
& ) override
;
66 void SetSectNdPos(sal_uLong
const nPos
) { m_nSectionNodePos
= nPos
; }
67 void SaveSplitNode(SwTextNode
*const pTextNd
, bool const bAtStart
);
68 void SetUpdateFootnoteFlag(bool const bFlag
) { m_bUpdateFootnote
= bFlag
; }
71 std::unique_ptr
<SwUndo
> MakeUndoDelSection(SwSectionFormat
const&);
73 std::unique_ptr
<SwUndo
> MakeUndoUpdateSection(SwSectionFormat
const&, bool const);
76 class SwTOXBaseSection
;
77 class SwUndoDelSection
;
79 class SwUndoUpdateIndex
: public SwUndo
82 std::unique_ptr
<SwUndoDelSection
> m_pTitleSectionUpdated
;
83 std::unique_ptr
<SwUndoSaveSection
, o3tl::default_delete
<SwUndoSaveSection
>> const m_pSaveSectionOriginal
;
84 std::unique_ptr
<SwUndoSaveSection
, o3tl::default_delete
<SwUndoSaveSection
>> const m_pSaveSectionUpdated
;
85 sal_uLong
const m_nStartIndex
;
88 SwUndoUpdateIndex(SwTOXBaseSection
&);
89 virtual ~SwUndoUpdateIndex() override
;
91 void TitleSectionInserted(SwSectionFormat
& rSectionFormat
);
93 virtual void UndoImpl(::sw::UndoRedoContext
&) override
;
94 virtual void RedoImpl(::sw::UndoRedoContext
&) override
;
97 #endif // INCLUDED_SW_SOURCE_CORE_INC_UNDOSECTION_HXX
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */