LibreOffice Module sw (master) 1
ftnidx.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_FTNIDX_HXX
20#define INCLUDED_SW_INC_FTNIDX_HXX
21
22#include <vector>
23#include <sal/types.h>
25
27class SwTextFootnote;
28class SwNodeIndex;
29class SwSectionNode;
30class SwNode;
31
32// Everywhere where NodeIndex is used, the header files missing here
33// are already included. Therefore put here as defines only and
34// not as inline methods (saves compile time).
35#define SwTextFootnote_GetIndex( pFIdx ) (pFIdx->GetTextNode().GetIndex())
36
38{
39 bool operator()(SwTextFootnote* const& lhs, SwTextFootnote* const& rhs) const;
40};
41
42class SwFootnoteIdxs : public o3tl::sorted_vector<SwTextFootnote*, CompareSwFootnoteIdxs>
43{
44public:
46
47 void UpdateFootnote( const SwNode& rStt ); // Update all from pos.
48 void UpdateAllFootnote(); // Update all footnotes.
49
50 SwTextFootnote* SeekEntry( const SwNode& rNd, size_t* pPos = nullptr ) const;
51};
52
54{
55 std::vector<const SwSectionNode*> m_aFootnoteSections, m_aEndSections;
56 std::vector<std::pair<sal_uInt16, sal_uInt16>> m_aFootnoteNumbers, m_aEndNumbers;
57
58public:
60
62 const SwTextFootnote& rTextFootnote );
63
64 std::pair<sal_uInt16, sal_uInt16> GetNumber(
65 IDocumentRedlineAccess const&, const SwTextFootnote& rTextFootnote,
66 const SwSectionNode& rNd);
67 std::pair<sal_uInt16, sal_uInt16> ChkNumber(
68 IDocumentRedlineAccess const&, const SwTextFootnote& rTextFootnote);
69};
70
71namespace sw {
72
74 SwTextFootnote const& rTextFootnote);
75
76}
77
78#endif // INCLUDED_SW_INC_FTNIDX_HXX
79
80/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void UpdateAllFootnote()
Definition: ftnidx.cxx:266
SwTextFootnote * SeekEntry(const SwNode &rNd, size_t *pPos=nullptr) const
Definition: ftnidx.cxx:408
void UpdateFootnote(const SwNode &rStt)
Definition: ftnidx.cxx:59
Marks a node in the document model.
Definition: ndindex.hxx:31
Base class of the Writer document model elements.
Definition: node.hxx:98
A section node represents the start of a section on the UI, i.e.
Definition: node.hxx:575
SwTextAttr subclass for footnotes and endnotes.
Definition: txtftn.hxx:34
std::vector< const SwSectionNode * > m_aEndSections
Definition: ftnidx.hxx:55
static const SwSectionNode * FindSectNdWithEndAttr(const SwTextFootnote &rTextFootnote)
Definition: ftnidx.cxx:444
std::pair< sal_uInt16, sal_uInt16 > GetNumber(IDocumentRedlineAccess const &, const SwTextFootnote &rTextFootnote, const SwSectionNode &rNd)
Definition: ftnidx.cxx:462
std::vector< std::pair< sal_uInt16, sal_uInt16 > > m_aFootnoteNumbers
Definition: ftnidx.hxx:56
std::pair< sal_uInt16, sal_uInt16 > ChkNumber(IDocumentRedlineAccess const &, const SwTextFootnote &rTextFootnote)
Definition: ftnidx.cxx:509
std::vector< std::pair< sal_uInt16, sal_uInt16 > > m_aEndNumbers
Definition: ftnidx.hxx:56
std::vector< const SwSectionNode * > m_aFootnoteSections
Definition: ftnidx.hxx:55
Dialog to specify the properties of date form field.
bool IsFootnoteDeleted(IDocumentRedlineAccess const &rIDRA, SwTextFootnote const &rTextFootnote)
Definition: ftnidx.cxx:37
bool operator()(SwTextFootnote *const &lhs, SwTextFootnote *const &rhs) const
Definition: ftnidx.cxx:52