LibreOffice Module sw (master) 1
doctxm.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
20#ifndef INCLUDED_SW_SOURCE_CORE_INC_DOCTXM_HXX
21#define INCLUDED_SW_SOURCE_CORE_INC_DOCTXM_HXX
22
23#include <tools/gen.hxx>
24#include <hints.hxx>
25#include <tox.hxx>
26#include <section.hxx>
27
29class SwPageDesc;
30class SwTextNode;
32struct SwPosition;
33struct SwTOXSortTabBase;
34
35class SwTOXBaseSection final : public SwTOXBase, public SwSection
36{
37 std::vector<std::unique_ptr<SwTOXSortTabBase>> m_aSortArr;
38
39 void UpdateMarks( const SwTOXInternational& rIntl,
40 const SwTextNode* pOwnChapterNode,
41 SwRootFrame const* pLayout );
42 void UpdateOutline( const SwTextNode* pOwnChapterNode,
43 SwRootFrame const* pLayout );
44 void UpdateTemplate( const SwTextNode* pOwnChapterNode,
45 SwRootFrame const* pLayout );
46 void UpdateContent( SwTOXElement eType,
47 const SwTextNode* pOwnChapterNode,
48 SwRootFrame const* pLayout );
49 void UpdateTable( const SwTextNode* pOwnChapterNode,
50 SwRootFrame const* pLayout );
51 void UpdateSequence( const SwTextNode* pOwnChapterNode,
52 SwRootFrame const* pLayout );
53 void UpdateAuthorities( const SwTOXInternational& rIntl,
54 SwRootFrame const* pLayout );
55
56 // insert sorted into array for creation
57 void InsertSorted(std::unique_ptr<SwTOXSortTabBase> pBase);
58
59 // insert alpha delimiter at creation
60 void InsertAlphaDelimiter( const SwTOXInternational& rIntl );
61
62 // replace page num placeholder with actual page number
63 void UpdatePageNum_( SwTextNode* pNd,
64 const std::vector<sal_uInt16>& rNums,
65 const std::vector<SwPageDesc*>& rDescs,
66 const std::vector<sal_uInt16>* pMainEntryNums,
67 const SwTOXInternational& rIntl );
68
69 // get section for entering keywords
70 Range GetKeyRange( const OUString& rStr, const OUString& rStrReading,
71 const SwTOXSortTabBase& rNew, sal_uInt16 nLevel,
72 const Range& rRange );
73
74 // return text collection via name/ from format pool
76 virtual void SwClientNotify(const SwModify& rModify, const SfxHint& rHint) override;
77
78public:
79 SwTOXBaseSection(SwTOXBase const& rBase, SwSectionFormat & rFormat);
80 virtual ~SwTOXBaseSection() override;
81
82 // <_bNewTOX> : distinguish between the creation of a new table-of-content
83 // (true) or an update of a table-of-content (false)
84 void Update( const SfxItemSet* pAttr = nullptr,
85 SwRootFrame const* pLayout = nullptr,
86 const bool _bNewTOX = false );
87 void UpdatePageNum(); // insert page numbering
88
89 bool SetPosAtStartEnd( SwPosition& rPos ) const;
90 bool IsVisible() const override
91 {
92 return GetFormat() && GetFormat()->IsVisible();
93 }
94};
95
97{
98 std::unique_ptr<SwTOXBase> pContBase;
99 std::unique_ptr<SwTOXBase> pIdxBase;
100 std::unique_ptr<SwTOXBase> pUserBase;
101 std::unique_ptr<SwTOXBase> pTableBase;
102 std::unique_ptr<SwTOXBase> pObjBase;
103 std::unique_ptr<SwTOXBase> pIllBase;
104 std::unique_ptr<SwTOXBase> pAuthBase;
105 std::unique_ptr<SwTOXBase> pBiblioBase;
106
108 {
109 }
110};
111
112#endif
113
114/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
The root element of a Writer document layout.
Definition: rootfrm.hxx:85
virtual bool IsVisible() const override
Definition: section.cxx:813
SwSectionFormat * GetFormat()
Definition: section.hxx:341
void UpdateTemplate(const SwTextNode *pOwnChapterNode, SwRootFrame const *pLayout)
Generate table of contents from template areas.
Definition: doctxm.cxx:1346
void UpdatePageNum()
Calculate PageNumber and insert after formatting.
Definition: doctxm.cxx:1668
bool IsVisible() const override
Definition: doctxm.hxx:90
void InsertAlphaDelimiter(const SwTOXInternational &rIntl)
Definition: doctxm.cxx:1163
void UpdateTable(const SwTextNode *pOwnChapterNode, SwRootFrame const *pLayout)
Collect table entries.
Definition: doctxm.cxx:1617
void UpdateSequence(const SwTextNode *pOwnChapterNode, SwRootFrame const *pLayout)
Generate content from sequence fields.
Definition: doctxm.cxx:1390
void InsertSorted(std::unique_ptr< SwTOXSortTabBase > pBase)
Definition: doctxm.cxx:1954
virtual void SwClientNotify(const SwModify &rModify, const SfxHint &rHint) override
Definition: doctxm.cxx:1255
Range GetKeyRange(const OUString &rStr, const OUString &rStrReading, const SwTOXSortTabBase &rNew, sal_uInt16 nLevel, const Range &rRange)
Find Key Range and insert if possible.
Definition: doctxm.cxx:2041
void UpdateContent(SwTOXElement eType, const SwTextNode *pOwnChapterNode, SwRootFrame const *pLayout)
Definition: doctxm.cxx:1512
void Update(const SfxItemSet *pAttr=nullptr, SwRootFrame const *pLayout=nullptr, const bool _bNewTOX=false)
Collect table of contents content.
Definition: doctxm.cxx:853
void UpdateMarks(const SwTOXInternational &rIntl, const SwTextNode *pOwnChapterNode, SwRootFrame const *pLayout)
Create from Marks.
Definition: doctxm.cxx:1281
SwTextFormatColl * GetTextFormatColl(sal_uInt16 nLevel)
Evaluate Template.
Definition: doctxm.cxx:1206
bool SetPosAtStartEnd(SwPosition &rPos) const
Definition: doctxm.cxx:839
SwTOXBaseSection(SwTOXBase const &rBase, SwSectionFormat &rFormat)
Definition: doctxm.cxx:827
void UpdateOutline(const SwTextNode *pOwnChapterNode, SwRootFrame const *pLayout)
Generate table of contents from outline.
Definition: doctxm.cxx:1320
void UpdateAuthorities(const SwTOXInternational &rIntl, SwRootFrame const *pLayout)
Definition: doctxm.cxx:1433
std::vector< std::unique_ptr< SwTOXSortTabBase > > m_aSortArr
Definition: doctxm.hxx:37
void UpdatePageNum_(SwTextNode *pNd, const std::vector< sal_uInt16 > &rNums, const std::vector< SwPageDesc * > &rDescs, const std::vector< sal_uInt16 > *pMainEntryNums, const SwTOXInternational &rIntl)
Definition: doctxm.cxx:1794
virtual ~SwTOXBaseSection() override
Definition: doctxm.cxx:835
sal_uInt16 nLevel
Definition: tox.hxx:441
Represents the style of a paragraph.
Definition: fmtcol.hxx:61
SwTextNode is a paragraph in the document model.
Definition: ndtxt.hxx:112
std::unique_ptr< SwTOXBase > pAuthBase
Definition: doctxm.hxx:104
std::unique_ptr< SwTOXBase > pContBase
Definition: doctxm.hxx:98
std::unique_ptr< SwTOXBase > pTableBase
Definition: doctxm.hxx:101
std::unique_ptr< SwTOXBase > pObjBase
Definition: doctxm.hxx:102
std::unique_ptr< SwTOXBase > pIllBase
Definition: doctxm.hxx:103
std::unique_ptr< SwTOXBase > pIdxBase
Definition: doctxm.hxx:99
std::unique_ptr< SwTOXBase > pBiblioBase
Definition: doctxm.hxx:105
std::unique_ptr< SwTOXBase > pUserBase
Definition: doctxm.hxx:100
Marks a position in the document model.
Definition: pam.hxx:38
Class for sorting directories.
Definition: txmsrt.hxx:124
SwTOXElement
Definition: tox.hxx:366