docthemes: Save themes def. to a file when added to ColorSets
[LibreOffice.git] / sw / source / core / inc / doctxm.hxx
blobd33809d5d8853f281968a88f94f73cd60c217e50
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_DOCTXM_HXX
21 #define INCLUDED_SW_SOURCE_CORE_INC_DOCTXM_HXX
23 #include <tools/gen.hxx>
24 #include <hints.hxx>
25 #include <tox.hxx>
26 #include <section.hxx>
28 class SwTOXInternational;
29 class SwPageDesc;
30 class SwTextNode;
31 class SwTextFormatColl;
32 struct SwPosition;
33 struct SwTOXSortTabBase;
35 class SwTOXBaseSection final : public SwTOXBase, public SwSection
37 std::vector<std::unique_ptr<SwTOXSortTabBase>> m_aSortArr;
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 );
56 // insert sorted into array for creation
57 void InsertSorted(std::unique_ptr<SwTOXSortTabBase> pBase);
59 // insert alpha delimiter at creation
60 void InsertAlphaDelimiter( const SwTOXInternational& rIntl );
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 );
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 );
74 // return text collection via name/ from format pool
75 SwTextFormatColl* GetTextFormatColl( sal_uInt16 nLevel );
76 virtual void SwClientNotify(const SwModify& rModify, const SfxHint& rHint) override;
78 public:
79 SwTOXBaseSection(SwTOXBase const& rBase, SwSectionFormat & rFormat);
80 virtual ~SwTOXBaseSection() override;
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
89 bool SetPosAtStartEnd( SwPosition& rPos ) const;
90 bool IsVisible() const override
92 return GetFormat() && GetFormat()->IsVisible();
96 struct SwDefTOXBase_Impl
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;
107 SwDefTOXBase_Impl()
112 #endif
114 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */