android: Update app-specific/MIME type icons
[LibreOffice.git] / sw / inc / fmtftn.hxx
bloba34b2b83b482ffee9863ecc2d7837a29066bb748
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_FMTFTN_HXX
20 #define INCLUDED_SW_INC_FMTFTN_HXX
22 #include <rtl/ustring.hxx>
23 #include <cppuhelper/weakref.hxx>
24 #include <svl/poolitem.hxx>
25 #include <unotools/weakref.hxx>
26 #include <com/sun/star/text/XFootnote.hpp>
28 #include "swdllapi.h"
29 #include "calbck.hxx"
31 namespace com::sun::star::text {
32 class XTextRange;
35 class SwDoc;
36 class SwTextFootnote;
37 class SwRootFrame;
38 class SwXFootnote;
40 // ATT_FTN
42 class SW_DLLPUBLIC SwFormatFootnote final
43 : public SfxPoolItem
44 , public sw::BroadcastingModify
46 friend class SwTextFootnote;
47 SwTextFootnote* m_pTextAttr; ///< My TextAttribute.
48 OUString m_aNumber; ///< User-defined 'Number'.
49 sal_uInt16 m_nNumber; ///< automatic sequence number
50 sal_uInt16 m_nNumberRLHidden; ///< automatic sequence number (hidden redlines)
51 bool m_bEndNote; ///< Is it an End note?
53 unotools::WeakReference<SwXFootnote> m_wXFootnote;
55 SwFormatFootnote& operator=(const SwFormatFootnote& rFootnote) = delete;
56 SwFormatFootnote( const SwFormatFootnote& ) = delete;
58 public:
59 SwFormatFootnote( bool bEndNote = false );
60 virtual ~SwFormatFootnote() override;
62 /// "Pure virtual methods" of SfxPoolItem.
63 virtual bool operator==( const SfxPoolItem& ) const override;
64 virtual SwFormatFootnote* Clone( SfxItemPool* pPool = nullptr ) const override;
66 virtual void SwClientNotify(const SwModify&, const SfxHint&) override;
68 void InvalidateFootnote();
70 const OUString& GetNumStr() const { return m_aNumber; }
71 sal_uInt16 GetNumber() const { return m_nNumber; }
72 sal_uInt16 GetNumberRLHidden() const { return m_nNumberRLHidden; }
73 bool IsEndNote() const { return m_bEndNote;}
75 void SetNumStr( const OUString& rStr ) { m_aNumber = rStr; }
76 void SetEndNote( bool b );
78 void SetNumber( const SwFormatFootnote& rFootnote )
80 m_nNumber = rFootnote.m_nNumber;
81 m_nNumberRLHidden = rFootnote.m_nNumberRLHidden;
82 m_aNumber = rFootnote.m_aNumber;
85 const SwTextFootnote *GetTextFootnote() const { return m_pTextAttr; }
86 SwTextFootnote *GetTextFootnote() { return m_pTextAttr; }
88 OUString GetFootnoteText(SwRootFrame const& rLayout) const;
90 /// Returns string to be displayed of footnote / endnote.
91 OUString GetViewNumStr(const SwDoc& rDoc, SwRootFrame const* pLayout,
92 bool bInclStrings = false) const;
94 css::uno::Reference<css::text::XTextRange> getAnchor(SwDoc& rDoc) const;
96 unotools::WeakReference<SwXFootnote> const& GetXFootnote() const
97 { return m_wXFootnote; }
98 void SetXFootnote(rtl::Reference<SwXFootnote> const& xNote);
100 void dumpAsXml(xmlTextWriterPtr pWriter) const override;
103 #endif
105 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */