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_FRMATR_HXX
20 #define INCLUDED_SW_INC_FRMATR_HXX
21 
22 #include "hintids.hxx"
23 #include "format.hxx"
24 #include <editeng/pbinitem.hxx>
25 #include <editeng/lrspitem.hxx>
26 #include <editeng/ulspitem.hxx>
27 #include <editeng/prntitem.hxx>
28 #include <editeng/opaqitem.hxx>
29 #include <editeng/protitem.hxx>
30 #include <editeng/boxitem.hxx>
31 #include <editeng/keepitem.hxx>
32 #include <editeng/brushitem.hxx>
33 #include <editeng/shaditem.hxx>
34 #include <editeng/formatbreakitem.hxx>
35 #include <editeng/frmdiritem.hxx>
36 #include <svl/macitem.hxx>
37 #include <svx/sdtaitm.hxx>
38 
39 // Inlines
40 
41 // Implementation of FrameAttribute methods of SwAttrSet.
GetPaperBin(bool bInP) const42 inline const SvxPaperBinItem &SwAttrSet::GetPaperBin(bool bInP) const
43     { return Get( RES_PAPER_BIN,bInP); }
GetLRSpace(bool bInP) const44 inline const SvxLRSpaceItem &SwAttrSet::GetLRSpace(bool bInP) const
45     { return Get( RES_LR_SPACE,bInP); }
GetULSpace(bool bInP) const46 inline const SvxULSpaceItem &SwAttrSet::GetULSpace(bool bInP) const
47     { return Get( RES_UL_SPACE,bInP); }
GetPrint(bool bInP) const48 inline const SvxPrintItem &SwAttrSet::GetPrint(bool bInP) const
49     { return Get( RES_PRINT,bInP); }
GetOpaque(bool bInP) const50 inline const SvxOpaqueItem &SwAttrSet::GetOpaque(bool bInP) const
51     { return Get( RES_OPAQUE,bInP); }
GetProtect(bool bInP) const52 inline const SvxProtectItem &SwAttrSet::GetProtect(bool bInP) const
53     { return Get( RES_PROTECT,bInP); }
GetBox(bool bInP) const54 inline const SvxBoxItem &SwAttrSet::GetBox(bool bInP) const
55     { return Get( RES_BOX,bInP); }
GetKeep(bool bInP) const56 inline const SvxFormatKeepItem &SwAttrSet::GetKeep(bool bInP) const
57     { return Get( RES_KEEP,bInP); }
GetBackground(bool bInP) const58 inline const SvxBrushItem &SwAttrSet::GetBackground(bool bInP) const
59     { return Get( RES_BACKGROUND,bInP); }
GetShadow(bool bInP) const60 inline const SvxShadowItem &SwAttrSet::GetShadow(bool bInP) const
61     { return Get( RES_SHADOW,bInP); }
GetBreak(bool bInP) const62 inline const SvxFormatBreakItem &SwAttrSet::GetBreak(bool bInP) const
63     { return Get( RES_BREAK,bInP); }
GetMacro(bool bInP) const64 inline const SvxMacroItem &SwAttrSet::GetMacro(bool bInP) const
65     { return Get( RES_FRMMACRO,bInP); }
GetFrameDir(bool bInP) const66 inline const SvxFrameDirectionItem &SwAttrSet::GetFrameDir(bool bInP) const
67     { return Get( RES_FRAMEDIR,bInP); }
GetTextVertAdjust(bool bInP) const68 inline const SdrTextVertAdjustItem &SwAttrSet::GetTextVertAdjust(bool bInP) const
69     { return Get( RES_TEXT_VERT_ADJUST,bInP); }
70 
71 // Implementation of FrameAttribute methods of SwFormat.
GetPaperBin(bool bInP) const72 inline const SvxPaperBinItem &SwFormat::GetPaperBin(bool bInP) const
73     { return m_aSet.GetPaperBin(bInP); }
GetLRSpace(bool bInP) const74 inline const SvxLRSpaceItem &SwFormat::GetLRSpace(bool bInP) const
75     { return m_aSet.GetLRSpace(bInP); }
GetULSpace(bool bInP) const76 inline const SvxULSpaceItem &SwFormat::GetULSpace(bool bInP) const
77     { return m_aSet.GetULSpace(bInP); }
GetPrint(bool bInP) const78 inline const SvxPrintItem &SwFormat::GetPrint(bool bInP) const
79     { return m_aSet.GetPrint(bInP); }
GetOpaque(bool bInP) const80 inline const SvxOpaqueItem &SwFormat::GetOpaque(bool bInP) const
81     { return m_aSet.GetOpaque(bInP); }
GetProtect(bool bInP) const82 inline const SvxProtectItem &SwFormat::GetProtect(bool bInP) const
83     { return m_aSet.GetProtect(bInP); }
GetBox(bool bInP) const84 inline const SvxBoxItem &SwFormat::GetBox(bool bInP) const
85     { return m_aSet.GetBox(bInP); }
GetKeep(bool bInP) const86 inline const SvxFormatKeepItem &SwFormat::GetKeep(bool bInP) const
87     { return m_aSet.GetKeep(bInP); }
GetShadow(bool bInP) const88 inline const SvxShadowItem &SwFormat::GetShadow(bool bInP) const
89     { return m_aSet.GetShadow(bInP); }
GetBreak(bool bInP) const90 inline const SvxFormatBreakItem &SwFormat::GetBreak(bool bInP) const
91     { return m_aSet.GetBreak(bInP); }
GetMacro(bool bInP) const92 inline const SvxMacroItem &SwFormat::GetMacro(bool bInP) const
93     { return m_aSet.GetMacro(bInP); }
GetFrameDir(bool bInP) const94 inline const SvxFrameDirectionItem  &SwFormat::GetFrameDir(bool bInP) const
95     { return m_aSet.GetFrameDir(bInP); }
GetTextVertAdjust(bool bInP) const96 inline const SdrTextVertAdjustItem &SwFormat::GetTextVertAdjust(bool bInP) const
97     { return m_aSet.GetTextVertAdjust(bInP); }
98 
99 #endif // INCLUDED_SW_INC_FRMATR_HXX
100 
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
102