Resolves tdf#142513 - Order of ZoomIn and ZoomOut at Print Preview
[LibreOffice.git] / sw / inc / fmtftn.hxx
blobd6f80da2ee6648e66e02760a6719f343e628cece
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>
26 #include "swdllapi.h"
27 #include "calbck.hxx"
29 namespace com::sun::star::text {
30 class XFootnote;
31 class XTextRange;
34 class SwDoc;
35 class SwTextFootnote;
36 class SwRootFrame;
38 // ATT_FTN
40 class SW_DLLPUBLIC SwFormatFootnote final
41 : public SfxPoolItem
42 , public sw::BroadcastingModify
44 friend class SwTextFootnote;
45 SwTextFootnote* m_pTextAttr; ///< My TextAttribute.
46 OUString m_aNumber; ///< User-defined 'Number'.
47 sal_uInt16 m_nNumber; ///< automatic sequence number
48 sal_uInt16 m_nNumberRLHidden; ///< automatic sequence number (hidden redlines)
49 bool m_bEndNote; ///< Is it an End note?
51 css::uno::WeakReference<css::text::XFootnote> m_wXFootnote;
53 SwFormatFootnote& operator=(const SwFormatFootnote& rFootnote) = delete;
54 SwFormatFootnote( const SwFormatFootnote& ) = delete;
56 public:
57 SwFormatFootnote( bool bEndNote = false );
58 virtual ~SwFormatFootnote() override;
60 /// "Pure virtual methods" of SfxPoolItem.
61 virtual bool operator==( const SfxPoolItem& ) const override;
62 virtual SwFormatFootnote* Clone( SfxItemPool* pPool = nullptr ) const override;
64 virtual void SwClientNotify(const SwModify&, const SfxHint&) override;
66 void InvalidateFootnote();
68 const OUString& GetNumStr() const { return m_aNumber; }
69 sal_uInt16 GetNumber() const { return m_nNumber; }
70 sal_uInt16 GetNumberRLHidden() const { return m_nNumberRLHidden; }
71 bool IsEndNote() const { return m_bEndNote;}
73 void SetNumStr( const OUString& rStr ) { m_aNumber = rStr; }
74 void SetEndNote( bool b );
76 void SetNumber( const SwFormatFootnote& rFootnote )
78 m_nNumber = rFootnote.m_nNumber;
79 m_nNumberRLHidden = rFootnote.m_nNumberRLHidden;
80 m_aNumber = rFootnote.m_aNumber;
83 const SwTextFootnote *GetTextFootnote() const { return m_pTextAttr; }
84 SwTextFootnote *GetTextFootnote() { return m_pTextAttr; }
86 OUString GetFootnoteText(SwRootFrame const& rLayout) const;
88 /// Returns string to be displayed of footnote / endnote.
89 OUString GetViewNumStr(const SwDoc& rDoc, SwRootFrame const* pLayout,
90 bool bInclStrings = false) const;
92 css::uno::Reference<css::text::XTextRange> getAnchor(SwDoc& rDoc) const;
94 css::uno::WeakReference<css::text::XFootnote> const& GetXFootnote() const
95 { return m_wXFootnote; }
96 void SetXFootnote(css::uno::Reference<css::text::XFootnote> const& xNote)
97 { m_wXFootnote = xNote; }
100 #endif
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */