LibreOffice Module sw (master) 1
unoutl.cxx
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
20#include <doc.hxx>
21#include <swundo.hxx>
22#include <pam.hxx>
23
24#include <UndoCore.hxx>
25
27 short nOff )
28 : SwUndo( SwUndoId::OUTLINE_LR, &rPam.GetDoc() ), SwUndRng( rPam ), m_nOffset( nOff )
29{
30}
31
33{
34 SwPaM & rPaM( AddUndoRedoPaM(rContext) );
35 rContext.GetDoc().OutlineUpDown(rPaM, -m_nOffset);
36}
37
39{
40 SwPaM & rPaM( AddUndoRedoPaM(rContext) );
41 rContext.GetDoc().OutlineUpDown(rPaM, m_nOffset);
42}
43
45{
46 rContext.GetDoc().OutlineUpDown(rContext.GetRepeatPaM(), m_nOffset);
47}
48
49
51 const SwDoc& rDoc)
53 , m_aNewNumRule(rNewRule)
54 , m_aOldNumRule(rOldRule)
55{
56}
57
59{
61}
62
64{
66}
67
69{
71}
72
73/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: doc.hxx:197
bool OutlineUpDown(const SwPaM &rPam, short nOffset, SwRootFrame const *pLayout=nullptr)
Definition: docnum.cxx:199
void SetOutlineNumRule(const SwNumRule &rRule)
Definition: docnum.cxx:112
PaM is Point and Mark: a selection of the document model.
Definition: pam.hxx:188
SwPaM & AddUndoRedoPaM(::sw::UndoRedoContext &, bool const bCorrToContent=false) const
Definition: undobj.cxx:100
SwNumRule m_aNewNumRule
Definition: UndoCore.hxx:232
SwUndoOutlineEdit(const SwNumRule &rOldRule, const SwNumRule &rNewRule, const SwDoc &rDoc)
Definition: unoutl.cxx:50
virtual void RedoImpl(::sw::UndoRedoContext &) override
Definition: unoutl.cxx:63
virtual void RepeatImpl(::sw::RepeatContext &) override
Definition: unoutl.cxx:68
virtual void UndoImpl(::sw::UndoRedoContext &) override
Definition: unoutl.cxx:58
SwNumRule m_aOldNumRule
Definition: UndoCore.hxx:233
virtual void RedoImpl(::sw::UndoRedoContext &) override
Definition: unoutl.cxx:38
virtual void UndoImpl(::sw::UndoRedoContext &) override
Definition: unoutl.cxx:32
virtual void RepeatImpl(::sw::RepeatContext &) override
Definition: unoutl.cxx:44
SwUndoOutlineLeftRight(const SwPaM &rPam, short nOffset)
Definition: unoutl.cxx:26
SwDoc & GetDoc() const
Definition: UndoCore.hxx:132
SwPaM & GetRepeatPaM()
Definition: UndoCore.hxx:134
SwDoc & GetDoc() const
Definition: UndoCore.hxx:95
SwUndoId
Definition: swundo.hxx:30