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 #ifndef INCLUDED_SW_INC_FMTHDFT_HXX
20 #define INCLUDED_SW_INC_FMTHDFT_HXX
21 
22 #include "hintids.hxx"
23 #include "format.hxx"
24 #include <svl/poolitem.hxx>
25 #include "calbck.hxx"
26 #include "frmfmt.hxx"
27 
28 class IntlWrapper;
29 
30  /** Header, for PageFormats
31  Client of FrameFormat describing the header. */
32 
33 class SW_DLLPUBLIC SwFormatHeader: public SfxPoolItem, public SwClient
34 {
35     bool const m_bActive;       ///< Only for controlling (creation of content).
36 
37 public:
38     SwFormatHeader( bool bOn = false );
39     SwFormatHeader( SwFrameFormat *pHeaderFormat );
40     SwFormatHeader( const SwFormatHeader &rCpy );
41     virtual ~SwFormatHeader() override;
42     SwFormatHeader& operator=( const SwFormatHeader &rCpy );
43 
44 
45     /// "pure virtual methods" of SfxPoolItem
46     virtual bool            operator==( const SfxPoolItem& ) const override;
47     virtual SfxPoolItem*    Clone( SfxItemPool* pPool = nullptr ) const override;
48     virtual bool GetPresentation( SfxItemPresentation ePres,
49                                   MapUnit eCoreMetric,
50                                   MapUnit ePresMetric,
51                                   OUString &rText,
52                                   const IntlWrapper& rIntl ) const override;
53 
GetHeaderFormat() const54     const SwFrameFormat *GetHeaderFormat() const { return static_cast<const SwFrameFormat*>(GetRegisteredIn()); }
GetHeaderFormat()55           SwFrameFormat *GetHeaderFormat()       { return static_cast<SwFrameFormat*>(GetRegisteredIn()); }
56 
57     void RegisterToFormat( SwFormat& rFormat );
IsActive() const58     bool IsActive() const { return m_bActive; }
59 };
60 
61  /**Footer, for pageformats
62  Client of FrameFormat describing the footer */
63 
64 class SW_DLLPUBLIC SwFormatFooter: public SfxPoolItem, public SwClient
65 {
66     bool const m_bActive;       // Only for controlling (creation of content).
67 
68 public:
69     SwFormatFooter( bool bOn = false );
70     SwFormatFooter( SwFrameFormat *pFooterFormat );
71     SwFormatFooter( const SwFormatFooter &rCpy );
72     virtual ~SwFormatFooter() override;
73     SwFormatFooter& operator=( const SwFormatFooter &rCpy );
74 
75 
76     /// "pure virtual methods" of SfxPoolItem
77     virtual bool            operator==( const SfxPoolItem& ) const override;
78     virtual SfxPoolItem*    Clone( SfxItemPool* pPool = nullptr ) const override;
79     virtual bool GetPresentation( SfxItemPresentation ePres,
80                                   MapUnit eCoreMetric,
81                                   MapUnit ePresMetric,
82                                   OUString &rText,
83                                   const IntlWrapper& rIntl ) const override;
84 
GetFooterFormat() const85     const SwFrameFormat *GetFooterFormat() const { return static_cast<const SwFrameFormat*>(GetRegisteredIn()); }
GetFooterFormat()86           SwFrameFormat *GetFooterFormat()       { return static_cast<SwFrameFormat*>(GetRegisteredIn()); }
87 
88     void RegisterToFormat( SwFormat& rFormat );
IsActive() const89     bool IsActive() const { return m_bActive; }
90 };
91 
GetHeader(bool bInP) const92 inline const SwFormatHeader &SwAttrSet::GetHeader(bool bInP) const
93     { return Get( RES_HEADER,bInP); }
GetFooter(bool bInP) const94 inline const SwFormatFooter &SwAttrSet::GetFooter(bool bInP) const
95     { return Get( RES_FOOTER,bInP); }
96 
GetHeader(bool bInP) const97 inline const SwFormatHeader &SwFormat::GetHeader(bool bInP) const
98     { return m_aSet.GetHeader(bInP); }
GetFooter(bool bInP) const99 inline const SwFormatFooter &SwFormat::GetFooter(bool bInP) const
100     { return m_aSet.GetFooter(bInP); }
101 
102 #endif
103 
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
105