nss: upgrade to release 3.73
[LibreOffice.git] / sw / inc / txtftn.hxx
blob9d6aa60ff49be1a9830b3a0070174faea29ac5de
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 .
19 #ifndef INCLUDED_SW_INC_TXTFTN_HXX
20 #define INCLUDED_SW_INC_TXTFTN_HXX
22 #include <rtl/ustring.hxx>
23 #include "txatbase.hxx"
25 class SwNodeIndex;
26 class SwTextNode;
27 class SwNodes;
28 class SwDoc;
29 class SwRootFrame;
31 class SW_DLLPUBLIC SwTextFootnote : public SwTextAttr
33 std::unique_ptr<SwNodeIndex> m_pStartNode;
34 SwTextNode * m_pTextNode;
35 sal_uInt16 m_nSeqNo;
37 public:
38 SwTextFootnote( SwFormatFootnote& rAttr, sal_Int32 nStart );
39 virtual ~SwTextFootnote() override;
41 SwNodeIndex *GetStartNode() const { return m_pStartNode.get(); }
42 void SetStartNode( const SwNodeIndex *pNode, bool bDelNodes = true );
43 void SetNumber(sal_uInt16 nNumber, sal_uInt16 nNumberRLHidden, const OUString &sNumStr);
44 void CopyFootnote(SwTextFootnote & rDest, SwTextNode & rDestNode) const;
46 // Get and set TextNode pointer.
47 inline const SwTextNode& GetTextNode() const;
48 void ChgTextNode( SwTextNode* pNew ) { m_pTextNode = pNew; }
50 // Create a new empty TextSection for this footnote.
51 void MakeNewTextSection( SwNodes& rNodes );
53 // Delete the FootnoteFrame from page.
54 void DelFrames(const SwRootFrame *);
56 // Check conditional paragraph styles.
57 void CheckCondColl();
59 void InvalidateNumberInLayout();
61 // For references to footnotes.
62 void SetSeqRefNo();
63 void SetSeqNo( sal_uInt16 n ) { m_nSeqNo = n; } // For Readers.
64 sal_uInt16 GetSeqRefNo() const { return m_nSeqNo; }
66 static void SetUniqueSeqRefNo( SwDoc& rDoc );
69 inline const SwTextNode& SwTextFootnote::GetTextNode() const
71 assert( m_pTextNode );
72 return *m_pTextNode;
75 #endif
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */