1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_FMTHDFT_HXX
20 #define INCLUDED_SW_INC_FMTHDFT_HXX
22 #include <hintids.hxx>
24 #include <svl/poolitem.hxx>
31 /** Header, for PageFormats
32 Client of FrameFormat describing the header. */
34 class SW_DLLPUBLIC SwFormatHeader
: public SfxPoolItem
, public SwClient
36 bool bActive
; ///< Only for controlling (creation of content).
39 SwFormatHeader( bool bOn
= false );
40 SwFormatHeader( SwFrameFormat
*pHeaderFormat
);
41 SwFormatHeader( const SwFormatHeader
&rCpy
);
42 virtual ~SwFormatHeader();
43 SwFormatHeader
& operator=( const SwFormatHeader
&rCpy
);
47 /// "pure virtual methods" of SfxPoolItem
48 virtual bool operator==( const SfxPoolItem
& ) const SAL_OVERRIDE
;
49 virtual SfxPoolItem
* Clone( SfxItemPool
* pPool
= 0 ) const SAL_OVERRIDE
;
50 virtual bool GetPresentation( SfxItemPresentation ePres
,
51 SfxMapUnit eCoreMetric
,
52 SfxMapUnit ePresMetric
,
54 const IntlWrapper
* pIntl
= 0 ) const SAL_OVERRIDE
;
56 const SwFrameFormat
*GetHeaderFormat() const { return static_cast<const SwFrameFormat
*>(GetRegisteredIn()); }
57 SwFrameFormat
*GetHeaderFormat() { return static_cast<SwFrameFormat
*>(GetRegisteredIn()); }
59 void RegisterToFormat( SwFormat
& rFormat
);
60 bool IsActive() const { return bActive
; }
61 void SetActive( bool bNew
= true ) { bActive
= bNew
; }
64 /**Footer, for pageformats
65 Client of FrameFormat describing the footer */
67 class SW_DLLPUBLIC SwFormatFooter
: public SfxPoolItem
, public SwClient
69 bool bActive
; // Only for controlling (creation of content).
72 SwFormatFooter( bool bOn
= false );
73 SwFormatFooter( SwFrameFormat
*pFooterFormat
);
74 SwFormatFooter( const SwFormatFooter
&rCpy
);
75 virtual ~SwFormatFooter();
76 SwFormatFooter
& operator=( const SwFormatFooter
&rCpy
);
80 /// "pure virtual methods" of SfxPoolItem
81 virtual bool operator==( const SfxPoolItem
& ) const SAL_OVERRIDE
;
82 virtual SfxPoolItem
* Clone( SfxItemPool
* pPool
= 0 ) const SAL_OVERRIDE
;
83 virtual bool GetPresentation( SfxItemPresentation ePres
,
84 SfxMapUnit eCoreMetric
,
85 SfxMapUnit ePresMetric
,
87 const IntlWrapper
* pIntl
= 0 ) const SAL_OVERRIDE
;
89 const SwFrameFormat
*GetFooterFormat() const { return static_cast<const SwFrameFormat
*>(GetRegisteredIn()); }
90 SwFrameFormat
*GetFooterFormat() { return static_cast<SwFrameFormat
*>(GetRegisteredIn()); }
92 void RegisterToFormat( SwFormat
& rFormat
);
93 bool IsActive() const { return bActive
; }
94 void SetActive( bool bNew
= true ) { bActive
= bNew
; }
97 inline const SwFormatHeader
&SwAttrSet::GetHeader(bool bInP
) const
98 { return static_cast<const SwFormatHeader
&>(Get( RES_HEADER
,bInP
)); }
99 inline const SwFormatFooter
&SwAttrSet::GetFooter(bool bInP
) const
100 { return static_cast<const SwFormatFooter
&>(Get( RES_FOOTER
,bInP
)); }
102 inline const SwFormatHeader
&SwFormat::GetHeader(bool bInP
) const
103 { return m_aSet
.GetHeader(bInP
); }
104 inline const SwFormatFooter
&SwFormat::GetFooter(bool bInP
) const
105 { return m_aSet
.GetFooter(bInP
); }
109 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */