blob: 0ba712f197273342819f8fba112071dbd374e3e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SW_SOURCE_CORE_INC_NODE2LAY_HXX
#define INCLUDED_SW_SOURCE_CORE_INC_NODE2LAY_HXX
#include <nodeoffset.hxx>
#include <memory>
/**
* This class connects the Nodes with the Layouts.
* It provides an intelligent iterator over Frames belonging to the Node or
* Node Range. Depending on the purpose of iterating (e.g. to insert other
* Frames before or after the Frames) Master/Follows are recognized and only
* the relevant ones are returned. Repeated table headers are also taken
* into account.
* It's possible to iterate over SectionNodes that are either not directly
* assigned to a SectionFrame or to multiple ones due to nesting.
*
* This class is an interface between the method and a SwClientIter: it
* chooses the right sw::BroadcastingModify depending on the task, creates a SwClientIter
* and filters its iterations depending on the task.
* The task is determined by the choice of class.
*
* 1. Collecting the UpperFrames (so that later RestoreUpperFrames can be called)
* is called by MakeFrames, if there's no PrevNext (before/after we can insert
* the Frames).
* 2. Inserting the Frames before/after which the new Frames of a Node need to
* be inserted, is also called by MakeFrames.
*/
class SwNode2LayImpl;
class SwFrame;
class SwLayoutFrame;
class SwNode;
class SwNodes;
class Point;
class SwNode2Layout
{
std::unique_ptr<SwNode2LayImpl> m_pImpl;
public:
/// Use this ctor for inserting before/after rNd
/// @param nIdx is the index of the to-be-inserted Node
SwNode2Layout(const SwNode& rNd, SwNodeOffset nIdx);
~SwNode2Layout();
SwFrame* NextFrame();
SwLayoutFrame* UpperFrame(SwFrame*& rpFrame, const SwNode& rNode);
SwFrame* GetFrame(const Point* pDocPos) const;
};
class SwNode2LayoutSaveUpperFrames
{
std::unique_ptr<SwNode2LayImpl> m_pImpl;
public:
/// Use this ctor for collecting the UpperFrames
SwNode2LayoutSaveUpperFrames(const SwNode& rNd);
~SwNode2LayoutSaveUpperFrames();
void RestoreUpperFrames(SwNodes& rNds, SwNodeOffset nStt, SwNodeOffset nEnd);
};
namespace sw
{
SwFrame const* FindNeighbourFrameForNode(SwNode const& rNode);
} // namespace sw
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|